snowflake.SharedDatabase
Explore with Pulumi AI
Import
$ pulumi import snowflake:index/sharedDatabase:SharedDatabase example '"<shared_database_name>"'
Create SharedDatabase Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SharedDatabase(name: string, args: SharedDatabaseArgs, opts?: CustomResourceOptions);
@overload
def SharedDatabase(resource_name: str,
args: SharedDatabaseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SharedDatabase(resource_name: str,
opts: Optional[ResourceOptions] = None,
from_share: Optional[str] = None,
quoted_identifiers_ignore_case: Optional[bool] = None,
storage_serialization_policy: Optional[str] = None,
enable_console_output: Optional[bool] = None,
external_volume: Optional[str] = None,
comment: Optional[str] = None,
log_level: Optional[str] = None,
default_ddl_collation: Optional[str] = None,
name: Optional[str] = None,
replace_invalid_characters: Optional[bool] = None,
catalog: 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)
func NewSharedDatabase(ctx *Context, name string, args SharedDatabaseArgs, opts ...ResourceOption) (*SharedDatabase, error)
public SharedDatabase(string name, SharedDatabaseArgs args, CustomResourceOptions? opts = null)
public SharedDatabase(String name, SharedDatabaseArgs args)
public SharedDatabase(String name, SharedDatabaseArgs args, CustomResourceOptions options)
type: snowflake:SharedDatabase
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. SharedDatabaseArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. SharedDatabaseArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. SharedDatabaseArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. SharedDatabaseArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. SharedDatabaseArgs - 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 sharedDatabaseResource = new Snowflake.SharedDatabase("sharedDatabaseResource", new()
{
FromShare = "string",
QuotedIdentifiersIgnoreCase = false,
StorageSerializationPolicy = "string",
EnableConsoleOutput = false,
ExternalVolume = "string",
Comment = "string",
LogLevel = "string",
DefaultDdlCollation = "string",
Name = "string",
ReplaceInvalidCharacters = false,
Catalog = "string",
SuspendTaskAfterNumFailures = 0,
TaskAutoRetryAttempts = 0,
TraceLevel = "string",
UserTaskManagedInitialWarehouseSize = "string",
UserTaskMinimumTriggerIntervalInSeconds = 0,
UserTaskTimeoutMs = 0,
});
example, err := snowflake.NewSharedDatabase(ctx, "sharedDatabaseResource", &snowflake.SharedDatabaseArgs{
FromShare: pulumi.String("string"),
QuotedIdentifiersIgnoreCase: pulumi.Bool(false),
StorageSerializationPolicy: pulumi.String("string"),
EnableConsoleOutput: pulumi.Bool(false),
ExternalVolume: pulumi.String("string"),
Comment: pulumi.String("string"),
LogLevel: pulumi.String("string"),
DefaultDdlCollation: pulumi.String("string"),
Name: pulumi.String("string"),
ReplaceInvalidCharacters: pulumi.Bool(false),
Catalog: 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),
})
var sharedDatabaseResource = new SharedDatabase("sharedDatabaseResource", SharedDatabaseArgs.builder()
.fromShare("string")
.quotedIdentifiersIgnoreCase(false)
.storageSerializationPolicy("string")
.enableConsoleOutput(false)
.externalVolume("string")
.comment("string")
.logLevel("string")
.defaultDdlCollation("string")
.name("string")
.replaceInvalidCharacters(false)
.catalog("string")
.suspendTaskAfterNumFailures(0)
.taskAutoRetryAttempts(0)
.traceLevel("string")
.userTaskManagedInitialWarehouseSize("string")
.userTaskMinimumTriggerIntervalInSeconds(0)
.userTaskTimeoutMs(0)
.build());
shared_database_resource = snowflake.SharedDatabase("sharedDatabaseResource",
from_share="string",
quoted_identifiers_ignore_case=False,
storage_serialization_policy="string",
enable_console_output=False,
external_volume="string",
comment="string",
log_level="string",
default_ddl_collation="string",
name="string",
replace_invalid_characters=False,
catalog="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)
const sharedDatabaseResource = new snowflake.SharedDatabase("sharedDatabaseResource", {
fromShare: "string",
quotedIdentifiersIgnoreCase: false,
storageSerializationPolicy: "string",
enableConsoleOutput: false,
externalVolume: "string",
comment: "string",
logLevel: "string",
defaultDdlCollation: "string",
name: "string",
replaceInvalidCharacters: false,
catalog: "string",
suspendTaskAfterNumFailures: 0,
taskAutoRetryAttempts: 0,
traceLevel: "string",
userTaskManagedInitialWarehouseSize: "string",
userTaskMinimumTriggerIntervalInSeconds: 0,
userTaskTimeoutMs: 0,
});
type: snowflake:SharedDatabase
properties:
catalog: string
comment: string
defaultDdlCollation: string
enableConsoleOutput: false
externalVolume: string
fromShare: string
logLevel: string
name: string
quotedIdentifiersIgnoreCase: false
replaceInvalidCharacters: false
storageSerializationPolicy: string
suspendTaskAfterNumFailures: 0
taskAutoRetryAttempts: 0
traceLevel: string
userTaskManagedInitialWarehouseSize: string
userTaskMinimumTriggerIntervalInSeconds: 0
userTaskTimeoutMs: 0
SharedDatabase Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SharedDatabase resource accepts the following input properties:
This property is required. Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - Catalog
Changes to this property will trigger replacement.
- 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 database.
- Default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- External
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- Log
Level Changes to this property will trigger replacement.
- 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.
- Name string
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - Quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- Replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- Trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- User
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- User
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
This property is required. Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - Catalog
Changes to this property will trigger replacement.
- 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 database.
- Default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- External
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- Log
Level Changes to this property will trigger replacement.
- 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.
- Name string
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - Quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- Replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- Trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- User
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- User
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
This property is required. Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - catalog
Changes to this property will trigger replacement.
- 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 database.
- default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- log
Level Changes to this property will trigger replacement.
- 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.
- name String
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- user
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
This property is required. Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - catalog
Changes to this property will trigger replacement.
- 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 database.
- default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- log
Level Changes to this property will trigger replacement.
- 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.
- name string
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- user
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
This property is required. Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - catalog
Changes to this property will trigger replacement.
- 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 database.
- default_
ddl_ collation Changes to this property will trigger replacement.
- 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_ output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external_
volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- log_
level Changes to this property will trigger replacement.
- 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.
- name str
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - quoted_
identifiers_ ignore_ case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace_
invalid_ characters Changes to this property will trigger replacement.
- 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_ policy Changes to this property will trigger replacement.
- 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_ after_ num_ failures Changes to this property will trigger replacement.
- 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_ retry_ attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace_
level Changes to this property will trigger replacement.
- 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_ managed_ initial_ warehouse_ size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user_
task_ minimum_ trigger_ interval_ in_ seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- user_
task_ timeout_ ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
This property is required. Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - catalog
Changes to this property will trigger replacement.
- 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 database.
- default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
- log
Level Changes to this property will trigger replacement.
- 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.
- name String
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- user
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
Outputs
All input properties are implicitly available as output properties. Additionally, the SharedDatabase resource produces the following output properties:
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
Look up Existing SharedDatabase Resource
Get an existing SharedDatabase 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?: SharedDatabaseState, opts?: CustomResourceOptions): SharedDatabase
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
catalog: Optional[str] = None,
comment: Optional[str] = None,
default_ddl_collation: Optional[str] = None,
enable_console_output: Optional[bool] = None,
external_volume: Optional[str] = None,
from_share: Optional[str] = None,
fully_qualified_name: Optional[str] = None,
log_level: Optional[str] = None,
name: Optional[str] = None,
quoted_identifiers_ignore_case: Optional[bool] = None,
replace_invalid_characters: Optional[bool] = 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) -> SharedDatabase
func GetSharedDatabase(ctx *Context, name string, id IDInput, state *SharedDatabaseState, opts ...ResourceOption) (*SharedDatabase, error)
public static SharedDatabase Get(string name, Input<string> id, SharedDatabaseState? state, CustomResourceOptions? opts = null)
public static SharedDatabase get(String name, Output<String> id, SharedDatabaseState state, CustomResourceOptions options)
resources: _: type: snowflake:SharedDatabase get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Catalog
Changes to this property will trigger replacement.
- 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 database.
- Default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- External
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Log
Level Changes to this property will trigger replacement.
- 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.
- Name string
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - Quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- Replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- Trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- User
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- User
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- Catalog
Changes to this property will trigger replacement.
- 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 database.
- Default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- External
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Log
Level Changes to this property will trigger replacement.
- 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.
- Name string
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - Quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- Replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- Trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- User
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- User
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- catalog
Changes to this property will trigger replacement.
- 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 database.
- default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- log
Level Changes to this property will trigger replacement.
- 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.
- name String
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- user
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- catalog
Changes to this property will trigger replacement.
- 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 database.
- default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- log
Level Changes to this property will trigger replacement.
- 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.
- name string
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- user
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- catalog
Changes to this property will trigger replacement.
- 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 database.
- default_
ddl_ collation Changes to this property will trigger replacement.
- 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_ output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external_
volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- log_
level Changes to this property will trigger replacement.
- 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.
- name str
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - quoted_
identifiers_ ignore_ case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace_
invalid_ characters Changes to this property will trigger replacement.
- 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_ policy Changes to this property will trigger replacement.
- 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_ after_ num_ failures Changes to this property will trigger replacement.
- 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_ retry_ attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace_
level Changes to this property will trigger replacement.
- 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_ managed_ initial_ warehouse_ size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user_
task_ minimum_ trigger_ interval_ in_ seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- user_
task_ timeout_ ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
- catalog
Changes to this property will trigger replacement.
- 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 database.
- default
Ddl Collation Changes to this property will trigger replacement.
- 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 Output Changes to this property will trigger replacement.
- If true, enables stdout/stderr fast path logging for anonymous stored procedures.
- external
Volume Changes to this property will trigger replacement.
- The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see EXTERNAL_VOLUME.
Changes to this property will trigger replacement.
- A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of
"<organization_name>"."<account_name>"."<share_name>"
. For more information about this resource, see docs. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- log
Level Changes to this property will trigger replacement.
- 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.
- name String
- Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,"
. - quoted
Identifiers Ignore Case Changes to this property will trigger replacement.
- If true, the case of quoted identifiers is ignored. For more information, see QUOTEDIDENTIFIERSIGNORE_CASE.
- replace
Invalid Characters Changes to this property will trigger replacement.
- 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 Policy Changes to this property will trigger replacement.
- 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 After Num Failures Changes to this property will trigger replacement.
- 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 Retry Attempts Changes to this property will trigger replacement.
- Maximum automatic retries allowed for a user task. For more information, see TASKAUTORETRY_ATTEMPTS.
- trace
Level Changes to this property will trigger replacement.
- 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 Managed Initial Warehouse Size Changes to this property will trigger replacement.
- The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see USERTASKMANAGEDINITIALWAREHOUSE_SIZE.
- user
Task Minimum Trigger Interval In Seconds Changes to this property will trigger replacement.
- Minimum amount of time between Triggered Task executions in seconds.
- user
Task Timeout Ms Changes to this property will trigger replacement.
- User task execution timeout in milliseconds. For more information, see USERTASKTIMEOUT_MS.
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.