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 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 dictionarydata "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
Get
Openflow Deployments 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 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
Get
Openflow Deployments 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 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 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 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
Get
Openflow Deployments 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 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 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
Get
Openflow Deployments 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 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 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
Get
Openflow Deployments 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 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.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 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 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.
- Openflow
Deployments List<GetOpenflow Deployments Openflow Deployment> - 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
Get
Openflow Deployments 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 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.
- Openflow
Deployments []GetOpenflow Deployments Openflow Deployment - 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
Get
Openflow Deployments 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 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.
- 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.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 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.
- openflow
Deployments List<GetOpenflow Deployments Openflow Deployment> - 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
Get
Openflow Deployments 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 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 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.
- openflow
Deployments GetOpenflow Deployments Openflow Deployment[] - 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
Get
Openflow Deployments 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 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 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[GetOpenflow Deployments Openflow Deployment] - 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
Get
Openflow Deployments 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 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.
- openflow
Deployments 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.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 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 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
GetOpenflowDeploymentsOpenflowDeployment
- Describe
Outputs List<GetOpenflow Deployments Openflow Deployment Describe Output> - Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
- Parameters
List<Get
Openflow Deployments Openflow Deployment Parameter> - Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
- Show
Outputs List<GetOpenflow Deployments Openflow Deployment Show Output> - Holds the output of SHOW OPENFLOW DEPLOYMENTS.
- Describe
Outputs []GetOpenflow Deployments Openflow Deployment Describe Output - Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
- Parameters
[]Get
Openflow Deployments Openflow Deployment Parameter - Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
- Show
Outputs []GetOpenflow Deployments Openflow Deployment Show Output - 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.
- describe
Outputs List<GetOpenflow Deployments Openflow Deployment Describe Output> - Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
- parameters
List<Get
Openflow Deployments Openflow Deployment Parameter> - Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
- show
Outputs List<GetOpenflow Deployments Openflow Deployment Show Output> - Holds the output of SHOW OPENFLOW DEPLOYMENTS.
- describe
Outputs GetOpenflow Deployments Openflow Deployment Describe Output[] - Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
- parameters
Get
Openflow Deployments Openflow Deployment Parameter[] - Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
- show
Outputs GetOpenflow Deployments Openflow Deployment Show Output[] - Holds the output of SHOW OPENFLOW DEPLOYMENTS.
- describe_
outputs Sequence[GetOpenflow Deployments Openflow Deployment Describe Output] - Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
- parameters
Sequence[Get
Openflow Deployments Openflow Deployment Parameter] - Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
- show_
outputs Sequence[GetOpenflow Deployments Openflow Deployment Show Output] - Holds the output of SHOW OPENFLOW DEPLOYMENTS.
- describe
Outputs List<Property Map> - Holds the output of DESCRIBE OPENFLOW DEPLOYMENT.
- parameters List<Property Map>
- Holds the output of SHOW PARAMETERS IN OPENFLOW DEPLOYMENT.
- show
Outputs List<Property Map> - Holds the output of SHOW OPENFLOW DEPLOYMENTS.
GetOpenflowDeploymentsOpenflowDeploymentDescribeOutput
- Comment string
- Custom
Ingress stringHostname - Display
Name string - Key string
- Name string
- Owner string
- Status string
- Type string
- Use
Private boolLink - Use
User boolAuth Over Private Link - Vpc
Type string
- Comment string
- Custom
Ingress stringHostname - Display
Name string - Key string
- Name string
- Owner string
- Status string
- Type string
- Use
Private boolLink - Use
User boolAuth Over Private Link - Vpc
Type string
- comment string
- custom_
ingress_ stringhostname - display_
name string - key string
- name string
- owner string
- status string
- type string
- use_
private_ boollink - use_
user_ boolauth_ over_ private_ link - vpc_
type string
- comment String
- custom
Ingress StringHostname - display
Name String - key String
- name String
- owner String
- status String
- type String
- use
Private BooleanLink - use
User BooleanAuth Over Private Link - vpc
Type String
- comment string
- custom
Ingress stringHostname - display
Name string - key string
- name string
- owner string
- status string
- type string
- use
Private booleanLink - use
User booleanAuth Over Private Link - vpc
Type string
- comment str
- custom_
ingress_ strhostname - display_
name str - key str
- name str
- owner str
- status str
- type str
- use_
private_ boollink - use_
user_ boolauth_ over_ private_ link - vpc_
type str
- comment String
- custom
Ingress StringHostname - display
Name String - key String
- name String
- owner String
- status String
- type String
- use
Private BooleanLink - use
User BooleanAuth Over Private Link - vpc
Type 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 str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetOpenflowDeploymentsOpenflowDeploymentShowOutput
- Comment string
- Created
On string - Custom
Ingress stringHostname - Display
Name string - Key string
- Name string
- Owner string
- Status string
- Type string
- Updated
On string - Use
Private boolLink - Use
User boolAuth Over Private Link - Vpc
Type string
- Comment string
- Created
On string - Custom
Ingress stringHostname - Display
Name string - Key string
- Name string
- Owner string
- Status string
- Type string
- Updated
On string - Use
Private boolLink - Use
User boolAuth Over Private Link - Vpc
Type string
- comment string
- created_
on string - custom_
ingress_ stringhostname - display_
name string - key string
- name string
- owner string
- status string
- type string
- updated_
on string - use_
private_ boollink - use_
user_ boolauth_ over_ private_ link - vpc_
type string
- comment String
- created
On String - custom
Ingress StringHostname - display
Name String - key String
- name String
- owner String
- status String
- type String
- updated
On String - use
Private BooleanLink - use
User BooleanAuth Over Private Link - vpc
Type String
- comment string
- created
On string - custom
Ingress stringHostname - display
Name string - key string
- name string
- owner string
- status string
- type string
- updated
On string - use
Private booleanLink - use
User booleanAuth Over Private Link - vpc
Type string
- comment str
- created_
on str - custom_
ingress_ strhostname - display_
name str - key str
- name str
- owner str
- status str
- type str
- updated_
on str - use_
private_ boollink - use_
user_ boolauth_ over_ private_ link - vpc_
type str
- comment String
- created
On String - custom
Ingress StringHostname - display
Name String - key String
- name String
- owner String
- status String
- type String
- updated
On String - use
Private BooleanLink - use
User BooleanAuth Over Private Link - vpc
Type 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