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.
Note Every mutating statement is asynchronous and the provider waits for the deployment to settle before returning, so applies take minutes rather than seconds. If you encounter timeout errors, use a
timeoutsblock to set higher limits for your environment.
Resource used to manage Snowflake-managed Openflow deployments. A deployment is the account-level container that Openflow runtimes are created in. Snowflake runs it, so creation is complete once the deployment reaches the ACTIVE state, which takes several minutes. For more information, check Openflow deployment documentation.
Example Usage
Note Instead of using fully_qualified_name, you can reference objects managed outside Terraform by constructing a correct ID, consult identifiers guide.
import * as pulumi from "@pulumi/pulumi";
import * as snowflake from "@pulumi/snowflake";
// basic resource
const basic = new snowflake.OpenflowDeploymentSnowflakeManaged("basic", {name: "my_deployment"});
// with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
const withTimeouts = new snowflake.OpenflowDeploymentSnowflakeManaged("with_timeouts", {name: "my_deployment"});
// complete resource
const complete = new snowflake.OpenflowDeploymentSnowflakeManaged("complete", {
name: "my_deployment_complete",
displayName: "My deployment",
eventTable: "\"<database_name>\".\"<schema_name>\".\"<event_table_name>\"",
comment: "Managed by Terraform.",
});
import pulumi
import pulumi_snowflake as snowflake
# basic resource
basic = snowflake.OpenflowDeploymentSnowflakeManaged("basic", name="my_deployment")
# with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
with_timeouts = snowflake.OpenflowDeploymentSnowflakeManaged("with_timeouts", name="my_deployment")
# complete resource
complete = snowflake.OpenflowDeploymentSnowflakeManaged("complete",
name="my_deployment_complete",
display_name="My deployment",
event_table="\"<database_name>\".\"<schema_name>\".\"<event_table_name>\"",
comment="Managed by Terraform.")
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 {
// basic resource
_, err := snowflake.NewOpenflowDeploymentSnowflakeManaged(ctx, "basic", &snowflake.OpenflowDeploymentSnowflakeManagedArgs{
Name: pulumi.String("my_deployment"),
})
if err != nil {
return err
}
// with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
_, err = snowflake.NewOpenflowDeploymentSnowflakeManaged(ctx, "with_timeouts", &snowflake.OpenflowDeploymentSnowflakeManagedArgs{
Name: pulumi.String("my_deployment"),
})
if err != nil {
return err
}
// complete resource
_, err = snowflake.NewOpenflowDeploymentSnowflakeManaged(ctx, "complete", &snowflake.OpenflowDeploymentSnowflakeManagedArgs{
Name: pulumi.String("my_deployment_complete"),
DisplayName: pulumi.String("My deployment"),
EventTable: pulumi.String("\"<database_name>\".\"<schema_name>\".\"<event_table_name>\""),
Comment: pulumi.String("Managed by Terraform."),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Snowflake = Pulumi.Snowflake;
return await Deployment.RunAsync(() =>
{
// basic resource
var basic = new Snowflake.OpenflowDeploymentSnowflakeManaged("basic", new()
{
Name = "my_deployment",
});
// with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
var withTimeouts = new Snowflake.OpenflowDeploymentSnowflakeManaged("with_timeouts", new()
{
Name = "my_deployment",
});
// complete resource
var complete = new Snowflake.OpenflowDeploymentSnowflakeManaged("complete", new()
{
Name = "my_deployment_complete",
DisplayName = "My deployment",
EventTable = "\"<database_name>\".\"<schema_name>\".\"<event_table_name>\"",
Comment = "Managed by Terraform.",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.OpenflowDeploymentSnowflakeManaged;
import com.pulumi.snowflake.OpenflowDeploymentSnowflakeManagedArgs;
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) {
// basic resource
var basic = new OpenflowDeploymentSnowflakeManaged("basic", OpenflowDeploymentSnowflakeManagedArgs.builder()
.name("my_deployment")
.build());
// with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
var withTimeouts = new OpenflowDeploymentSnowflakeManaged("withTimeouts", OpenflowDeploymentSnowflakeManagedArgs.builder()
.name("my_deployment")
.build());
// complete resource
var complete = new OpenflowDeploymentSnowflakeManaged("complete", OpenflowDeploymentSnowflakeManagedArgs.builder()
.name("my_deployment_complete")
.displayName("My deployment")
.eventTable("\"<database_name>\".\"<schema_name>\".\"<event_table_name>\"")
.comment("Managed by Terraform.")
.build());
}
}
resources:
# basic resource
basic:
type: snowflake:OpenflowDeploymentSnowflakeManaged
properties:
name: my_deployment
# with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
withTimeouts:
type: snowflake:OpenflowDeploymentSnowflakeManaged
name: with_timeouts
properties:
name: my_deployment
# complete resource
complete:
type: snowflake:OpenflowDeploymentSnowflakeManaged
properties:
name: my_deployment_complete
displayName: My deployment
eventTable: '"<database_name>"."<schema_name>"."<event_table_name>"'
comment: Managed by Terraform.
pulumi {
required_providers {
snowflake = {
source = "pulumi/snowflake"
}
}
}
# basic resource
resource "snowflake_openflowdeploymentsnowflakemanaged" "basic" {
name = "my_deployment"
}
# with custom timeouts (provisioning a deployment takes considerably longer than the defaults allow)
resource "snowflake_openflowdeploymentsnowflakemanaged" "with_timeouts" {
name = "my_deployment"
}
# complete resource
resource "snowflake_openflowdeploymentsnowflakemanaged" "complete" {
name = "my_deployment_complete"
display_name = "My deployment"
event_table = "\"<database_name>\".\"<schema_name>\".\"<event_table_name>\""
comment = "Managed by Terraform."
}
Note If a field has a default value, it is shown next to the type in the schema.
Create OpenflowDeploymentSnowflakeManaged Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpenflowDeploymentSnowflakeManaged(name: string, args?: OpenflowDeploymentSnowflakeManagedArgs, opts?: CustomResourceOptions);@overload
def OpenflowDeploymentSnowflakeManaged(resource_name: str,
args: Optional[OpenflowDeploymentSnowflakeManagedArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def OpenflowDeploymentSnowflakeManaged(resource_name: str,
opts: Optional[ResourceOptions] = None,
comment: Optional[str] = None,
display_name: Optional[str] = None,
event_table: Optional[str] = None,
name: Optional[str] = None)func NewOpenflowDeploymentSnowflakeManaged(ctx *Context, name string, args *OpenflowDeploymentSnowflakeManagedArgs, opts ...ResourceOption) (*OpenflowDeploymentSnowflakeManaged, error)public OpenflowDeploymentSnowflakeManaged(string name, OpenflowDeploymentSnowflakeManagedArgs? args = null, CustomResourceOptions? opts = null)
public OpenflowDeploymentSnowflakeManaged(String name, OpenflowDeploymentSnowflakeManagedArgs args)
public OpenflowDeploymentSnowflakeManaged(String name, OpenflowDeploymentSnowflakeManagedArgs args, CustomResourceOptions options)
type: snowflake:OpenflowDeploymentSnowflakeManaged
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "snowflake_openflow_deployment_snowflake_managed" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OpenflowDeploymentSnowflakeManagedArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OpenflowDeploymentSnowflakeManagedArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OpenflowDeploymentSnowflakeManagedArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpenflowDeploymentSnowflakeManagedArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpenflowDeploymentSnowflakeManagedArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var openflowDeploymentSnowflakeManagedResource = new Snowflake.OpenflowDeploymentSnowflakeManaged("openflowDeploymentSnowflakeManagedResource", new()
{
Comment = "string",
DisplayName = "string",
EventTable = "string",
Name = "string",
});
example, err := snowflake.NewOpenflowDeploymentSnowflakeManaged(ctx, "openflowDeploymentSnowflakeManagedResource", &snowflake.OpenflowDeploymentSnowflakeManagedArgs{
Comment: pulumi.String("string"),
DisplayName: pulumi.String("string"),
EventTable: pulumi.String("string"),
Name: pulumi.String("string"),
})
resource "snowflake_openflow_deployment_snowflake_managed" "openflowDeploymentSnowflakeManagedResource" {
lifecycle {
create_before_destroy = true
}
comment = "string"
display_name = "string"
event_table = "string"
name = "string"
}
var openflowDeploymentSnowflakeManagedResource = new OpenflowDeploymentSnowflakeManaged("openflowDeploymentSnowflakeManagedResource", OpenflowDeploymentSnowflakeManagedArgs.builder()
.comment("string")
.displayName("string")
.eventTable("string")
.name("string")
.build());
openflow_deployment_snowflake_managed_resource = snowflake.OpenflowDeploymentSnowflakeManaged("openflowDeploymentSnowflakeManagedResource",
comment="string",
display_name="string",
event_table="string",
name="string")
const openflowDeploymentSnowflakeManagedResource = new snowflake.OpenflowDeploymentSnowflakeManaged("openflowDeploymentSnowflakeManagedResource", {
comment: "string",
displayName: "string",
eventTable: "string",
name: "string",
});
type: snowflake:OpenflowDeploymentSnowflakeManaged
properties:
comment: string
displayName: string
eventTable: string
name: string
OpenflowDeploymentSnowflakeManaged Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The OpenflowDeploymentSnowflakeManaged resource accepts the following input properties:
- Comment string
- Specifies a comment for the Openflow deployment.
- Display
Name string - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- Event
Table string - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- Name string
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- Comment string
- Specifies a comment for the Openflow deployment.
- Display
Name string - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- Event
Table string - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- Name string
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- comment string
- Specifies a comment for the Openflow deployment.
- display_
name string - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event_
table string - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- name string
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- comment String
- Specifies a comment for the Openflow deployment.
- display
Name String - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event
Table String - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- name String
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- comment string
- Specifies a comment for the Openflow deployment.
- display
Name string - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event
Table string - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- name string
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- comment str
- Specifies a comment for the Openflow deployment.
- display_
name str - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event_
table str - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- name str
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
- comment String
- Specifies a comment for the Openflow deployment.
- display
Name String - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event
Table String - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- name String
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,".
Outputs
All input properties are implicitly available as output properties. Additionally, the OpenflowDeploymentSnowflakeManaged resource produces the following output properties:
- Describe
Outputs List<OpenflowDeployment Snowflake Managed Describe Output> - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parameters
List<Openflow
Deployment Snowflake Managed Parameter> - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - Show
Outputs List<OpenflowDeployment Snowflake Managed Show Output> - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - Type string
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- Describe
Outputs []OpenflowDeployment Snowflake Managed Describe Output - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parameters
[]Openflow
Deployment Snowflake Managed Parameter - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - Show
Outputs []OpenflowDeployment Snowflake Managed Show Output - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - Type string
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- describe_
outputs list(object) - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - fully_
qualified_ stringname - Fully qualified name of the resource. For more information, see object name resolution.
- id string
- The provider-assigned unique ID for this managed resource.
- parameters list(object)
- Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show_
outputs list(object) - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type string
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- describe
Outputs List<OpenflowDeployment Snowflake Managed Describe Output> - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- parameters
List<Openflow
Deployment Snowflake Managed Parameter> - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show
Outputs List<OpenflowDeployment Snowflake Managed Show Output> - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type String
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- describe
Outputs OpenflowDeployment Snowflake Managed Describe Output[] - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- id string
- The provider-assigned unique ID for this managed resource.
- parameters
Openflow
Deployment Snowflake Managed Parameter[] - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show
Outputs OpenflowDeployment Snowflake Managed Show Output[] - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type string
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- describe_
outputs Sequence[OpenflowDeployment Snowflake Managed Describe Output] - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- id str
- The provider-assigned unique ID for this managed resource.
- parameters
Sequence[Openflow
Deployment Snowflake Managed Parameter] - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show_
outputs Sequence[OpenflowDeployment Snowflake Managed Show Output] - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type str
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- parameters List<Property Map>
- Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show
Outputs List<Property Map> - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type String
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
Look up Existing OpenflowDeploymentSnowflakeManaged Resource
Get an existing OpenflowDeploymentSnowflakeManaged resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OpenflowDeploymentSnowflakeManagedState, opts?: CustomResourceOptions): OpenflowDeploymentSnowflakeManaged@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
comment: Optional[str] = None,
describe_outputs: Optional[Sequence[OpenflowDeploymentSnowflakeManagedDescribeOutputArgs]] = None,
display_name: Optional[str] = None,
event_table: Optional[str] = None,
fully_qualified_name: Optional[str] = None,
name: Optional[str] = None,
parameters: Optional[Sequence[OpenflowDeploymentSnowflakeManagedParameterArgs]] = None,
show_outputs: Optional[Sequence[OpenflowDeploymentSnowflakeManagedShowOutputArgs]] = None,
type: Optional[str] = None) -> OpenflowDeploymentSnowflakeManagedfunc GetOpenflowDeploymentSnowflakeManaged(ctx *Context, name string, id IDInput, state *OpenflowDeploymentSnowflakeManagedState, opts ...ResourceOption) (*OpenflowDeploymentSnowflakeManaged, error)public static OpenflowDeploymentSnowflakeManaged Get(string name, Input<string> id, OpenflowDeploymentSnowflakeManagedState? state, CustomResourceOptions? opts = null)public static OpenflowDeploymentSnowflakeManaged get(String name, Output<String> id, OpenflowDeploymentSnowflakeManagedState state, CustomResourceOptions options)resources: _: type: snowflake:OpenflowDeploymentSnowflakeManaged get: id: ${id}import {
to = snowflake_openflow_deployment_snowflake_managed.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Comment string
- Specifies a comment for the Openflow deployment.
- Describe
Outputs List<OpenflowDeployment Snowflake Managed Describe Output> - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - Display
Name string - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- Event
Table string - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Name string
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Parameters
List<Openflow
Deployment Snowflake Managed Parameter> - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - Show
Outputs List<OpenflowDeployment Snowflake Managed Show Output> - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - Type string
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- Comment string
- Specifies a comment for the Openflow deployment.
- Describe
Outputs []OpenflowDeployment Snowflake Managed Describe Output Args - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - Display
Name string - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- Event
Table string - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Name string
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Parameters
[]Openflow
Deployment Snowflake Managed Parameter Args - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - Show
Outputs []OpenflowDeployment Snowflake Managed Show Output Args - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - Type string
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- comment string
- Specifies a comment for the Openflow deployment.
- describe_
outputs list(object) - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - display_
name string - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event_
table string - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- fully_
qualified_ stringname - Fully qualified name of the resource. For more information, see object name resolution.
- name string
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters list(object)
- Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show_
outputs list(object) - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type string
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- comment String
- Specifies a comment for the Openflow deployment.
- describe
Outputs List<OpenflowDeployment Snowflake Managed Describe Output> - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - display
Name String - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event
Table String - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- name String
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters
List<Openflow
Deployment Snowflake Managed Parameter> - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show
Outputs List<OpenflowDeployment Snowflake Managed Show Output> - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type String
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- comment string
- Specifies a comment for the Openflow deployment.
- describe
Outputs OpenflowDeployment Snowflake Managed Describe Output[] - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - display
Name string - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event
Table string - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- name string
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters
Openflow
Deployment Snowflake Managed Parameter[] - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show
Outputs OpenflowDeployment Snowflake Managed Show Output[] - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type string
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- comment str
- Specifies a comment for the Openflow deployment.
- describe_
outputs Sequence[OpenflowDeployment Snowflake Managed Describe Output Args] - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - display_
name str - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event_
table str - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- name str
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters
Sequence[Openflow
Deployment Snowflake Managed Parameter Args] - Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show_
outputs Sequence[OpenflowDeployment Snowflake Managed Show Output Args] - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type str
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
- comment String
- Specifies a comment for the Openflow deployment.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE OPENFLOW DEPLOYMENTfor the given deployment. - display
Name String - A free-text alias for the deployment. Shown in the Openflow UI in place of the deployment's identifier when set.
- event
Table String - Fully qualified name of an event table the deployment logs to. For more information, check EVENT_TABLE documentation.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- name String
- Specifies the identifier for the Openflow deployment; must be unique for the account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - parameters List<Property Map>
- Outputs the result of
SHOW PARAMETERS IN OPENFLOW DEPLOYMENTfor the given deployment. - show
Outputs List<Property Map> - Outputs the result of
SHOW OPENFLOW DEPLOYMENTSfor the given deployment. - type String
- Specifies the type of the Openflow deployment. This field is used to detect when the deployment type was changed outside of Terraform and to recreate the resource when that happens.
Supporting Types
OpenflowDeploymentSnowflakeManagedDescribeOutput, OpenflowDeploymentSnowflakeManagedDescribeOutputArgs
- 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
OpenflowDeploymentSnowflakeManagedParameter, OpenflowDeploymentSnowflakeManagedParameterArgs
OpenflowDeploymentSnowflakeManagedParameterEventTable, OpenflowDeploymentSnowflakeManagedParameterEventTableArgs
- 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
OpenflowDeploymentSnowflakeManagedShowOutput, OpenflowDeploymentSnowflakeManagedShowOutputArgs
- 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
Import
$ pulumi import snowflake:index/openflowDeploymentSnowflakeManaged:OpenflowDeploymentSnowflakeManaged example '"<deployment_name>"'
To learn more about importing existing cloud resources, see Importing resources.
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