1. Packages
  2. Snowflake Provider
  3. API Docs
  4. Streamlit
Snowflake v1.2.0 published on Monday, Apr 14, 2025 by Pulumi

snowflake.Streamlit

Explore with Pulumi AI

Import

$ pulumi import snowflake:index/streamlit:Streamlit example '"<database_name>"."<schema_name>"."<streamlit_name>"'
Copy

Create Streamlit Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Streamlit(name: string, args: StreamlitArgs, opts?: CustomResourceOptions);
@overload
def Streamlit(resource_name: str,
              args: StreamlitArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def Streamlit(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              database: Optional[str] = None,
              main_file: Optional[str] = None,
              schema: Optional[str] = None,
              stage: Optional[str] = None,
              comment: Optional[str] = None,
              directory_location: Optional[str] = None,
              external_access_integrations: Optional[Sequence[str]] = None,
              name: Optional[str] = None,
              query_warehouse: Optional[str] = None,
              title: Optional[str] = None)
func NewStreamlit(ctx *Context, name string, args StreamlitArgs, opts ...ResourceOption) (*Streamlit, error)
public Streamlit(string name, StreamlitArgs args, CustomResourceOptions? opts = null)
public Streamlit(String name, StreamlitArgs args)
public Streamlit(String name, StreamlitArgs args, CustomResourceOptions options)
type: snowflake:Streamlit
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StreamlitArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StreamlitArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StreamlitArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StreamlitArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StreamlitArgs
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 streamlitResource = new Snowflake.Streamlit("streamlitResource", new()
{
    Database = "string",
    MainFile = "string",
    Schema = "string",
    Stage = "string",
    Comment = "string",
    DirectoryLocation = "string",
    ExternalAccessIntegrations = new[]
    {
        "string",
    },
    Name = "string",
    QueryWarehouse = "string",
    Title = "string",
});
Copy
example, err := snowflake.NewStreamlit(ctx, "streamlitResource", &snowflake.StreamlitArgs{
	Database:          pulumi.String("string"),
	MainFile:          pulumi.String("string"),
	Schema:            pulumi.String("string"),
	Stage:             pulumi.String("string"),
	Comment:           pulumi.String("string"),
	DirectoryLocation: pulumi.String("string"),
	ExternalAccessIntegrations: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name:           pulumi.String("string"),
	QueryWarehouse: pulumi.String("string"),
	Title:          pulumi.String("string"),
})
Copy
var streamlitResource = new Streamlit("streamlitResource", StreamlitArgs.builder()
    .database("string")
    .mainFile("string")
    .schema("string")
    .stage("string")
    .comment("string")
    .directoryLocation("string")
    .externalAccessIntegrations("string")
    .name("string")
    .queryWarehouse("string")
    .title("string")
    .build());
Copy
streamlit_resource = snowflake.Streamlit("streamlitResource",
    database="string",
    main_file="string",
    schema="string",
    stage="string",
    comment="string",
    directory_location="string",
    external_access_integrations=["string"],
    name="string",
    query_warehouse="string",
    title="string")
Copy
const streamlitResource = new snowflake.Streamlit("streamlitResource", {
    database: "string",
    mainFile: "string",
    schema: "string",
    stage: "string",
    comment: "string",
    directoryLocation: "string",
    externalAccessIntegrations: ["string"],
    name: "string",
    queryWarehouse: "string",
    title: "string",
});
Copy
type: snowflake:Streamlit
properties:
    comment: string
    database: string
    directoryLocation: string
    externalAccessIntegrations:
        - string
    mainFile: string
    name: string
    queryWarehouse: string
    schema: string
    stage: string
    title: string
Copy

Streamlit 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 Streamlit resource accepts the following input properties:

Database
This property is required.
Changes to this property will trigger replacement.
string
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
MainFile This property is required. string
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
Schema
This property is required.
Changes to this property will trigger replacement.
string
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
Stage This property is required. string
The stage in which streamlit files are located. For more information about this resource, see docs.
Comment string
Specifies a comment for the streamlit.
DirectoryLocation string
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
ExternalAccessIntegrations List<string>
External access integrations connected to the Streamlit.
Name string
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
QueryWarehouse string
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
Title string
Specifies a title for the Streamlit app to display in Snowsight.
Database
This property is required.
Changes to this property will trigger replacement.
string
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
MainFile This property is required. string
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
Schema
This property is required.
Changes to this property will trigger replacement.
string
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
Stage This property is required. string
The stage in which streamlit files are located. For more information about this resource, see docs.
Comment string
Specifies a comment for the streamlit.
DirectoryLocation string
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
ExternalAccessIntegrations []string
External access integrations connected to the Streamlit.
Name string
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
QueryWarehouse string
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
Title string
Specifies a title for the Streamlit app to display in Snowsight.
database
This property is required.
Changes to this property will trigger replacement.
String
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
mainFile This property is required. String
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
schema
This property is required.
Changes to this property will trigger replacement.
String
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
stage This property is required. String
The stage in which streamlit files are located. For more information about this resource, see docs.
comment String
Specifies a comment for the streamlit.
directoryLocation String
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
externalAccessIntegrations List<String>
External access integrations connected to the Streamlit.
name String
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
queryWarehouse String
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
title String
Specifies a title for the Streamlit app to display in Snowsight.
database
This property is required.
Changes to this property will trigger replacement.
string
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
mainFile This property is required. string
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
schema
This property is required.
Changes to this property will trigger replacement.
string
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
stage This property is required. string
The stage in which streamlit files are located. For more information about this resource, see docs.
comment string
Specifies a comment for the streamlit.
directoryLocation string
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
externalAccessIntegrations string[]
External access integrations connected to the Streamlit.
name string
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
queryWarehouse string
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
title string
Specifies a title for the Streamlit app to display in Snowsight.
database
This property is required.
Changes to this property will trigger replacement.
str
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
main_file This property is required. str
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
schema
This property is required.
Changes to this property will trigger replacement.
str
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
stage This property is required. str
The stage in which streamlit files are located. For more information about this resource, see docs.
comment str
Specifies a comment for the streamlit.
directory_location str
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
external_access_integrations Sequence[str]
External access integrations connected to the Streamlit.
name str
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
query_warehouse str
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
title str
Specifies a title for the Streamlit app to display in Snowsight.
database
This property is required.
Changes to this property will trigger replacement.
String
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
mainFile This property is required. String
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
schema
This property is required.
Changes to this property will trigger replacement.
String
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
stage This property is required. String
The stage in which streamlit files are located. For more information about this resource, see docs.
comment String
Specifies a comment for the streamlit.
directoryLocation String
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
externalAccessIntegrations List<String>
External access integrations connected to the Streamlit.
name String
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
queryWarehouse String
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
title String
Specifies a title for the Streamlit app to display in Snowsight.

Outputs

All input properties are implicitly available as output properties. Additionally, the Streamlit resource produces the following output properties:

DescribeOutputs List<StreamlitDescribeOutput>
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
FullyQualifiedName string
Fully qualified name of the resource. For more information, see object name resolution.
Id string
The provider-assigned unique ID for this managed resource.
ShowOutputs List<StreamlitShowOutput>
Outputs the result of SHOW STREAMLIT for the given streamlit.
DescribeOutputs []StreamlitDescribeOutput
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
FullyQualifiedName string
Fully qualified name of the resource. For more information, see object name resolution.
Id string
The provider-assigned unique ID for this managed resource.
ShowOutputs []StreamlitShowOutput
Outputs the result of SHOW STREAMLIT for the given streamlit.
describeOutputs List<StreamlitDescribeOutput>
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
fullyQualifiedName String
Fully qualified name of the resource. For more information, see object name resolution.
id String
The provider-assigned unique ID for this managed resource.
showOutputs List<StreamlitShowOutput>
Outputs the result of SHOW STREAMLIT for the given streamlit.
describeOutputs StreamlitDescribeOutput[]
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
fullyQualifiedName string
Fully qualified name of the resource. For more information, see object name resolution.
id string
The provider-assigned unique ID for this managed resource.
showOutputs StreamlitShowOutput[]
Outputs the result of SHOW STREAMLIT for the given streamlit.
describe_outputs Sequence[StreamlitDescribeOutput]
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
fully_qualified_name str
Fully qualified name of the resource. For more information, see object name resolution.
id str
The provider-assigned unique ID for this managed resource.
show_outputs Sequence[StreamlitShowOutput]
Outputs the result of SHOW STREAMLIT for the given streamlit.
describeOutputs List<Property Map>
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
fullyQualifiedName String
Fully qualified name of the resource. For more information, see object name resolution.
id String
The provider-assigned unique ID for this managed resource.
showOutputs List<Property Map>
Outputs the result of SHOW STREAMLIT for the given streamlit.

Look up Existing Streamlit Resource

Get an existing Streamlit 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?: StreamlitState, opts?: CustomResourceOptions): Streamlit
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        comment: Optional[str] = None,
        database: Optional[str] = None,
        describe_outputs: Optional[Sequence[StreamlitDescribeOutputArgs]] = None,
        directory_location: Optional[str] = None,
        external_access_integrations: Optional[Sequence[str]] = None,
        fully_qualified_name: Optional[str] = None,
        main_file: Optional[str] = None,
        name: Optional[str] = None,
        query_warehouse: Optional[str] = None,
        schema: Optional[str] = None,
        show_outputs: Optional[Sequence[StreamlitShowOutputArgs]] = None,
        stage: Optional[str] = None,
        title: Optional[str] = None) -> Streamlit
func GetStreamlit(ctx *Context, name string, id IDInput, state *StreamlitState, opts ...ResourceOption) (*Streamlit, error)
public static Streamlit Get(string name, Input<string> id, StreamlitState? state, CustomResourceOptions? opts = null)
public static Streamlit get(String name, Output<String> id, StreamlitState state, CustomResourceOptions options)
resources:  _:    type: snowflake:Streamlit    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Comment string
Specifies a comment for the streamlit.
Database Changes to this property will trigger replacement. string
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
DescribeOutputs List<StreamlitDescribeOutput>
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
DirectoryLocation string
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
ExternalAccessIntegrations List<string>
External access integrations connected to the Streamlit.
FullyQualifiedName string
Fully qualified name of the resource. For more information, see object name resolution.
MainFile string
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
Name string
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
QueryWarehouse string
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
Schema Changes to this property will trigger replacement. string
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
ShowOutputs List<StreamlitShowOutput>
Outputs the result of SHOW STREAMLIT for the given streamlit.
Stage string
The stage in which streamlit files are located. For more information about this resource, see docs.
Title string
Specifies a title for the Streamlit app to display in Snowsight.
Comment string
Specifies a comment for the streamlit.
Database Changes to this property will trigger replacement. string
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
DescribeOutputs []StreamlitDescribeOutputArgs
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
DirectoryLocation string
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
ExternalAccessIntegrations []string
External access integrations connected to the Streamlit.
FullyQualifiedName string
Fully qualified name of the resource. For more information, see object name resolution.
MainFile string
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
Name string
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
QueryWarehouse string
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
Schema Changes to this property will trigger replacement. string
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
ShowOutputs []StreamlitShowOutputArgs
Outputs the result of SHOW STREAMLIT for the given streamlit.
Stage string
The stage in which streamlit files are located. For more information about this resource, see docs.
Title string
Specifies a title for the Streamlit app to display in Snowsight.
comment String
Specifies a comment for the streamlit.
database Changes to this property will trigger replacement. String
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
describeOutputs List<StreamlitDescribeOutput>
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
directoryLocation String
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
externalAccessIntegrations List<String>
External access integrations connected to the Streamlit.
fullyQualifiedName String
Fully qualified name of the resource. For more information, see object name resolution.
mainFile String
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
name String
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
queryWarehouse String
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
schema Changes to this property will trigger replacement. String
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
showOutputs List<StreamlitShowOutput>
Outputs the result of SHOW STREAMLIT for the given streamlit.
stage String
The stage in which streamlit files are located. For more information about this resource, see docs.
title String
Specifies a title for the Streamlit app to display in Snowsight.
comment string
Specifies a comment for the streamlit.
database Changes to this property will trigger replacement. string
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
describeOutputs StreamlitDescribeOutput[]
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
directoryLocation string
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
externalAccessIntegrations string[]
External access integrations connected to the Streamlit.
fullyQualifiedName string
Fully qualified name of the resource. For more information, see object name resolution.
mainFile string
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
name string
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
queryWarehouse string
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
schema Changes to this property will trigger replacement. string
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
showOutputs StreamlitShowOutput[]
Outputs the result of SHOW STREAMLIT for the given streamlit.
stage string
The stage in which streamlit files are located. For more information about this resource, see docs.
title string
Specifies a title for the Streamlit app to display in Snowsight.
comment str
Specifies a comment for the streamlit.
database Changes to this property will trigger replacement. str
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
describe_outputs Sequence[StreamlitDescribeOutputArgs]
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
directory_location str
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
external_access_integrations Sequence[str]
External access integrations connected to the Streamlit.
fully_qualified_name str
Fully qualified name of the resource. For more information, see object name resolution.
main_file str
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
name str
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
query_warehouse str
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
schema Changes to this property will trigger replacement. str
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
show_outputs Sequence[StreamlitShowOutputArgs]
Outputs the result of SHOW STREAMLIT for the given streamlit.
stage str
The stage in which streamlit files are located. For more information about this resource, see docs.
title str
Specifies a title for the Streamlit app to display in Snowsight.
comment String
Specifies a comment for the streamlit.
database Changes to this property will trigger replacement. String
The database in which to create the streamlit Due to technical limitations (read more here), avoid using the following characters: |, ., ".
describeOutputs List<Property Map>
Outputs the result of DESCRIBE STREAMLIT for the given streamlit.
directoryLocation String
Specifies the full path to the named stage containing the Streamlit Python files, media files, and the environment.yml file.
externalAccessIntegrations List<String>
External access integrations connected to the Streamlit.
fullyQualifiedName String
Fully qualified name of the resource. For more information, see object name resolution.
mainFile String
Specifies the filename of the Streamlit Python application. This filename is relative to the value of directory_location
name String
String that specifies the identifier (i.e. name) for the streamlit; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
queryWarehouse String
Specifies the warehouse where SQL queries issued by the Streamlit application are run. Due to Snowflake limitations warehouse identifier can consist of only upper-cased letters. For more information about this resource, see docs.
schema Changes to this property will trigger replacement. String
The schema in which to create the streamlit. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
showOutputs List<Property Map>
Outputs the result of SHOW STREAMLIT for the given streamlit.
stage String
The stage in which streamlit files are located. For more information about this resource, see docs.
title String
Specifies a title for the Streamlit app to display in Snowsight.

Supporting Types

StreamlitDescribeOutput
, StreamlitDescribeOutputArgs

DefaultPackages string
ExternalAccessIntegrations List<string>
ExternalAccessSecrets string
ImportUrls List<string>
MainFile string
Name string
QueryWarehouse string
RootLocation string
Title string
UrlId string
UserPackages List<string>
defaultPackages String
externalAccessIntegrations List<String>
externalAccessSecrets String
importUrls List<String>
mainFile String
name String
queryWarehouse String
rootLocation String
title String
urlId String
userPackages List<String>
defaultPackages String
externalAccessIntegrations List<String>
externalAccessSecrets String
importUrls List<String>
mainFile String
name String
queryWarehouse String
rootLocation String
title String
urlId String
userPackages List<String>

StreamlitShowOutput
, StreamlitShowOutputArgs

Comment string
CreatedOn string
DatabaseName string
Name string
Owner string
OwnerRoleType string
QueryWarehouse string
SchemaName string
Title string
UrlId string
Comment string
CreatedOn string
DatabaseName string
Name string
Owner string
OwnerRoleType string
QueryWarehouse string
SchemaName string
Title string
UrlId string
comment String
createdOn String
databaseName String
name String
owner String
ownerRoleType String
queryWarehouse String
schemaName String
title String
urlId String
comment string
createdOn string
databaseName string
name string
owner string
ownerRoleType string
queryWarehouse string
schemaName string
title string
urlId string
comment String
createdOn String
databaseName String
name String
owner String
ownerRoleType String
queryWarehouse String
schemaName String
title String
urlId String

Package Details

Repository
Snowflake pulumi/pulumi-snowflake
License
Apache-2.0
Notes
This Pulumi package is based on the snowflake Terraform Provider.