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 runtimes. The results of SHOW and DESCRIBE are encapsulated in one output collection openflowRuntimes.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as snowflake from "@pulumi/snowflake";
// simple usage
const simple = snowflake.getOpenflowRuntimes({});
// filtering (like)
const like = snowflake.getOpenflowRuntimes({
like: "runtime-name",
});
// filtering (in)
const _in = snowflake.getOpenflowRuntimes({
"in": {
schema: "<database_name>.<schema_name>",
},
});
// filtering (starts_with)
const startsWith = snowflake.getOpenflowRuntimes({
startsWith: "runtime-",
});
// filtering (limit)
const limit = snowflake.getOpenflowRuntimes({
limit: {
rows: 10,
from: "runtime-name",
},
});
// without additional data (to limit the number of calls make sure to set all of these to false)
const onlyShow = snowflake.getOpenflowRuntimes({
withDescribe: false,
});
import pulumi
import pulumi_snowflake as snowflake
# simple usage
simple = snowflake.get_openflow_runtimes()
# filtering (like)
like = snowflake.get_openflow_runtimes(like="runtime-name")
# filtering (in)
in_ = snowflake.get_openflow_runtimes(in_={
"schema": "<database_name>.<schema_name>",
})
# filtering (starts_with)
starts_with = snowflake.get_openflow_runtimes(starts_with="runtime-")
# filtering (limit)
limit = snowflake.get_openflow_runtimes(limit={
"rows": 10,
"from_": "runtime-name",
})
# without additional data (to limit the number of calls make sure to set all of these to false)
only_show = snowflake.get_openflow_runtimes(with_describe=False)
package main
import (
"github.com/pulumi/pulumi-snowflake/sdk/v2/go/snowflake"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// simple usage
_, err := snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{}, nil)
if err != nil {
return err
}
// filtering (like)
_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
Like: pulumi.StringRef("runtime-name"),
}, nil)
if err != nil {
return err
}
// filtering (in)
_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
In: snowflake.GetOpenflowRuntimesIn{
Schema: pulumi.StringRef("<database_name>.<schema_name>"),
},
}, nil)
if err != nil {
return err
}
// filtering (starts_with)
_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
StartsWith: pulumi.StringRef("runtime-"),
}, nil)
if err != nil {
return err
}
// filtering (limit)
_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
Limit: snowflake.GetOpenflowRuntimesLimit{
Rows: 10,
From: pulumi.StringRef("runtime-name"),
},
}, nil)
if err != nil {
return err
}
// without additional data (to limit the number of calls make sure to set all of these to false)
_, err = snowflake.GetOpenflowRuntimes(ctx, &snowflake.GetOpenflowRuntimesArgs{
WithDescribe: pulumi.BoolRef(false),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Snowflake = Pulumi.Snowflake;
return await Deployment.RunAsync(() =>
{
// simple usage
var simple = Snowflake.GetOpenflowRuntimes.Invoke();
// filtering (like)
var like = Snowflake.GetOpenflowRuntimes.Invoke(new()
{
Like = "runtime-name",
});
// filtering (in)
var @in = Snowflake.GetOpenflowRuntimes.Invoke(new()
{
In = new Snowflake.Inputs.GetOpenflowRuntimesInInputArgs
{
Schema = "<database_name>.<schema_name>",
},
});
// filtering (starts_with)
var startsWith = Snowflake.GetOpenflowRuntimes.Invoke(new()
{
StartsWith = "runtime-",
});
// filtering (limit)
var limit = Snowflake.GetOpenflowRuntimes.Invoke(new()
{
Limit = new Snowflake.Inputs.GetOpenflowRuntimesLimitInputArgs
{
Rows = 10,
From = "runtime-name",
},
});
// without additional data (to limit the number of calls make sure to set all of these to false)
var onlyShow = Snowflake.GetOpenflowRuntimes.Invoke(new()
{
WithDescribe = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.SnowflakeFunctions;
import com.pulumi.snowflake.inputs.GetOpenflowRuntimesArgs;
import com.pulumi.snowflake.inputs.GetOpenflowRuntimesInArgs;
import com.pulumi.snowflake.inputs.GetOpenflowRuntimesLimitArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// simple usage
final var simple = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
.build());
// filtering (like)
final var like = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
.like("runtime-name")
.build());
// filtering (in)
final var in = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
.in(GetOpenflowRuntimesInArgs.builder()
.schema("<database_name>.<schema_name>")
.build())
.build());
// filtering (starts_with)
final var startsWith = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
.startsWith("runtime-")
.build());
// filtering (limit)
final var limit = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
.limit(GetOpenflowRuntimesLimitArgs.builder()
.rows(10)
.from("runtime-name")
.build())
.build());
// without additional data (to limit the number of calls make sure to set all of these to false)
final var onlyShow = SnowflakeFunctions.getOpenflowRuntimes(GetOpenflowRuntimesArgs.builder()
.withDescribe(false)
.build());
}
}
variables:
# simple usage
simple:
fn::invoke:
function: snowflake:getOpenflowRuntimes
arguments: {}
# filtering (like)
like:
fn::invoke:
function: snowflake:getOpenflowRuntimes
arguments:
like: runtime-name
# filtering (in)
in:
fn::invoke:
function: snowflake:getOpenflowRuntimes
arguments:
in:
schema: <database_name>.<schema_name>
# filtering (starts_with)
startsWith:
fn::invoke:
function: snowflake:getOpenflowRuntimes
arguments:
startsWith: runtime-
# filtering (limit)
limit:
fn::invoke:
function: snowflake:getOpenflowRuntimes
arguments:
limit:
rows: 10
from: runtime-name
# without additional data (to limit the number of calls make sure to set all of these to false)
onlyShow:
fn::invoke:
function: snowflake:getOpenflowRuntimes
arguments:
withDescribe: false
pulumi {
required_providers {
snowflake = {
source = "pulumi/snowflake"
}
}
}
data "snowflake_getopenflowruntimes" "simple" {
}
data "snowflake_getopenflowruntimes" "like" {
like = "runtime-name"
}
data "snowflake_getopenflowruntimes" "in" {
in = {
schema = "<database_name>.<schema_name>"
}
}
data "snowflake_getopenflowruntimes" "startsWith" {
starts_with = "runtime-"
}
data "snowflake_getopenflowruntimes" "limit" {
limit = {
rows = 10
from = "runtime-name"
}
}
data "snowflake_getopenflowruntimes" "onlyShow" {
with_describe = false
}
# simple usage
# filtering (like)
# filtering (in)
# filtering (starts_with)
# filtering (limit)
# without additional data (to limit the number of calls make sure to set all of these to false)
Note If a field has a default value, it is shown next to the type in the schema.
Using getOpenflowRuntimes
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getOpenflowRuntimes(args: GetOpenflowRuntimesArgs, opts?: InvokeOptions): Promise<GetOpenflowRuntimesResult>
function getOpenflowRuntimesOutput(args: GetOpenflowRuntimesOutputArgs, opts?: InvokeOutputOptions): Output<GetOpenflowRuntimesResult>def get_openflow_runtimes(in_: Optional[GetOpenflowRuntimesIn] = None,
like: Optional[str] = None,
limit: Optional[GetOpenflowRuntimesLimit] = None,
starts_with: Optional[str] = None,
with_describe: Optional[bool] = None,
opts: Optional[InvokeOptions] = None) -> GetOpenflowRuntimesResult
def get_openflow_runtimes_output(in_: pulumi.Input[Optional[GetOpenflowRuntimesInArgs]] = None,
like: pulumi.Input[Optional[str]] = None,
limit: pulumi.Input[Optional[GetOpenflowRuntimesLimitArgs]] = None,
starts_with: pulumi.Input[Optional[str]] = None,
with_describe: pulumi.Input[Optional[bool]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetOpenflowRuntimesResult]func GetOpenflowRuntimes(ctx *Context, args *GetOpenflowRuntimesArgs, opts ...InvokeOption) (*GetOpenflowRuntimesResult, error)
func GetOpenflowRuntimesOutput(ctx *Context, args *GetOpenflowRuntimesOutputArgs, opts ...InvokeOption) GetOpenflowRuntimesResultOutput> Note: This function is named GetOpenflowRuntimes in the Go SDK.
public static class GetOpenflowRuntimes
{
public static Task<GetOpenflowRuntimesResult> InvokeAsync(GetOpenflowRuntimesArgs args, InvokeOptions? opts = null)
public static Output<GetOpenflowRuntimesResult> Invoke(GetOpenflowRuntimesInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetOpenflowRuntimesResult> Invoke(GetOpenflowRuntimesInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetOpenflowRuntimesResult> getOpenflowRuntimes(GetOpenflowRuntimesArgs args, InvokeOptions options)
public static Output<GetOpenflowRuntimesResult> getOpenflowRuntimes(GetOpenflowRuntimesArgs args, InvokeOptions options)
public static Output<GetOpenflowRuntimesResult> getOpenflowRuntimes(GetOpenflowRuntimesArgs args, InvokeOutputOptions options)
fn::invoke:
function: snowflake:index/getOpenflowRuntimes:getOpenflowRuntimes
arguments:
# arguments dictionarydata "snowflake_get_openflow_runtimes" "name" {
# arguments
}The following arguments are supported:
- In
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- In
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- in object
- IN clause to filter the list of objects
- like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%and_). - limit object
- Limits the number of rows returned. If the
limit.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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- in
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- in
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- in_
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- in Property Map
- IN clause to filter the list of objects
- like String
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%and_). - limit Property Map
- Limits the number of rows returned. If the
limit.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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
getOpenflowRuntimes Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Openflow
Runtimes List<GetOpenflow Runtimes Openflow Runtime> - Holds the aggregated output of all Openflow runtime details queries.
- In
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- Id string
- The provider-assigned unique ID for this managed resource.
- Openflow
Runtimes []GetOpenflow Runtimes Openflow Runtime - Holds the aggregated output of all Openflow runtime details queries.
- In
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- id string
- The provider-assigned unique ID for this managed resource.
- openflow_
runtimes list(object) - Holds the aggregated output of all Openflow runtime details queries.
- in object
- IN clause to filter the list of objects
- like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%and_). - limit object
- Limits the number of rows returned. If the
limit.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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- id String
- The provider-assigned unique ID for this managed resource.
- openflow
Runtimes List<GetOpenflow Runtimes Openflow Runtime> - Holds the aggregated output of all Openflow runtime details queries.
- in
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- id string
- The provider-assigned unique ID for this managed resource.
- openflow
Runtimes GetOpenflow Runtimes Openflow Runtime[] - Holds the aggregated output of all Openflow runtime details queries.
- in
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- id str
- The provider-assigned unique ID for this managed resource.
- openflow_
runtimes Sequence[GetOpenflow Runtimes Openflow Runtime] - Holds the aggregated output of all Openflow runtime details queries.
- in_
Get
Openflow Runtimes 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 Runtimes 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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
- id String
- The provider-assigned unique ID for this managed resource.
- openflow
Runtimes List<Property Map> - Holds the aggregated output of all Openflow runtime details queries.
- in Property Map
- IN clause to filter the list of objects
- like String
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%and_). - limit Property Map
- Limits the number of rows returned. If the
limit.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 RUNTIME for each runtime returned by SHOW OPENFLOW RUNTIMES. The output of describe is saved to the description field. By default this value is set to true.
Supporting Types
GetOpenflowRuntimesIn
GetOpenflowRuntimesLimit
GetOpenflowRuntimesOpenflowRuntime
- Describe
Outputs List<GetOpenflow Runtimes Openflow Runtime Describe Output> - Holds the output of DESCRIBE OPENFLOW RUNTIME.
- Show
Outputs List<GetOpenflow Runtimes Openflow Runtime Show Output> - Holds the output of SHOW OPENFLOW RUNTIMES.
- Describe
Outputs []GetOpenflow Runtimes Openflow Runtime Describe Output - Holds the output of DESCRIBE OPENFLOW RUNTIME.
- Show
Outputs []GetOpenflow Runtimes Openflow Runtime Show Output - Holds the output of SHOW OPENFLOW RUNTIMES.
- describe_
outputs list(object) - Holds the output of DESCRIBE OPENFLOW RUNTIME.
- show_
outputs list(object) - Holds the output of SHOW OPENFLOW RUNTIMES.
- describe
Outputs List<GetOpenflow Runtimes Openflow Runtime Describe Output> - Holds the output of DESCRIBE OPENFLOW RUNTIME.
- show
Outputs List<GetOpenflow Runtimes Openflow Runtime Show Output> - Holds the output of SHOW OPENFLOW RUNTIMES.
- describe
Outputs GetOpenflow Runtimes Openflow Runtime Describe Output[] - Holds the output of DESCRIBE OPENFLOW RUNTIME.
- show
Outputs GetOpenflow Runtimes Openflow Runtime Show Output[] - Holds the output of SHOW OPENFLOW RUNTIMES.
- describe_
outputs Sequence[GetOpenflow Runtimes Openflow Runtime Describe Output] - Holds the output of DESCRIBE OPENFLOW RUNTIME.
- show_
outputs Sequence[GetOpenflow Runtimes Openflow Runtime Show Output] - Holds the output of SHOW OPENFLOW RUNTIMES.
- describe
Outputs List<Property Map> - Holds the output of DESCRIBE OPENFLOW RUNTIME.
- show
Outputs List<Property Map> - Holds the output of SHOW OPENFLOW RUNTIMES.
GetOpenflowRuntimesOpenflowRuntimeDescribeOutput
- Comment string
- Deployment string
- Display
Name string - Execute
As stringRole - External
Access List<string>Integrations - Initially
Suspended bool - Key string
- Max
Nodes int - Min
Nodes int - Name string
- Node
Type string - Node
Type stringTier - Owner string
- Server
Url string - Status string
- Comment string
- Deployment string
- Display
Name string - Execute
As stringRole - External
Access []stringIntegrations - Initially
Suspended bool - Key string
- Max
Nodes int - Min
Nodes int - Name string
- Node
Type string - Node
Type stringTier - Owner string
- Server
Url string - Status string
- comment string
- deployment string
- display_
name string - execute_
as_ stringrole - external_
access_ list(string)integrations - initially_
suspended bool - key string
- max_
nodes number - min_
nodes number - name string
- node_
type string - node_
type_ stringtier - owner string
- server_
url string - status string
- comment String
- deployment String
- display
Name String - execute
As StringRole - external
Access List<String>Integrations - initially
Suspended Boolean - key String
- max
Nodes Integer - min
Nodes Integer - name String
- node
Type String - node
Type StringTier - owner String
- server
Url String - status String
- comment string
- deployment string
- display
Name string - execute
As stringRole - external
Access string[]Integrations - initially
Suspended boolean - key string
- max
Nodes number - min
Nodes number - name string
- node
Type string - node
Type stringTier - owner string
- server
Url string - status string
- comment str
- deployment str
- display_
name str - execute_
as_ strrole - external_
access_ Sequence[str]integrations - initially_
suspended bool - key str
- max_
nodes int - min_
nodes int - name str
- node_
type str - node_
type_ strtier - owner str
- server_
url str - status str
- comment String
- deployment String
- display
Name String - execute
As StringRole - external
Access List<String>Integrations - initially
Suspended Boolean - key String
- max
Nodes Number - min
Nodes Number - name String
- node
Type String - node
Type StringTier - owner String
- server
Url String - status String
GetOpenflowRuntimesOpenflowRuntimeShowOutput
- Comment string
- Created
On string - Database
Name string - Deployment string
- Display
Name string - Execute
As stringRole - External
Access List<string>Integrations - Initially
Suspended bool - Key string
- Max
Nodes int - Min
Nodes int - Name string
- Node
Type string - Owner string
- Schema
Name string - Status string
- Updated
On string
- Comment string
- Created
On string - Database
Name string - Deployment string
- Display
Name string - Execute
As stringRole - External
Access []stringIntegrations - Initially
Suspended bool - Key string
- Max
Nodes int - Min
Nodes int - Name string
- Node
Type string - Owner string
- Schema
Name string - Status string
- Updated
On string
- comment string
- created_
on string - database_
name string - deployment string
- display_
name string - execute_
as_ stringrole - external_
access_ list(string)integrations - initially_
suspended bool - key string
- max_
nodes number - min_
nodes number - name string
- node_
type string - owner string
- schema_
name string - status string
- updated_
on string
- comment String
- created
On String - database
Name String - deployment String
- display
Name String - execute
As StringRole - external
Access List<String>Integrations - initially
Suspended Boolean - key String
- max
Nodes Integer - min
Nodes Integer - name String
- node
Type String - owner String
- schema
Name String - status String
- updated
On String
- comment string
- created
On string - database
Name string - deployment string
- display
Name string - execute
As stringRole - external
Access string[]Integrations - initially
Suspended boolean - key string
- max
Nodes number - min
Nodes number - name string
- node
Type string - owner string
- schema
Name string - status string
- updated
On string
- comment str
- created_
on str - database_
name str - deployment str
- display_
name str - execute_
as_ strrole - external_
access_ Sequence[str]integrations - initially_
suspended bool - key str
- max_
nodes int - min_
nodes int - name str
- node_
type str - owner str
- schema_
name str - status str
- updated_
on str
- comment String
- created
On String - database
Name String - deployment String
- display
Name String - execute
As StringRole - external
Access List<String>Integrations - initially
Suspended Boolean - key String
- max
Nodes Number - min
Nodes Number - name String
- node
Type String - owner 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