1. Registry
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. getOpenflowDeployments
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 deployments. Both Snowflake-managed and BYOC deployments are returned; the type field in showOutput distinguishes them. The results of SHOW and DESCRIBE are encapsulated in one output collection openflowDeployments.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    // simple usage
    const simple = snowflake.getOpenflowDeployments({});
    // filtering (like)
    const like = snowflake.getOpenflowDeployments({
        like: "deployment-name",
    });
    // filtering (starts_with)
    const startsWith = snowflake.getOpenflowDeployments({
        startsWith: "deployment-",
    });
    // filtering (limit)
    const limit = snowflake.getOpenflowDeployments({
        limit: {
            rows: 10,
            from: "deployment-name",
        },
    });
    // without additional data (to limit the number of calls make sure to set all of these to false)
    const onlyShow = snowflake.getOpenflowDeployments({
        withDescribe: false,
        withParameters: false,
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # simple usage
    simple = snowflake.get_openflow_deployments()
    # filtering (like)
    like = snowflake.get_openflow_deployments(like="deployment-name")
    # filtering (starts_with)
    starts_with = snowflake.get_openflow_deployments(starts_with="deployment-")
    # filtering (limit)
    limit = snowflake.get_openflow_deployments(limit={
        "rows": 10,
        "from_": "deployment-name",
    })
    # without additional data (to limit the number of calls make sure to set all of these to false)
    only_show = snowflake.get_openflow_deployments(with_describe=False,
        with_parameters=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.GetOpenflowDeployments(ctx, &snowflake.GetOpenflowDeploymentsArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (like)
    		_, err = snowflake.GetOpenflowDeployments(ctx, &snowflake.GetOpenflowDeploymentsArgs{
    			Like: pulumi.StringRef("deployment-name"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (starts_with)
    		_, err = snowflake.GetOpenflowDeployments(ctx, &snowflake.GetOpenflowDeploymentsArgs{
    			StartsWith: pulumi.StringRef("deployment-"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (limit)
    		_, err = snowflake.GetOpenflowDeployments(ctx, &snowflake.GetOpenflowDeploymentsArgs{
    			Limit: snowflake.GetOpenflowDeploymentsLimit{
    				Rows: 10,
    				From: pulumi.StringRef("deployment-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.GetOpenflowDeployments(ctx, &snowflake.GetOpenflowDeploymentsArgs{
    			WithDescribe:   pulumi.BoolRef(false),
    			WithParameters: 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.GetOpenflowDeployments.Invoke();
    
        // filtering (like)
        var like = Snowflake.GetOpenflowDeployments.Invoke(new()
        {
            Like = "deployment-name",
        });
    
        // filtering (starts_with)
        var startsWith = Snowflake.GetOpenflowDeployments.Invoke(new()
        {
            StartsWith = "deployment-",
        });
    
        // filtering (limit)
        var limit = Snowflake.GetOpenflowDeployments.Invoke(new()
        {
            Limit = new Snowflake.Inputs.GetOpenflowDeploymentsLimitInputArgs
            {
                Rows = 10,
                From = "deployment-name",
            },
        });
    
        // without additional data (to limit the number of calls make sure to set all of these to false)
        var onlyShow = Snowflake.GetOpenflowDeployments.Invoke(new()
        {
            WithDescribe = false,
            WithParameters = 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.GetOpenflowDeploymentsArgs;
    import com.pulumi.snowflake.inputs.GetOpenflowDeploymentsLimitArgs;
    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.getOpenflowDeployments(GetOpenflowDeploymentsArgs.builder()
                .build());
    
            // filtering (like)
            final var like = SnowflakeFunctions.getOpenflowDeployments(GetOpenflowDeploymentsArgs.builder()
                .like("deployment-name")
                .build());
    
            // filtering (starts_with)
            final var startsWith = SnowflakeFunctions.getOpenflowDeployments(GetOpenflowDeploymentsArgs.builder()
                .startsWith("deployment-")
                .build());
    
            // filtering (limit)
            final var limit = SnowflakeFunctions.getOpenflowDeployments(GetOpenflowDeploymentsArgs.builder()
                .limit(GetOpenflowDeploymentsLimitArgs.builder()
                    .rows(10)
                    .from("deployment-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.getOpenflowDeployments(GetOpenflowDeploymentsArgs.builder()
                .withDescribe(false)
                .withParameters(false)
                .build());
    
        }
    }
    
    variables:
      # simple usage
      simple:
        fn::invoke:
          function: snowflake:getOpenflowDeployments
          arguments: {}
      # filtering (like)
      like:
        fn::invoke:
          function: snowflake:getOpenflowDeployments
          arguments:
            like: deployment-name
      # filtering (starts_with)
      startsWith:
        fn::invoke:
          function: snowflake:getOpenflowDeployments
          arguments:
            startsWith: deployment-
      # filtering (limit)
      limit:
        fn::invoke:
          function: snowflake:getOpenflowDeployments
          arguments:
            limit:
              rows: 10
              from: deployment-name
      # without additional data (to limit the number of calls make sure to set all of these to false)
      onlyShow:
        fn::invoke:
          function: snowflake:getOpenflowDeployments
          arguments:
            withDescribe: false
            withParameters: false
    
    pulumi {
      required_providers {
        snowflake = {
          source = "pulumi/snowflake"
        }
      }
    }
    
    data "snowflake_getopenflowdeployments" "simple" {
    }
    data "snowflake_getopenflowdeployments" "like" {
      like = "deployment-name"
    }
    data "snowflake_getopenflowdeployments" "startsWith" {
      starts_with = "deployment-"
    }
    data "snowflake_getopenflowdeployments" "limit" {
      limit = {
        rows = 10
        from = "deployment-name"
      }
    }
    data "snowflake_getopenflowdeployments" "onlyShow" {
      with_describe   = false
      with_parameters = false
    }
    
    # simple usage
    # filtering (like)
    # 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 getOpenflowDeployments

    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 getOpenflowDeployments(args: GetOpenflowDeploymentsArgs, opts?: InvokeOptions): Promise<GetOpenflowDeploymentsResult>
    function getOpenflowDeploymentsOutput(args: GetOpenflowDeploymentsOutputArgs, opts?: InvokeOutputOptions): Output<GetOpenflowDeploymentsResult>
    def get_openflow_deployments(like: Optional[str] = None,
                                 limit: Optional[GetOpenflowDeploymentsLimit] = None,
                                 starts_with: Optional[str] = None,
                                 with_describe: Optional[bool] = None,
                                 with_parameters: Optional[bool] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetOpenflowDeploymentsResult
    def get_openflow_deployments_output(like: pulumi.Input[Optional[str]] = None,
                                 limit: pulumi.Input[Optional[GetOpenflowDeploymentsLimitArgs]] = None,
                                 starts_with: pulumi.Input[Optional[str]] = None,
                                 with_describe: pulumi.Input[Optional[bool]] = None,
                                 with_parameters: pulumi.Input[Optional[bool]] = None,
                                 opts: Optional[InvokeOutputOptions] = None) -> Output[GetOpenflowDeploymentsResult]
    func GetOpenflowDeployments(ctx *Context, args *GetOpenflowDeploymentsArgs, opts ...InvokeOption) (*GetOpenflowDeploymentsResult, error)
    func GetOpenflowDeploymentsOutput(ctx *Context, args *GetOpenflowDeploymentsOutputArgs, opts ...InvokeOption) GetOpenflowDeploymentsResultOutput

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

    public static class GetOpenflowDeployments 
    {
        public static Task<GetOpenflowDeploymentsResult> InvokeAsync(GetOpenflowDeploymentsArgs args, InvokeOptions? opts = null)
        public static Output<GetOpenflowDeploymentsResult> Invoke(GetOpenflowDeploymentsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetOpenflowDeploymentsResult> Invoke(GetOpenflowDeploymentsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetOpenflowDeploymentsResult> getOpenflowDeployments(GetOpenflowDeploymentsArgs args, InvokeOptions options)
    public static Output<GetOpenflowDeploymentsResult> getOpenflowDeployments(GetOpenflowDeploymentsArgs args, InvokeOptions options)
    public static Output<GetOpenflowDeploymentsResult> getOpenflowDeployments(GetOpenflowDeploymentsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: snowflake:index/getOpenflowDeployments:getOpenflowDeployments
      arguments:
        # arguments dictionary
    data "snowflake_get_openflow_deployments" "name" {
        # arguments
    }

    The following arguments are supported:

    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    WithParameters bool
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    WithParameters bool
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    with_parameters bool
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters Boolean
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters boolean
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    like str
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    with_parameters bool
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters Boolean
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.

    getOpenflowDeployments Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    OpenflowDeployments List<GetOpenflowDeploymentsOpenflowDeployment>
    Holds the aggregated output of all Openflow deployment details queries.
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    WithParameters bool
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    Id string
    The provider-assigned unique ID for this managed resource.
    OpenflowDeployments []GetOpenflowDeploymentsOpenflowDeployment
    Holds the aggregated output of all Openflow deployment details queries.
    Like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    Limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    WithParameters bool
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    id string
    The provider-assigned unique ID for this managed resource.
    openflow_deployments list(object)
    Holds the aggregated output of all Openflow deployment details queries.
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    with_parameters bool
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    id String
    The provider-assigned unique ID for this managed resource.
    openflowDeployments List<GetOpenflowDeploymentsOpenflowDeployment>
    Holds the aggregated output of all Openflow deployment details queries.
    like String
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters Boolean
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    id string
    The provider-assigned unique ID for this managed resource.
    openflowDeployments GetOpenflowDeploymentsOpenflowDeployment[]
    Holds the aggregated output of all Openflow deployment details queries.
    like string
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters boolean
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    id str
    The provider-assigned unique ID for this managed resource.
    openflow_deployments Sequence[GetOpenflowDeploymentsOpenflowDeployment]
    Holds the aggregated output of all Openflow deployment details queries.
    like str
    Filters the output with case-insensitive pattern, with support for SQL wildcard characters (% and _).
    limit GetOpenflowDeploymentsLimit
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    with_parameters bool
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.
    id String
    The provider-assigned unique ID for this managed resource.
    openflowDeployments List<Property Map>
    Holds the aggregated output of all Openflow deployment details queries.
    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 DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output of describe is saved to the description field. By default this value is set to true.
    withParameters Boolean
    (Default: true) Runs SHOW PARAMETERS IN OPENFLOW DEPLOYMENT for each deployment returned by SHOW OPENFLOW DEPLOYMENTS. The output is saved to the parameters field. By default this value is set to true.

    Supporting Types

    GetOpenflowDeploymentsLimit

    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.

    GetOpenflowDeploymentsOpenflowDeployment

    DescribeOutputs List<GetOpenflowDeploymentsOpenflowDeploymentDescribeOutput>
    Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
    Parameters List<GetOpenflowDeploymentsOpenflowDeploymentParameter>
    Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
    ShowOutputs List<GetOpenflowDeploymentsOpenflowDeploymentShowOutput>
    Holds the output of SHOW OPENFLOW DEPLOYMENTS.
    DescribeOutputs []GetOpenflowDeploymentsOpenflowDeploymentDescribeOutput
    Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
    Parameters []GetOpenflowDeploymentsOpenflowDeploymentParameter
    Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
    ShowOutputs []GetOpenflowDeploymentsOpenflowDeploymentShowOutput
    Holds the output of SHOW OPENFLOW DEPLOYMENTS.
    describe_outputs list(object)
    Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
    parameters list(object)
    Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
    show_outputs list(object)
    Holds the output of SHOW OPENFLOW DEPLOYMENTS.
    describeOutputs List<GetOpenflowDeploymentsOpenflowDeploymentDescribeOutput>
    Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
    parameters List<GetOpenflowDeploymentsOpenflowDeploymentParameter>
    Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
    showOutputs List<GetOpenflowDeploymentsOpenflowDeploymentShowOutput>
    Holds the output of SHOW OPENFLOW DEPLOYMENTS.
    describeOutputs GetOpenflowDeploymentsOpenflowDeploymentDescribeOutput[]
    Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
    parameters GetOpenflowDeploymentsOpenflowDeploymentParameter[]
    Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
    showOutputs GetOpenflowDeploymentsOpenflowDeploymentShowOutput[]
    Holds the output of SHOW OPENFLOW DEPLOYMENTS.
    describe_outputs Sequence[GetOpenflowDeploymentsOpenflowDeploymentDescribeOutput]
    Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
    parameters Sequence[GetOpenflowDeploymentsOpenflowDeploymentParameter]
    Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
    show_outputs Sequence[GetOpenflowDeploymentsOpenflowDeploymentShowOutput]
    Holds the output of SHOW OPENFLOW DEPLOYMENTS.
    describeOutputs List<Property Map>
    Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
    parameters List<Property Map>
    Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
    showOutputs List<Property Map>
    Holds the output of SHOW OPENFLOW DEPLOYMENTS.

    GetOpenflowDeploymentsOpenflowDeploymentDescribeOutput

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

    GetOpenflowDeploymentsOpenflowDeploymentParameter

    GetOpenflowDeploymentsOpenflowDeploymentParameterEventTable

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

    GetOpenflowDeploymentsOpenflowDeploymentShowOutput

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

    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