pulumi-snowflake 2.3.0a1752907264__py3-none-any.whl → 2.3.0a1753398370__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-snowflake might be problematic. Click here for more details.

Files changed (157) hide show
  1. pulumi_snowflake/__init__.py +1 -1
  2. pulumi_snowflake/_inputs.py +16796 -16797
  3. pulumi_snowflake/account.py +252 -253
  4. pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
  5. pulumi_snowflake/account_parameter.py +35 -36
  6. pulumi_snowflake/account_password_policy_attachment.py +18 -19
  7. pulumi_snowflake/account_role.py +42 -43
  8. pulumi_snowflake/alert.py +149 -150
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
  12. pulumi_snowflake/api_integration.py +251 -252
  13. pulumi_snowflake/authentication_policy.py +167 -168
  14. pulumi_snowflake/compute_pool.py +167 -168
  15. pulumi_snowflake/config/__init__.py +1 -1
  16. pulumi_snowflake/config/__init__.pyi +1 -2
  17. pulumi_snowflake/config/outputs.py +21 -22
  18. pulumi_snowflake/config/vars.py +43 -44
  19. pulumi_snowflake/cortex_search_service.py +191 -192
  20. pulumi_snowflake/current_account.py +2088 -2089
  21. pulumi_snowflake/database.py +353 -354
  22. pulumi_snowflake/database_role.py +63 -64
  23. pulumi_snowflake/dynamic_table.py +274 -275
  24. pulumi_snowflake/email_notification_integration.py +70 -71
  25. pulumi_snowflake/execute.py +61 -62
  26. pulumi_snowflake/external_function.py +280 -281
  27. pulumi_snowflake/external_oauth_integration.py +288 -289
  28. pulumi_snowflake/external_table.py +246 -247
  29. pulumi_snowflake/external_volume.py +68 -69
  30. pulumi_snowflake/failover_group.py +135 -136
  31. pulumi_snowflake/file_format.py +622 -623
  32. pulumi_snowflake/function_java.py +320 -321
  33. pulumi_snowflake/function_javascript.py +243 -244
  34. pulumi_snowflake/function_python.py +334 -335
  35. pulumi_snowflake/function_scala.py +320 -321
  36. pulumi_snowflake/function_sql.py +226 -227
  37. pulumi_snowflake/get_account_roles.py +16 -17
  38. pulumi_snowflake/get_accounts.py +16 -17
  39. pulumi_snowflake/get_alerts.py +22 -23
  40. pulumi_snowflake/get_compute_pools.py +23 -24
  41. pulumi_snowflake/get_connections.py +10 -11
  42. pulumi_snowflake/get_cortex_search_services.py +18 -19
  43. pulumi_snowflake/get_current_account.py +9 -10
  44. pulumi_snowflake/get_current_role.py +5 -6
  45. pulumi_snowflake/get_database.py +25 -26
  46. pulumi_snowflake/get_database_role.py +19 -20
  47. pulumi_snowflake/get_database_roles.py +17 -18
  48. pulumi_snowflake/get_databases.py +29 -30
  49. pulumi_snowflake/get_dynamic_tables.py +13 -14
  50. pulumi_snowflake/get_external_functions.py +16 -17
  51. pulumi_snowflake/get_external_tables.py +16 -17
  52. pulumi_snowflake/get_failover_groups.py +10 -11
  53. pulumi_snowflake/get_file_formats.py +16 -17
  54. pulumi_snowflake/get_functions.py +16 -17
  55. pulumi_snowflake/get_git_repositories.py +18 -19
  56. pulumi_snowflake/get_grants.py +9 -10
  57. pulumi_snowflake/get_image_repositories.py +11 -12
  58. pulumi_snowflake/get_masking_policies.py +18 -19
  59. pulumi_snowflake/get_materialized_views.py +16 -17
  60. pulumi_snowflake/get_network_policies.py +16 -17
  61. pulumi_snowflake/get_parameters.py +34 -35
  62. pulumi_snowflake/get_pipes.py +16 -17
  63. pulumi_snowflake/get_procedures.py +16 -17
  64. pulumi_snowflake/get_resource_monitors.py +10 -11
  65. pulumi_snowflake/get_row_access_policies.py +18 -19
  66. pulumi_snowflake/get_schemas.py +30 -31
  67. pulumi_snowflake/get_secrets.py +17 -18
  68. pulumi_snowflake/get_security_integrations.py +16 -17
  69. pulumi_snowflake/get_sequences.py +16 -17
  70. pulumi_snowflake/get_services.py +30 -31
  71. pulumi_snowflake/get_shares.py +10 -11
  72. pulumi_snowflake/get_stages.py +16 -17
  73. pulumi_snowflake/get_storage_integrations.py +4 -5
  74. pulumi_snowflake/get_streamlits.py +18 -19
  75. pulumi_snowflake/get_streams.py +24 -25
  76. pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
  77. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
  78. pulumi_snowflake/get_system_get_private_link_config.py +21 -22
  79. pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
  80. pulumi_snowflake/get_tables.py +24 -25
  81. pulumi_snowflake/get_tags.py +11 -12
  82. pulumi_snowflake/get_tasks.py +30 -31
  83. pulumi_snowflake/get_users.py +29 -30
  84. pulumi_snowflake/get_views.py +24 -25
  85. pulumi_snowflake/get_warehouses.py +22 -23
  86. pulumi_snowflake/git_repository.py +133 -134
  87. pulumi_snowflake/grant_account_role.py +52 -53
  88. pulumi_snowflake/grant_application_role.py +52 -53
  89. pulumi_snowflake/grant_database_role.py +69 -70
  90. pulumi_snowflake/grant_ownership.py +55 -56
  91. pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
  92. pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
  93. pulumi_snowflake/grant_privileges_to_share.py +154 -155
  94. pulumi_snowflake/image_repository.py +80 -81
  95. pulumi_snowflake/job_service.py +148 -149
  96. pulumi_snowflake/legacy_service_user.py +1269 -1270
  97. pulumi_snowflake/managed_account.py +140 -141
  98. pulumi_snowflake/masking_policy.py +136 -137
  99. pulumi_snowflake/materialized_view.py +149 -150
  100. pulumi_snowflake/network_policy.py +116 -117
  101. pulumi_snowflake/network_policy_attachment.py +52 -53
  102. pulumi_snowflake/network_rule.py +129 -130
  103. pulumi_snowflake/notification_integration.py +298 -299
  104. pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
  105. pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
  106. pulumi_snowflake/object_parameter.py +72 -73
  107. pulumi_snowflake/outputs.py +15510 -15511
  108. pulumi_snowflake/password_policy.py +299 -300
  109. pulumi_snowflake/pipe.py +181 -182
  110. pulumi_snowflake/primary_connection.py +70 -71
  111. pulumi_snowflake/procedure_java.py +341 -342
  112. pulumi_snowflake/procedure_javascript.py +247 -248
  113. pulumi_snowflake/procedure_python.py +338 -339
  114. pulumi_snowflake/procedure_scala.py +341 -342
  115. pulumi_snowflake/procedure_sql.py +247 -248
  116. pulumi_snowflake/provider.py +377 -378
  117. pulumi_snowflake/pulumi-plugin.json +1 -1
  118. pulumi_snowflake/resource_monitor.py +165 -166
  119. pulumi_snowflake/row_access_policy.py +102 -103
  120. pulumi_snowflake/saml2_integration.py +303 -304
  121. pulumi_snowflake/schema.py +390 -391
  122. pulumi_snowflake/scim_integration.py +133 -134
  123. pulumi_snowflake/secondary_connection.py +72 -73
  124. pulumi_snowflake/secondary_database.py +350 -351
  125. pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
  126. pulumi_snowflake/secret_with_basic_authentication.py +121 -122
  127. pulumi_snowflake/secret_with_client_credentials.py +125 -126
  128. pulumi_snowflake/secret_with_generic_string.py +104 -105
  129. pulumi_snowflake/sequence.py +121 -122
  130. pulumi_snowflake/service.py +233 -234
  131. pulumi_snowflake/service_user.py +1239 -1240
  132. pulumi_snowflake/share.py +61 -62
  133. pulumi_snowflake/shared_database.py +299 -300
  134. pulumi_snowflake/stage.py +234 -235
  135. pulumi_snowflake/storage_integration.py +230 -231
  136. pulumi_snowflake/stream_on_directory_table.py +128 -129
  137. pulumi_snowflake/stream_on_external_table.py +151 -152
  138. pulumi_snowflake/stream_on_table.py +164 -165
  139. pulumi_snowflake/stream_on_view.py +164 -165
  140. pulumi_snowflake/streamlit.py +184 -185
  141. pulumi_snowflake/table.py +147 -148
  142. pulumi_snowflake/table_column_masking_policy_application.py +52 -53
  143. pulumi_snowflake/table_constraint.py +191 -192
  144. pulumi_snowflake/tag.py +114 -115
  145. pulumi_snowflake/tag_association.py +86 -87
  146. pulumi_snowflake/task.py +1224 -1225
  147. pulumi_snowflake/user.py +1346 -1347
  148. pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
  149. pulumi_snowflake/user_password_policy_attachment.py +35 -36
  150. pulumi_snowflake/user_public_keys.py +52 -53
  151. pulumi_snowflake/view.py +187 -188
  152. pulumi_snowflake/warehouse.py +286 -287
  153. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
  154. pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
  155. pulumi_snowflake-2.3.0a1752907264.dist-info/RECORD +0 -158
  156. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
  157. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -20,48 +19,48 @@ __all__ = ['SecondaryDatabaseArgs', 'SecondaryDatabase']
20
19
  @pulumi.input_type
21
20
  class SecondaryDatabaseArgs:
22
21
  def __init__(__self__, *,
23
- as_replica_of: pulumi.Input[builtins.str],
24
- catalog: Optional[pulumi.Input[builtins.str]] = None,
25
- comment: Optional[pulumi.Input[builtins.str]] = None,
26
- data_retention_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
27
- default_ddl_collation: Optional[pulumi.Input[builtins.str]] = None,
28
- enable_console_output: Optional[pulumi.Input[builtins.bool]] = None,
29
- external_volume: Optional[pulumi.Input[builtins.str]] = None,
30
- is_transient: Optional[pulumi.Input[builtins.bool]] = None,
31
- log_level: Optional[pulumi.Input[builtins.str]] = None,
32
- max_data_extension_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
33
- name: Optional[pulumi.Input[builtins.str]] = None,
34
- quoted_identifiers_ignore_case: Optional[pulumi.Input[builtins.bool]] = None,
35
- replace_invalid_characters: Optional[pulumi.Input[builtins.bool]] = None,
36
- storage_serialization_policy: Optional[pulumi.Input[builtins.str]] = None,
37
- suspend_task_after_num_failures: Optional[pulumi.Input[builtins.int]] = None,
38
- task_auto_retry_attempts: Optional[pulumi.Input[builtins.int]] = None,
39
- trace_level: Optional[pulumi.Input[builtins.str]] = None,
40
- user_task_managed_initial_warehouse_size: Optional[pulumi.Input[builtins.str]] = None,
41
- user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
42
- user_task_timeout_ms: Optional[pulumi.Input[builtins.int]] = None):
22
+ as_replica_of: pulumi.Input[_builtins.str],
23
+ catalog: Optional[pulumi.Input[_builtins.str]] = None,
24
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
25
+ data_retention_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
26
+ default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
27
+ enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
28
+ external_volume: Optional[pulumi.Input[_builtins.str]] = None,
29
+ is_transient: Optional[pulumi.Input[_builtins.bool]] = None,
30
+ log_level: Optional[pulumi.Input[_builtins.str]] = None,
31
+ max_data_extension_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
32
+ name: Optional[pulumi.Input[_builtins.str]] = None,
33
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
34
+ replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
35
+ storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
36
+ suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
37
+ task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
38
+ trace_level: Optional[pulumi.Input[_builtins.str]] = None,
39
+ user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
40
+ user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
41
+ user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None):
43
42
  """
44
43
  The set of arguments for constructing a SecondaryDatabase resource.
45
- :param pulumi.Input[builtins.str] as_replica_of: A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
46
- :param pulumi.Input[builtins.str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
47
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the database.
48
- :param pulumi.Input[builtins.int] data_retention_time_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](https://docs.snowflake.com/en/user-guide/data-time-travel).
49
- :param pulumi.Input[builtins.str] default_ddl_collation: 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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
50
- :param pulumi.Input[builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
51
- :param pulumi.Input[builtins.str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
52
- :param pulumi.Input[builtins.bool] is_transient: Specifies the database as transient. Transient databases 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.
53
- :param pulumi.Input[builtins.str] log_level: 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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
54
- :param pulumi.Input[builtins.int] max_data_extension_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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
55
- :param pulumi.Input[builtins.str] name: Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
56
- :param pulumi.Input[builtins.bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
57
- :param pulumi.Input[builtins.bool] replace_invalid_characters: 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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
58
- :param pulumi.Input[builtins.str] storage_serialization_policy: 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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
59
- :param pulumi.Input[builtins.int] suspend_task_after_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 [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
60
- :param pulumi.Input[builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
61
- :param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
62
- :param pulumi.Input[builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
63
- :param pulumi.Input[builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
64
- :param pulumi.Input[builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
44
+ :param pulumi.Input[_builtins.str] as_replica_of: A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
45
+ :param pulumi.Input[_builtins.str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
46
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the database.
47
+ :param pulumi.Input[_builtins.int] data_retention_time_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](https://docs.snowflake.com/en/user-guide/data-time-travel).
48
+ :param pulumi.Input[_builtins.str] default_ddl_collation: 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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
49
+ :param pulumi.Input[_builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
50
+ :param pulumi.Input[_builtins.str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
51
+ :param pulumi.Input[_builtins.bool] is_transient: Specifies the database as transient. Transient databases 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.
52
+ :param pulumi.Input[_builtins.str] log_level: 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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
53
+ :param pulumi.Input[_builtins.int] max_data_extension_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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
54
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
55
+ :param pulumi.Input[_builtins.bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
56
+ :param pulumi.Input[_builtins.bool] replace_invalid_characters: 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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
57
+ :param pulumi.Input[_builtins.str] storage_serialization_policy: 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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
58
+ :param pulumi.Input[_builtins.int] suspend_task_after_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 [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
59
+ :param pulumi.Input[_builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
60
+ :param pulumi.Input[_builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
61
+ :param pulumi.Input[_builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
62
+ :param pulumi.Input[_builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
63
+ :param pulumi.Input[_builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
65
64
  """
66
65
  pulumi.set(__self__, "as_replica_of", as_replica_of)
67
66
  if catalog is not None:
@@ -103,294 +102,294 @@ class SecondaryDatabaseArgs:
103
102
  if user_task_timeout_ms is not None:
104
103
  pulumi.set(__self__, "user_task_timeout_ms", user_task_timeout_ms)
105
104
 
106
- @property
105
+ @_builtins.property
107
106
  @pulumi.getter(name="asReplicaOf")
108
- def as_replica_of(self) -> pulumi.Input[builtins.str]:
107
+ def as_replica_of(self) -> pulumi.Input[_builtins.str]:
109
108
  """
110
109
  A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
111
110
  """
112
111
  return pulumi.get(self, "as_replica_of")
113
112
 
114
113
  @as_replica_of.setter
115
- def as_replica_of(self, value: pulumi.Input[builtins.str]):
114
+ def as_replica_of(self, value: pulumi.Input[_builtins.str]):
116
115
  pulumi.set(self, "as_replica_of", value)
117
116
 
118
- @property
117
+ @_builtins.property
119
118
  @pulumi.getter
120
- def catalog(self) -> Optional[pulumi.Input[builtins.str]]:
119
+ def catalog(self) -> Optional[pulumi.Input[_builtins.str]]:
121
120
  """
122
121
  The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
123
122
  """
124
123
  return pulumi.get(self, "catalog")
125
124
 
126
125
  @catalog.setter
127
- def catalog(self, value: Optional[pulumi.Input[builtins.str]]):
126
+ def catalog(self, value: Optional[pulumi.Input[_builtins.str]]):
128
127
  pulumi.set(self, "catalog", value)
129
128
 
130
- @property
129
+ @_builtins.property
131
130
  @pulumi.getter
132
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
131
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
133
132
  """
134
133
  Specifies a comment for the database.
135
134
  """
136
135
  return pulumi.get(self, "comment")
137
136
 
138
137
  @comment.setter
139
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
138
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
140
139
  pulumi.set(self, "comment", value)
141
140
 
142
- @property
141
+ @_builtins.property
143
142
  @pulumi.getter(name="dataRetentionTimeInDays")
144
- def data_retention_time_in_days(self) -> Optional[pulumi.Input[builtins.int]]:
143
+ def data_retention_time_in_days(self) -> Optional[pulumi.Input[_builtins.int]]:
145
144
  """
146
145
  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](https://docs.snowflake.com/en/user-guide/data-time-travel).
147
146
  """
148
147
  return pulumi.get(self, "data_retention_time_in_days")
149
148
 
150
149
  @data_retention_time_in_days.setter
151
- def data_retention_time_in_days(self, value: Optional[pulumi.Input[builtins.int]]):
150
+ def data_retention_time_in_days(self, value: Optional[pulumi.Input[_builtins.int]]):
152
151
  pulumi.set(self, "data_retention_time_in_days", value)
153
152
 
154
- @property
153
+ @_builtins.property
155
154
  @pulumi.getter(name="defaultDdlCollation")
156
- def default_ddl_collation(self) -> Optional[pulumi.Input[builtins.str]]:
155
+ def default_ddl_collation(self) -> Optional[pulumi.Input[_builtins.str]]:
157
156
  """
158
157
  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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
159
158
  """
160
159
  return pulumi.get(self, "default_ddl_collation")
161
160
 
162
161
  @default_ddl_collation.setter
163
- def default_ddl_collation(self, value: Optional[pulumi.Input[builtins.str]]):
162
+ def default_ddl_collation(self, value: Optional[pulumi.Input[_builtins.str]]):
164
163
  pulumi.set(self, "default_ddl_collation", value)
165
164
 
166
- @property
165
+ @_builtins.property
167
166
  @pulumi.getter(name="enableConsoleOutput")
168
- def enable_console_output(self) -> Optional[pulumi.Input[builtins.bool]]:
167
+ def enable_console_output(self) -> Optional[pulumi.Input[_builtins.bool]]:
169
168
  """
170
169
  If true, enables stdout/stderr fast path logging for anonymous stored procedures.
171
170
  """
172
171
  return pulumi.get(self, "enable_console_output")
173
172
 
174
173
  @enable_console_output.setter
175
- def enable_console_output(self, value: Optional[pulumi.Input[builtins.bool]]):
174
+ def enable_console_output(self, value: Optional[pulumi.Input[_builtins.bool]]):
176
175
  pulumi.set(self, "enable_console_output", value)
177
176
 
178
- @property
177
+ @_builtins.property
179
178
  @pulumi.getter(name="externalVolume")
180
- def external_volume(self) -> Optional[pulumi.Input[builtins.str]]:
179
+ def external_volume(self) -> Optional[pulumi.Input[_builtins.str]]:
181
180
  """
182
181
  The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
183
182
  """
184
183
  return pulumi.get(self, "external_volume")
185
184
 
186
185
  @external_volume.setter
187
- def external_volume(self, value: Optional[pulumi.Input[builtins.str]]):
186
+ def external_volume(self, value: Optional[pulumi.Input[_builtins.str]]):
188
187
  pulumi.set(self, "external_volume", value)
189
188
 
190
- @property
189
+ @_builtins.property
191
190
  @pulumi.getter(name="isTransient")
192
- def is_transient(self) -> Optional[pulumi.Input[builtins.bool]]:
191
+ def is_transient(self) -> Optional[pulumi.Input[_builtins.bool]]:
193
192
  """
194
193
  Specifies the database as transient. Transient databases 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.
195
194
  """
196
195
  return pulumi.get(self, "is_transient")
197
196
 
198
197
  @is_transient.setter
199
- def is_transient(self, value: Optional[pulumi.Input[builtins.bool]]):
198
+ def is_transient(self, value: Optional[pulumi.Input[_builtins.bool]]):
200
199
  pulumi.set(self, "is_transient", value)
201
200
 
202
- @property
201
+ @_builtins.property
203
202
  @pulumi.getter(name="logLevel")
204
- def log_level(self) -> Optional[pulumi.Input[builtins.str]]:
203
+ def log_level(self) -> Optional[pulumi.Input[_builtins.str]]:
205
204
  """
206
205
  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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
207
206
  """
208
207
  return pulumi.get(self, "log_level")
209
208
 
210
209
  @log_level.setter
211
- def log_level(self, value: Optional[pulumi.Input[builtins.str]]):
210
+ def log_level(self, value: Optional[pulumi.Input[_builtins.str]]):
212
211
  pulumi.set(self, "log_level", value)
213
212
 
214
- @property
213
+ @_builtins.property
215
214
  @pulumi.getter(name="maxDataExtensionTimeInDays")
216
- def max_data_extension_time_in_days(self) -> Optional[pulumi.Input[builtins.int]]:
215
+ def max_data_extension_time_in_days(self) -> Optional[pulumi.Input[_builtins.int]]:
217
216
  """
218
217
  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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
219
218
  """
220
219
  return pulumi.get(self, "max_data_extension_time_in_days")
221
220
 
222
221
  @max_data_extension_time_in_days.setter
223
- def max_data_extension_time_in_days(self, value: Optional[pulumi.Input[builtins.int]]):
222
+ def max_data_extension_time_in_days(self, value: Optional[pulumi.Input[_builtins.int]]):
224
223
  pulumi.set(self, "max_data_extension_time_in_days", value)
225
224
 
226
- @property
225
+ @_builtins.property
227
226
  @pulumi.getter
228
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
227
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
229
228
  """
230
229
  Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
231
230
  """
232
231
  return pulumi.get(self, "name")
233
232
 
234
233
  @name.setter
235
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
234
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
236
235
  pulumi.set(self, "name", value)
237
236
 
238
- @property
237
+ @_builtins.property
239
238
  @pulumi.getter(name="quotedIdentifiersIgnoreCase")
240
- def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[builtins.bool]]:
239
+ def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[_builtins.bool]]:
241
240
  """
242
241
  If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
243
242
  """
244
243
  return pulumi.get(self, "quoted_identifiers_ignore_case")
245
244
 
246
245
  @quoted_identifiers_ignore_case.setter
247
- def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[builtins.bool]]):
246
+ def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[_builtins.bool]]):
248
247
  pulumi.set(self, "quoted_identifiers_ignore_case", value)
249
248
 
250
- @property
249
+ @_builtins.property
251
250
  @pulumi.getter(name="replaceInvalidCharacters")
252
- def replace_invalid_characters(self) -> Optional[pulumi.Input[builtins.bool]]:
251
+ def replace_invalid_characters(self) -> Optional[pulumi.Input[_builtins.bool]]:
253
252
  """
254
253
  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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
255
254
  """
256
255
  return pulumi.get(self, "replace_invalid_characters")
257
256
 
258
257
  @replace_invalid_characters.setter
259
- def replace_invalid_characters(self, value: Optional[pulumi.Input[builtins.bool]]):
258
+ def replace_invalid_characters(self, value: Optional[pulumi.Input[_builtins.bool]]):
260
259
  pulumi.set(self, "replace_invalid_characters", value)
261
260
 
262
- @property
261
+ @_builtins.property
263
262
  @pulumi.getter(name="storageSerializationPolicy")
264
- def storage_serialization_policy(self) -> Optional[pulumi.Input[builtins.str]]:
263
+ def storage_serialization_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
265
264
  """
266
265
  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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
267
266
  """
268
267
  return pulumi.get(self, "storage_serialization_policy")
269
268
 
270
269
  @storage_serialization_policy.setter
271
- def storage_serialization_policy(self, value: Optional[pulumi.Input[builtins.str]]):
270
+ def storage_serialization_policy(self, value: Optional[pulumi.Input[_builtins.str]]):
272
271
  pulumi.set(self, "storage_serialization_policy", value)
273
272
 
274
- @property
273
+ @_builtins.property
275
274
  @pulumi.getter(name="suspendTaskAfterNumFailures")
276
- def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[builtins.int]]:
275
+ def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[_builtins.int]]:
277
276
  """
278
277
  How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
279
278
  """
280
279
  return pulumi.get(self, "suspend_task_after_num_failures")
281
280
 
282
281
  @suspend_task_after_num_failures.setter
283
- def suspend_task_after_num_failures(self, value: Optional[pulumi.Input[builtins.int]]):
282
+ def suspend_task_after_num_failures(self, value: Optional[pulumi.Input[_builtins.int]]):
284
283
  pulumi.set(self, "suspend_task_after_num_failures", value)
285
284
 
286
- @property
285
+ @_builtins.property
287
286
  @pulumi.getter(name="taskAutoRetryAttempts")
288
- def task_auto_retry_attempts(self) -> Optional[pulumi.Input[builtins.int]]:
287
+ def task_auto_retry_attempts(self) -> Optional[pulumi.Input[_builtins.int]]:
289
288
  """
290
289
  Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
291
290
  """
292
291
  return pulumi.get(self, "task_auto_retry_attempts")
293
292
 
294
293
  @task_auto_retry_attempts.setter
295
- def task_auto_retry_attempts(self, value: Optional[pulumi.Input[builtins.int]]):
294
+ def task_auto_retry_attempts(self, value: Optional[pulumi.Input[_builtins.int]]):
296
295
  pulumi.set(self, "task_auto_retry_attempts", value)
297
296
 
298
- @property
297
+ @_builtins.property
299
298
  @pulumi.getter(name="traceLevel")
300
- def trace_level(self) -> Optional[pulumi.Input[builtins.str]]:
299
+ def trace_level(self) -> Optional[pulumi.Input[_builtins.str]]:
301
300
  """
302
301
  Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
303
302
  """
304
303
  return pulumi.get(self, "trace_level")
305
304
 
306
305
  @trace_level.setter
307
- def trace_level(self, value: Optional[pulumi.Input[builtins.str]]):
306
+ def trace_level(self, value: Optional[pulumi.Input[_builtins.str]]):
308
307
  pulumi.set(self, "trace_level", value)
309
308
 
310
- @property
309
+ @_builtins.property
311
310
  @pulumi.getter(name="userTaskManagedInitialWarehouseSize")
312
- def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[builtins.str]]:
311
+ def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[_builtins.str]]:
313
312
  """
314
313
  The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
315
314
  """
316
315
  return pulumi.get(self, "user_task_managed_initial_warehouse_size")
317
316
 
318
317
  @user_task_managed_initial_warehouse_size.setter
319
- def user_task_managed_initial_warehouse_size(self, value: Optional[pulumi.Input[builtins.str]]):
318
+ def user_task_managed_initial_warehouse_size(self, value: Optional[pulumi.Input[_builtins.str]]):
320
319
  pulumi.set(self, "user_task_managed_initial_warehouse_size", value)
321
320
 
322
- @property
321
+ @_builtins.property
323
322
  @pulumi.getter(name="userTaskMinimumTriggerIntervalInSeconds")
324
- def user_task_minimum_trigger_interval_in_seconds(self) -> Optional[pulumi.Input[builtins.int]]:
323
+ def user_task_minimum_trigger_interval_in_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
325
324
  """
326
325
  Minimum amount of time between Triggered Task executions in seconds.
327
326
  """
328
327
  return pulumi.get(self, "user_task_minimum_trigger_interval_in_seconds")
329
328
 
330
329
  @user_task_minimum_trigger_interval_in_seconds.setter
331
- def user_task_minimum_trigger_interval_in_seconds(self, value: Optional[pulumi.Input[builtins.int]]):
330
+ def user_task_minimum_trigger_interval_in_seconds(self, value: Optional[pulumi.Input[_builtins.int]]):
332
331
  pulumi.set(self, "user_task_minimum_trigger_interval_in_seconds", value)
333
332
 
334
- @property
333
+ @_builtins.property
335
334
  @pulumi.getter(name="userTaskTimeoutMs")
336
- def user_task_timeout_ms(self) -> Optional[pulumi.Input[builtins.int]]:
335
+ def user_task_timeout_ms(self) -> Optional[pulumi.Input[_builtins.int]]:
337
336
  """
338
337
  User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
339
338
  """
340
339
  return pulumi.get(self, "user_task_timeout_ms")
341
340
 
342
341
  @user_task_timeout_ms.setter
343
- def user_task_timeout_ms(self, value: Optional[pulumi.Input[builtins.int]]):
342
+ def user_task_timeout_ms(self, value: Optional[pulumi.Input[_builtins.int]]):
344
343
  pulumi.set(self, "user_task_timeout_ms", value)
345
344
 
346
345
 
347
346
  @pulumi.input_type
348
347
  class _SecondaryDatabaseState:
349
348
  def __init__(__self__, *,
350
- as_replica_of: Optional[pulumi.Input[builtins.str]] = None,
351
- catalog: Optional[pulumi.Input[builtins.str]] = None,
352
- comment: Optional[pulumi.Input[builtins.str]] = None,
353
- data_retention_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
354
- default_ddl_collation: Optional[pulumi.Input[builtins.str]] = None,
355
- enable_console_output: Optional[pulumi.Input[builtins.bool]] = None,
356
- external_volume: Optional[pulumi.Input[builtins.str]] = None,
357
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
358
- is_transient: Optional[pulumi.Input[builtins.bool]] = None,
359
- log_level: Optional[pulumi.Input[builtins.str]] = None,
360
- max_data_extension_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
361
- name: Optional[pulumi.Input[builtins.str]] = None,
362
- quoted_identifiers_ignore_case: Optional[pulumi.Input[builtins.bool]] = None,
363
- replace_invalid_characters: Optional[pulumi.Input[builtins.bool]] = None,
364
- storage_serialization_policy: Optional[pulumi.Input[builtins.str]] = None,
365
- suspend_task_after_num_failures: Optional[pulumi.Input[builtins.int]] = None,
366
- task_auto_retry_attempts: Optional[pulumi.Input[builtins.int]] = None,
367
- trace_level: Optional[pulumi.Input[builtins.str]] = None,
368
- user_task_managed_initial_warehouse_size: Optional[pulumi.Input[builtins.str]] = None,
369
- user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
370
- user_task_timeout_ms: Optional[pulumi.Input[builtins.int]] = None):
349
+ as_replica_of: Optional[pulumi.Input[_builtins.str]] = None,
350
+ catalog: Optional[pulumi.Input[_builtins.str]] = None,
351
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
352
+ data_retention_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
353
+ default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
354
+ enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
355
+ external_volume: Optional[pulumi.Input[_builtins.str]] = None,
356
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
357
+ is_transient: Optional[pulumi.Input[_builtins.bool]] = None,
358
+ log_level: Optional[pulumi.Input[_builtins.str]] = None,
359
+ max_data_extension_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
360
+ name: Optional[pulumi.Input[_builtins.str]] = None,
361
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
362
+ replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
363
+ storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
364
+ suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
365
+ task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
366
+ trace_level: Optional[pulumi.Input[_builtins.str]] = None,
367
+ user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
368
+ user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
369
+ user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None):
371
370
  """
372
371
  Input properties used for looking up and filtering SecondaryDatabase resources.
373
- :param pulumi.Input[builtins.str] as_replica_of: A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
374
- :param pulumi.Input[builtins.str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
375
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the database.
376
- :param pulumi.Input[builtins.int] data_retention_time_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](https://docs.snowflake.com/en/user-guide/data-time-travel).
377
- :param pulumi.Input[builtins.str] default_ddl_collation: 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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
378
- :param pulumi.Input[builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
379
- :param pulumi.Input[builtins.str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
380
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
381
- :param pulumi.Input[builtins.bool] is_transient: Specifies the database as transient. Transient databases 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.
382
- :param pulumi.Input[builtins.str] log_level: 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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
383
- :param pulumi.Input[builtins.int] max_data_extension_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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
384
- :param pulumi.Input[builtins.str] name: Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
385
- :param pulumi.Input[builtins.bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
386
- :param pulumi.Input[builtins.bool] replace_invalid_characters: 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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
387
- :param pulumi.Input[builtins.str] storage_serialization_policy: 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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
388
- :param pulumi.Input[builtins.int] suspend_task_after_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 [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
389
- :param pulumi.Input[builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
390
- :param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
391
- :param pulumi.Input[builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
392
- :param pulumi.Input[builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
393
- :param pulumi.Input[builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
372
+ :param pulumi.Input[_builtins.str] as_replica_of: A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
373
+ :param pulumi.Input[_builtins.str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
374
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the database.
375
+ :param pulumi.Input[_builtins.int] data_retention_time_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](https://docs.snowflake.com/en/user-guide/data-time-travel).
376
+ :param pulumi.Input[_builtins.str] default_ddl_collation: 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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
377
+ :param pulumi.Input[_builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
378
+ :param pulumi.Input[_builtins.str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
379
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
380
+ :param pulumi.Input[_builtins.bool] is_transient: Specifies the database as transient. Transient databases 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.
381
+ :param pulumi.Input[_builtins.str] log_level: 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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
382
+ :param pulumi.Input[_builtins.int] max_data_extension_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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
383
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
384
+ :param pulumi.Input[_builtins.bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
385
+ :param pulumi.Input[_builtins.bool] replace_invalid_characters: 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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
386
+ :param pulumi.Input[_builtins.str] storage_serialization_policy: 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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
387
+ :param pulumi.Input[_builtins.int] suspend_task_after_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 [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
388
+ :param pulumi.Input[_builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
389
+ :param pulumi.Input[_builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
390
+ :param pulumi.Input[_builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
391
+ :param pulumi.Input[_builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
392
+ :param pulumi.Input[_builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
394
393
  """
395
394
  if as_replica_of is not None:
396
395
  pulumi.set(__self__, "as_replica_of", as_replica_of)
@@ -435,256 +434,256 @@ class _SecondaryDatabaseState:
435
434
  if user_task_timeout_ms is not None:
436
435
  pulumi.set(__self__, "user_task_timeout_ms", user_task_timeout_ms)
437
436
 
438
- @property
437
+ @_builtins.property
439
438
  @pulumi.getter(name="asReplicaOf")
440
- def as_replica_of(self) -> Optional[pulumi.Input[builtins.str]]:
439
+ def as_replica_of(self) -> Optional[pulumi.Input[_builtins.str]]:
441
440
  """
442
441
  A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
443
442
  """
444
443
  return pulumi.get(self, "as_replica_of")
445
444
 
446
445
  @as_replica_of.setter
447
- def as_replica_of(self, value: Optional[pulumi.Input[builtins.str]]):
446
+ def as_replica_of(self, value: Optional[pulumi.Input[_builtins.str]]):
448
447
  pulumi.set(self, "as_replica_of", value)
449
448
 
450
- @property
449
+ @_builtins.property
451
450
  @pulumi.getter
452
- def catalog(self) -> Optional[pulumi.Input[builtins.str]]:
451
+ def catalog(self) -> Optional[pulumi.Input[_builtins.str]]:
453
452
  """
454
453
  The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
455
454
  """
456
455
  return pulumi.get(self, "catalog")
457
456
 
458
457
  @catalog.setter
459
- def catalog(self, value: Optional[pulumi.Input[builtins.str]]):
458
+ def catalog(self, value: Optional[pulumi.Input[_builtins.str]]):
460
459
  pulumi.set(self, "catalog", value)
461
460
 
462
- @property
461
+ @_builtins.property
463
462
  @pulumi.getter
464
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
463
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
465
464
  """
466
465
  Specifies a comment for the database.
467
466
  """
468
467
  return pulumi.get(self, "comment")
469
468
 
470
469
  @comment.setter
471
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
470
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
472
471
  pulumi.set(self, "comment", value)
473
472
 
474
- @property
473
+ @_builtins.property
475
474
  @pulumi.getter(name="dataRetentionTimeInDays")
476
- def data_retention_time_in_days(self) -> Optional[pulumi.Input[builtins.int]]:
475
+ def data_retention_time_in_days(self) -> Optional[pulumi.Input[_builtins.int]]:
477
476
  """
478
477
  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](https://docs.snowflake.com/en/user-guide/data-time-travel).
479
478
  """
480
479
  return pulumi.get(self, "data_retention_time_in_days")
481
480
 
482
481
  @data_retention_time_in_days.setter
483
- def data_retention_time_in_days(self, value: Optional[pulumi.Input[builtins.int]]):
482
+ def data_retention_time_in_days(self, value: Optional[pulumi.Input[_builtins.int]]):
484
483
  pulumi.set(self, "data_retention_time_in_days", value)
485
484
 
486
- @property
485
+ @_builtins.property
487
486
  @pulumi.getter(name="defaultDdlCollation")
488
- def default_ddl_collation(self) -> Optional[pulumi.Input[builtins.str]]:
487
+ def default_ddl_collation(self) -> Optional[pulumi.Input[_builtins.str]]:
489
488
  """
490
489
  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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
491
490
  """
492
491
  return pulumi.get(self, "default_ddl_collation")
493
492
 
494
493
  @default_ddl_collation.setter
495
- def default_ddl_collation(self, value: Optional[pulumi.Input[builtins.str]]):
494
+ def default_ddl_collation(self, value: Optional[pulumi.Input[_builtins.str]]):
496
495
  pulumi.set(self, "default_ddl_collation", value)
497
496
 
498
- @property
497
+ @_builtins.property
499
498
  @pulumi.getter(name="enableConsoleOutput")
500
- def enable_console_output(self) -> Optional[pulumi.Input[builtins.bool]]:
499
+ def enable_console_output(self) -> Optional[pulumi.Input[_builtins.bool]]:
501
500
  """
502
501
  If true, enables stdout/stderr fast path logging for anonymous stored procedures.
503
502
  """
504
503
  return pulumi.get(self, "enable_console_output")
505
504
 
506
505
  @enable_console_output.setter
507
- def enable_console_output(self, value: Optional[pulumi.Input[builtins.bool]]):
506
+ def enable_console_output(self, value: Optional[pulumi.Input[_builtins.bool]]):
508
507
  pulumi.set(self, "enable_console_output", value)
509
508
 
510
- @property
509
+ @_builtins.property
511
510
  @pulumi.getter(name="externalVolume")
512
- def external_volume(self) -> Optional[pulumi.Input[builtins.str]]:
511
+ def external_volume(self) -> Optional[pulumi.Input[_builtins.str]]:
513
512
  """
514
513
  The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
515
514
  """
516
515
  return pulumi.get(self, "external_volume")
517
516
 
518
517
  @external_volume.setter
519
- def external_volume(self, value: Optional[pulumi.Input[builtins.str]]):
518
+ def external_volume(self, value: Optional[pulumi.Input[_builtins.str]]):
520
519
  pulumi.set(self, "external_volume", value)
521
520
 
522
- @property
521
+ @_builtins.property
523
522
  @pulumi.getter(name="fullyQualifiedName")
524
- def fully_qualified_name(self) -> Optional[pulumi.Input[builtins.str]]:
523
+ def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
525
524
  """
526
525
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
527
526
  """
528
527
  return pulumi.get(self, "fully_qualified_name")
529
528
 
530
529
  @fully_qualified_name.setter
531
- def fully_qualified_name(self, value: Optional[pulumi.Input[builtins.str]]):
530
+ def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
532
531
  pulumi.set(self, "fully_qualified_name", value)
533
532
 
534
- @property
533
+ @_builtins.property
535
534
  @pulumi.getter(name="isTransient")
536
- def is_transient(self) -> Optional[pulumi.Input[builtins.bool]]:
535
+ def is_transient(self) -> Optional[pulumi.Input[_builtins.bool]]:
537
536
  """
538
537
  Specifies the database as transient. Transient databases 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.
539
538
  """
540
539
  return pulumi.get(self, "is_transient")
541
540
 
542
541
  @is_transient.setter
543
- def is_transient(self, value: Optional[pulumi.Input[builtins.bool]]):
542
+ def is_transient(self, value: Optional[pulumi.Input[_builtins.bool]]):
544
543
  pulumi.set(self, "is_transient", value)
545
544
 
546
- @property
545
+ @_builtins.property
547
546
  @pulumi.getter(name="logLevel")
548
- def log_level(self) -> Optional[pulumi.Input[builtins.str]]:
547
+ def log_level(self) -> Optional[pulumi.Input[_builtins.str]]:
549
548
  """
550
549
  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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
551
550
  """
552
551
  return pulumi.get(self, "log_level")
553
552
 
554
553
  @log_level.setter
555
- def log_level(self, value: Optional[pulumi.Input[builtins.str]]):
554
+ def log_level(self, value: Optional[pulumi.Input[_builtins.str]]):
556
555
  pulumi.set(self, "log_level", value)
557
556
 
558
- @property
557
+ @_builtins.property
559
558
  @pulumi.getter(name="maxDataExtensionTimeInDays")
560
- def max_data_extension_time_in_days(self) -> Optional[pulumi.Input[builtins.int]]:
559
+ def max_data_extension_time_in_days(self) -> Optional[pulumi.Input[_builtins.int]]:
561
560
  """
562
561
  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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
563
562
  """
564
563
  return pulumi.get(self, "max_data_extension_time_in_days")
565
564
 
566
565
  @max_data_extension_time_in_days.setter
567
- def max_data_extension_time_in_days(self, value: Optional[pulumi.Input[builtins.int]]):
566
+ def max_data_extension_time_in_days(self, value: Optional[pulumi.Input[_builtins.int]]):
568
567
  pulumi.set(self, "max_data_extension_time_in_days", value)
569
568
 
570
- @property
569
+ @_builtins.property
571
570
  @pulumi.getter
572
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
571
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
573
572
  """
574
573
  Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
575
574
  """
576
575
  return pulumi.get(self, "name")
577
576
 
578
577
  @name.setter
579
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
578
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
580
579
  pulumi.set(self, "name", value)
581
580
 
582
- @property
581
+ @_builtins.property
583
582
  @pulumi.getter(name="quotedIdentifiersIgnoreCase")
584
- def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[builtins.bool]]:
583
+ def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[_builtins.bool]]:
585
584
  """
586
585
  If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
587
586
  """
588
587
  return pulumi.get(self, "quoted_identifiers_ignore_case")
589
588
 
590
589
  @quoted_identifiers_ignore_case.setter
591
- def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[builtins.bool]]):
590
+ def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[_builtins.bool]]):
592
591
  pulumi.set(self, "quoted_identifiers_ignore_case", value)
593
592
 
594
- @property
593
+ @_builtins.property
595
594
  @pulumi.getter(name="replaceInvalidCharacters")
596
- def replace_invalid_characters(self) -> Optional[pulumi.Input[builtins.bool]]:
595
+ def replace_invalid_characters(self) -> Optional[pulumi.Input[_builtins.bool]]:
597
596
  """
598
597
  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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
599
598
  """
600
599
  return pulumi.get(self, "replace_invalid_characters")
601
600
 
602
601
  @replace_invalid_characters.setter
603
- def replace_invalid_characters(self, value: Optional[pulumi.Input[builtins.bool]]):
602
+ def replace_invalid_characters(self, value: Optional[pulumi.Input[_builtins.bool]]):
604
603
  pulumi.set(self, "replace_invalid_characters", value)
605
604
 
606
- @property
605
+ @_builtins.property
607
606
  @pulumi.getter(name="storageSerializationPolicy")
608
- def storage_serialization_policy(self) -> Optional[pulumi.Input[builtins.str]]:
607
+ def storage_serialization_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
609
608
  """
610
609
  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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
611
610
  """
612
611
  return pulumi.get(self, "storage_serialization_policy")
613
612
 
614
613
  @storage_serialization_policy.setter
615
- def storage_serialization_policy(self, value: Optional[pulumi.Input[builtins.str]]):
614
+ def storage_serialization_policy(self, value: Optional[pulumi.Input[_builtins.str]]):
616
615
  pulumi.set(self, "storage_serialization_policy", value)
617
616
 
618
- @property
617
+ @_builtins.property
619
618
  @pulumi.getter(name="suspendTaskAfterNumFailures")
620
- def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[builtins.int]]:
619
+ def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[_builtins.int]]:
621
620
  """
622
621
  How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
623
622
  """
624
623
  return pulumi.get(self, "suspend_task_after_num_failures")
625
624
 
626
625
  @suspend_task_after_num_failures.setter
627
- def suspend_task_after_num_failures(self, value: Optional[pulumi.Input[builtins.int]]):
626
+ def suspend_task_after_num_failures(self, value: Optional[pulumi.Input[_builtins.int]]):
628
627
  pulumi.set(self, "suspend_task_after_num_failures", value)
629
628
 
630
- @property
629
+ @_builtins.property
631
630
  @pulumi.getter(name="taskAutoRetryAttempts")
632
- def task_auto_retry_attempts(self) -> Optional[pulumi.Input[builtins.int]]:
631
+ def task_auto_retry_attempts(self) -> Optional[pulumi.Input[_builtins.int]]:
633
632
  """
634
633
  Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
635
634
  """
636
635
  return pulumi.get(self, "task_auto_retry_attempts")
637
636
 
638
637
  @task_auto_retry_attempts.setter
639
- def task_auto_retry_attempts(self, value: Optional[pulumi.Input[builtins.int]]):
638
+ def task_auto_retry_attempts(self, value: Optional[pulumi.Input[_builtins.int]]):
640
639
  pulumi.set(self, "task_auto_retry_attempts", value)
641
640
 
642
- @property
641
+ @_builtins.property
643
642
  @pulumi.getter(name="traceLevel")
644
- def trace_level(self) -> Optional[pulumi.Input[builtins.str]]:
643
+ def trace_level(self) -> Optional[pulumi.Input[_builtins.str]]:
645
644
  """
646
645
  Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
647
646
  """
648
647
  return pulumi.get(self, "trace_level")
649
648
 
650
649
  @trace_level.setter
651
- def trace_level(self, value: Optional[pulumi.Input[builtins.str]]):
650
+ def trace_level(self, value: Optional[pulumi.Input[_builtins.str]]):
652
651
  pulumi.set(self, "trace_level", value)
653
652
 
654
- @property
653
+ @_builtins.property
655
654
  @pulumi.getter(name="userTaskManagedInitialWarehouseSize")
656
- def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[builtins.str]]:
655
+ def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[_builtins.str]]:
657
656
  """
658
657
  The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
659
658
  """
660
659
  return pulumi.get(self, "user_task_managed_initial_warehouse_size")
661
660
 
662
661
  @user_task_managed_initial_warehouse_size.setter
663
- def user_task_managed_initial_warehouse_size(self, value: Optional[pulumi.Input[builtins.str]]):
662
+ def user_task_managed_initial_warehouse_size(self, value: Optional[pulumi.Input[_builtins.str]]):
664
663
  pulumi.set(self, "user_task_managed_initial_warehouse_size", value)
665
664
 
666
- @property
665
+ @_builtins.property
667
666
  @pulumi.getter(name="userTaskMinimumTriggerIntervalInSeconds")
668
- def user_task_minimum_trigger_interval_in_seconds(self) -> Optional[pulumi.Input[builtins.int]]:
667
+ def user_task_minimum_trigger_interval_in_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
669
668
  """
670
669
  Minimum amount of time between Triggered Task executions in seconds.
671
670
  """
672
671
  return pulumi.get(self, "user_task_minimum_trigger_interval_in_seconds")
673
672
 
674
673
  @user_task_minimum_trigger_interval_in_seconds.setter
675
- def user_task_minimum_trigger_interval_in_seconds(self, value: Optional[pulumi.Input[builtins.int]]):
674
+ def user_task_minimum_trigger_interval_in_seconds(self, value: Optional[pulumi.Input[_builtins.int]]):
676
675
  pulumi.set(self, "user_task_minimum_trigger_interval_in_seconds", value)
677
676
 
678
- @property
677
+ @_builtins.property
679
678
  @pulumi.getter(name="userTaskTimeoutMs")
680
- def user_task_timeout_ms(self) -> Optional[pulumi.Input[builtins.int]]:
679
+ def user_task_timeout_ms(self) -> Optional[pulumi.Input[_builtins.int]]:
681
680
  """
682
681
  User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
683
682
  """
684
683
  return pulumi.get(self, "user_task_timeout_ms")
685
684
 
686
685
  @user_task_timeout_ms.setter
687
- def user_task_timeout_ms(self, value: Optional[pulumi.Input[builtins.int]]):
686
+ def user_task_timeout_ms(self, value: Optional[pulumi.Input[_builtins.int]]):
688
687
  pulumi.set(self, "user_task_timeout_ms", value)
689
688
 
690
689
 
@@ -694,26 +693,26 @@ class SecondaryDatabase(pulumi.CustomResource):
694
693
  def __init__(__self__,
695
694
  resource_name: str,
696
695
  opts: Optional[pulumi.ResourceOptions] = None,
697
- as_replica_of: Optional[pulumi.Input[builtins.str]] = None,
698
- catalog: Optional[pulumi.Input[builtins.str]] = None,
699
- comment: Optional[pulumi.Input[builtins.str]] = None,
700
- data_retention_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
701
- default_ddl_collation: Optional[pulumi.Input[builtins.str]] = None,
702
- enable_console_output: Optional[pulumi.Input[builtins.bool]] = None,
703
- external_volume: Optional[pulumi.Input[builtins.str]] = None,
704
- is_transient: Optional[pulumi.Input[builtins.bool]] = None,
705
- log_level: Optional[pulumi.Input[builtins.str]] = None,
706
- max_data_extension_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
707
- name: Optional[pulumi.Input[builtins.str]] = None,
708
- quoted_identifiers_ignore_case: Optional[pulumi.Input[builtins.bool]] = None,
709
- replace_invalid_characters: Optional[pulumi.Input[builtins.bool]] = None,
710
- storage_serialization_policy: Optional[pulumi.Input[builtins.str]] = None,
711
- suspend_task_after_num_failures: Optional[pulumi.Input[builtins.int]] = None,
712
- task_auto_retry_attempts: Optional[pulumi.Input[builtins.int]] = None,
713
- trace_level: Optional[pulumi.Input[builtins.str]] = None,
714
- user_task_managed_initial_warehouse_size: Optional[pulumi.Input[builtins.str]] = None,
715
- user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
716
- user_task_timeout_ms: Optional[pulumi.Input[builtins.int]] = None,
696
+ as_replica_of: Optional[pulumi.Input[_builtins.str]] = None,
697
+ catalog: Optional[pulumi.Input[_builtins.str]] = None,
698
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
699
+ data_retention_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
700
+ default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
701
+ enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
702
+ external_volume: Optional[pulumi.Input[_builtins.str]] = None,
703
+ is_transient: Optional[pulumi.Input[_builtins.bool]] = None,
704
+ log_level: Optional[pulumi.Input[_builtins.str]] = None,
705
+ max_data_extension_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
706
+ name: Optional[pulumi.Input[_builtins.str]] = None,
707
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
708
+ replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
709
+ storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
710
+ suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
711
+ task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
712
+ trace_level: Optional[pulumi.Input[_builtins.str]] = None,
713
+ user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
714
+ user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
715
+ user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None,
717
716
  __props__=None):
718
717
  """
719
718
  ## Import
@@ -724,26 +723,26 @@ class SecondaryDatabase(pulumi.CustomResource):
724
723
 
725
724
  :param str resource_name: The name of the resource.
726
725
  :param pulumi.ResourceOptions opts: Options for the resource.
727
- :param pulumi.Input[builtins.str] as_replica_of: A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
728
- :param pulumi.Input[builtins.str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
729
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the database.
730
- :param pulumi.Input[builtins.int] data_retention_time_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](https://docs.snowflake.com/en/user-guide/data-time-travel).
731
- :param pulumi.Input[builtins.str] default_ddl_collation: 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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
732
- :param pulumi.Input[builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
733
- :param pulumi.Input[builtins.str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
734
- :param pulumi.Input[builtins.bool] is_transient: Specifies the database as transient. Transient databases 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.
735
- :param pulumi.Input[builtins.str] log_level: 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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
736
- :param pulumi.Input[builtins.int] max_data_extension_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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
737
- :param pulumi.Input[builtins.str] name: Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
738
- :param pulumi.Input[builtins.bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
739
- :param pulumi.Input[builtins.bool] replace_invalid_characters: 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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
740
- :param pulumi.Input[builtins.str] storage_serialization_policy: 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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
741
- :param pulumi.Input[builtins.int] suspend_task_after_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 [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
742
- :param pulumi.Input[builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
743
- :param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
744
- :param pulumi.Input[builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
745
- :param pulumi.Input[builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
746
- :param pulumi.Input[builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
726
+ :param pulumi.Input[_builtins.str] as_replica_of: A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
727
+ :param pulumi.Input[_builtins.str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
728
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the database.
729
+ :param pulumi.Input[_builtins.int] data_retention_time_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](https://docs.snowflake.com/en/user-guide/data-time-travel).
730
+ :param pulumi.Input[_builtins.str] default_ddl_collation: 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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
731
+ :param pulumi.Input[_builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
732
+ :param pulumi.Input[_builtins.str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
733
+ :param pulumi.Input[_builtins.bool] is_transient: Specifies the database as transient. Transient databases 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.
734
+ :param pulumi.Input[_builtins.str] log_level: 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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
735
+ :param pulumi.Input[_builtins.int] max_data_extension_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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
736
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
737
+ :param pulumi.Input[_builtins.bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
738
+ :param pulumi.Input[_builtins.bool] replace_invalid_characters: 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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
739
+ :param pulumi.Input[_builtins.str] storage_serialization_policy: 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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
740
+ :param pulumi.Input[_builtins.int] suspend_task_after_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 [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
741
+ :param pulumi.Input[_builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
742
+ :param pulumi.Input[_builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
743
+ :param pulumi.Input[_builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
744
+ :param pulumi.Input[_builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
745
+ :param pulumi.Input[_builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
747
746
  """
748
747
  ...
749
748
  @overload
@@ -773,26 +772,26 @@ class SecondaryDatabase(pulumi.CustomResource):
773
772
  def _internal_init(__self__,
774
773
  resource_name: str,
775
774
  opts: Optional[pulumi.ResourceOptions] = None,
776
- as_replica_of: Optional[pulumi.Input[builtins.str]] = None,
777
- catalog: Optional[pulumi.Input[builtins.str]] = None,
778
- comment: Optional[pulumi.Input[builtins.str]] = None,
779
- data_retention_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
780
- default_ddl_collation: Optional[pulumi.Input[builtins.str]] = None,
781
- enable_console_output: Optional[pulumi.Input[builtins.bool]] = None,
782
- external_volume: Optional[pulumi.Input[builtins.str]] = None,
783
- is_transient: Optional[pulumi.Input[builtins.bool]] = None,
784
- log_level: Optional[pulumi.Input[builtins.str]] = None,
785
- max_data_extension_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
786
- name: Optional[pulumi.Input[builtins.str]] = None,
787
- quoted_identifiers_ignore_case: Optional[pulumi.Input[builtins.bool]] = None,
788
- replace_invalid_characters: Optional[pulumi.Input[builtins.bool]] = None,
789
- storage_serialization_policy: Optional[pulumi.Input[builtins.str]] = None,
790
- suspend_task_after_num_failures: Optional[pulumi.Input[builtins.int]] = None,
791
- task_auto_retry_attempts: Optional[pulumi.Input[builtins.int]] = None,
792
- trace_level: Optional[pulumi.Input[builtins.str]] = None,
793
- user_task_managed_initial_warehouse_size: Optional[pulumi.Input[builtins.str]] = None,
794
- user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
795
- user_task_timeout_ms: Optional[pulumi.Input[builtins.int]] = None,
775
+ as_replica_of: Optional[pulumi.Input[_builtins.str]] = None,
776
+ catalog: Optional[pulumi.Input[_builtins.str]] = None,
777
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
778
+ data_retention_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
779
+ default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
780
+ enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
781
+ external_volume: Optional[pulumi.Input[_builtins.str]] = None,
782
+ is_transient: Optional[pulumi.Input[_builtins.bool]] = None,
783
+ log_level: Optional[pulumi.Input[_builtins.str]] = None,
784
+ max_data_extension_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
785
+ name: Optional[pulumi.Input[_builtins.str]] = None,
786
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
787
+ replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
788
+ storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
789
+ suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
790
+ task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
791
+ trace_level: Optional[pulumi.Input[_builtins.str]] = None,
792
+ user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
793
+ user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
794
+ user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None,
796
795
  __props__=None):
797
796
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
798
797
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -835,27 +834,27 @@ class SecondaryDatabase(pulumi.CustomResource):
835
834
  def get(resource_name: str,
836
835
  id: pulumi.Input[str],
837
836
  opts: Optional[pulumi.ResourceOptions] = None,
838
- as_replica_of: Optional[pulumi.Input[builtins.str]] = None,
839
- catalog: Optional[pulumi.Input[builtins.str]] = None,
840
- comment: Optional[pulumi.Input[builtins.str]] = None,
841
- data_retention_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
842
- default_ddl_collation: Optional[pulumi.Input[builtins.str]] = None,
843
- enable_console_output: Optional[pulumi.Input[builtins.bool]] = None,
844
- external_volume: Optional[pulumi.Input[builtins.str]] = None,
845
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
846
- is_transient: Optional[pulumi.Input[builtins.bool]] = None,
847
- log_level: Optional[pulumi.Input[builtins.str]] = None,
848
- max_data_extension_time_in_days: Optional[pulumi.Input[builtins.int]] = None,
849
- name: Optional[pulumi.Input[builtins.str]] = None,
850
- quoted_identifiers_ignore_case: Optional[pulumi.Input[builtins.bool]] = None,
851
- replace_invalid_characters: Optional[pulumi.Input[builtins.bool]] = None,
852
- storage_serialization_policy: Optional[pulumi.Input[builtins.str]] = None,
853
- suspend_task_after_num_failures: Optional[pulumi.Input[builtins.int]] = None,
854
- task_auto_retry_attempts: Optional[pulumi.Input[builtins.int]] = None,
855
- trace_level: Optional[pulumi.Input[builtins.str]] = None,
856
- user_task_managed_initial_warehouse_size: Optional[pulumi.Input[builtins.str]] = None,
857
- user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
858
- user_task_timeout_ms: Optional[pulumi.Input[builtins.int]] = None) -> 'SecondaryDatabase':
837
+ as_replica_of: Optional[pulumi.Input[_builtins.str]] = None,
838
+ catalog: Optional[pulumi.Input[_builtins.str]] = None,
839
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
840
+ data_retention_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
841
+ default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
842
+ enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
843
+ external_volume: Optional[pulumi.Input[_builtins.str]] = None,
844
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
845
+ is_transient: Optional[pulumi.Input[_builtins.bool]] = None,
846
+ log_level: Optional[pulumi.Input[_builtins.str]] = None,
847
+ max_data_extension_time_in_days: Optional[pulumi.Input[_builtins.int]] = None,
848
+ name: Optional[pulumi.Input[_builtins.str]] = None,
849
+ quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
850
+ replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
851
+ storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
852
+ suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
853
+ task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
854
+ trace_level: Optional[pulumi.Input[_builtins.str]] = None,
855
+ user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
856
+ user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
857
+ user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None) -> 'SecondaryDatabase':
859
858
  """
860
859
  Get an existing SecondaryDatabase resource's state with the given name, id, and optional extra
861
860
  properties used to qualify the lookup.
@@ -863,27 +862,27 @@ class SecondaryDatabase(pulumi.CustomResource):
863
862
  :param str resource_name: The unique name of the resulting resource.
864
863
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
865
864
  :param pulumi.ResourceOptions opts: Options for the resource.
866
- :param pulumi.Input[builtins.str] as_replica_of: A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
867
- :param pulumi.Input[builtins.str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
868
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the database.
869
- :param pulumi.Input[builtins.int] data_retention_time_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](https://docs.snowflake.com/en/user-guide/data-time-travel).
870
- :param pulumi.Input[builtins.str] default_ddl_collation: 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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
871
- :param pulumi.Input[builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
872
- :param pulumi.Input[builtins.str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
873
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
874
- :param pulumi.Input[builtins.bool] is_transient: Specifies the database as transient. Transient databases 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.
875
- :param pulumi.Input[builtins.str] log_level: 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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
876
- :param pulumi.Input[builtins.int] max_data_extension_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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
877
- :param pulumi.Input[builtins.str] name: Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
878
- :param pulumi.Input[builtins.bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
879
- :param pulumi.Input[builtins.bool] replace_invalid_characters: 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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
880
- :param pulumi.Input[builtins.str] storage_serialization_policy: 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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
881
- :param pulumi.Input[builtins.int] suspend_task_after_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 [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
882
- :param pulumi.Input[builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
883
- :param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
884
- :param pulumi.Input[builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
885
- :param pulumi.Input[builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
886
- :param pulumi.Input[builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
865
+ :param pulumi.Input[_builtins.str] as_replica_of: A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
866
+ :param pulumi.Input[_builtins.str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
867
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the database.
868
+ :param pulumi.Input[_builtins.int] data_retention_time_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](https://docs.snowflake.com/en/user-guide/data-time-travel).
869
+ :param pulumi.Input[_builtins.str] default_ddl_collation: 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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
870
+ :param pulumi.Input[_builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
871
+ :param pulumi.Input[_builtins.str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
872
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
873
+ :param pulumi.Input[_builtins.bool] is_transient: Specifies the database as transient. Transient databases 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.
874
+ :param pulumi.Input[_builtins.str] log_level: 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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
875
+ :param pulumi.Input[_builtins.int] max_data_extension_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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
876
+ :param pulumi.Input[_builtins.str] name: Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
877
+ :param pulumi.Input[_builtins.bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
878
+ :param pulumi.Input[_builtins.bool] replace_invalid_characters: 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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
879
+ :param pulumi.Input[_builtins.str] storage_serialization_policy: 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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
880
+ :param pulumi.Input[_builtins.int] suspend_task_after_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 [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
881
+ :param pulumi.Input[_builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
882
+ :param pulumi.Input[_builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
883
+ :param pulumi.Input[_builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
884
+ :param pulumi.Input[_builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
885
+ :param pulumi.Input[_builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
887
886
  """
888
887
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
889
888
 
@@ -912,169 +911,169 @@ class SecondaryDatabase(pulumi.CustomResource):
912
911
  __props__.__dict__["user_task_timeout_ms"] = user_task_timeout_ms
913
912
  return SecondaryDatabase(resource_name, opts=opts, __props__=__props__)
914
913
 
915
- @property
914
+ @_builtins.property
916
915
  @pulumi.getter(name="asReplicaOf")
917
- def as_replica_of(self) -> pulumi.Output[builtins.str]:
916
+ def as_replica_of(self) -> pulumi.Output[_builtins.str]:
918
917
  """
919
918
  A fully qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<database_name>"`. For more information about this resource, see docs.
920
919
  """
921
920
  return pulumi.get(self, "as_replica_of")
922
921
 
923
- @property
922
+ @_builtins.property
924
923
  @pulumi.getter
925
- def catalog(self) -> pulumi.Output[builtins.str]:
924
+ def catalog(self) -> pulumi.Output[_builtins.str]:
926
925
  """
927
926
  The database parameter that specifies the default catalog to use for Iceberg tables. For more information, see [CATALOG](https://docs.snowflake.com/en/sql-reference/parameters#catalog).
928
927
  """
929
928
  return pulumi.get(self, "catalog")
930
929
 
931
- @property
930
+ @_builtins.property
932
931
  @pulumi.getter
933
- def comment(self) -> pulumi.Output[Optional[builtins.str]]:
932
+ def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
934
933
  """
935
934
  Specifies a comment for the database.
936
935
  """
937
936
  return pulumi.get(self, "comment")
938
937
 
939
- @property
938
+ @_builtins.property
940
939
  @pulumi.getter(name="dataRetentionTimeInDays")
941
- def data_retention_time_in_days(self) -> pulumi.Output[builtins.int]:
940
+ def data_retention_time_in_days(self) -> pulumi.Output[_builtins.int]:
942
941
  """
943
942
  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](https://docs.snowflake.com/en/user-guide/data-time-travel).
944
943
  """
945
944
  return pulumi.get(self, "data_retention_time_in_days")
946
945
 
947
- @property
946
+ @_builtins.property
948
947
  @pulumi.getter(name="defaultDdlCollation")
949
- def default_ddl_collation(self) -> pulumi.Output[builtins.str]:
948
+ def default_ddl_collation(self) -> pulumi.Output[_builtins.str]:
950
949
  """
951
950
  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](https://docs.snowflake.com/en/sql-reference/collation#label-collation-specification).
952
951
  """
953
952
  return pulumi.get(self, "default_ddl_collation")
954
953
 
955
- @property
954
+ @_builtins.property
956
955
  @pulumi.getter(name="enableConsoleOutput")
957
- def enable_console_output(self) -> pulumi.Output[builtins.bool]:
956
+ def enable_console_output(self) -> pulumi.Output[_builtins.bool]:
958
957
  """
959
958
  If true, enables stdout/stderr fast path logging for anonymous stored procedures.
960
959
  """
961
960
  return pulumi.get(self, "enable_console_output")
962
961
 
963
- @property
962
+ @_builtins.property
964
963
  @pulumi.getter(name="externalVolume")
965
- def external_volume(self) -> pulumi.Output[builtins.str]:
964
+ def external_volume(self) -> pulumi.Output[_builtins.str]:
966
965
  """
967
966
  The database parameter that specifies the default external volume to use for Iceberg tables. For more information, see [EXTERNAL_VOLUME](https://docs.snowflake.com/en/sql-reference/parameters#external-volume).
968
967
  """
969
968
  return pulumi.get(self, "external_volume")
970
969
 
971
- @property
970
+ @_builtins.property
972
971
  @pulumi.getter(name="fullyQualifiedName")
973
- def fully_qualified_name(self) -> pulumi.Output[builtins.str]:
972
+ def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
974
973
  """
975
974
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
976
975
  """
977
976
  return pulumi.get(self, "fully_qualified_name")
978
977
 
979
- @property
978
+ @_builtins.property
980
979
  @pulumi.getter(name="isTransient")
981
- def is_transient(self) -> pulumi.Output[Optional[builtins.bool]]:
980
+ def is_transient(self) -> pulumi.Output[Optional[_builtins.bool]]:
982
981
  """
983
982
  Specifies the database as transient. Transient databases 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.
984
983
  """
985
984
  return pulumi.get(self, "is_transient")
986
985
 
987
- @property
986
+ @_builtins.property
988
987
  @pulumi.getter(name="logLevel")
989
- def log_level(self) -> pulumi.Output[builtins.str]:
988
+ def log_level(self) -> pulumi.Output[_builtins.str]:
990
989
  """
991
990
  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](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
992
991
  """
993
992
  return pulumi.get(self, "log_level")
994
993
 
995
- @property
994
+ @_builtins.property
996
995
  @pulumi.getter(name="maxDataExtensionTimeInDays")
997
- def max_data_extension_time_in_days(self) -> pulumi.Output[builtins.int]:
996
+ def max_data_extension_time_in_days(self) -> pulumi.Output[_builtins.int]:
998
997
  """
999
998
  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 [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
1000
999
  """
1001
1000
  return pulumi.get(self, "max_data_extension_time_in_days")
1002
1001
 
1003
- @property
1002
+ @_builtins.property
1004
1003
  @pulumi.getter
1005
- def name(self) -> pulumi.Output[builtins.str]:
1004
+ def name(self) -> pulumi.Output[_builtins.str]:
1006
1005
  """
1007
1006
  Specifies the identifier for the database; must be unique for your account. As a best practice for [Database Replication and Failover](https://docs.snowflake.com/en/user-guide/db-replication-intro), it is recommended to give each secondary database the same name as its primary database. This practice supports referencing fully-qualified objects (i.e. '\\n\\n.\\n\\n.\\n\\n') by other objects in the same database, such as querying a fully-qualified table name in a view. If a secondary database has a different name from the primary database, then these object references would break in the secondary database. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
1008
1007
  """
1009
1008
  return pulumi.get(self, "name")
1010
1009
 
1011
- @property
1010
+ @_builtins.property
1012
1011
  @pulumi.getter(name="quotedIdentifiersIgnoreCase")
1013
- def quoted_identifiers_ignore_case(self) -> pulumi.Output[builtins.bool]:
1012
+ def quoted_identifiers_ignore_case(self) -> pulumi.Output[_builtins.bool]:
1014
1013
  """
1015
1014
  If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
1016
1015
  """
1017
1016
  return pulumi.get(self, "quoted_identifiers_ignore_case")
1018
1017
 
1019
- @property
1018
+ @_builtins.property
1020
1019
  @pulumi.getter(name="replaceInvalidCharacters")
1021
- def replace_invalid_characters(self) -> pulumi.Output[builtins.bool]:
1020
+ def replace_invalid_characters(self) -> pulumi.Output[_builtins.bool]:
1022
1021
  """
1023
1022
  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 [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
1024
1023
  """
1025
1024
  return pulumi.get(self, "replace_invalid_characters")
1026
1025
 
1027
- @property
1026
+ @_builtins.property
1028
1027
  @pulumi.getter(name="storageSerializationPolicy")
1029
- def storage_serialization_policy(self) -> pulumi.Output[builtins.str]:
1028
+ def storage_serialization_policy(self) -> pulumi.Output[_builtins.str]:
1030
1029
  """
1031
1030
  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 [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
1032
1031
  """
1033
1032
  return pulumi.get(self, "storage_serialization_policy")
1034
1033
 
1035
- @property
1034
+ @_builtins.property
1036
1035
  @pulumi.getter(name="suspendTaskAfterNumFailures")
1037
- def suspend_task_after_num_failures(self) -> pulumi.Output[builtins.int]:
1036
+ def suspend_task_after_num_failures(self) -> pulumi.Output[_builtins.int]:
1038
1037
  """
1039
1038
  How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
1040
1039
  """
1041
1040
  return pulumi.get(self, "suspend_task_after_num_failures")
1042
1041
 
1043
- @property
1042
+ @_builtins.property
1044
1043
  @pulumi.getter(name="taskAutoRetryAttempts")
1045
- def task_auto_retry_attempts(self) -> pulumi.Output[builtins.int]:
1044
+ def task_auto_retry_attempts(self) -> pulumi.Output[_builtins.int]:
1046
1045
  """
1047
1046
  Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
1048
1047
  """
1049
1048
  return pulumi.get(self, "task_auto_retry_attempts")
1050
1049
 
1051
- @property
1050
+ @_builtins.property
1052
1051
  @pulumi.getter(name="traceLevel")
1053
- def trace_level(self) -> pulumi.Output[builtins.str]:
1052
+ def trace_level(self) -> pulumi.Output[_builtins.str]:
1054
1053
  """
1055
1054
  Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
1056
1055
  """
1057
1056
  return pulumi.get(self, "trace_level")
1058
1057
 
1059
- @property
1058
+ @_builtins.property
1060
1059
  @pulumi.getter(name="userTaskManagedInitialWarehouseSize")
1061
- def user_task_managed_initial_warehouse_size(self) -> pulumi.Output[builtins.str]:
1060
+ def user_task_managed_initial_warehouse_size(self) -> pulumi.Output[_builtins.str]:
1062
1061
  """
1063
1062
  The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
1064
1063
  """
1065
1064
  return pulumi.get(self, "user_task_managed_initial_warehouse_size")
1066
1065
 
1067
- @property
1066
+ @_builtins.property
1068
1067
  @pulumi.getter(name="userTaskMinimumTriggerIntervalInSeconds")
1069
- def user_task_minimum_trigger_interval_in_seconds(self) -> pulumi.Output[builtins.int]:
1068
+ def user_task_minimum_trigger_interval_in_seconds(self) -> pulumi.Output[_builtins.int]:
1070
1069
  """
1071
1070
  Minimum amount of time between Triggered Task executions in seconds.
1072
1071
  """
1073
1072
  return pulumi.get(self, "user_task_minimum_trigger_interval_in_seconds")
1074
1073
 
1075
- @property
1074
+ @_builtins.property
1076
1075
  @pulumi.getter(name="userTaskTimeoutMs")
1077
- def user_task_timeout_ms(self) -> pulumi.Output[builtins.int]:
1076
+ def user_task_timeout_ms(self) -> pulumi.Output[_builtins.int]:
1078
1077
  """
1079
1078
  User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
1080
1079
  """