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

    Data source used to get details of filtered Openflow runtimes. The results of SHOW and DESCRIBE are encapsulated in one output collection openflowRuntimes.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    // simple usage
    const simple = snowflake.getOpenflowRuntimes({});
    // filtering (like)
    const like = snowflake.getOpenflowRuntimes({
        like: "runtime-name",
    });
    // filtering (in)
    const _in = snowflake.getOpenflowRuntimes({
        "in": {
            schema: "<database_name>.<schema_name>",
        },
    });
    // filtering (starts_with)
    const startsWith = snowflake.getOpenflowRuntimes({
        startsWith: "runtime-",
    });
    // filtering (limit)
    const limit = snowflake.getOpenflowRuntimes({
        limit: {
            rows: 10,
            from: "runtime-name",
        },
    });
    // without additional data (to limit the number of calls make sure to set all of these to false)
    const onlyShow = snowflake.getOpenflowRuntimes({
        withDescribe: false,
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # simple usage
    simple = snowflake.get_openflow_runtimes()
    # filtering (like)
    like = snowflake.get_openflow_runtimes(like="runtime-name")
    # filtering (in)
    in_ = snowflake.get_openflow_runtimes(in_={
        "schema": "<database_name>.<schema_name>",
    })
    # filtering (starts_with)
    starts_with = snowflake.get_openflow_runtimes(starts_with="runtime-")
    # filtering (limit)
    limit = snowflake.get_openflow_runtimes(limit={
        "rows": 10,
        "from_": "runtime-name",
    })
    # without additional data (to limit the number of calls make sure to set all of these to false)
    only_show = snowflake.get_openflow_runtimes(with_describe=False)
    
    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 {
    		// simple usage
    		_, err := snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (like)
    		_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
    			Like: pulumi.StringRef("runtime-name"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (in)
    		_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
    			In: snowflake.GetOpenflowRuntimesIn{
    				Schema: pulumi.StringRef("<database_name>.<schema_name>"),
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (starts_with)
    		_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
    			StartsWith: pulumi.StringRef("runtime-"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (limit)
    		_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
    			Limit: snowflake.GetOpenflowRuntimesLimit{
    				Rows: 10,
    				From: pulumi.StringRef("runtime-name"),
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// without additional data (to limit the number of calls make sure to set all of these to false)
    		_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
    			WithDescribe: pulumi.BoolRef(false),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Snowflake = Pulumi.Snowflake;
    
    return await Deployment.RunAsync(() => 
    {
        // simple usage
        var simple = Snowflake.GetOpenflowRuntimes.Invoke();
    
        // filtering (like)
        var like = Snowflake.GetOpenflowRuntimes.Invoke(new()
        {
            Like = "runtime-name",
        });
    
        // filtering (in)
        var @in = Snowflake.GetOpenflowRuntimes.Invoke(new()
        {
            In = new Snowflake.Inputs.GetOpenflowRuntimesInInputArgs
            {
                Schema = "<database_name>.<schema_name>",
            },
        });
    
        // filtering (starts_with)
        var startsWith = Snowflake.GetOpenflowRuntimes.Invoke(new()
        {
            StartsWith = "runtime-",
        });
    
        // filtering (limit)
        var limit = Snowflake.GetOpenflowRuntimes.Invoke(new()
        {
            Limit = new Snowflake.Inputs.GetOpenflowRuntimesLimitInputArgs
            {
                Rows = 10,
                From = "runtime-name",
            },
        });
    
        // without additional data (to limit the number of calls make sure to set all of these to false)
        var onlyShow = Snowflake.GetOpenflowRuntimes.Invoke(new()
        {
            WithDescribe = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.SnowflakeFunctions;
    import com.pulumi.snowflake.inputs.GetOpenflowRuntimesArgs;
    import com.pulumi.snowflake.inputs.GetOpenflowRuntimesInArgs;
    import com.pulumi.snowflake.inputs.GetOpenflowRuntimesLimitArgs;
    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) {
            // simple usage
            final var simple = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
                .build());
    
            // filtering (like)
            final var like = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
                .like("runtime-name")
                .build());
    
            // filtering (in)
            final var in = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
                .in(GetOpenflowRuntimesInArgs.builder()
                    .schema("<database_name>.<schema_name>")
                    .build())
                .build());
    
            // filtering (starts_with)
            final var startsWith = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
                .startsWith("runtime-")
                .build());
    
            // filtering (limit)
            final var limit = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
                .limit(GetOpenflowRuntimesLimitArgs.builder()
                    .rows(10)
                    .from("runtime-name")
                    .build())
                .build());
    
            // without additional data (to limit the number of calls make sure to set all of these to false)
            final var onlyShow = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
                .withDescribe(false)
                .build());
    
        }
    }
    
    variables:
      # simple usage
      simple:
        fn::invoke:
          function: snowflake:getOpenflowRuntimes
          arguments: {}
      # filtering (like)
      like:
        fn::invoke:
          function: snowflake:getOpenflowRuntimes
          arguments:
            like: runtime-name
      # filtering (in)
      in:
        fn::invoke:
          function: snowflake:getOpenflowRuntimes
          arguments:
            in:
              schema: <database_name>.<schema_name>
      # filtering (starts_with)
      startsWith:
        fn::invoke:
          function: snowflake:getOpenflowRuntimes
          arguments:
            startsWith: runtime-
      # filtering (limit)
      limit:
        fn::invoke:
          function: snowflake:getOpenflowRuntimes
          arguments:
            limit:
              rows: 10
              from: runtime-name
      # without additional data (to limit the number of calls make sure to set all of these to false)
      onlyShow:
        fn::invoke:
          function: snowflake:getOpenflowRuntimes
          arguments:
            withDescribe: false
    
    pulumi {
      required_providers {
        snowflake = {
          source = "pulumi/snowflake"
        }
      }
    }
    
    data "snowflake_getopenflowruntimes" "simple" {
    }
    data "snowflake_getopenflowruntimes" "like" {
      like = "runtime-name"
    }
    data "snowflake_getopenflowruntimes" "in" {
      in = {
        schema = "<database_name>.<schema_name>"
      }
    }
    data "snowflake_getopenflowruntimes" "startsWith" {
      starts_with = "runtime-"
    }
    data "snowflake_getopenflowruntimes" "limit" {
      limit = {
        rows = 10
        from = "runtime-name"
      }
    }
    data "snowflake_getopenflowruntimes" "onlyShow" {
      with_describe = false
    }
    
    # simple usage
    # filtering (like)
    # filtering (in)
    # filtering (starts_with)
    # filtering (limit)
    # without additional data (to limit the number of calls make sure to set all of these to false)
    

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

    Using getOpenflowRuntimes

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getOpenflowRuntimes(args: GetOpenflowRuntimesArgs, opts?: InvokeOptions): Promise<GetOpenflowRuntimesResult>
    function getOpenflowRuntimesOutput(args: GetOpenflowRuntimesOutputArgs, opts?: InvokeOutputOptions): Output<GetOpenflowRuntimesResult>
    def get_openflow_runtimes(in_: Optional[GetOpenflowRuntimesIn] = None,
                              like: Optional[str] = None,
                              limit: Optional[GetOpenflowRuntimesLimit] = None,
                              starts_with: Optional[str] = None,
                              with_describe: Optional[bool] = None,
                              opts: Optional[InvokeOptions] = None) -> GetOpenflowRuntimesResult
    def get_openflow_runtimes_output(in_: pulumi.Input[Optional[GetOpenflowRuntimesInArgs]] = None,
                              like: pulumi.Input[Optional[str]] = None,
                              limit: pulumi.Input[Optional[GetOpenflowRuntimesLimitArgs]] = None,
                              starts_with: pulumi.Input[Optional[str]] = None,
                              with_describe: pulumi.Input[Optional[bool]] = None,
                              opts: Optional[InvokeOutputOptions] = None) -> Output[GetOpenflowRuntimesResult]
    func GetOpenflowRuntimes(ctx *Context, args *GetOpenflowRuntimesArgs, opts ...InvokeOption) (*GetOpenflowRuntimesResult, error)
    func GetOpenflowRuntimesOutput(ctx *Context, args *GetOpenflowRuntimesOutputArgs, opts ...InvokeOption) GetOpenflowRuntimesResultOutput

    > Note: This function is named GetOpenflowRuntimes in the Go SDK.

    public static class GetOpenflowRuntimes 
    {
        public static Task<GetOpenflowRuntimesResult> InvokeAsync(GetOpenflowRuntimesArgs args, InvokeOptions? opts = null)
        public static Output<GetOpenflowRuntimesResult> Invoke(GetOpenflowRuntimesInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetOpenflowRuntimesResult> Invoke(GetOpenflowRuntimesInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetOpenflowRuntimesResult> getOpenflowRuntimes(GetOpenflowRuntimesArgs args, InvokeOptions options)
    public static Output<GetOpenflowRuntimesResult> getOpenflowRuntimes(GetOpenflowRuntimesArgs args, InvokeOptions options)
    public static Output<GetOpenflowRuntimesResult> getOpenflowRuntimes(GetOpenflowRuntimesArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: snowflake:index/getOpenflowRuntimes:getOpenflowRuntimes
      arguments:
        # arguments dictionary
    data "snowflake_get_openflow_runtimes" "name" {
        # arguments
    }

    The following arguments are supported:

    In GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    In GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    in object
    IN clause to filter the list of objects
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit object
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    starts_with string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    in GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    in GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe boolean
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    in_ GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    like str
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    starts_with str
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    in Property Map
    IN clause to filter the list of objects
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit Property Map
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.

    getOpenflowRuntimes Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    OpenflowRuntimes List<GetOpenflowRuntimesOpenflowRuntime>
    Holds the aggregated output of all Openflow runtime details queries.
    In GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    Id string
    The provider-assigned unique ID for this managed resource.
    OpenflowRuntimes []GetOpenflowRuntimesOpenflowRuntime
    Holds the aggregated output of all Openflow runtime details queries.
    In GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    StartsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    WithDescribe bool
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    id string
    The provider-assigned unique ID for this managed resource.
    openflow_runtimes list(object)
    Holds the aggregated output of all Openflow runtime details queries.
    in object
    IN clause to filter the list of objects
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit object
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    starts_with string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    id String
    The provider-assigned unique ID for this managed resource.
    openflowRuntimes List<GetOpenflowRuntimesOpenflowRuntime>
    Holds the aggregated output of all Openflow runtime details queries.
    in GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    id string
    The provider-assigned unique ID for this managed resource.
    openflowRuntimes GetOpenflowRuntimesOpenflowRuntime[]
    Holds the aggregated output of all Openflow runtime details queries.
    in GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith string
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe boolean
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    id str
    The provider-assigned unique ID for this managed resource.
    openflow_runtimes Sequence[GetOpenflowRuntimesOpenflowRuntime]
    Holds the aggregated output of all Openflow runtime details queries.
    in_ GetOpenflowRuntimesIn
    IN clause to filter the list of objects
    like str
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowRuntimesLimit
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    starts_with str
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    with_describe bool
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
    id String
    The provider-assigned unique ID for this managed resource.
    openflowRuntimes List<Property Map>
    Holds the aggregated output of all Openflow runtime details queries.
    in Property Map
    IN clause to filter the list of objects
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit Property Map
    Limits the number of rows returned. If the limit.from is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with startsWith or like.
    startsWith String
    Filters the output with case-sensitive characters indicating the beginning of the object name.
    withDescribe Boolean
    (Default: true) Runs DESC OPENFLOW RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.

    Supporting Types

    GetOpenflowRuntimesIn

    Account bool
    Returns records for the entire account.
    Database string
    Returns records for the current database in use or for a specified database.
    Schema string
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    Account bool
    Returns records for the entire account.
    Database string
    Returns records for the current database in use or for a specified database.
    Schema string
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account bool
    Returns records for the entire account.
    database string
    Returns records for the current database in use or for a specified database.
    schema string
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account Boolean
    Returns records for the entire account.
    database String
    Returns records for the current database in use or for a specified database.
    schema String
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account boolean
    Returns records for the entire account.
    database string
    Returns records for the current database in use or for a specified database.
    schema string
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account bool
    Returns records for the entire account.
    database str
    Returns records for the current database in use or for a specified database.
    schema str
    Returns records for the current schema in use or a specified schema. Use fully qualified name.
    account Boolean
    Returns records for the entire account.
    database String
    Returns records for the current database in use or for a specified database.
    schema String
    Returns records for the current schema in use or a specified schema. Use fully qualified name.

    GetOpenflowRuntimesLimit

    Rows int
    The maximum number of rows to return.
    From string
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    Rows int
    The maximum number of rows to return.
    From string
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows number
    The maximum number of rows to return.
    from string
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows Integer
    The maximum number of rows to return.
    from String
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows number
    The maximum number of rows to return.
    from string
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows int
    The maximum number of rows to return.
    from_ str
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
    rows Number
    The maximum number of rows to return.
    from String
    Specifies a case-sensitive pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.

    GetOpenflowRuntimesOpenflowRuntime

    DescribeOutputs List<GetOpenflowRuntimesOpenflowRuntimeDescribeOutput>
    Holds the output of DESCRIBE OPENFLOW RUNTIME.
    ShowOutputs List<GetOpenflowRuntimesOpenflowRuntimeShowOutput>
    Holds the output of SHOW OPENFLOW RUNTIMES.
    DescribeOutputs []GetOpenflowRuntimesOpenflowRuntimeDescribeOutput
    Holds the output of DESCRIBE OPENFLOW RUNTIME.
    ShowOutputs []GetOpenflowRuntimesOpenflowRuntimeShowOutput
    Holds the output of SHOW OPENFLOW RUNTIMES.
    describe_outputs list(object)
    Holds the output of DESCRIBE OPENFLOW RUNTIME.
    show_outputs list(object)
    Holds the output of SHOW OPENFLOW RUNTIMES.
    describeOutputs List<GetOpenflowRuntimesOpenflowRuntimeDescribeOutput>
    Holds the output of DESCRIBE OPENFLOW RUNTIME.
    showOutputs List<GetOpenflowRuntimesOpenflowRuntimeShowOutput>
    Holds the output of SHOW OPENFLOW RUNTIMES.
    describeOutputs GetOpenflowRuntimesOpenflowRuntimeDescribeOutput[]
    Holds the output of DESCRIBE OPENFLOW RUNTIME.
    showOutputs GetOpenflowRuntimesOpenflowRuntimeShowOutput[]
    Holds the output of SHOW OPENFLOW RUNTIMES.
    describeOutputs List<Property Map>
    Holds the output of DESCRIBE OPENFLOW RUNTIME.
    showOutputs List<Property Map>
    Holds the output of SHOW OPENFLOW RUNTIMES.

    GetOpenflowRuntimesOpenflowRuntimeDescribeOutput

    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

    GetOpenflowRuntimesOpenflowRuntimeShowOutput

    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

    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