1. Registry
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. getOpenflowConnectors
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 connectors. Filtering is aligned with the current possibilities for SHOW OPENFLOW CONNECTORS. The results of SHOW and DESCRIBE are encapsulated in one output collection openflowConnectors.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    // simple usage
    const simple = snowflake.getOpenflowConnectors({});
    // filtering (like)
    const like = snowflake.getOpenflowConnectors({
        like: "connector-name",
    });
    // filtering (in)
    const _in = snowflake.getOpenflowConnectors({
        "in": {
            schema: "<database_name>.<schema_name>",
        },
    });
    // filtering (starts_with)
    const startsWith = snowflake.getOpenflowConnectors({
        startsWith: "connector-",
    });
    // filtering (limit)
    const limit = snowflake.getOpenflowConnectors({
        limit: {
            rows: 10,
            from: "connector-name",
        },
    });
    // without additional data (to limit the number of calls make sure to set all of these to false)
    const onlyShow = snowflake.getOpenflowConnectors({
        withDescribe: false,
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # simple usage
    simple = snowflake.get_openflow_connectors()
    # filtering (like)
    like = snowflake.get_openflow_connectors(like="connector-name")
    # filtering (in)
    in_ = snowflake.get_openflow_connectors(in_={
        "schema": "<database_name>.<schema_name>",
    })
    # filtering (starts_with)
    starts_with = snowflake.get_openflow_connectors(starts_with="connector-")
    # filtering (limit)
    limit = snowflake.get_openflow_connectors(limit={
        "rows": 10,
        "from_": "connector-name",
    })
    # without additional data (to limit the number of calls make sure to set all of these to false)
    only_show = snowflake.get_openflow_connectors(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.GetOpenflowConnectors(ctx, &snowflake.GetOpenflowConnectorsArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (like)
    		_, err = snowflake.GetOpenflowConnectors(ctx, &snowflake.GetOpenflowConnectorsArgs{
    			Like: pulumi.StringRef("connector-name"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (in)
    		_, err = snowflake.GetOpenflowConnectors(ctx, &snowflake.GetOpenflowConnectorsArgs{
    			In: snowflake.GetOpenflowConnectorsIn{
    				Schema: pulumi.StringRef("<database_name>.<schema_name>"),
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (starts_with)
    		_, err = snowflake.GetOpenflowConnectors(ctx, &snowflake.GetOpenflowConnectorsArgs{
    			StartsWith: pulumi.StringRef("connector-"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// filtering (limit)
    		_, err = snowflake.GetOpenflowConnectors(ctx, &snowflake.GetOpenflowConnectorsArgs{
    			Limit: snowflake.GetOpenflowConnectorsLimit{
    				Rows: 10,
    				From: pulumi.StringRef("connector-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.GetOpenflowConnectors(ctx, &snowflake.GetOpenflowConnectorsArgs{
    			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.GetOpenflowConnectors.Invoke();
    
        // filtering (like)
        var like = Snowflake.GetOpenflowConnectors.Invoke(new()
        {
            Like = "connector-name",
        });
    
        // filtering (in)
        var @in = Snowflake.GetOpenflowConnectors.Invoke(new()
        {
            In = new Snowflake.Inputs.GetOpenflowConnectorsInInputArgs
            {
                Schema = "<database_name>.<schema_name>",
            },
        });
    
        // filtering (starts_with)
        var startsWith = Snowflake.GetOpenflowConnectors.Invoke(new()
        {
            StartsWith = "connector-",
        });
    
        // filtering (limit)
        var limit = Snowflake.GetOpenflowConnectors.Invoke(new()
        {
            Limit = new Snowflake.Inputs.GetOpenflowConnectorsLimitInputArgs
            {
                Rows = 10,
                From = "connector-name",
            },
        });
    
        // without additional data (to limit the number of calls make sure to set all of these to false)
        var onlyShow = Snowflake.GetOpenflowConnectors.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.GetOpenflowConnectorsArgs;
    import com.pulumi.snowflake.inputs.GetOpenflowConnectorsInArgs;
    import com.pulumi.snowflake.inputs.GetOpenflowConnectorsLimitArgs;
    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.getOpenflowConnectors(GetOpenflowConnectorsArgs.builder()
                .build());
    
            // filtering (like)
            final var like = SnowflakeFunctions.getOpenflowConnectors(GetOpenflowConnectorsArgs.builder()
                .like("connector-name")
                .build());
    
            // filtering (in)
            final var in = SnowflakeFunctions.getOpenflowConnectors(GetOpenflowConnectorsArgs.builder()
                .in(GetOpenflowConnectorsInArgs.builder()
                    .schema("<database_name>.<schema_name>")
                    .build())
                .build());
    
            // filtering (starts_with)
            final var startsWith = SnowflakeFunctions.getOpenflowConnectors(GetOpenflowConnectorsArgs.builder()
                .startsWith("connector-")
                .build());
    
            // filtering (limit)
            final var limit = SnowflakeFunctions.getOpenflowConnectors(GetOpenflowConnectorsArgs.builder()
                .limit(GetOpenflowConnectorsLimitArgs.builder()
                    .rows(10)
                    .from("connector-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.getOpenflowConnectors(GetOpenflowConnectorsArgs.builder()
                .withDescribe(false)
                .build());
    
        }
    }
    
    variables:
      # simple usage
      simple:
        fn::invoke:
          function: snowflake:getOpenflowConnectors
          arguments: {}
      # filtering (like)
      like:
        fn::invoke:
          function: snowflake:getOpenflowConnectors
          arguments:
            like: connector-name
      # filtering (in)
      in:
        fn::invoke:
          function: snowflake:getOpenflowConnectors
          arguments:
            in:
              schema: <database_name>.<schema_name>
      # filtering (starts_with)
      startsWith:
        fn::invoke:
          function: snowflake:getOpenflowConnectors
          arguments:
            startsWith: connector-
      # filtering (limit)
      limit:
        fn::invoke:
          function: snowflake:getOpenflowConnectors
          arguments:
            limit:
              rows: 10
              from: connector-name
      # without additional data (to limit the number of calls make sure to set all of these to false)
      onlyShow:
        fn::invoke:
          function: snowflake:getOpenflowConnectors
          arguments:
            withDescribe: false
    
    pulumi {
      required_providers {
        snowflake = {
          source = "pulumi/snowflake"
        }
      }
    }
    
    data "snowflake_getopenflowconnectors" "simple" {
    }
    data "snowflake_getopenflowconnectors" "like" {
      like = "connector-name"
    }
    data "snowflake_getopenflowconnectors" "in" {
      in = {
        schema = "<database_name>.<schema_name>"
      }
    }
    data "snowflake_getopenflowconnectors" "startsWith" {
      starts_with = "connector-"
    }
    data "snowflake_getopenflowconnectors" "limit" {
      limit = {
        rows = 10
        from = "connector-name"
      }
    }
    data "snowflake_getopenflowconnectors" "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 getOpenflowConnectors

    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 getOpenflowConnectors(args: GetOpenflowConnectorsArgs, opts?: InvokeOptions): Promise<GetOpenflowConnectorsResult>
    function getOpenflowConnectorsOutput(args: GetOpenflowConnectorsOutputArgs, opts?: InvokeOutputOptions): Output<GetOpenflowConnectorsResult>
    def get_openflow_connectors(in_: Optional[GetOpenflowConnectorsIn] = None,
                                like: Optional[str] = None,
                                limit: Optional[GetOpenflowConnectorsLimit] = None,
                                starts_with: Optional[str] = None,
                                with_describe: Optional[bool] = None,
                                opts: Optional[InvokeOptions] = None) -> GetOpenflowConnectorsResult
    def get_openflow_connectors_output(in_: pulumi.Input[Optional[GetOpenflowConnectorsInArgs]] = None,
                                like: pulumi.Input[Optional[str]] = None,
                                limit: pulumi.Input[Optional[GetOpenflowConnectorsLimitArgs]] = None,
                                starts_with: pulumi.Input[Optional[str]] = None,
                                with_describe: pulumi.Input[Optional[bool]] = None,
                                opts: Optional[InvokeOutputOptions] = None) -> Output[GetOpenflowConnectorsResult]
    func GetOpenflowConnectors(ctx *Context, args *GetOpenflowConnectorsArgs, opts ...InvokeOption) (*GetOpenflowConnectorsResult, error)
    func GetOpenflowConnectorsOutput(ctx *Context, args *GetOpenflowConnectorsOutputArgs, opts ...InvokeOption) GetOpenflowConnectorsResultOutput

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

    public static class GetOpenflowConnectors 
    {
        public static Task<GetOpenflowConnectorsResult> InvokeAsync(GetOpenflowConnectorsArgs args, InvokeOptions? opts = null)
        public static Output<GetOpenflowConnectorsResult> Invoke(GetOpenflowConnectorsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetOpenflowConnectorsResult> Invoke(GetOpenflowConnectorsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetOpenflowConnectorsResult> getOpenflowConnectors(GetOpenflowConnectorsArgs args, InvokeOptions options)
    public static Output<GetOpenflowConnectorsResult> getOpenflowConnectors(GetOpenflowConnectorsArgs args, InvokeOptions options)
    public static Output<GetOpenflowConnectorsResult> getOpenflowConnectors(GetOpenflowConnectorsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: snowflake:index/getOpenflowConnectors:getOpenflowConnectors
      arguments:
        # arguments dictionary
    data "snowflake_get_openflow_connectors" "name" {
        # arguments
    }

    The following arguments are supported:

    In GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. The output of describe is saved to the description field. By default this value is set to true.
    In GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. 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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. The output of describe is saved to the description field. By default this value is set to true.
    in GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. The output of describe is saved to the description field. By default this value is set to true.
    in GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. The output of describe is saved to the description field. By default this value is set to true.
    in_ GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. 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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. The output of describe is saved to the description field. By default this value is set to true.

    getOpenflowConnectors Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    OpenflowConnectors List<GetOpenflowConnectorsOpenflowConnector>
    Holds the aggregated output of all Openflow connector details queries.
    In GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. 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.
    OpenflowConnectors []GetOpenflowConnectorsOpenflowConnector
    Holds the aggregated output of all Openflow connector details queries.
    In GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. 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_connectors list(object)
    Holds the aggregated output of all Openflow connector 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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. 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.
    openflowConnectors List<GetOpenflowConnectorsOpenflowConnector>
    Holds the aggregated output of all Openflow connector details queries.
    in GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. 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.
    openflowConnectors GetOpenflowConnectorsOpenflowConnector[]
    Holds the aggregated output of all Openflow connector details queries.
    in GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. 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_connectors Sequence[GetOpenflowConnectorsOpenflowConnector]
    Holds the aggregated output of all Openflow connector details queries.
    in_ GetOpenflowConnectorsIn
    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 GetOpenflowConnectorsLimit
    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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. 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.
    openflowConnectors List<Property Map>
    Holds the aggregated output of all Openflow connector 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 CONNECTOR for each connector returned by SHOW OPENFLOW CONNECTORS. The output of describe is saved to the description field. By default this value is set to true.

    Supporting Types

    GetOpenflowConnectorsIn

    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.

    GetOpenflowConnectorsLimit

    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.

    GetOpenflowConnectorsOpenflowConnector

    DescribeOutputs List<GetOpenflowConnectorsOpenflowConnectorDescribeOutput>
    Holds the output of DESCRIBE OPENFLOW CONNECTOR.
    ShowOutputs List<GetOpenflowConnectorsOpenflowConnectorShowOutput>
    Holds the output of SHOW OPENFLOW CONNECTORS.
    DescribeOutputs []GetOpenflowConnectorsOpenflowConnectorDescribeOutput
    Holds the output of DESCRIBE OPENFLOW CONNECTOR.
    ShowOutputs []GetOpenflowConnectorsOpenflowConnectorShowOutput
    Holds the output of SHOW OPENFLOW CONNECTORS.
    describe_outputs list(object)
    Holds the output of DESCRIBE OPENFLOW CONNECTOR.
    show_outputs list(object)
    Holds the output of SHOW OPENFLOW CONNECTORS.
    describeOutputs List<GetOpenflowConnectorsOpenflowConnectorDescribeOutput>
    Holds the output of DESCRIBE OPENFLOW CONNECTOR.
    showOutputs List<GetOpenflowConnectorsOpenflowConnectorShowOutput>
    Holds the output of SHOW OPENFLOW CONNECTORS.
    describeOutputs GetOpenflowConnectorsOpenflowConnectorDescribeOutput[]
    Holds the output of DESCRIBE OPENFLOW CONNECTOR.
    showOutputs GetOpenflowConnectorsOpenflowConnectorShowOutput[]
    Holds the output of SHOW OPENFLOW CONNECTORS.
    describeOutputs List<Property Map>
    Holds the output of DESCRIBE OPENFLOW CONNECTOR.
    showOutputs List<Property Map>
    Holds the output of SHOW OPENFLOW CONNECTORS.

    GetOpenflowConnectorsOpenflowConnectorDescribeOutput

    GetOpenflowConnectorsOpenflowConnectorShowOutput

    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