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.
- 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 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.
- Enable
Console boolOutput - If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- External
Volume string - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- Is
Transient 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.
- Log
Level 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.
- 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 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,ALTER
is 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 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.
- 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 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.
- User
Task 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.
- 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 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.
- 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 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.
- Enable
Console boolOutput - If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- External
Volume string - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- Is
Transient 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.
- Log
Level 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.
- 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 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,ALTER
is 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 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.
- 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 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.
- User
Task 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.
- 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 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.
- data
Retention 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.
- default
Ddl 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.
- enable
Console BooleanOutput - If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume String - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- is
Transient 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.
- log
Level 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.
- max
Data 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,ALTER
is used to match the desired state. - pipe
Execution 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.
- quoted
Identifiers BooleanIgnore Case - If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid 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.
- storage
Serialization 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.
- suspend
Task 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.
- task
Auto IntegerRetry Attempts - Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level 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.
- user
Task 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.
- user
Task IntegerMinimum Trigger Interval In Seconds - Minimum amount of time between Triggered Task executions in seconds.
- user
Task IntegerTimeout Ms - User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- with
Managed 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.
- data
Retention 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.
- default
Ddl 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.
- enable
Console booleanOutput - If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume string - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- is
Transient 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.
- log
Level 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.
- max
Data 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,ALTER
is used to match the desired state. - pipe
Execution 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.
- quoted
Identifiers booleanIgnore Case - If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid 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.
- storage
Serialization 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.
- suspend
Task 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.
- task
Auto numberRetry Attempts - Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level 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.
- user
Task 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.
- user
Task numberMinimum Trigger Interval In Seconds - Minimum amount of time between Triggered Task executions in seconds.
- user
Task numberTimeout Ms - User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- with
Managed 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,ALTER
is 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.
- data
Retention 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.
- default
Ddl 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.
- enable
Console BooleanOutput - If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume String - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- is
Transient 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.
- log
Level 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.
- max
Data 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,ALTER
is used to match the desired state. - pipe
Execution 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.
- quoted
Identifiers BooleanIgnore Case - If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid 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.
- storage
Serialization 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.
- suspend
Task 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.
- task
Auto NumberRetry Attempts - Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level 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.
- user
Task 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.
- user
Task NumberMinimum Trigger Interval In Seconds - Minimum amount of time between Triggered Task executions in seconds.
- user
Task NumberTimeout Ms - User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- with
Managed 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:
- Describe
Outputs List<SchemaDescribe Output> - Outputs the result of
DESCRIBE SCHEMA
for 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 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<Schema
Parameter> - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for the given object. - Show
Outputs List<SchemaShow Output> - Outputs the result of
SHOW SCHEMA
for the given object.
- Describe
Outputs []SchemaDescribe Output - Outputs the result of
DESCRIBE SCHEMA
for 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 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
[]Schema
Parameter - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for the given object. - Show
Outputs []SchemaShow Output - Outputs the result of
SHOW SCHEMA
for the given object.
- describe
Outputs List<SchemaDescribe Output> - Outputs the result of
DESCRIBE SCHEMA
for 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 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<Schema
Parameter> - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for the given object. - show
Outputs List<SchemaShow Output> - Outputs the result of
SHOW SCHEMA
for the given object.
- describe
Outputs SchemaDescribe Output[] - Outputs the result of
DESCRIBE SCHEMA
for 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 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
Schema
Parameter[] - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for the given object. - show
Outputs SchemaShow Output[] - Outputs the result of
SHOW SCHEMA
for the given object.
- describe_
outputs Sequence[SchemaDescribe Output] - Outputs the result of
DESCRIBE SCHEMA
for 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[Schema
Parameter] - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for the given object. - show_
outputs Sequence[SchemaShow Output] - Outputs the result of
SHOW SCHEMA
for the given object.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE SCHEMA
for 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 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 SCHEMA
for the given object. - show
Outputs List<Property Map> - Outputs the result of
SHOW SCHEMA
for 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) -> Schema
func 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.
- 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 string
- The database in which to create the schema.
- Default
Ddl 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.
- Describe
Outputs List<SchemaDescribe Output> - Outputs the result of
DESCRIBE SCHEMA
for 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 string - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Is
Transient 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.
- Log
Level 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.
- 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 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,ALTER
is used to match the desired state. - Parameters
List<Schema
Parameter> - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for 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 List<SchemaShow Output> - Outputs the result of
SHOW SCHEMA
for the given object. - Storage
Serialization 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.
- 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 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.
- User
Task 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.
- 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 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.
- 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 string
- The database in which to create the schema.
- Default
Ddl 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.
- Describe
Outputs []SchemaDescribe Output Args - Outputs the result of
DESCRIBE SCHEMA
for 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 string - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Is
Transient 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.
- Log
Level 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.
- 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 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,ALTER
is used to match the desired state. - Parameters
[]Schema
Parameter Args - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for 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 []SchemaShow Output Args - Outputs the result of
SHOW SCHEMA
for the given object. - Storage
Serialization 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.
- 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 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.
- User
Task 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.
- 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 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.
- data
Retention 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.
- default
Ddl 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.
- describe
Outputs List<SchemaDescribe Output> - Outputs the result of
DESCRIBE SCHEMA
for 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 BooleanOutput - If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume String - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- is
Transient 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.
- log
Level 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.
- max
Data 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,ALTER
is used to match the desired state. - parameters
List<Schema
Parameter> - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for the given object. - pipe
Execution 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.
- quoted
Identifiers BooleanIgnore Case - If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid 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.
- show
Outputs List<SchemaShow Output> - Outputs the result of
SHOW SCHEMA
for the given object. - storage
Serialization 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.
- suspend
Task 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.
- task
Auto IntegerRetry Attempts - Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level 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.
- user
Task 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.
- user
Task IntegerMinimum Trigger Interval In Seconds - Minimum amount of time between Triggered Task executions in seconds.
- user
Task IntegerTimeout Ms - User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- with
Managed 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.
- data
Retention 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.
- default
Ddl 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.
- describe
Outputs SchemaDescribe Output[] - Outputs the result of
DESCRIBE SCHEMA
for 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 booleanOutput - If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume string - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- is
Transient 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.
- log
Level 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.
- max
Data 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,ALTER
is used to match the desired state. - parameters
Schema
Parameter[] - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for the given object. - pipe
Execution 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.
- quoted
Identifiers booleanIgnore Case - If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid 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.
- show
Outputs SchemaShow Output[] - Outputs the result of
SHOW SCHEMA
for the given object. - storage
Serialization 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.
- suspend
Task 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.
- task
Auto numberRetry Attempts - Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level 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.
- user
Task 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.
- user
Task numberMinimum Trigger Interval In Seconds - Minimum amount of time between Triggered Task executions in seconds.
- user
Task numberTimeout Ms - User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- with
Managed 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 SCHEMA
for 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,ALTER
is used to match the desired state. - parameters
Sequence[Schema
Parameter Args] - Outputs the result of
SHOW PARAMETERS IN SCHEMA
for 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 SCHEMA
for 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.
- data
Retention 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.
- default
Ddl 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.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE SCHEMA
for 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 BooleanOutput - If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume String - The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- is
Transient 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.
- log
Level 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.
- max
Data 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,ALTER
is used to match the desired state. - parameters List<Property Map>
- Outputs the result of
SHOW PARAMETERS IN SCHEMA
for the given object. - pipe
Execution 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.
- quoted
Identifiers BooleanIgnore Case - If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid 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.
- show
Outputs List<Property Map> - Outputs the result of
SHOW SCHEMA
for the given object. - storage
Serialization 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.
- suspend
Task 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.
- task
Auto NumberRetry Attempts - Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level 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.
- user
Task 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.
- user
Task NumberMinimum Trigger Interval In Seconds - Minimum amount of time between Triggered Task executions in seconds.
- user
Task NumberTimeout Ms - User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- with
Managed 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<Schema
Parameter Catalog> - Data
Retention List<SchemaTime In Days Parameter Data Retention Time In Day> - Default
Ddl List<SchemaCollations Parameter Default Ddl Collation> - Enable
Console List<SchemaOutputs Parameter Enable Console Output> - External
Volumes List<SchemaParameter External Volume> - Log
Levels List<SchemaParameter Log Level> - Max
Data List<SchemaExtension Time In Days Parameter Max Data Extension Time In Day> - Pipe
Execution List<SchemaPauseds Parameter Pipe Execution Paused> - Quoted
Identifiers List<SchemaIgnore Cases Parameter Quoted Identifiers Ignore Case> - Replace
Invalid List<SchemaCharacters Parameter Replace Invalid Character> - Storage
Serialization List<SchemaPolicies Parameter Storage Serialization Policy> - Suspend
Task List<SchemaAfter Num Failures Parameter Suspend Task After Num Failure> - Task
Auto List<SchemaRetry Attempts Parameter Task Auto Retry Attempt> - Trace
Levels List<SchemaParameter Trace Level> - User
Task List<SchemaManaged Initial Warehouse Sizes Parameter User Task Managed Initial Warehouse Size> - User
Task List<SchemaMinimum Trigger Interval In Seconds Parameter User Task Minimum Trigger Interval In Second> - User
Task List<SchemaTimeout Ms Parameter User Task Timeout M>
- Catalogs
[]Schema
Parameter Catalog - Data
Retention []SchemaTime In Days Parameter Data Retention Time In Day - Default
Ddl []SchemaCollations Parameter Default Ddl Collation - Enable
Console []SchemaOutputs Parameter Enable Console Output - External
Volumes []SchemaParameter External Volume - Log
Levels []SchemaParameter Log Level - Max
Data []SchemaExtension Time In Days Parameter Max Data Extension Time In Day - Pipe
Execution []SchemaPauseds Parameter Pipe Execution Paused - Quoted
Identifiers []SchemaIgnore Cases Parameter Quoted Identifiers Ignore Case - Replace
Invalid []SchemaCharacters Parameter Replace Invalid Character - Storage
Serialization []SchemaPolicies Parameter Storage Serialization Policy - Suspend
Task []SchemaAfter Num Failures Parameter Suspend Task After Num Failure - Task
Auto []SchemaRetry Attempts Parameter Task Auto Retry Attempt - Trace
Levels []SchemaParameter Trace Level - User
Task []SchemaManaged Initial Warehouse Sizes Parameter User Task Managed Initial Warehouse Size - User
Task []SchemaMinimum Trigger Interval In Seconds Parameter User Task Minimum Trigger Interval In Second - User
Task []SchemaTimeout Ms Parameter User Task Timeout M
- catalogs
List<Schema
Parameter Catalog> - data
Retention List<SchemaTime In Days Parameter Data Retention Time In Day> - default
Ddl List<SchemaCollations Parameter Default Ddl Collation> - enable
Console List<SchemaOutputs Parameter Enable Console Output> - external
Volumes List<SchemaParameter External Volume> - log
Levels List<SchemaParameter Log Level> - max
Data List<SchemaExtension Time In Days Parameter Max Data Extension Time In Day> - pipe
Execution List<SchemaPauseds Parameter Pipe Execution Paused> - quoted
Identifiers List<SchemaIgnore Cases Parameter Quoted Identifiers Ignore Case> - replace
Invalid List<SchemaCharacters Parameter Replace Invalid Character> - storage
Serialization List<SchemaPolicies Parameter Storage Serialization Policy> - suspend
Task List<SchemaAfter Num Failures Parameter Suspend Task After Num Failure> - task
Auto List<SchemaRetry Attempts Parameter Task Auto Retry Attempt> - trace
Levels List<SchemaParameter Trace Level> - user
Task List<SchemaManaged Initial Warehouse Sizes Parameter User Task Managed Initial Warehouse Size> - user
Task List<SchemaMinimum Trigger Interval In Seconds Parameter User Task Minimum Trigger Interval In Second> - user
Task List<SchemaTimeout Ms Parameter User Task Timeout M>
- catalogs
Schema
Parameter Catalog[] - data
Retention SchemaTime In Days Parameter Data Retention Time In Day[] - default
Ddl SchemaCollations Parameter Default Ddl Collation[] - enable
Console SchemaOutputs Parameter Enable Console Output[] - external
Volumes SchemaParameter External Volume[] - log
Levels SchemaParameter Log Level[] - max
Data SchemaExtension Time In Days Parameter Max Data Extension Time In Day[] - pipe
Execution SchemaPauseds Parameter Pipe Execution Paused[] - quoted
Identifiers SchemaIgnore Cases Parameter Quoted Identifiers Ignore Case[] - replace
Invalid SchemaCharacters Parameter Replace Invalid Character[] - storage
Serialization SchemaPolicies Parameter Storage Serialization Policy[] - suspend
Task SchemaAfter Num Failures Parameter Suspend Task After Num Failure[] - task
Auto SchemaRetry Attempts Parameter Task Auto Retry Attempt[] - trace
Levels SchemaParameter Trace Level[] - user
Task SchemaManaged Initial Warehouse Sizes Parameter User Task Managed Initial Warehouse Size[] - user
Task SchemaMinimum Trigger Interval In Seconds Parameter User Task Minimum Trigger Interval In Second[] - user
Task SchemaTimeout Ms Parameter User Task Timeout M[]
- catalogs
Sequence[Schema
Parameter 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>
- data
Retention List<Property Map>Time In Days - default
Ddl List<Property Map>Collations - enable
Console List<Property Map>Outputs - external
Volumes List<Property Map> - log
Levels List<Property Map> - max
Data List<Property Map>Extension Time In Days - pipe
Execution List<Property Map>Pauseds - quoted
Identifiers List<Property Map>Ignore Cases - replace
Invalid List<Property Map>Characters - storage
Serialization List<Property Map>Policies - suspend
Task List<Property Map>After Num Failures - task
Auto List<Property Map>Retry Attempts - trace
Levels List<Property Map> - user
Task List<Property Map>Managed Initial Warehouse Sizes - user
Task List<Property Map>Minimum Trigger Interval In Seconds - user
Task 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
- Created
On string - Database
Name string - Dropped
On string - Is
Current bool - Is
Default bool - Name string
- Options string
- Owner string
- Owner
Role stringType - Retention
Time string
- Comment string
- Created
On string - Database
Name string - Dropped
On string - Is
Current bool - Is
Default bool - Name string
- Options string
- Owner string
- Owner
Role stringType - Retention
Time string
- comment String
- created
On String - database
Name String - dropped
On String - is
Current Boolean - is
Default Boolean - name String
- options String
- owner String
- owner
Role StringType - retention
Time String
- comment string
- created
On string - database
Name string - dropped
On string - is
Current boolean - is
Default boolean - name string
- options string
- owner string
- owner
Role stringType - retention
Time 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
- created
On String - database
Name String - dropped
On String - is
Current Boolean - is
Default Boolean - name String
- options String
- owner String
- owner
Role StringType - retention
Time String
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.