published on Friday, Sep 11, 2026 by Pulumi
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
previewFeaturesEnabledfield 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 dictionarydata "snowflake_get_openflow_connectors" "name" {
# arguments
}The following arguments are supported:
- In
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - 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
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - 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 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.fromis 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 withstartsWithorlike. - 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
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe 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
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe 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_
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - 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.fromis 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 withstartsWithorlike. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe 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.
- Openflow
Connectors List<GetOpenflow Connectors Openflow Connector> - Holds the aggregated output of all Openflow connector details queries.
- In
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - 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.
- Openflow
Connectors []GetOpenflow Connectors Openflow Connector - Holds the aggregated output of all Openflow connector details queries.
- In
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - 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.
- 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.fromis 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 withstartsWithorlike. - 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.
- openflow
Connectors List<GetOpenflow Connectors Openflow Connector> - Holds the aggregated output of all Openflow connector details queries.
- in
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe 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.
- openflow
Connectors GetOpenflow Connectors Openflow Connector[] - Holds the aggregated output of all Openflow connector details queries.
- in
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe 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[GetOpenflow Connectors Openflow Connector] - Holds the aggregated output of all Openflow connector details queries.
- in_
Get
Openflow Connectors In - 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
Get
Openflow Connectors Limit - Limits the number of rows returned. If the
limit.fromis 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 withstartsWithorlike. - 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.
- openflow
Connectors 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.fromis 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 withstartsWithorlike. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe 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
GetOpenflowConnectorsLimit
GetOpenflowConnectorsOpenflowConnector
- Describe
Outputs List<GetOpenflow Connectors Openflow Connector Describe Output> - Holds the output of DESCRIBE OPENFLOW CONNECTOR.
- Show
Outputs List<GetOpenflow Connectors Openflow Connector Show Output> - Holds the output of SHOW OPENFLOW CONNECTORS.
- Describe
Outputs []GetOpenflow Connectors Openflow Connector Describe Output - Holds the output of DESCRIBE OPENFLOW CONNECTOR.
- Show
Outputs []GetOpenflow Connectors Openflow Connector Show Output - 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.
- describe
Outputs List<GetOpenflow Connectors Openflow Connector Describe Output> - Holds the output of DESCRIBE OPENFLOW CONNECTOR.
- show
Outputs List<GetOpenflow Connectors Openflow Connector Show Output> - Holds the output of SHOW OPENFLOW CONNECTORS.
- describe
Outputs GetOpenflow Connectors Openflow Connector Describe Output[] - Holds the output of DESCRIBE OPENFLOW CONNECTOR.
- show
Outputs GetOpenflow Connectors Openflow Connector Show Output[] - Holds the output of SHOW OPENFLOW CONNECTORS.
- describe_
outputs Sequence[GetOpenflow Connectors Openflow Connector Describe Output] - Holds the output of DESCRIBE OPENFLOW CONNECTOR.
- show_
outputs Sequence[GetOpenflow Connectors Openflow Connector Show Output] - Holds the output of SHOW OPENFLOW CONNECTORS.
- describe
Outputs List<Property Map> - Holds the output of DESCRIBE OPENFLOW CONNECTOR.
- show
Outputs List<Property Map> - Holds the output of SHOW OPENFLOW CONNECTORS.
GetOpenflowConnectorsOpenflowConnectorDescribeOutput
- Comment string
- Connector
Definition string - Connector
Url string - Default
Version string - Default
Version stringAlias - Default
Version stringGit Commit Hash - Default
Version stringLocation Uri - Default
Version stringName - Default
Version stringSource Location Uri - Display
Name string - Last
Version stringAlias - Last
Version stringGit Commit Hash - Last
Version stringLocation Uri - Last
Version stringName - Last
Version stringSource Location Uri - Live
Version stringLocation Uri - Name string
- Owner string
- Runtime string
- Status string
- Comment string
- Connector
Definition string - Connector
Url string - Default
Version string - Default
Version stringAlias - Default
Version stringGit Commit Hash - Default
Version stringLocation Uri - Default
Version stringName - Default
Version stringSource Location Uri - Display
Name string - Last
Version stringAlias - Last
Version stringGit Commit Hash - Last
Version stringLocation Uri - Last
Version stringName - Last
Version stringSource Location Uri - Live
Version stringLocation Uri - Name string
- Owner string
- Runtime string
- Status string
- comment string
- connector_
definition string - connector_
url string - default_
version string - default_
version_ stringalias - default_
version_ stringgit_ commit_ hash - default_
version_ stringlocation_ uri - default_
version_ stringname - default_
version_ stringsource_ location_ uri - display_
name string - last_
version_ stringalias - last_
version_ stringgit_ commit_ hash - last_
version_ stringlocation_ uri - last_
version_ stringname - last_
version_ stringsource_ location_ uri - live_
version_ stringlocation_ uri - name string
- owner string
- runtime string
- status string
- comment String
- connector
Definition String - connector
Url String - default
Version String - default
Version StringAlias - default
Version StringGit Commit Hash - default
Version StringLocation Uri - default
Version StringName - default
Version StringSource Location Uri - display
Name String - last
Version StringAlias - last
Version StringGit Commit Hash - last
Version StringLocation Uri - last
Version StringName - last
Version StringSource Location Uri - live
Version StringLocation Uri - name String
- owner String
- runtime String
- status String
- comment string
- connector
Definition string - connector
Url string - default
Version string - default
Version stringAlias - default
Version stringGit Commit Hash - default
Version stringLocation Uri - default
Version stringName - default
Version stringSource Location Uri - display
Name string - last
Version stringAlias - last
Version stringGit Commit Hash - last
Version stringLocation Uri - last
Version stringName - last
Version stringSource Location Uri - live
Version stringLocation Uri - name string
- owner string
- runtime string
- status string
- comment str
- connector_
definition str - connector_
url str - default_
version str - default_
version_ stralias - default_
version_ strgit_ commit_ hash - default_
version_ strlocation_ uri - default_
version_ strname - default_
version_ strsource_ location_ uri - display_
name str - last_
version_ stralias - last_
version_ strgit_ commit_ hash - last_
version_ strlocation_ uri - last_
version_ strname - last_
version_ strsource_ location_ uri - live_
version_ strlocation_ uri - name str
- owner str
- runtime str
- status str
- comment String
- connector
Definition String - connector
Url String - default
Version String - default
Version StringAlias - default
Version StringGit Commit Hash - default
Version StringLocation Uri - default
Version StringName - default
Version StringSource Location Uri - display
Name String - last
Version StringAlias - last
Version StringGit Commit Hash - last
Version StringLocation Uri - last
Version StringName - last
Version StringSource Location Uri - live
Version StringLocation Uri - name String
- owner String
- runtime String
- status String
GetOpenflowConnectorsOpenflowConnectorShowOutput
- Comment string
- Connector
Definition string - Connector
Url string - Created
On string - Database
Name string - Default
Version string - Default
Version stringAlias - Default
Version stringLocation Uri - Default
Version stringName - Default
Version stringSource Location Uri - Display
Name string - Live
Version stringLocation Uri - Name string
- Owner string
- Runtime string
- Schema
Name string - Status string
- Updated
On string
- Comment string
- Connector
Definition string - Connector
Url string - Created
On string - Database
Name string - Default
Version string - Default
Version stringAlias - Default
Version stringLocation Uri - Default
Version stringName - Default
Version stringSource Location Uri - Display
Name string - Live
Version stringLocation Uri - Name string
- Owner string
- Runtime string
- Schema
Name string - Status string
- Updated
On string
- comment string
- connector_
definition string - connector_
url string - created_
on string - database_
name string - default_
version string - default_
version_ stringalias - default_
version_ stringlocation_ uri - default_
version_ stringname - default_
version_ stringsource_ location_ uri - display_
name string - live_
version_ stringlocation_ uri - name string
- owner string
- runtime string
- schema_
name string - status string
- updated_
on string
- comment String
- connector
Definition String - connector
Url String - created
On String - database
Name String - default
Version String - default
Version StringAlias - default
Version StringLocation Uri - default
Version StringName - default
Version StringSource Location Uri - display
Name String - live
Version StringLocation Uri - name String
- owner String
- runtime String
- schema
Name String - status String
- updated
On String
- comment string
- connector
Definition string - connector
Url string - created
On string - database
Name string - default
Version string - default
Version stringAlias - default
Version stringLocation Uri - default
Version stringName - default
Version stringSource Location Uri - display
Name string - live
Version stringLocation Uri - name string
- owner string
- runtime string
- schema
Name string - status string
- updated
On string
- comment str
- connector_
definition str - connector_
url str - created_
on str - database_
name str - default_
version str - default_
version_ stralias - default_
version_ strlocation_ uri - default_
version_ strname - default_
version_ strsource_ location_ uri - display_
name str - live_
version_ strlocation_ uri - name str
- owner str
- runtime str
- schema_
name str - status str
- updated_
on str
- comment String
- connector
Definition String - connector
Url String - created
On String - database
Name String - default
Version String - default
Version StringAlias - default
Version StringLocation Uri - default
Version StringName - default
Version StringSource Location Uri - display
Name String - live
Version StringLocation Uri - name String
- owner String
- runtime String
- schema
Name String - status String
- updated
On String
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflakeTerraform Provider.
published on Friday, Sep 11, 2026 by Pulumi