Snowflake v0.59.0 published on Friday, Sep 20, 2024 by Pulumi
snowflake.Schema
Explore with Pulumi AI
Import
format is <database_name>.<schema_name>
$ pulumi import snowflake:index/schema:Schema example '"<database_name>"."<schema_name>"'
Create Schema Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Schema(name: string, args: SchemaArgs, opts?: CustomResourceOptions);@overload
def Schema(resource_name: str,
           args: SchemaArgs,
           opts: Optional[ResourceOptions] = None)
@overload
def Schema(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           database: Optional[str] = None,
           name: Optional[str] = None,
           enable_console_output: Optional[bool] = None,
           pipe_execution_paused: Optional[bool] = None,
           replace_invalid_characters: Optional[bool] = None,
           quoted_identifiers_ignore_case: Optional[bool] = None,
           external_volume: Optional[str] = None,
           is_transient: Optional[str] = None,
           log_level: Optional[str] = None,
           max_data_extension_time_in_days: Optional[int] = None,
           catalog: Optional[str] = None,
           comment: Optional[str] = None,
           data_retention_time_in_days: Optional[int] = None,
           default_ddl_collation: Optional[str] = None,
           storage_serialization_policy: Optional[str] = None,
           suspend_task_after_num_failures: Optional[int] = None,
           task_auto_retry_attempts: Optional[int] = None,
           trace_level: Optional[str] = None,
           user_task_managed_initial_warehouse_size: Optional[str] = None,
           user_task_minimum_trigger_interval_in_seconds: Optional[int] = None,
           user_task_timeout_ms: Optional[int] = None,
           with_managed_access: Optional[str] = None)func NewSchema(ctx *Context, name string, args SchemaArgs, opts ...ResourceOption) (*Schema, error)public Schema(string name, SchemaArgs args, CustomResourceOptions? opts = null)
public Schema(String name, SchemaArgs args)
public Schema(String name, SchemaArgs args, CustomResourceOptions options)
type: snowflake:Schema
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SchemaArgs
- 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 SchemaArgs
- 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 SchemaArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SchemaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SchemaArgs
- 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 schemaResource = new Snowflake.Schema("schemaResource", new()
{
    Database = "string",
    Name = "string",
    EnableConsoleOutput = false,
    PipeExecutionPaused = false,
    ReplaceInvalidCharacters = false,
    QuotedIdentifiersIgnoreCase = false,
    ExternalVolume = "string",
    IsTransient = "string",
    LogLevel = "string",
    MaxDataExtensionTimeInDays = 0,
    Catalog = "string",
    Comment = "string",
    DataRetentionTimeInDays = 0,
    DefaultDdlCollation = "string",
    StorageSerializationPolicy = "string",
    SuspendTaskAfterNumFailures = 0,
    TaskAutoRetryAttempts = 0,
    TraceLevel = "string",
    UserTaskManagedInitialWarehouseSize = "string",
    UserTaskMinimumTriggerIntervalInSeconds = 0,
    UserTaskTimeoutMs = 0,
    WithManagedAccess = "string",
});
example, err := snowflake.NewSchema(ctx, "schemaResource", &snowflake.SchemaArgs{
	Database:                                pulumi.String("string"),
	Name:                                    pulumi.String("string"),
	EnableConsoleOutput:                     pulumi.Bool(false),
	PipeExecutionPaused:                     pulumi.Bool(false),
	ReplaceInvalidCharacters:                pulumi.Bool(false),
	QuotedIdentifiersIgnoreCase:             pulumi.Bool(false),
	ExternalVolume:                          pulumi.String("string"),
	IsTransient:                             pulumi.String("string"),
	LogLevel:                                pulumi.String("string"),
	MaxDataExtensionTimeInDays:              pulumi.Int(0),
	Catalog:                                 pulumi.String("string"),
	Comment:                                 pulumi.String("string"),
	DataRetentionTimeInDays:                 pulumi.Int(0),
	DefaultDdlCollation:                     pulumi.String("string"),
	StorageSerializationPolicy:              pulumi.String("string"),
	SuspendTaskAfterNumFailures:             pulumi.Int(0),
	TaskAutoRetryAttempts:                   pulumi.Int(0),
	TraceLevel:                              pulumi.String("string"),
	UserTaskManagedInitialWarehouseSize:     pulumi.String("string"),
	UserTaskMinimumTriggerIntervalInSeconds: pulumi.Int(0),
	UserTaskTimeoutMs:                       pulumi.Int(0),
	WithManagedAccess:                       pulumi.String("string"),
})
var schemaResource = new Schema("schemaResource", SchemaArgs.builder()
    .database("string")
    .name("string")
    .enableConsoleOutput(false)
    .pipeExecutionPaused(false)
    .replaceInvalidCharacters(false)
    .quotedIdentifiersIgnoreCase(false)
    .externalVolume("string")
    .isTransient("string")
    .logLevel("string")
    .maxDataExtensionTimeInDays(0)
    .catalog("string")
    .comment("string")
    .dataRetentionTimeInDays(0)
    .defaultDdlCollation("string")
    .storageSerializationPolicy("string")
    .suspendTaskAfterNumFailures(0)
    .taskAutoRetryAttempts(0)
    .traceLevel("string")
    .userTaskManagedInitialWarehouseSize("string")
    .userTaskMinimumTriggerIntervalInSeconds(0)
    .userTaskTimeoutMs(0)
    .withManagedAccess("string")
    .build());
schema_resource = snowflake.Schema("schemaResource",
    database="string",
    name="string",
    enable_console_output=False,
    pipe_execution_paused=False,
    replace_invalid_characters=False,
    quoted_identifiers_ignore_case=False,
    external_volume="string",
    is_transient="string",
    log_level="string",
    max_data_extension_time_in_days=0,
    catalog="string",
    comment="string",
    data_retention_time_in_days=0,
    default_ddl_collation="string",
    storage_serialization_policy="string",
    suspend_task_after_num_failures=0,
    task_auto_retry_attempts=0,
    trace_level="string",
    user_task_managed_initial_warehouse_size="string",
    user_task_minimum_trigger_interval_in_seconds=0,
    user_task_timeout_ms=0,
    with_managed_access="string")
const schemaResource = new snowflake.Schema("schemaResource", {
    database: "string",
    name: "string",
    enableConsoleOutput: false,
    pipeExecutionPaused: false,
    replaceInvalidCharacters: false,
    quotedIdentifiersIgnoreCase: false,
    externalVolume: "string",
    isTransient: "string",
    logLevel: "string",
    maxDataExtensionTimeInDays: 0,
    catalog: "string",
    comment: "string",
    dataRetentionTimeInDays: 0,
    defaultDdlCollation: "string",
    storageSerializationPolicy: "string",
    suspendTaskAfterNumFailures: 0,
    taskAutoRetryAttempts: 0,
    traceLevel: "string",
    userTaskManagedInitialWarehouseSize: "string",
    userTaskMinimumTriggerIntervalInSeconds: 0,
    userTaskTimeoutMs: 0,
    withManagedAccess: "string",
});
type: snowflake:Schema
properties:
    catalog: string
    comment: string
    dataRetentionTimeInDays: 0
    database: string
    defaultDdlCollation: string
    enableConsoleOutput: false
    externalVolume: string
    isTransient: string
    logLevel: string
    maxDataExtensionTimeInDays: 0
    name: string
    pipeExecutionPaused: false
    quotedIdentifiersIgnoreCase: false
    replaceInvalidCharacters: false
    storageSerializationPolicy: string
    suspendTaskAfterNumFailures: 0
    taskAutoRetryAttempts: 0
    traceLevel: string
    userTaskManagedInitialWarehouseSize: string
    userTaskMinimumTriggerIntervalInSeconds: 0
    userTaskTimeoutMs: 0
    withManagedAccess: string
Schema Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Schema resource accepts the following input properties:
- Database string
- The database in which to create the schema.
- Catalog string
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- Comment string
- Specifies a comment for the schema.
- DataRetention intTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- DefaultDdl stringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- EnableConsole boolOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- ExternalVolume string
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- IsTransient string
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- LogLevel string
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- MaxData intExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- Name string
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- PipeExecution boolPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- QuotedIdentifiers boolIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- ReplaceInvalid boolCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- StorageSerialization stringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- SuspendTask intAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- TaskAuto intRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- TraceLevel string
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- UserTask stringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- UserTask intMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- UserTask intTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- WithManaged stringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- Database string
- The database in which to create the schema.
- Catalog string
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- Comment string
- Specifies a comment for the schema.
- DataRetention intTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- DefaultDdl stringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- EnableConsole boolOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- ExternalVolume string
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- IsTransient string
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- LogLevel string
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- MaxData intExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- Name string
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- PipeExecution boolPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- QuotedIdentifiers boolIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- ReplaceInvalid boolCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- StorageSerialization stringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- SuspendTask intAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- TaskAuto intRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- TraceLevel string
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- UserTask stringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- UserTask intMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- UserTask intTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- WithManaged stringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- database String
- The database in which to create the schema.
- catalog String
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- comment String
- Specifies a comment for the schema.
- dataRetention IntegerTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- defaultDdl StringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- enableConsole BooleanOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- externalVolume String
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- isTransient String
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- logLevel String
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- maxData IntegerExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- name String
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- pipeExecution BooleanPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- quotedIdentifiers BooleanIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replaceInvalid BooleanCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- storageSerialization StringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- suspendTask IntegerAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- taskAuto IntegerRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- traceLevel String
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- userTask StringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- userTask IntegerMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- userTask IntegerTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- withManaged StringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- database string
- The database in which to create the schema.
- catalog string
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- comment string
- Specifies a comment for the schema.
- dataRetention numberTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- defaultDdl stringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- enableConsole booleanOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- externalVolume string
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- isTransient string
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- logLevel string
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- maxData numberExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- name string
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- pipeExecution booleanPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- quotedIdentifiers booleanIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replaceInvalid booleanCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- storageSerialization stringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- suspendTask numberAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- taskAuto numberRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- traceLevel string
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- userTask stringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- userTask numberMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- userTask numberTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- withManaged stringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- database str
- The database in which to create the schema.
- catalog str
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- comment str
- Specifies a comment for the schema.
- data_retention_ inttime_ in_ days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- default_ddl_ strcollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- enable_console_ booloutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external_volume str
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- is_transient str
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- log_level str
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- max_data_ intextension_ time_ in_ days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- name str
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- pipe_execution_ boolpaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- quoted_identifiers_ boolignore_ case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace_invalid_ boolcharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- storage_serialization_ strpolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- suspend_task_ intafter_ num_ failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- task_auto_ intretry_ attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace_level str
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- user_task_ strmanaged_ initial_ warehouse_ size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user_task_ intminimum_ trigger_ interval_ in_ seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- user_task_ inttimeout_ ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- with_managed_ straccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- database String
- The database in which to create the schema.
- catalog String
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- comment String
- Specifies a comment for the schema.
- dataRetention NumberTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- defaultDdl StringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- enableConsole BooleanOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- externalVolume String
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- isTransient String
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- logLevel String
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- maxData NumberExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- name String
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- pipeExecution BooleanPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- quotedIdentifiers BooleanIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replaceInvalid BooleanCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- storageSerialization StringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- suspendTask NumberAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- taskAuto NumberRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- traceLevel String
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- userTask StringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- userTask NumberMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- userTask NumberTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- withManaged StringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
Outputs
All input properties are implicitly available as output properties. Additionally, the Schema resource produces the following output properties:
- DescribeOutputs List<SchemaDescribe Output> 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- FullyQualified 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<SchemaParameter> 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- ShowOutputs List<SchemaShow Output> 
- Outputs the result of SHOW SCHEMAfor the given object.
- DescribeOutputs []SchemaDescribe Output 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- FullyQualified 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
[]SchemaParameter 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- ShowOutputs []SchemaShow Output 
- Outputs the result of SHOW SCHEMAfor the given object.
- describeOutputs List<SchemaDescribe Output> 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- fullyQualified 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<SchemaParameter> 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- showOutputs List<SchemaShow Output> 
- Outputs the result of SHOW SCHEMAfor the given object.
- describeOutputs SchemaDescribe Output[] 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- fullyQualified 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
SchemaParameter[] 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- showOutputs SchemaShow Output[] 
- Outputs the result of SHOW SCHEMAfor the given object.
- describe_outputs Sequence[SchemaDescribe Output] 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- 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[SchemaParameter] 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- show_outputs Sequence[SchemaShow Output] 
- Outputs the result of SHOW SCHEMAfor the given object.
- describeOutputs List<Property Map>
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- fullyQualified 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 SCHEMAfor the given object.
- showOutputs List<Property Map>
- Outputs the result of SHOW SCHEMAfor the given object.
Look up Existing Schema Resource
Get an existing Schema 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?: SchemaState, opts?: CustomResourceOptions): Schema@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        catalog: Optional[str] = None,
        comment: Optional[str] = None,
        data_retention_time_in_days: Optional[int] = None,
        database: Optional[str] = None,
        default_ddl_collation: Optional[str] = None,
        describe_outputs: Optional[Sequence[SchemaDescribeOutputArgs]] = None,
        enable_console_output: Optional[bool] = None,
        external_volume: Optional[str] = None,
        fully_qualified_name: Optional[str] = None,
        is_transient: Optional[str] = None,
        log_level: Optional[str] = None,
        max_data_extension_time_in_days: Optional[int] = None,
        name: Optional[str] = None,
        parameters: Optional[Sequence[SchemaParameterArgs]] = None,
        pipe_execution_paused: Optional[bool] = None,
        quoted_identifiers_ignore_case: Optional[bool] = None,
        replace_invalid_characters: Optional[bool] = None,
        show_outputs: Optional[Sequence[SchemaShowOutputArgs]] = None,
        storage_serialization_policy: Optional[str] = None,
        suspend_task_after_num_failures: Optional[int] = None,
        task_auto_retry_attempts: Optional[int] = None,
        trace_level: Optional[str] = None,
        user_task_managed_initial_warehouse_size: Optional[str] = None,
        user_task_minimum_trigger_interval_in_seconds: Optional[int] = None,
        user_task_timeout_ms: Optional[int] = None,
        with_managed_access: Optional[str] = None) -> Schemafunc GetSchema(ctx *Context, name string, id IDInput, state *SchemaState, opts ...ResourceOption) (*Schema, error)public static Schema Get(string name, Input<string> id, SchemaState? state, CustomResourceOptions? opts = null)public static Schema get(String name, Output<String> id, SchemaState state, CustomResourceOptions options)Resource lookup is not supported in YAML- 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.
- Catalog string
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- Comment string
- Specifies a comment for the schema.
- DataRetention intTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- Database string
- The database in which to create the schema.
- DefaultDdl stringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- DescribeOutputs List<SchemaDescribe Output> 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- EnableConsole boolOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- ExternalVolume string
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- FullyQualified stringName 
- Fully qualified name of the resource. For more information, see object name resolution.
- IsTransient string
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- LogLevel string
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- MaxData intExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- Name string
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- Parameters
List<SchemaParameter> 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- PipeExecution boolPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- QuotedIdentifiers boolIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- ReplaceInvalid boolCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- ShowOutputs List<SchemaShow Output> 
- Outputs the result of SHOW SCHEMAfor the given object.
- StorageSerialization stringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- SuspendTask intAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- TaskAuto intRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- TraceLevel string
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- UserTask stringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- UserTask intMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- UserTask intTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- WithManaged stringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- Catalog string
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- Comment string
- Specifies a comment for the schema.
- DataRetention intTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- Database string
- The database in which to create the schema.
- DefaultDdl stringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- DescribeOutputs []SchemaDescribe Output Args 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- EnableConsole boolOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- ExternalVolume string
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- FullyQualified stringName 
- Fully qualified name of the resource. For more information, see object name resolution.
- IsTransient string
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- LogLevel string
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- MaxData intExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- Name string
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- Parameters
[]SchemaParameter Args 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- PipeExecution boolPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- QuotedIdentifiers boolIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- ReplaceInvalid boolCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- ShowOutputs []SchemaShow Output Args 
- Outputs the result of SHOW SCHEMAfor the given object.
- StorageSerialization stringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- SuspendTask intAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- TaskAuto intRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- TraceLevel string
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- UserTask stringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- UserTask intMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- UserTask intTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- WithManaged stringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- catalog String
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- comment String
- Specifies a comment for the schema.
- dataRetention IntegerTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- database String
- The database in which to create the schema.
- defaultDdl StringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- describeOutputs List<SchemaDescribe Output> 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- enableConsole BooleanOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- externalVolume String
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- fullyQualified StringName 
- Fully qualified name of the resource. For more information, see object name resolution.
- isTransient String
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- logLevel String
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- maxData IntegerExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- name String
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- parameters
List<SchemaParameter> 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- pipeExecution BooleanPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- quotedIdentifiers BooleanIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replaceInvalid BooleanCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- showOutputs List<SchemaShow Output> 
- Outputs the result of SHOW SCHEMAfor the given object.
- storageSerialization StringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- suspendTask IntegerAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- taskAuto IntegerRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- traceLevel String
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- userTask StringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- userTask IntegerMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- userTask IntegerTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- withManaged StringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- catalog string
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- comment string
- Specifies a comment for the schema.
- dataRetention numberTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- database string
- The database in which to create the schema.
- defaultDdl stringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- describeOutputs SchemaDescribe Output[] 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- enableConsole booleanOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- externalVolume string
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- fullyQualified stringName 
- Fully qualified name of the resource. For more information, see object name resolution.
- isTransient string
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- logLevel string
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- maxData numberExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- name string
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- parameters
SchemaParameter[] 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- pipeExecution booleanPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- quotedIdentifiers booleanIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replaceInvalid booleanCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- showOutputs SchemaShow Output[] 
- Outputs the result of SHOW SCHEMAfor the given object.
- storageSerialization stringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- suspendTask numberAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- taskAuto numberRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- traceLevel string
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- userTask stringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- userTask numberMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- userTask numberTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- withManaged stringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- catalog str
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- comment str
- Specifies a comment for the schema.
- data_retention_ inttime_ in_ days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- database str
- The database in which to create the schema.
- default_ddl_ strcollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- describe_outputs Sequence[SchemaDescribe Output Args] 
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- enable_console_ booloutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external_volume str
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- fully_qualified_ strname 
- Fully qualified name of the resource. For more information, see object name resolution.
- is_transient str
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- log_level str
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- max_data_ intextension_ time_ in_ days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- name str
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- parameters
Sequence[SchemaParameter Args] 
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- pipe_execution_ boolpaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- quoted_identifiers_ boolignore_ case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace_invalid_ boolcharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- show_outputs Sequence[SchemaShow Output Args] 
- Outputs the result of SHOW SCHEMAfor the given object.
- storage_serialization_ strpolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- suspend_task_ intafter_ num_ failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- task_auto_ intretry_ attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace_level str
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- user_task_ strmanaged_ initial_ warehouse_ size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user_task_ intminimum_ trigger_ interval_ in_ seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- user_task_ inttimeout_ ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- with_managed_ straccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- catalog String
- The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see CATALOG.
- comment String
- Specifies a comment for the schema.
- dataRetention NumberTime In Days 
- Specifies the number of days for which Time Travel actions (CLONE and UNDROP) can be performed on the database, as well as specifying the default Time Travel retention time for all schemas created in the database. For more details, see Understanding & Using Time Travel.
- database String
- The database in which to create the schema.
- defaultDdl StringCollation 
- Specifies a default collation specification for all schemas and tables added to the database. It can be overridden on schema or table level. For more information, see collation specification.
- describeOutputs List<Property Map>
- Outputs the result of DESCRIBE SCHEMAfor the given object. In order to handle this output, one must grant sufficient privileges, e.g. grant*ownership on all objects in the schema.
- enableConsole BooleanOutput 
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- externalVolume String
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- fullyQualified StringName 
- Fully qualified name of the resource. For more information, see object name resolution.
- isTransient String
- Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- logLevel String
- Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see LOG_LEVEL.
- maxData NumberExtension Time In Days 
- Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see MAXDATAEXTENSIONTIMEIN_DAYS.
- name String
- Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is PUBLIC, during creation the provider checks if this schema has already been created and, in such case,ALTERis used to match the desired state.
- parameters List<Property Map>
- Outputs the result of SHOW PARAMETERS IN SCHEMAfor the given object.
- pipeExecution BooleanPaused 
- Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, check PIPEEXECUTIONPAUSED docs.
- quotedIdentifiers BooleanIgnore Case 
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replaceInvalid BooleanCharacters 
- Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see REPLACEINVALIDCHARACTERS.
- showOutputs List<Property Map>
- Outputs the result of SHOW SCHEMAfor the given object.
- storageSerialization StringPolicy 
- The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see STORAGESERIALIZATIONPOLICY.
- suspendTask NumberAfter Num Failures 
- How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see SUSPENDTASKAFTERNUMFAILURES.
- taskAuto NumberRetry Attempts 
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- traceLevel String
- Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see TRACE*LEVEL.
- userTask StringManaged Initial Warehouse Size 
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- userTask NumberMinimum Trigger Interval In Seconds 
- Minimum amount of time between Triggered Task executions in seconds.
- userTask NumberTimeout Ms 
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- withManaged StringAccess 
- Specifies a managed schema. Managed access schemas centralize privilege management with the schema owner. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
Supporting Types
SchemaDescribeOutput, SchemaDescribeOutputArgs      
- created_on str
- kind str
- name str
SchemaParameter, SchemaParameterArgs    
- Catalogs
List<SchemaParameter Catalog> 
- DataRetention List<SchemaTime In Days Parameter Data Retention Time In Day> 
- DefaultDdl List<SchemaCollations Parameter Default Ddl Collation> 
- EnableConsole List<SchemaOutputs Parameter Enable Console Output> 
- ExternalVolumes List<SchemaParameter External Volume> 
- LogLevels List<SchemaParameter Log Level> 
- MaxData List<SchemaExtension Time In Days Parameter Max Data Extension Time In Day> 
- PipeExecution List<SchemaPauseds Parameter Pipe Execution Paused> 
- QuotedIdentifiers List<SchemaIgnore Cases Parameter Quoted Identifiers Ignore Case> 
- ReplaceInvalid List<SchemaCharacters Parameter Replace Invalid Character> 
- StorageSerialization List<SchemaPolicies Parameter Storage Serialization Policy> 
- SuspendTask List<SchemaAfter Num Failures Parameter Suspend Task After Num Failure> 
- TaskAuto List<SchemaRetry Attempts Parameter Task Auto Retry Attempt> 
- TraceLevels List<SchemaParameter Trace Level> 
- UserTask List<SchemaManaged Initial Warehouse Sizes Parameter User Task Managed Initial Warehouse Size> 
- UserTask List<SchemaMinimum Trigger Interval In Seconds Parameter User Task Minimum Trigger Interval In Second> 
- UserTask List<SchemaTimeout Ms Parameter User Task Timeout M> 
- Catalogs
[]SchemaParameter Catalog 
- DataRetention []SchemaTime In Days Parameter Data Retention Time In Day 
- DefaultDdl []SchemaCollations Parameter Default Ddl Collation 
- EnableConsole []SchemaOutputs Parameter Enable Console Output 
- ExternalVolumes []SchemaParameter External Volume 
- LogLevels []SchemaParameter Log Level 
- MaxData []SchemaExtension Time In Days Parameter Max Data Extension Time In Day 
- PipeExecution []SchemaPauseds Parameter Pipe Execution Paused 
- QuotedIdentifiers []SchemaIgnore Cases Parameter Quoted Identifiers Ignore Case 
- ReplaceInvalid []SchemaCharacters Parameter Replace Invalid Character 
- StorageSerialization []SchemaPolicies Parameter Storage Serialization Policy 
- SuspendTask []SchemaAfter Num Failures Parameter Suspend Task After Num Failure 
- TaskAuto []SchemaRetry Attempts Parameter Task Auto Retry Attempt 
- TraceLevels []SchemaParameter Trace Level 
- UserTask []SchemaManaged Initial Warehouse Sizes Parameter User Task Managed Initial Warehouse Size 
- UserTask []SchemaMinimum Trigger Interval In Seconds Parameter User Task Minimum Trigger Interval In Second 
- UserTask []SchemaTimeout Ms Parameter User Task Timeout M 
- catalogs
List<SchemaParameter Catalog> 
- dataRetention List<SchemaTime In Days Parameter Data Retention Time In Day> 
- defaultDdl List<SchemaCollations Parameter Default Ddl Collation> 
- enableConsole List<SchemaOutputs Parameter Enable Console Output> 
- externalVolumes List<SchemaParameter External Volume> 
- logLevels List<SchemaParameter Log Level> 
- maxData List<SchemaExtension Time In Days Parameter Max Data Extension Time In Day> 
- pipeExecution List<SchemaPauseds Parameter Pipe Execution Paused> 
- quotedIdentifiers List<SchemaIgnore Cases Parameter Quoted Identifiers Ignore Case> 
- replaceInvalid List<SchemaCharacters Parameter Replace Invalid Character> 
- storageSerialization List<SchemaPolicies Parameter Storage Serialization Policy> 
- suspendTask List<SchemaAfter Num Failures Parameter Suspend Task After Num Failure> 
- taskAuto List<SchemaRetry Attempts Parameter Task Auto Retry Attempt> 
- traceLevels List<SchemaParameter Trace Level> 
- userTask List<SchemaManaged Initial Warehouse Sizes Parameter User Task Managed Initial Warehouse Size> 
- userTask List<SchemaMinimum Trigger Interval In Seconds Parameter User Task Minimum Trigger Interval In Second> 
- userTask List<SchemaTimeout Ms Parameter User Task Timeout M> 
- catalogs
SchemaParameter Catalog[] 
- dataRetention SchemaTime In Days Parameter Data Retention Time In Day[] 
- defaultDdl SchemaCollations Parameter Default Ddl Collation[] 
- enableConsole SchemaOutputs Parameter Enable Console Output[] 
- externalVolumes SchemaParameter External Volume[] 
- logLevels SchemaParameter Log Level[] 
- maxData SchemaExtension Time In Days Parameter Max Data Extension Time In Day[] 
- pipeExecution SchemaPauseds Parameter Pipe Execution Paused[] 
- quotedIdentifiers SchemaIgnore Cases Parameter Quoted Identifiers Ignore Case[] 
- replaceInvalid SchemaCharacters Parameter Replace Invalid Character[] 
- storageSerialization SchemaPolicies Parameter Storage Serialization Policy[] 
- suspendTask SchemaAfter Num Failures Parameter Suspend Task After Num Failure[] 
- taskAuto SchemaRetry Attempts Parameter Task Auto Retry Attempt[] 
- traceLevels SchemaParameter Trace Level[] 
- userTask SchemaManaged Initial Warehouse Sizes Parameter User Task Managed Initial Warehouse Size[] 
- userTask SchemaMinimum Trigger Interval In Seconds Parameter User Task Minimum Trigger Interval In Second[] 
- userTask SchemaTimeout Ms Parameter User Task Timeout M[] 
- catalogs
Sequence[SchemaParameter Catalog] 
- data_retention_ Sequence[Schematime_ in_ days Parameter Data Retention Time In Day] 
- default_ddl_ Sequence[Schemacollations Parameter Default Ddl Collation] 
- enable_console_ Sequence[Schemaoutputs Parameter Enable Console Output] 
- external_volumes Sequence[SchemaParameter External Volume] 
- log_levels Sequence[SchemaParameter Log Level] 
- max_data_ Sequence[Schemaextension_ time_ in_ days Parameter Max Data Extension Time In Day] 
- pipe_execution_ Sequence[Schemapauseds Parameter Pipe Execution Paused] 
- quoted_identifiers_ Sequence[Schemaignore_ cases Parameter Quoted Identifiers Ignore Case] 
- replace_invalid_ Sequence[Schemacharacters Parameter Replace Invalid Character] 
- storage_serialization_ Sequence[Schemapolicies Parameter Storage Serialization Policy] 
- suspend_task_ Sequence[Schemaafter_ num_ failures Parameter Suspend Task After Num Failure] 
- task_auto_ Sequence[Schemaretry_ attempts Parameter Task Auto Retry Attempt] 
- trace_levels Sequence[SchemaParameter Trace Level] 
- user_task_ Sequence[Schemamanaged_ initial_ warehouse_ sizes Parameter User Task Managed Initial Warehouse Size] 
- user_task_ Sequence[Schemaminimum_ trigger_ interval_ in_ seconds Parameter User Task Minimum Trigger Interval In Second] 
- user_task_ Sequence[Schematimeout_ ms Parameter User Task Timeout M] 
- catalogs List<Property Map>
- dataRetention List<Property Map>Time In Days 
- defaultDdl List<Property Map>Collations 
- enableConsole List<Property Map>Outputs 
- externalVolumes List<Property Map>
- logLevels List<Property Map>
- maxData List<Property Map>Extension Time In Days 
- pipeExecution List<Property Map>Pauseds 
- quotedIdentifiers List<Property Map>Ignore Cases 
- replaceInvalid List<Property Map>Characters 
- storageSerialization List<Property Map>Policies 
- suspendTask List<Property Map>After Num Failures 
- taskAuto List<Property Map>Retry Attempts 
- traceLevels List<Property Map>
- userTask List<Property Map>Managed Initial Warehouse Sizes 
- userTask List<Property Map>Minimum Trigger Interval In Seconds 
- userTask List<Property Map>Timeout Ms 
SchemaParameterCatalog, SchemaParameterCatalogArgs      
- 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
SchemaParameterDataRetentionTimeInDay, SchemaParameterDataRetentionTimeInDayArgs              
- 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
SchemaParameterDefaultDdlCollation, SchemaParameterDefaultDdlCollationArgs          
- 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
SchemaParameterEnableConsoleOutput, SchemaParameterEnableConsoleOutputArgs          
- 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
SchemaParameterExternalVolume, SchemaParameterExternalVolumeArgs        
- 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
SchemaParameterLogLevel, SchemaParameterLogLevelArgs        
- 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
SchemaParameterMaxDataExtensionTimeInDay, SchemaParameterMaxDataExtensionTimeInDayArgs                
- 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
SchemaParameterPipeExecutionPaused, SchemaParameterPipeExecutionPausedArgs          
- 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
SchemaParameterQuotedIdentifiersIgnoreCase, SchemaParameterQuotedIdentifiersIgnoreCaseArgs            
- 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
SchemaParameterReplaceInvalidCharacter, SchemaParameterReplaceInvalidCharacterArgs          
- 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
SchemaParameterStorageSerializationPolicy, SchemaParameterStorageSerializationPolicyArgs          
- 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
SchemaParameterSuspendTaskAfterNumFailure, SchemaParameterSuspendTaskAfterNumFailureArgs              
- 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
SchemaParameterTaskAutoRetryAttempt, SchemaParameterTaskAutoRetryAttemptArgs            
- 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
SchemaParameterTraceLevel, SchemaParameterTraceLevelArgs        
- 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
SchemaParameterUserTaskManagedInitialWarehouseSize, SchemaParameterUserTaskManagedInitialWarehouseSizeArgs                
- 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
SchemaParameterUserTaskMinimumTriggerIntervalInSecond, SchemaParameterUserTaskMinimumTriggerIntervalInSecondArgs                  
- 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
SchemaParameterUserTaskTimeoutM, SchemaParameterUserTaskTimeoutMArgs            
- 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
SchemaShowOutput, SchemaShowOutputArgs      
- Comment string
- CreatedOn string
- DatabaseName string
- DroppedOn string
- IsCurrent bool
- IsDefault bool
- Name string
- Options string
- Owner string
- OwnerRole stringType 
- RetentionTime string
- Comment string
- CreatedOn string
- DatabaseName string
- DroppedOn string
- IsCurrent bool
- IsDefault bool
- Name string
- Options string
- Owner string
- OwnerRole stringType 
- RetentionTime string
- comment String
- createdOn String
- databaseName String
- droppedOn String
- isCurrent Boolean
- isDefault Boolean
- name String
- options String
- owner String
- ownerRole StringType 
- retentionTime String
- comment string
- createdOn string
- databaseName string
- droppedOn string
- isCurrent boolean
- isDefault boolean
- name string
- options string
- owner string
- ownerRole stringType 
- retentionTime string
- comment str
- created_on str
- database_name str
- dropped_on str
- is_current bool
- is_default bool
- name str
- options str
- owner str
- owner_role_ strtype 
- retention_time str
- comment String
- createdOn String
- databaseName String
- droppedOn String
- isCurrent Boolean
- isDefault Boolean
- name String
- options String
- owner String
- ownerRole StringType 
- retentionTime String
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the snowflakeTerraform Provider.