1. Registry
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. OpenflowRuntime
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 runtime 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.

    Note A runtime is created inside an Openflow deployment, and connectors are created inside a runtime’s schema, so a connector’s database and schema must match its runtime’s.

    Resource used to manage Openflow runtimes, the compute a deployment runs connectors on. Every mutating statement is asynchronous, so create and update return once the runtime reaches the ACTIVE state. For more information, check Openflow runtime 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.OpenflowRuntime("basic", {
        database: "my_database",
        schema: "my_schema",
        name: "my_runtime",
        deployment: "my_deployment",
        nodeType: "SMALL",
        minNodes: 1,
        maxNodes: 1,
        executeAsRole: "MY_OPENFLOW_ROLE",
    });
    // complete resource
    const complete = new snowflake.OpenflowRuntime("complete", {
        database: "my_database",
        schema: "my_schema",
        name: "my_runtime_complete",
        deployment: "my_deployment",
        nodeType: "MEDIUM",
        minNodes: 1,
        maxNodes: 4,
        executeAsRole: "MY_OPENFLOW_ROLE",
        externalAccessIntegrations: ["my_external_access_integration"],
        displayName: "My runtime",
        comment: "Managed by Terraform.",
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # basic resource
    basic = snowflake.OpenflowRuntime("basic",
        database="my_database",
        schema="my_schema",
        name="my_runtime",
        deployment="my_deployment",
        node_type="SMALL",
        min_nodes=1,
        max_nodes=1,
        execute_as_role="MY_OPENFLOW_ROLE")
    # complete resource
    complete = snowflake.OpenflowRuntime("complete",
        database="my_database",
        schema="my_schema",
        name="my_runtime_complete",
        deployment="my_deployment",
        node_type="MEDIUM",
        min_nodes=1,
        max_nodes=4,
        execute_as_role="MY_OPENFLOW_ROLE",
        external_access_integrations=["my_external_access_integration"],
        display_name="My runtime",
        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.NewOpenflowRuntime(ctx, "basic", &snowflake.OpenflowRuntimeArgs{
    			Database:      pulumi.String("my_database"),
    			Schema:        pulumi.String("my_schema"),
    			Name:          pulumi.String("my_runtime"),
    			Deployment:    pulumi.String("my_deployment"),
    			NodeType:      pulumi.String("SMALL"),
    			MinNodes:      pulumi.Int(1),
    			MaxNodes:      pulumi.Int(1),
    			ExecuteAsRole: pulumi.String("MY_OPENFLOW_ROLE"),
    		})
    		if err != nil {
    			return err
    		}
    		// complete resource
    		_, err = snowflake.NewOpenflowRuntime(ctx, "complete", &snowflake.OpenflowRuntimeArgs{
    			Database:      pulumi.String("my_database"),
    			Schema:        pulumi.String("my_schema"),
    			Name:          pulumi.String("my_runtime_complete"),
    			Deployment:    pulumi.String("my_deployment"),
    			NodeType:      pulumi.String("MEDIUM"),
    			MinNodes:      pulumi.Int(1),
    			MaxNodes:      pulumi.Int(4),
    			ExecuteAsRole: pulumi.String("MY_OPENFLOW_ROLE"),
    			ExternalAccessIntegrations: pulumi.StringArray{
    				pulumi.String("my_external_access_integration"),
    			},
    			DisplayName: pulumi.String("My runtime"),
    			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.OpenflowRuntime("basic", new()
        {
            Database = "my_database",
            Schema = "my_schema",
            Name = "my_runtime",
            Deployment = "my_deployment",
            NodeType = "SMALL",
            MinNodes = 1,
            MaxNodes = 1,
            ExecuteAsRole = "MY_OPENFLOW_ROLE",
        });
    
        // complete resource
        var complete = new Snowflake.OpenflowRuntime("complete", new()
        {
            Database = "my_database",
            Schema = "my_schema",
            Name = "my_runtime_complete",
            Deployment = "my_deployment",
            NodeType = "MEDIUM",
            MinNodes = 1,
            MaxNodes = 4,
            ExecuteAsRole = "MY_OPENFLOW_ROLE",
            ExternalAccessIntegrations = new[]
            {
                "my_external_access_integration",
            },
            DisplayName = "My runtime",
            Comment = "Managed by Terraform.",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.OpenflowRuntime;
    import com.pulumi.snowflake.OpenflowRuntimeArgs;
    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 OpenflowRuntime("basic", OpenflowRuntimeArgs.builder()
                .database("my_database")
                .schema("my_schema")
                .name("my_runtime")
                .deployment("my_deployment")
                .nodeType("SMALL")
                .minNodes(1)
                .maxNodes(1)
                .executeAsRole("MY_OPENFLOW_ROLE")
                .build());
    
            // complete resource
            var complete = new OpenflowRuntime("complete", OpenflowRuntimeArgs.builder()
                .database("my_database")
                .schema("my_schema")
                .name("my_runtime_complete")
                .deployment("my_deployment")
                .nodeType("MEDIUM")
                .minNodes(1)
                .maxNodes(4)
                .executeAsRole("MY_OPENFLOW_ROLE")
                .externalAccessIntegrations("my_external_access_integration")
                .displayName("My runtime")
                .comment("Managed by Terraform.")
                .build());
    
        }
    }
    
    resources:
      # basic resource
      basic:
        type: snowflake:OpenflowRuntime
        properties:
          database: my_database
          schema: my_schema
          name: my_runtime
          deployment: my_deployment
          nodeType: SMALL
          minNodes: 1
          maxNodes: 1
          executeAsRole: MY_OPENFLOW_ROLE
      # complete resource
      complete:
        type: snowflake:OpenflowRuntime
        properties:
          database: my_database
          schema: my_schema
          name: my_runtime_complete
          deployment: my_deployment
          nodeType: MEDIUM
          minNodes: 1
          maxNodes: 4
          executeAsRole: MY_OPENFLOW_ROLE
          externalAccessIntegrations:
            - my_external_access_integration
          displayName: My runtime
          comment: Managed by Terraform.
    
    pulumi {
      required_providers {
        snowflake = {
          source = "pulumi/snowflake"
        }
      }
    }
    
    # basic resource
    resource "snowflake_openflowruntime" "basic" {
      database        = "my_database"
      schema          = "my_schema"
      name            = "my_runtime"
      deployment      = "my_deployment"
      node_type       = "SMALL"
      min_nodes       = 1
      max_nodes       = 1
      execute_as_role = "MY_OPENFLOW_ROLE"
    }
    # complete resource
    resource "snowflake_openflowruntime" "complete" {
      database                     = "my_database"
      schema                       = "my_schema"
      name                         = "my_runtime_complete"
      deployment                   = "my_deployment"
      node_type                    = "MEDIUM"
      min_nodes                    = 1
      max_nodes                    = 4
      execute_as_role              = "MY_OPENFLOW_ROLE"
      external_access_integrations = ["my_external_access_integration"]
      display_name                 = "My runtime"
      comment                      = "Managed by Terraform."
    }
    

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

    Create OpenflowRuntime Resource

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

    Constructor syntax

    new OpenflowRuntime(name: string, args: OpenflowRuntimeArgs, opts?: CustomResourceOptions);
    @overload
    def OpenflowRuntime(resource_name: str,
                        args: OpenflowRuntimeArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def OpenflowRuntime(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        database: Optional[str] = None,
                        deployment: Optional[str] = None,
                        execute_as_role: Optional[str] = None,
                        max_nodes: Optional[int] = None,
                        min_nodes: Optional[int] = None,
                        node_type: Optional[str] = None,
                        schema: Optional[str] = None,
                        comment: Optional[str] = None,
                        display_name: Optional[str] = None,
                        external_access_integrations: Optional[Sequence[str]] = None,
                        name: Optional[str] = None)
    func NewOpenflowRuntime(ctx *Context, name string, args OpenflowRuntimeArgs, opts ...ResourceOption) (*OpenflowRuntime, error)
    public OpenflowRuntime(string name, OpenflowRuntimeArgs args, CustomResourceOptions? opts = null)
    public OpenflowRuntime(String name, OpenflowRuntimeArgs args)
    public OpenflowRuntime(String name, OpenflowRuntimeArgs args, CustomResourceOptions options)
    
    type: snowflake:OpenflowRuntime
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "snowflake_openflow_runtime" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args OpenflowRuntimeArgs
    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 OpenflowRuntimeArgs
    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 OpenflowRuntimeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OpenflowRuntimeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OpenflowRuntimeArgs
    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 openflowRuntimeResource = new Snowflake.OpenflowRuntime("openflowRuntimeResource", new()
    {
        Database = "string",
        Deployment = "string",
        ExecuteAsRole = "string",
        MaxNodes = 0,
        MinNodes = 0,
        NodeType = "string",
        Schema = "string",
        Comment = "string",
        DisplayName = "string",
        ExternalAccessIntegrations = new[]
        {
            "string",
        },
        Name = "string",
    });
    
    example, err := snowflake.NewOpenflowRuntime(ctx, "openflowRuntimeResource", &snowflake.OpenflowRuntimeArgs{
    	Database:      pulumi.String("string"),
    	Deployment:    pulumi.String("string"),
    	ExecuteAsRole: pulumi.String("string"),
    	MaxNodes:      pulumi.Int(0),
    	MinNodes:      pulumi.Int(0),
    	NodeType:      pulumi.String("string"),
    	Schema:        pulumi.String("string"),
    	Comment:       pulumi.String("string"),
    	DisplayName:   pulumi.String("string"),
    	ExternalAccessIntegrations: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    resource "snowflake_openflow_runtime" "openflowRuntimeResource" {
      lifecycle {
        create_before_destroy = true
      }
      database                     = "string"
      deployment                   = "string"
      execute_as_role              = "string"
      max_nodes                    = 0
      min_nodes                    = 0
      node_type                    = "string"
      schema                       = "string"
      comment                      = "string"
      display_name                 = "string"
      external_access_integrations = ["string"]
      name                         = "string"
    }
    
    var openflowRuntimeResource = new OpenflowRuntime("openflowRuntimeResource", OpenflowRuntimeArgs.builder()
        .database("string")
        .deployment("string")
        .executeAsRole("string")
        .maxNodes(0)
        .minNodes(0)
        .nodeType("string")
        .schema("string")
        .comment("string")
        .displayName("string")
        .externalAccessIntegrations("string")
        .name("string")
        .build());
    
    openflow_runtime_resource = snowflake.OpenflowRuntime("openflowRuntimeResource",
        database="string",
        deployment="string",
        execute_as_role="string",
        max_nodes=0,
        min_nodes=0,
        node_type="string",
        schema="string",
        comment="string",
        display_name="string",
        external_access_integrations=["string"],
        name="string")
    
    const openflowRuntimeResource = new snowflake.OpenflowRuntime("openflowRuntimeResource", {
        database: "string",
        deployment: "string",
        executeAsRole: "string",
        maxNodes: 0,
        minNodes: 0,
        nodeType: "string",
        schema: "string",
        comment: "string",
        displayName: "string",
        externalAccessIntegrations: ["string"],
        name: "string",
    });
    
    type: snowflake:OpenflowRuntime
    properties:
        comment: string
        database: string
        deployment: string
        displayName: string
        executeAsRole: string
        externalAccessIntegrations:
            - string
        maxNodes: 0
        minNodes: 0
        name: string
        nodeType: string
        schema: string
    

    OpenflowRuntime 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 OpenflowRuntime resource accepts the following input properties:

    Database string
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Deployment string
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ExecuteAsRole string
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    MaxNodes int
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    MinNodes int
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    NodeType string
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    Schema string
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Comment string
    Specifies a comment for the Openflow runtime.
    DisplayName string
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    ExternalAccessIntegrations List<string>
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    Name string
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Database string
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Deployment string
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ExecuteAsRole string
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    MaxNodes int
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    MinNodes int
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    NodeType string
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    Schema string
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Comment string
    Specifies a comment for the Openflow runtime.
    DisplayName string
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    ExternalAccessIntegrations []string
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    Name string
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database string
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment string
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    execute_as_role string
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    max_nodes number
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    min_nodes number
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    node_type string
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema string
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment string
    Specifies a comment for the Openflow runtime.
    display_name string
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    external_access_integrations list(string)
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    name string
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database String
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment String
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    executeAsRole String
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    maxNodes Integer
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    minNodes Integer
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    nodeType String
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema String
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment String
    Specifies a comment for the Openflow runtime.
    displayName String
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    externalAccessIntegrations List<String>
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    name String
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database string
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment string
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    executeAsRole string
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    maxNodes number
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    minNodes number
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    nodeType string
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema string
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment string
    Specifies a comment for the Openflow runtime.
    displayName string
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    externalAccessIntegrations string[]
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    name string
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database str
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment str
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    execute_as_role str
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    max_nodes int
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    min_nodes int
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    node_type str
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema str
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment str
    Specifies a comment for the Openflow runtime.
    display_name str
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    external_access_integrations Sequence[str]
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    name str
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database String
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment String
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    executeAsRole String
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    maxNodes Number
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    minNodes Number
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    nodeType String
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema String
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    comment String
    Specifies a comment for the Openflow runtime.
    displayName String
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    externalAccessIntegrations List<String>
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    name String
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".

    Outputs

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

    DescribeOutputs List<OpenflowRuntimeDescribeOutput>
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    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.
    ShowOutputs List<OpenflowRuntimeShowOutput>
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    DescribeOutputs []OpenflowRuntimeDescribeOutput
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    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.
    ShowOutputs []OpenflowRuntimeShowOutput
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    describe_outputs list(object)
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    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.
    show_outputs list(object)
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    describeOutputs List<OpenflowRuntimeDescribeOutput>
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    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.
    showOutputs List<OpenflowRuntimeShowOutput>
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    describeOutputs OpenflowRuntimeDescribeOutput[]
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    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.
    showOutputs OpenflowRuntimeShowOutput[]
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    describe_outputs Sequence[OpenflowRuntimeDescribeOutput]
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    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.
    show_outputs Sequence[OpenflowRuntimeShowOutput]
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    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.
    showOutputs List<Property Map>
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.

    Look up Existing OpenflowRuntime Resource

    Get an existing OpenflowRuntime 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?: OpenflowRuntimeState, opts?: CustomResourceOptions): OpenflowRuntime
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            comment: Optional[str] = None,
            database: Optional[str] = None,
            deployment: Optional[str] = None,
            describe_outputs: Optional[Sequence[OpenflowRuntimeDescribeOutputArgs]] = None,
            display_name: Optional[str] = None,
            execute_as_role: Optional[str] = None,
            external_access_integrations: Optional[Sequence[str]] = None,
            fully_qualified_name: Optional[str] = None,
            max_nodes: Optional[int] = None,
            min_nodes: Optional[int] = None,
            name: Optional[str] = None,
            node_type: Optional[str] = None,
            schema: Optional[str] = None,
            show_outputs: Optional[Sequence[OpenflowRuntimeShowOutputArgs]] = None) -> OpenflowRuntime
    func GetOpenflowRuntime(ctx *Context, name string, id IDInput, state *OpenflowRuntimeState, opts ...ResourceOption) (*OpenflowRuntime, error)
    public static OpenflowRuntime Get(string name, Input<string> id, OpenflowRuntimeState? state, CustomResourceOptions? opts = null)
    public static OpenflowRuntime get(String name, Output<String> id, OpenflowRuntimeState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:OpenflowRuntime    get:      id: ${id}
    import {
      to = snowflake_openflow_runtime.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 runtime.
    Database string
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Deployment string
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs List<OpenflowRuntimeDescribeOutput>
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    DisplayName string
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    ExecuteAsRole string
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ExternalAccessIntegrations List<string>
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    MaxNodes int
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    MinNodes int
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    Name string
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    NodeType string
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    Schema string
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ShowOutputs List<OpenflowRuntimeShowOutput>
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    Comment string
    Specifies a comment for the Openflow runtime.
    Database string
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Deployment string
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs []OpenflowRuntimeDescribeOutputArgs
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    DisplayName string
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    ExecuteAsRole string
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ExternalAccessIntegrations []string
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    MaxNodes int
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    MinNodes int
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    Name string
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    NodeType string
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    Schema string
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ShowOutputs []OpenflowRuntimeShowOutputArgs
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    comment string
    Specifies a comment for the Openflow runtime.
    database string
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment string
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describe_outputs list(object)
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    display_name string
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    execute_as_role string
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    external_access_integrations list(string)
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    fully_qualified_name string
    Fully qualified name of the resource. For more information, see object name resolution.
    max_nodes number
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    min_nodes number
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    name string
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    node_type string
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema string
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    show_outputs list(object)
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    comment String
    Specifies a comment for the Openflow runtime.
    database String
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment String
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<OpenflowRuntimeDescribeOutput>
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    displayName String
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    executeAsRole String
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    externalAccessIntegrations List<String>
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    maxNodes Integer
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    minNodes Integer
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    name String
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    nodeType String
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema String
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs List<OpenflowRuntimeShowOutput>
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    comment string
    Specifies a comment for the Openflow runtime.
    database string
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment string
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs OpenflowRuntimeDescribeOutput[]
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    displayName string
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    executeAsRole string
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    externalAccessIntegrations string[]
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    maxNodes number
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    minNodes number
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    name string
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    nodeType string
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema string
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs OpenflowRuntimeShowOutput[]
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    comment str
    Specifies a comment for the Openflow runtime.
    database str
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment str
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describe_outputs Sequence[OpenflowRuntimeDescribeOutputArgs]
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    display_name str
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    execute_as_role str
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    external_access_integrations Sequence[str]
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    max_nodes int
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    min_nodes int
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    name str
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    node_type str
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema str
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    show_outputs Sequence[OpenflowRuntimeShowOutputArgs]
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.
    comment String
    Specifies a comment for the Openflow runtime.
    database String
    The database in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    deployment String
    Specifies the Openflow deployment the runtime runs in. Snowflake has no ALTER for it, so changing it recreates the runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE OPENFLOW RUNTIME for the given runtime.
    displayName String
    A free-text alias for the runtime. Shown in the Openflow UI in place of the runtime's identifier when set.
    executeAsRole String
    Specifies the role the runtime executes as. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    externalAccessIntegrations List<String>
    Specifies the names of the external access integrations that allow the runtime egress to external data sources. Supported for Snowflake-managed deployments only.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    maxNodes Number
    Specifies the maximum number of nodes the runtime scales up to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    minNodes Number
    Specifies the minimum number of nodes the runtime scales down to. For more information, check CREATE OPENFLOW RUNTIME documentation.
    name String
    Specifies the identifier for the Openflow runtime; must be unique for the schema in which the runtime is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    nodeType String
    Specifies the size of the runtime's nodes. Snowflake has no ALTER for it, so changing it recreates the runtime. Valid values are (case-insensitive): SMALL | MEDIUM | LARGE.
    schema String
    The schema in which to create the Openflow runtime. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs List<Property Map>
    Outputs the result of SHOW OPENFLOW RUNTIMES for the given runtime.

    Supporting Types

    OpenflowRuntimeDescribeOutput, OpenflowRuntimeDescribeOutputArgs

    Comment string
    Deployment string
    DisplayName string
    ExecuteAsRole string
    ExternalAccessIntegrations List<string>
    InitiallySuspended bool
    Key string
    MaxNodes int
    MinNodes int
    Name string
    NodeType string
    NodeTypeTier string
    Owner string
    ServerUrl string
    Status string
    Comment string
    Deployment string
    DisplayName string
    ExecuteAsRole string
    ExternalAccessIntegrations []string
    InitiallySuspended bool
    Key string
    MaxNodes int
    MinNodes int
    Name string
    NodeType string
    NodeTypeTier string
    Owner string
    ServerUrl string
    Status string
    comment string
    deployment string
    display_name string
    execute_as_role string
    external_access_integrations list(string)
    initially_suspended bool
    key string
    max_nodes number
    min_nodes number
    name string
    node_type string
    node_type_tier string
    owner string
    server_url string
    status string
    comment String
    deployment String
    displayName String
    executeAsRole String
    externalAccessIntegrations List<String>
    initiallySuspended Boolean
    key String
    maxNodes Integer
    minNodes Integer
    name String
    nodeType String
    nodeTypeTier String
    owner String
    serverUrl String
    status String
    comment string
    deployment string
    displayName string
    executeAsRole string
    externalAccessIntegrations string[]
    initiallySuspended boolean
    key string
    maxNodes number
    minNodes number
    name string
    nodeType string
    nodeTypeTier string
    owner string
    serverUrl string
    status string
    comment String
    deployment String
    displayName String
    executeAsRole String
    externalAccessIntegrations List<String>
    initiallySuspended Boolean
    key String
    maxNodes Number
    minNodes Number
    name String
    nodeType String
    nodeTypeTier String
    owner String
    serverUrl String
    status String

    OpenflowRuntimeShowOutput, OpenflowRuntimeShowOutputArgs

    Comment string
    CreatedOn string
    DatabaseName string
    Deployment string
    DisplayName string
    ExecuteAsRole string
    ExternalAccessIntegrations List<string>
    InitiallySuspended bool
    Key string
    MaxNodes int
    MinNodes int
    Name string
    NodeType string
    Owner string
    SchemaName string
    Status string
    UpdatedOn string
    Comment string
    CreatedOn string
    DatabaseName string
    Deployment string
    DisplayName string
    ExecuteAsRole string
    ExternalAccessIntegrations []string
    InitiallySuspended bool
    Key string
    MaxNodes int
    MinNodes int
    Name string
    NodeType string
    Owner string
    SchemaName string
    Status string
    UpdatedOn string
    comment string
    created_on string
    database_name string
    deployment string
    display_name string
    execute_as_role string
    external_access_integrations list(string)
    initially_suspended bool
    key string
    max_nodes number
    min_nodes number
    name string
    node_type string
    owner string
    schema_name string
    status string
    updated_on string
    comment String
    createdOn String
    databaseName String
    deployment String
    displayName String
    executeAsRole String
    externalAccessIntegrations List<String>
    initiallySuspended Boolean
    key String
    maxNodes Integer
    minNodes Integer
    name String
    nodeType String
    owner String
    schemaName String
    status String
    updatedOn String
    comment string
    createdOn string
    databaseName string
    deployment string
    displayName string
    executeAsRole string
    externalAccessIntegrations string[]
    initiallySuspended boolean
    key string
    maxNodes number
    minNodes number
    name string
    nodeType string
    owner string
    schemaName string
    status string
    updatedOn string
    comment String
    createdOn String
    databaseName String
    deployment String
    displayName String
    executeAsRole String
    externalAccessIntegrations List<String>
    initiallySuspended Boolean
    key String
    maxNodes Number
    minNodes Number
    name String
    nodeType String
    owner String
    schemaName String
    status String
    updatedOn String

    Import

    $ pulumi import snowflake:index/openflowRuntime:OpenflowRuntime example '"<database_name>"."<schema_name>"."<runtime_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