1. Registry
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. OpenflowDeploymentSnowflakeManaged
Viewing docs for Snowflake v2.21.0
published on Friday, Sep 11, 2026 by Pulumi
snowflake logo
Viewing docs for Snowflake v2.21.0
published on Friday, Sep 11, 2026 by Pulumi

    Caution: Preview Feature This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to previewFeaturesEnabled field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.

    Note Every mutating statement is asynchronous and the provider waits for the deployment to settle before returning, so applies take minutes rather than seconds. If you encounter timeout errors, use a timeouts block to set higher limits for your environment.

    Resource used to manage Snowflake-managed Openflow deployments. A deployment is the account-level container that Openflow runtimes are created in. Snowflake runs it, so creation is complete once the deployment reaches the ACTIVE state, which takes several minutes. For more information, check Openflow deployment documentation.

    Example Usage

    Note Instead of using fully_qualified_name, you can reference objects managed outside Terraform by constructing a correct ID, consult identifiers guide.

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    // basic resource
    const basic = new snowflake.OpenflowDeploymentSnowflakeManaged("basic", {name: "my_deployment"});
    // with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
    const withTimeouts = new snowflake.OpenflowDeploymentSnowflakeManaged("with_timeouts", {name: "my_deployment"});
    // complete resource
    const complete = new snowflake.OpenflowDeploymentSnowflakeManaged("complete", {
        name: "my_deployment_complete",
        displayName: "My deployment",
        eventTable: "\"<database_name>\".\"<schema_name>\".\"<event_table_name>\"",
        comment: "Managed by Terraform.",
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # basic resource
    basic = snowflake.OpenflowDeploymentSnowflakeManaged("basic", name="my_deployment")
    # with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
    with_timeouts = snowflake.OpenflowDeploymentSnowflakeManaged("with_timeouts", name="my_deployment")
    # complete resource
    complete = snowflake.OpenflowDeploymentSnowflakeManaged("complete",
        name="my_deployment_complete",
        display_name="My deployment",
        event_table="\"<database_name>\".\"<schema_name>\".\"<event_table_name>\"",
        comment="Managed by Terraform.")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-snowflake/sdk/v2/go/snowflake"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// basic resource
    		_, err := snowflake.NewOpenflowDeploymentSnowflakeManaged(ctx, "basic", &snowflake.OpenflowDeploymentSnowflakeManagedArgs{
    			Name: pulumi.String("my_deployment"),
    		})
    		if err != nil {
    			return err
    		}
    		// with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
    		_, err = snowflake.NewOpenflowDeploymentSnowflakeManaged(ctx, "with_timeouts", &snowflake.OpenflowDeploymentSnowflakeManagedArgs{
    			Name: pulumi.String("my_deployment"),
    		})
    		if err != nil {
    			return err
    		}
    		// complete resource
    		_, err = snowflake.NewOpenflowDeploymentSnowflakeManaged(ctx, "complete", &snowflake.OpenflowDeploymentSnowflakeManagedArgs{
    			Name:        pulumi.String("my_deployment_complete"),
    			DisplayName: pulumi.String("My deployment"),
    			EventTable:  pulumi.String("\"<database_name>\".\"<schema_name>\".\"<event_table_name>\""),
    			Comment:     pulumi.String("Managed by Terraform."),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Snowflake = Pulumi.Snowflake;
    
    return await Deployment.RunAsync(() => 
    {
        // basic resource
        var basic = new Snowflake.OpenflowDeploymentSnowflakeManaged("basic", new()
        {
            Name = "my_deployment",
        });
    
        // with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
        var withTimeouts = new Snowflake.OpenflowDeploymentSnowflakeManaged("with_timeouts", new()
        {
            Name = "my_deployment",
        });
    
        // complete resource
        var complete = new Snowflake.OpenflowDeploymentSnowflakeManaged("complete", new()
        {
            Name = "my_deployment_complete",
            DisplayName = "My deployment",
            EventTable = "\"<database_name>\".\"<schema_name>\".\"<event_table_name>\"",
            Comment = "Managed by Terraform.",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.OpenflowDeploymentSnowflakeManaged;
    import com.pulumi.snowflake.OpenflowDeploymentSnowflakeManagedArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // basic resource
            var basic = new OpenflowDeploymentSnowflakeManaged("basic", OpenflowDeploymentSnowflakeManagedArgs.builder()
                .name("my_deployment")
                .build());
    
            // with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
            var withTimeouts = new OpenflowDeploymentSnowflakeManaged("withTimeouts", OpenflowDeploymentSnowflakeManagedArgs.builder()
                .name("my_deployment")
                .build());
    
            // complete resource
            var complete = new OpenflowDeploymentSnowflakeManaged("complete", OpenflowDeploymentSnowflakeManagedArgs.builder()
                .name("my_deployment_complete")
                .displayName("My deployment")
                .eventTable("\"<database_name>\".\"<schema_name>\".\"<event_table_name>\"")
                .comment("Managed by Terraform.")
                .build());
    
        }
    }
    
    resources:
      # basic resource
      basic:
        type: snowflake:OpenflowDeploymentSnowflakeManaged
        properties:
          name: my_deployment
      # with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
      withTimeouts:
        type: snowflake:OpenflowDeploymentSnowflakeManaged
        name: with_timeouts
        properties:
          name: my_deployment
      # complete resource
      complete:
        type: snowflake:OpenflowDeploymentSnowflakeManaged
        properties:
          name: my_deployment_complete
          displayName: My deployment
          eventTable: '"<database_name>"."<schema_name>"."<event_table_name>"'
          comment: Managed by Terraform.
    
    pulumi {
      required_providers {
        snowflake = {
          source = "pulumi/snowflake"
        }
      }
    }
    
    # basic resource
    resource "snowflake_openflowdeploymentsnowflakemanaged" "basic" {
      name = "my_deployment"
    }
    # with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
    resource "snowflake_openflowdeploymentsnowflakemanaged" "with_timeouts" {
      name = "my_deployment"
    }
    # complete resource
    resource "snowflake_openflowdeploymentsnowflakemanaged" "complete" {
      name         = "my_deployment_complete"
      display_name = "My deployment"
      event_table  = "\"<database_name>\".\"<schema_name>\".\"<event_table_name>\""
      comment      = "Managed by Terraform."
    }
    

    Note If a field has a default value, it is shown next to the type in the schema.

    Create OpenflowDeploymentSnowflakeManaged Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new OpenflowDeploymentSnowflakeManaged(name: string, args?: OpenflowDeploymentSnowflakeManagedArgs, opts?: CustomResourceOptions);
    @overload
    def OpenflowDeploymentSnowflakeManaged(resource_name: str,
                                           args: Optional[OpenflowDeploymentSnowflakeManagedArgs] = None,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def OpenflowDeploymentSnowflakeManaged(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           comment: Optional[str] = None,
                                           display_name: Optional[str] = None,
                                           event_table: Optional[str] = None,
                                           name: Optional[str] = None)
    func NewOpenflowDeploymentSnowflakeManaged(ctx *Context, name string, args *OpenflowDeploymentSnowflakeManagedArgs, opts ...ResourceOption) (*OpenflowDeploymentSnowflakeManaged, error)
    public OpenflowDeploymentSnowflakeManaged(string name, OpenflowDeploymentSnowflakeManagedArgs? args = null, CustomResourceOptions? opts = null)
    public OpenflowDeploymentSnowflakeManaged(String name, OpenflowDeploymentSnowflakeManagedArgs args)
    public OpenflowDeploymentSnowflakeManaged(String name, OpenflowDeploymentSnowflakeManagedArgs args, CustomResourceOptions options)
    
    type: snowflake:OpenflowDeploymentSnowflakeManaged
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "snowflake_openflow_deployment_snowflake_managed" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args OpenflowDeploymentSnowflakeManagedArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args OpenflowDeploymentSnowflakeManagedArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args OpenflowDeploymentSnowflakeManagedArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OpenflowDeploymentSnowflakeManagedArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OpenflowDeploymentSnowflakeManagedArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var openflowDeploymentSnowflakeManagedResource = new Snowflake.OpenflowDeploymentSnowflakeManaged("openflowDeploymentSnowflakeManagedResource", new()
    {
        Comment = "string",
        DisplayName = "string",
        EventTable = "string",
        Name = "string",
    });
    
    example, err := snowflake.NewOpenflowDeploymentSnowflakeManaged(ctx, "openflowDeploymentSnowflakeManagedResource", &snowflake.OpenflowDeploymentSnowflakeManagedArgs{
    	Comment:     pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	EventTable:  pulumi.String("string"),
    	Name:        pulumi.String("string"),
    })
    
    resource "snowflake_openflow_deployment_snowflake_managed" "openflowDeploymentSnowflakeManagedResource" {
      lifecycle {
        create_before_destroy = true
      }
      comment      = "string"
      display_name = "string"
      event_table  = "string"
      name         = "string"
    }
    
    var openflowDeploymentSnowflakeManagedResource = new OpenflowDeploymentSnowflakeManaged("openflowDeploymentSnowflakeManagedResource", OpenflowDeploymentSnowflakeManagedArgs.builder()
        .comment("string")
        .displayName("string")
        .eventTable("string")
        .name("string")
        .build());
    
    openflow_deployment_snowflake_managed_resource = snowflake.OpenflowDeploymentSnowflakeManaged("openflowDeploymentSnowflakeManagedResource",
        comment="string",
        display_name="string",
        event_table="string",
        name="string")
    
    const openflowDeploymentSnowflakeManagedResource = new snowflake.OpenflowDeploymentSnowflakeManaged("openflowDeploymentSnowflakeManagedResource", {
        comment: "string",
        displayName: "string",
        eventTable: "string",
        name: "string",
    });
    
    type: snowflake:OpenflowDeploymentSnowflakeManaged
    properties:
        comment: string
        displayName: string
        eventTable: string
        name: string
    

    OpenflowDeploymentSnowflakeManaged Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The OpenflowDeploymentSnowflakeManaged resource accepts the following input properties:

    Comment string
    Specifies a comment for the Openflow deployment.
    DisplayName string
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    EventTable string
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    Name string
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Comment string
    Specifies a comment for the Openflow deployment.
    DisplayName string
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    EventTable string
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    Name string
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment string
    Specifies a comment for the Openflow deployment.
    display_name string
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    event_table string
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    name string
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment String
    Specifies a comment for the Openflow deployment.
    displayName String
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    eventTable String
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    name String
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment string
    Specifies a comment for the Openflow deployment.
    displayName string
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    eventTable string
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    name string
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment str
    Specifies a comment for the Openflow deployment.
    display_name str
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    event_table str
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    name str
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment String
    Specifies a comment for the Openflow deployment.
    displayName String
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    eventTable String
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    name String
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OpenflowDeploymentSnowflakeManaged resource produces the following output properties:

    DescribeOutputs List<OpenflowDeploymentSnowflakeManagedDescribeOutput>
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    Parameters List<OpenflowDeploymentSnowflakeManagedParameter>
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    ShowOutputs List<OpenflowDeploymentSnowflakeManagedShowOutput>
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    Type string
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    DescribeOutputs []OpenflowDeploymentSnowflakeManagedDescribeOutput
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    Parameters []OpenflowDeploymentSnowflakeManagedParameter
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    ShowOutputs []OpenflowDeploymentSnowflakeManagedShowOutput
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    Type string
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    describe_outputs list(object)
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    fully_qualified_name string
    Fully qualified name of the resource. For more information, see object name resolution.
    id string
    The provider-assigned unique ID for this managed resource.
    parameters list(object)
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    show_outputs list(object)
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type string
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs List<OpenflowDeploymentSnowflakeManagedDescribeOutput>
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    parameters List<OpenflowDeploymentSnowflakeManagedParameter>
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    showOutputs List<OpenflowDeploymentSnowflakeManagedShowOutput>
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type String
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs OpenflowDeploymentSnowflakeManagedDescribeOutput[]
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    id string
    The provider-assigned unique ID for this managed resource.
    parameters OpenflowDeploymentSnowflakeManagedParameter[]
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    showOutputs OpenflowDeploymentSnowflakeManagedShowOutput[]
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type string
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    describe_outputs Sequence[OpenflowDeploymentSnowflakeManagedDescribeOutput]
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    id str
    The provider-assigned unique ID for this managed resource.
    parameters Sequence[OpenflowDeploymentSnowflakeManagedParameter]
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    show_outputs Sequence[OpenflowDeploymentSnowflakeManagedShowOutput]
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type str
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    parameters List<Property Map>
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    showOutputs List<Property Map>
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type String
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.

    Look up Existing OpenflowDeploymentSnowflakeManaged Resource

    Get an existing OpenflowDeploymentSnowflakeManaged resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: OpenflowDeploymentSnowflakeManagedState, opts?: CustomResourceOptions): OpenflowDeploymentSnowflakeManaged
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            comment: Optional[str] = None,
            describe_outputs: Optional[Sequence[OpenflowDeploymentSnowflakeManagedDescribeOutputArgs]] = None,
            display_name: Optional[str] = None,
            event_table: Optional[str] = None,
            fully_qualified_name: Optional[str] = None,
            name: Optional[str] = None,
            parameters: Optional[Sequence[OpenflowDeploymentSnowflakeManagedParameterArgs]] = None,
            show_outputs: Optional[Sequence[OpenflowDeploymentSnowflakeManagedShowOutputArgs]] = None,
            type: Optional[str] = None) -> OpenflowDeploymentSnowflakeManaged
    func GetOpenflowDeploymentSnowflakeManaged(ctx *Context, name string, id IDInput, state *OpenflowDeploymentSnowflakeManagedState, opts ...ResourceOption) (*OpenflowDeploymentSnowflakeManaged, error)
    public static OpenflowDeploymentSnowflakeManaged Get(string name, Input<string> id, OpenflowDeploymentSnowflakeManagedState? state, CustomResourceOptions? opts = null)
    public static OpenflowDeploymentSnowflakeManaged get(String name, Output<String> id, OpenflowDeploymentSnowflakeManagedState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:OpenflowDeploymentSnowflakeManaged    get:      id: ${id}
    import {
      to = snowflake_openflow_deployment_snowflake_managed.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Comment string
    Specifies a comment for the Openflow deployment.
    DescribeOutputs List<OpenflowDeploymentSnowflakeManagedDescribeOutput>
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    DisplayName string
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    EventTable string
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Parameters List<OpenflowDeploymentSnowflakeManagedParameter>
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    ShowOutputs List<OpenflowDeploymentSnowflakeManagedShowOutput>
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    Type string
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    Comment string
    Specifies a comment for the Openflow deployment.
    DescribeOutputs []OpenflowDeploymentSnowflakeManagedDescribeOutputArgs
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    DisplayName string
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    EventTable string
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Parameters []OpenflowDeploymentSnowflakeManagedParameterArgs
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    ShowOutputs []OpenflowDeploymentSnowflakeManagedShowOutputArgs
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    Type string
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    comment string
    Specifies a comment for the Openflow deployment.
    describe_outputs list(object)
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    display_name string
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    event_table string
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    fully_qualified_name string
    Fully qualified name of the resource. For more information, see object name resolution.
    name string
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters list(object)
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    show_outputs list(object)
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type string
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    comment String
    Specifies a comment for the Openflow deployment.
    describeOutputs List<OpenflowDeploymentSnowflakeManagedDescribeOutput>
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    displayName String
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    eventTable String
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters List<OpenflowDeploymentSnowflakeManagedParameter>
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    showOutputs List<OpenflowDeploymentSnowflakeManagedShowOutput>
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type String
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    comment string
    Specifies a comment for the Openflow deployment.
    describeOutputs OpenflowDeploymentSnowflakeManagedDescribeOutput[]
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    displayName string
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    eventTable string
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    name string
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters OpenflowDeploymentSnowflakeManagedParameter[]
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    showOutputs OpenflowDeploymentSnowflakeManagedShowOutput[]
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type string
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    comment str
    Specifies a comment for the Openflow deployment.
    describe_outputs Sequence[OpenflowDeploymentSnowflakeManagedDescribeOutputArgs]
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    display_name str
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    event_table str
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    name str
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters Sequence[OpenflowDeploymentSnowflakeManagedParameterArgs]
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    show_outputs Sequence[OpenflowDeploymentSnowflakeManagedShowOutputArgs]
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type str
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
    comment String
    Specifies a comment for the Openflow deployment.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE OPENFLOW DEPLOYMENT for the given deployment.
    displayName String
    A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
    eventTable String
    Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters List<Property Map>
    Outputs the result of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for the given deployment.
    showOutputs List<Property Map>
    Outputs the result of SHOW OPENFLOW DEPLOYMENTS for the given deployment.
    type String
    Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.

    Supporting Types

    OpenflowDeploymentSnowflakeManagedDescribeOutput, OpenflowDeploymentSnowflakeManagedDescribeOutputArgs

    Comment string
    CustomIngressHostname string
    DisplayName string
    Key string
    Name string
    Owner string
    Status string
    Type string
    UsePrivateLink bool
    UseUserAuthOverPrivateLink bool
    VpcType string
    Comment string
    CustomIngressHostname string
    DisplayName string
    Key string
    Name string
    Owner string
    Status string
    Type string
    UsePrivateLink bool
    UseUserAuthOverPrivateLink bool
    VpcType string
    comment String
    customIngressHostname String
    displayName String
    key String
    name String
    owner String
    status String
    type String
    usePrivateLink Boolean
    useUserAuthOverPrivateLink Boolean
    vpcType String
    comment string
    customIngressHostname string
    displayName string
    key string
    name string
    owner string
    status string
    type string
    usePrivateLink boolean
    useUserAuthOverPrivateLink boolean
    vpcType string
    comment String
    customIngressHostname String
    displayName String
    key String
    name String
    owner String
    status String
    type String
    usePrivateLink Boolean
    useUserAuthOverPrivateLink Boolean
    vpcType String

    OpenflowDeploymentSnowflakeManagedParameter, OpenflowDeploymentSnowflakeManagedParameterArgs

    OpenflowDeploymentSnowflakeManagedParameterEventTable, OpenflowDeploymentSnowflakeManagedParameterEventTableArgs

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    OpenflowDeploymentSnowflakeManagedShowOutput, OpenflowDeploymentSnowflakeManagedShowOutputArgs

    Comment string
    CreatedOn string
    CustomIngressHostname string
    DisplayName string
    Key string
    Name string
    Owner string
    Status string
    Type string
    UpdatedOn string
    UsePrivateLink bool
    UseUserAuthOverPrivateLink bool
    VpcType string
    Comment string
    CreatedOn string
    CustomIngressHostname string
    DisplayName string
    Key string
    Name string
    Owner string
    Status string
    Type string
    UpdatedOn string
    UsePrivateLink bool
    UseUserAuthOverPrivateLink bool
    VpcType string
    comment String
    createdOn String
    customIngressHostname String
    displayName String
    key String
    name String
    owner String
    status String
    type String
    updatedOn String
    usePrivateLink Boolean
    useUserAuthOverPrivateLink Boolean
    vpcType String
    comment string
    createdOn string
    customIngressHostname string
    displayName string
    key string
    name string
    owner string
    status string
    type string
    updatedOn string
    usePrivateLink boolean
    useUserAuthOverPrivateLink boolean
    vpcType string
    comment String
    createdOn String
    customIngressHostname String
    displayName String
    key String
    name String
    owner String
    status String
    type String
    updatedOn String
    usePrivateLink Boolean
    useUserAuthOverPrivateLink Boolean
    vpcType String

    Import

    $ pulumi import snowflake:index/openflowDeploymentSnowflakeManaged:OpenflowDeploymentSnowflakeManaged example '"<deployment_name>"'
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Snowflake pulumi/pulumi-snowflake
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the snowflake Terraform Provider.
    snowflake logo
    Viewing docs for Snowflake v2.21.0
    published on Friday, Sep 11, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial