pulumi-snowflake 0.57.0a1722063098__py3-none-any.whl → 0.57.1__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.
- pulumi_snowflake/__init__.py +20 -0
- pulumi_snowflake/_inputs.py +2475 -237
- pulumi_snowflake/account_role.py +226 -0
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +4 -0
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +4 -0
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +4 -0
- pulumi_snowflake/database.py +63 -63
- pulumi_snowflake/external_oauth_integration.py +2 -2
- pulumi_snowflake/get_databases.py +2 -2
- pulumi_snowflake/get_network_policies.py +122 -0
- pulumi_snowflake/get_roles.py +37 -31
- pulumi_snowflake/get_schemas.py +117 -36
- pulumi_snowflake/get_security_integrations.py +2 -2
- pulumi_snowflake/get_streamlits.py +159 -0
- pulumi_snowflake/get_warehouses.py +2 -2
- pulumi_snowflake/network_policy.py +103 -19
- pulumi_snowflake/oauth_integration_for_custom_clients.py +18 -14
- pulumi_snowflake/oauth_integration_for_partner_applications.py +18 -14
- pulumi_snowflake/outputs.py +5849 -2728
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/role.py +44 -72
- pulumi_snowflake/saml2_integration.py +32 -28
- pulumi_snowflake/schema.py +914 -156
- pulumi_snowflake/scim_integration.py +25 -21
- pulumi_snowflake/secondary_database.py +63 -63
- pulumi_snowflake/shared_database.py +63 -63
- pulumi_snowflake/streamlit.py +650 -0
- pulumi_snowflake/table.py +0 -120
- pulumi_snowflake/table_constraint.py +2 -2
- pulumi_snowflake/unsafe_execute.py +8 -8
- {pulumi_snowflake-0.57.0a1722063098.dist-info → pulumi_snowflake-0.57.1.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.57.0a1722063098.dist-info → pulumi_snowflake-0.57.1.dist-info}/RECORD +34 -30
- {pulumi_snowflake-0.57.0a1722063098.dist-info → pulumi_snowflake-0.57.1.dist-info}/WHEEL +1 -1
- {pulumi_snowflake-0.57.0a1722063098.dist-info → pulumi_snowflake-0.57.1.dist-info}/top_level.txt +0 -0
|
@@ -26,12 +26,12 @@ class ScimIntegrationArgs:
|
|
|
26
26
|
"""
|
|
27
27
|
The set of arguments for constructing a ScimIntegration resource.
|
|
28
28
|
:param pulumi.Input[bool] enabled: Specify whether the security integration is enabled.
|
|
29
|
-
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are:
|
|
30
|
-
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are:
|
|
29
|
+
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
30
|
+
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
31
31
|
:param pulumi.Input[str] comment: Specifies a comment for the integration.
|
|
32
32
|
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
33
33
|
:param pulumi.Input[str] network_policy: Specifies an existing network policy that controls SCIM network traffic.
|
|
34
|
-
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
34
|
+
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
35
35
|
"""
|
|
36
36
|
pulumi.set(__self__, "enabled", enabled)
|
|
37
37
|
pulumi.set(__self__, "run_as_role", run_as_role)
|
|
@@ -61,7 +61,7 @@ class ScimIntegrationArgs:
|
|
|
61
61
|
@pulumi.getter(name="runAsRole")
|
|
62
62
|
def run_as_role(self) -> pulumi.Input[str]:
|
|
63
63
|
"""
|
|
64
|
-
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are:
|
|
64
|
+
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
65
65
|
"""
|
|
66
66
|
return pulumi.get(self, "run_as_role")
|
|
67
67
|
|
|
@@ -73,7 +73,7 @@ class ScimIntegrationArgs:
|
|
|
73
73
|
@pulumi.getter(name="scimClient")
|
|
74
74
|
def scim_client(self) -> pulumi.Input[str]:
|
|
75
75
|
"""
|
|
76
|
-
Specifies the client type for the scim integration. Valid options are:
|
|
76
|
+
Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
77
77
|
"""
|
|
78
78
|
return pulumi.get(self, "scim_client")
|
|
79
79
|
|
|
@@ -121,7 +121,7 @@ class ScimIntegrationArgs:
|
|
|
121
121
|
@pulumi.getter(name="syncPassword")
|
|
122
122
|
def sync_password(self) -> Optional[pulumi.Input[str]]:
|
|
123
123
|
"""
|
|
124
|
-
Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
124
|
+
Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
125
125
|
"""
|
|
126
126
|
return pulumi.get(self, "sync_password")
|
|
127
127
|
|
|
@@ -149,10 +149,10 @@ class _ScimIntegrationState:
|
|
|
149
149
|
:param pulumi.Input[bool] enabled: Specify whether the security integration is enabled.
|
|
150
150
|
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
151
151
|
:param pulumi.Input[str] network_policy: Specifies an existing network policy that controls SCIM network traffic.
|
|
152
|
-
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are:
|
|
153
|
-
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are:
|
|
152
|
+
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
153
|
+
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
154
154
|
:param pulumi.Input[Sequence[pulumi.Input['ScimIntegrationShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
|
|
155
|
-
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
155
|
+
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
156
156
|
"""
|
|
157
157
|
if comment is not None:
|
|
158
158
|
pulumi.set(__self__, "comment", comment)
|
|
@@ -237,7 +237,7 @@ class _ScimIntegrationState:
|
|
|
237
237
|
@pulumi.getter(name="runAsRole")
|
|
238
238
|
def run_as_role(self) -> Optional[pulumi.Input[str]]:
|
|
239
239
|
"""
|
|
240
|
-
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are:
|
|
240
|
+
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
241
241
|
"""
|
|
242
242
|
return pulumi.get(self, "run_as_role")
|
|
243
243
|
|
|
@@ -249,7 +249,7 @@ class _ScimIntegrationState:
|
|
|
249
249
|
@pulumi.getter(name="scimClient")
|
|
250
250
|
def scim_client(self) -> Optional[pulumi.Input[str]]:
|
|
251
251
|
"""
|
|
252
|
-
Specifies the client type for the scim integration. Valid options are:
|
|
252
|
+
Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
253
253
|
"""
|
|
254
254
|
return pulumi.get(self, "scim_client")
|
|
255
255
|
|
|
@@ -273,7 +273,7 @@ class _ScimIntegrationState:
|
|
|
273
273
|
@pulumi.getter(name="syncPassword")
|
|
274
274
|
def sync_password(self) -> Optional[pulumi.Input[str]]:
|
|
275
275
|
"""
|
|
276
|
-
Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
276
|
+
Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
277
277
|
"""
|
|
278
278
|
return pulumi.get(self, "sync_password")
|
|
279
279
|
|
|
@@ -298,6 +298,8 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
298
298
|
"""
|
|
299
299
|
!> **V1 release candidate** This resource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
|
|
300
300
|
|
|
301
|
+
Resource used to manage scim security integration objects. For more information, check [security integrations documentation](https://docs.snowflake.com/en/sql-reference/sql/create-security-integration-scim).
|
|
302
|
+
|
|
301
303
|
## Import
|
|
302
304
|
|
|
303
305
|
```sh
|
|
@@ -310,9 +312,9 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
310
312
|
:param pulumi.Input[bool] enabled: Specify whether the security integration is enabled.
|
|
311
313
|
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
312
314
|
:param pulumi.Input[str] network_policy: Specifies an existing network policy that controls SCIM network traffic.
|
|
313
|
-
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are:
|
|
314
|
-
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are:
|
|
315
|
-
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
315
|
+
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
316
|
+
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
317
|
+
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
316
318
|
"""
|
|
317
319
|
...
|
|
318
320
|
@overload
|
|
@@ -323,6 +325,8 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
323
325
|
"""
|
|
324
326
|
!> **V1 release candidate** This resource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
|
|
325
327
|
|
|
328
|
+
Resource used to manage scim security integration objects. For more information, check [security integrations documentation](https://docs.snowflake.com/en/sql-reference/sql/create-security-integration-scim).
|
|
329
|
+
|
|
326
330
|
## Import
|
|
327
331
|
|
|
328
332
|
```sh
|
|
@@ -406,10 +410,10 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
406
410
|
:param pulumi.Input[bool] enabled: Specify whether the security integration is enabled.
|
|
407
411
|
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account.
|
|
408
412
|
:param pulumi.Input[str] network_policy: Specifies an existing network policy that controls SCIM network traffic.
|
|
409
|
-
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are:
|
|
410
|
-
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are:
|
|
413
|
+
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
414
|
+
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
411
415
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ScimIntegrationShowOutputArgs']]]] show_outputs: Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
|
|
412
|
-
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
416
|
+
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
413
417
|
"""
|
|
414
418
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
415
419
|
|
|
@@ -470,7 +474,7 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
470
474
|
@pulumi.getter(name="runAsRole")
|
|
471
475
|
def run_as_role(self) -> pulumi.Output[str]:
|
|
472
476
|
"""
|
|
473
|
-
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are:
|
|
477
|
+
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
474
478
|
"""
|
|
475
479
|
return pulumi.get(self, "run_as_role")
|
|
476
480
|
|
|
@@ -478,7 +482,7 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
478
482
|
@pulumi.getter(name="scimClient")
|
|
479
483
|
def scim_client(self) -> pulumi.Output[str]:
|
|
480
484
|
"""
|
|
481
|
-
Specifies the client type for the scim integration. Valid options are:
|
|
485
|
+
Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
482
486
|
"""
|
|
483
487
|
return pulumi.get(self, "scim_client")
|
|
484
488
|
|
|
@@ -494,7 +498,7 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
494
498
|
@pulumi.getter(name="syncPassword")
|
|
495
499
|
def sync_password(self) -> pulumi.Output[Optional[str]]:
|
|
496
500
|
"""
|
|
497
|
-
Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
501
|
+
Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
498
502
|
"""
|
|
499
503
|
return pulumi.get(self, "sync_password")
|
|
500
504
|
|
|
@@ -37,25 +37,25 @@ class SecondaryDatabaseArgs:
|
|
|
37
37
|
"""
|
|
38
38
|
The set of arguments for constructing a SecondaryDatabase resource.
|
|
39
39
|
:param pulumi.Input[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>"`.
|
|
40
|
-
:param pulumi.Input[str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables.
|
|
40
|
+
:param pulumi.Input[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).
|
|
41
41
|
:param pulumi.Input[str] comment: Specifies a comment for the database.
|
|
42
42
|
:param pulumi.Input[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).
|
|
43
43
|
:param pulumi.Input[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).
|
|
44
44
|
:param pulumi.Input[bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
45
|
-
:param pulumi.Input[str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables.
|
|
45
|
+
:param pulumi.Input[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).
|
|
46
46
|
:param pulumi.Input[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.
|
|
47
47
|
:param pulumi.Input[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).
|
|
48
48
|
:param pulumi.Input[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).
|
|
49
49
|
:param pulumi.Input[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.
|
|
50
|
-
:param pulumi.Input[bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored.
|
|
51
|
-
:param pulumi.Input[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.
|
|
52
|
-
:param pulumi.Input[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.
|
|
53
|
-
:param pulumi.Input[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.
|
|
54
|
-
:param pulumi.Input[int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task.
|
|
50
|
+
:param pulumi.Input[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).
|
|
51
|
+
:param pulumi.Input[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).
|
|
52
|
+
:param pulumi.Input[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).
|
|
53
|
+
:param pulumi.Input[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).
|
|
54
|
+
:param pulumi.Input[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).
|
|
55
55
|
:param pulumi.Input[str] trace_level: Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see [TRACE*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
56
|
-
:param pulumi.Input[str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history.
|
|
56
|
+
:param pulumi.Input[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).
|
|
57
57
|
:param pulumi.Input[int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
58
|
-
:param pulumi.Input[int] user_task_timeout_ms: User task execution timeout in milliseconds.
|
|
58
|
+
:param pulumi.Input[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).
|
|
59
59
|
"""
|
|
60
60
|
pulumi.set(__self__, "as_replica_of", as_replica_of)
|
|
61
61
|
if catalog is not None:
|
|
@@ -113,7 +113,7 @@ class SecondaryDatabaseArgs:
|
|
|
113
113
|
@pulumi.getter
|
|
114
114
|
def catalog(self) -> Optional[pulumi.Input[str]]:
|
|
115
115
|
"""
|
|
116
|
-
The database parameter that specifies the default catalog to use for Iceberg tables.
|
|
116
|
+
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).
|
|
117
117
|
"""
|
|
118
118
|
return pulumi.get(self, "catalog")
|
|
119
119
|
|
|
@@ -173,7 +173,7 @@ class SecondaryDatabaseArgs:
|
|
|
173
173
|
@pulumi.getter(name="externalVolume")
|
|
174
174
|
def external_volume(self) -> Optional[pulumi.Input[str]]:
|
|
175
175
|
"""
|
|
176
|
-
The database parameter that specifies the default external volume to use for Iceberg tables.
|
|
176
|
+
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).
|
|
177
177
|
"""
|
|
178
178
|
return pulumi.get(self, "external_volume")
|
|
179
179
|
|
|
@@ -233,7 +233,7 @@ class SecondaryDatabaseArgs:
|
|
|
233
233
|
@pulumi.getter(name="quotedIdentifiersIgnoreCase")
|
|
234
234
|
def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[bool]]:
|
|
235
235
|
"""
|
|
236
|
-
If true, the case of quoted identifiers is ignored.
|
|
236
|
+
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).
|
|
237
237
|
"""
|
|
238
238
|
return pulumi.get(self, "quoted_identifiers_ignore_case")
|
|
239
239
|
|
|
@@ -245,7 +245,7 @@ class SecondaryDatabaseArgs:
|
|
|
245
245
|
@pulumi.getter(name="replaceInvalidCharacters")
|
|
246
246
|
def replace_invalid_characters(self) -> Optional[pulumi.Input[bool]]:
|
|
247
247
|
"""
|
|
248
|
-
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.
|
|
248
|
+
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).
|
|
249
249
|
"""
|
|
250
250
|
return pulumi.get(self, "replace_invalid_characters")
|
|
251
251
|
|
|
@@ -257,7 +257,7 @@ class SecondaryDatabaseArgs:
|
|
|
257
257
|
@pulumi.getter(name="storageSerializationPolicy")
|
|
258
258
|
def storage_serialization_policy(self) -> Optional[pulumi.Input[str]]:
|
|
259
259
|
"""
|
|
260
|
-
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.
|
|
260
|
+
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).
|
|
261
261
|
"""
|
|
262
262
|
return pulumi.get(self, "storage_serialization_policy")
|
|
263
263
|
|
|
@@ -269,7 +269,7 @@ class SecondaryDatabaseArgs:
|
|
|
269
269
|
@pulumi.getter(name="suspendTaskAfterNumFailures")
|
|
270
270
|
def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[int]]:
|
|
271
271
|
"""
|
|
272
|
-
How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending.
|
|
272
|
+
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).
|
|
273
273
|
"""
|
|
274
274
|
return pulumi.get(self, "suspend_task_after_num_failures")
|
|
275
275
|
|
|
@@ -281,7 +281,7 @@ class SecondaryDatabaseArgs:
|
|
|
281
281
|
@pulumi.getter(name="taskAutoRetryAttempts")
|
|
282
282
|
def task_auto_retry_attempts(self) -> Optional[pulumi.Input[int]]:
|
|
283
283
|
"""
|
|
284
|
-
Maximum automatic retries allowed for a user task.
|
|
284
|
+
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).
|
|
285
285
|
"""
|
|
286
286
|
return pulumi.get(self, "task_auto_retry_attempts")
|
|
287
287
|
|
|
@@ -305,7 +305,7 @@ class SecondaryDatabaseArgs:
|
|
|
305
305
|
@pulumi.getter(name="userTaskManagedInitialWarehouseSize")
|
|
306
306
|
def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[str]]:
|
|
307
307
|
"""
|
|
308
|
-
The initial size of warehouse to use for managed warehouses in the absence of history.
|
|
308
|
+
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).
|
|
309
309
|
"""
|
|
310
310
|
return pulumi.get(self, "user_task_managed_initial_warehouse_size")
|
|
311
311
|
|
|
@@ -329,7 +329,7 @@ class SecondaryDatabaseArgs:
|
|
|
329
329
|
@pulumi.getter(name="userTaskTimeoutMs")
|
|
330
330
|
def user_task_timeout_ms(self) -> Optional[pulumi.Input[int]]:
|
|
331
331
|
"""
|
|
332
|
-
User task execution timeout in milliseconds.
|
|
332
|
+
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).
|
|
333
333
|
"""
|
|
334
334
|
return pulumi.get(self, "user_task_timeout_ms")
|
|
335
335
|
|
|
@@ -364,25 +364,25 @@ class _SecondaryDatabaseState:
|
|
|
364
364
|
"""
|
|
365
365
|
Input properties used for looking up and filtering SecondaryDatabase resources.
|
|
366
366
|
:param pulumi.Input[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>"`.
|
|
367
|
-
:param pulumi.Input[str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables.
|
|
367
|
+
:param pulumi.Input[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).
|
|
368
368
|
:param pulumi.Input[str] comment: Specifies a comment for the database.
|
|
369
369
|
:param pulumi.Input[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).
|
|
370
370
|
:param pulumi.Input[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).
|
|
371
371
|
:param pulumi.Input[bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
372
|
-
:param pulumi.Input[str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables.
|
|
372
|
+
:param pulumi.Input[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).
|
|
373
373
|
:param pulumi.Input[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.
|
|
374
374
|
:param pulumi.Input[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).
|
|
375
375
|
:param pulumi.Input[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).
|
|
376
376
|
:param pulumi.Input[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.
|
|
377
|
-
:param pulumi.Input[bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored.
|
|
378
|
-
:param pulumi.Input[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.
|
|
379
|
-
:param pulumi.Input[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.
|
|
380
|
-
:param pulumi.Input[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.
|
|
381
|
-
:param pulumi.Input[int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task.
|
|
377
|
+
:param pulumi.Input[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).
|
|
378
|
+
:param pulumi.Input[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).
|
|
379
|
+
:param pulumi.Input[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).
|
|
380
|
+
:param pulumi.Input[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).
|
|
381
|
+
:param pulumi.Input[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).
|
|
382
382
|
:param pulumi.Input[str] trace_level: Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see [TRACE*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
383
|
-
:param pulumi.Input[str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history.
|
|
383
|
+
:param pulumi.Input[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).
|
|
384
384
|
:param pulumi.Input[int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
385
|
-
:param pulumi.Input[int] user_task_timeout_ms: User task execution timeout in milliseconds.
|
|
385
|
+
:param pulumi.Input[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).
|
|
386
386
|
"""
|
|
387
387
|
if as_replica_of is not None:
|
|
388
388
|
pulumi.set(__self__, "as_replica_of", as_replica_of)
|
|
@@ -441,7 +441,7 @@ class _SecondaryDatabaseState:
|
|
|
441
441
|
@pulumi.getter
|
|
442
442
|
def catalog(self) -> Optional[pulumi.Input[str]]:
|
|
443
443
|
"""
|
|
444
|
-
The database parameter that specifies the default catalog to use for Iceberg tables.
|
|
444
|
+
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).
|
|
445
445
|
"""
|
|
446
446
|
return pulumi.get(self, "catalog")
|
|
447
447
|
|
|
@@ -501,7 +501,7 @@ class _SecondaryDatabaseState:
|
|
|
501
501
|
@pulumi.getter(name="externalVolume")
|
|
502
502
|
def external_volume(self) -> Optional[pulumi.Input[str]]:
|
|
503
503
|
"""
|
|
504
|
-
The database parameter that specifies the default external volume to use for Iceberg tables.
|
|
504
|
+
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).
|
|
505
505
|
"""
|
|
506
506
|
return pulumi.get(self, "external_volume")
|
|
507
507
|
|
|
@@ -561,7 +561,7 @@ class _SecondaryDatabaseState:
|
|
|
561
561
|
@pulumi.getter(name="quotedIdentifiersIgnoreCase")
|
|
562
562
|
def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[bool]]:
|
|
563
563
|
"""
|
|
564
|
-
If true, the case of quoted identifiers is ignored.
|
|
564
|
+
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).
|
|
565
565
|
"""
|
|
566
566
|
return pulumi.get(self, "quoted_identifiers_ignore_case")
|
|
567
567
|
|
|
@@ -573,7 +573,7 @@ class _SecondaryDatabaseState:
|
|
|
573
573
|
@pulumi.getter(name="replaceInvalidCharacters")
|
|
574
574
|
def replace_invalid_characters(self) -> Optional[pulumi.Input[bool]]:
|
|
575
575
|
"""
|
|
576
|
-
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.
|
|
576
|
+
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).
|
|
577
577
|
"""
|
|
578
578
|
return pulumi.get(self, "replace_invalid_characters")
|
|
579
579
|
|
|
@@ -585,7 +585,7 @@ class _SecondaryDatabaseState:
|
|
|
585
585
|
@pulumi.getter(name="storageSerializationPolicy")
|
|
586
586
|
def storage_serialization_policy(self) -> Optional[pulumi.Input[str]]:
|
|
587
587
|
"""
|
|
588
|
-
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.
|
|
588
|
+
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).
|
|
589
589
|
"""
|
|
590
590
|
return pulumi.get(self, "storage_serialization_policy")
|
|
591
591
|
|
|
@@ -597,7 +597,7 @@ class _SecondaryDatabaseState:
|
|
|
597
597
|
@pulumi.getter(name="suspendTaskAfterNumFailures")
|
|
598
598
|
def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[int]]:
|
|
599
599
|
"""
|
|
600
|
-
How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending.
|
|
600
|
+
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).
|
|
601
601
|
"""
|
|
602
602
|
return pulumi.get(self, "suspend_task_after_num_failures")
|
|
603
603
|
|
|
@@ -609,7 +609,7 @@ class _SecondaryDatabaseState:
|
|
|
609
609
|
@pulumi.getter(name="taskAutoRetryAttempts")
|
|
610
610
|
def task_auto_retry_attempts(self) -> Optional[pulumi.Input[int]]:
|
|
611
611
|
"""
|
|
612
|
-
Maximum automatic retries allowed for a user task.
|
|
612
|
+
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).
|
|
613
613
|
"""
|
|
614
614
|
return pulumi.get(self, "task_auto_retry_attempts")
|
|
615
615
|
|
|
@@ -633,7 +633,7 @@ class _SecondaryDatabaseState:
|
|
|
633
633
|
@pulumi.getter(name="userTaskManagedInitialWarehouseSize")
|
|
634
634
|
def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[str]]:
|
|
635
635
|
"""
|
|
636
|
-
The initial size of warehouse to use for managed warehouses in the absence of history.
|
|
636
|
+
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).
|
|
637
637
|
"""
|
|
638
638
|
return pulumi.get(self, "user_task_managed_initial_warehouse_size")
|
|
639
639
|
|
|
@@ -657,7 +657,7 @@ class _SecondaryDatabaseState:
|
|
|
657
657
|
@pulumi.getter(name="userTaskTimeoutMs")
|
|
658
658
|
def user_task_timeout_ms(self) -> Optional[pulumi.Input[int]]:
|
|
659
659
|
"""
|
|
660
|
-
User task execution timeout in milliseconds.
|
|
660
|
+
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).
|
|
661
661
|
"""
|
|
662
662
|
return pulumi.get(self, "user_task_timeout_ms")
|
|
663
663
|
|
|
@@ -708,25 +708,25 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
708
708
|
:param str resource_name: The name of the resource.
|
|
709
709
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
710
710
|
:param pulumi.Input[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>"`.
|
|
711
|
-
:param pulumi.Input[str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables.
|
|
711
|
+
:param pulumi.Input[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).
|
|
712
712
|
:param pulumi.Input[str] comment: Specifies a comment for the database.
|
|
713
713
|
:param pulumi.Input[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).
|
|
714
714
|
:param pulumi.Input[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).
|
|
715
715
|
:param pulumi.Input[bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
716
|
-
:param pulumi.Input[str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables.
|
|
716
|
+
:param pulumi.Input[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).
|
|
717
717
|
:param pulumi.Input[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.
|
|
718
718
|
:param pulumi.Input[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).
|
|
719
719
|
:param pulumi.Input[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).
|
|
720
720
|
:param pulumi.Input[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.
|
|
721
|
-
:param pulumi.Input[bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored.
|
|
722
|
-
:param pulumi.Input[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.
|
|
723
|
-
:param pulumi.Input[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.
|
|
724
|
-
:param pulumi.Input[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.
|
|
725
|
-
:param pulumi.Input[int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task.
|
|
721
|
+
:param pulumi.Input[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).
|
|
722
|
+
:param pulumi.Input[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).
|
|
723
|
+
:param pulumi.Input[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).
|
|
724
|
+
:param pulumi.Input[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).
|
|
725
|
+
:param pulumi.Input[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).
|
|
726
726
|
:param pulumi.Input[str] trace_level: Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see [TRACE*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
727
|
-
:param pulumi.Input[str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history.
|
|
727
|
+
:param pulumi.Input[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).
|
|
728
728
|
:param pulumi.Input[int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
729
|
-
:param pulumi.Input[int] user_task_timeout_ms: User task execution timeout in milliseconds.
|
|
729
|
+
:param pulumi.Input[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).
|
|
730
730
|
"""
|
|
731
731
|
...
|
|
732
732
|
@overload
|
|
@@ -851,25 +851,25 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
851
851
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
852
852
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
853
853
|
:param pulumi.Input[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>"`.
|
|
854
|
-
:param pulumi.Input[str] catalog: The database parameter that specifies the default catalog to use for Iceberg tables.
|
|
854
|
+
:param pulumi.Input[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).
|
|
855
855
|
:param pulumi.Input[str] comment: Specifies a comment for the database.
|
|
856
856
|
:param pulumi.Input[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).
|
|
857
857
|
:param pulumi.Input[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).
|
|
858
858
|
:param pulumi.Input[bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
859
|
-
:param pulumi.Input[str] external_volume: The database parameter that specifies the default external volume to use for Iceberg tables.
|
|
859
|
+
:param pulumi.Input[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).
|
|
860
860
|
:param pulumi.Input[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.
|
|
861
861
|
:param pulumi.Input[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).
|
|
862
862
|
:param pulumi.Input[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).
|
|
863
863
|
:param pulumi.Input[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.
|
|
864
|
-
:param pulumi.Input[bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored.
|
|
865
|
-
:param pulumi.Input[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.
|
|
866
|
-
:param pulumi.Input[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.
|
|
867
|
-
:param pulumi.Input[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.
|
|
868
|
-
:param pulumi.Input[int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task.
|
|
864
|
+
:param pulumi.Input[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).
|
|
865
|
+
:param pulumi.Input[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).
|
|
866
|
+
:param pulumi.Input[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).
|
|
867
|
+
:param pulumi.Input[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).
|
|
868
|
+
:param pulumi.Input[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).
|
|
869
869
|
:param pulumi.Input[str] trace_level: Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON*EVENT OFF]. For information about levels, see [TRACE*LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
870
|
-
:param pulumi.Input[str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history.
|
|
870
|
+
:param pulumi.Input[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).
|
|
871
871
|
:param pulumi.Input[int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
872
|
-
:param pulumi.Input[int] user_task_timeout_ms: User task execution timeout in milliseconds.
|
|
872
|
+
:param pulumi.Input[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).
|
|
873
873
|
"""
|
|
874
874
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
875
875
|
|
|
@@ -909,7 +909,7 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
909
909
|
@pulumi.getter
|
|
910
910
|
def catalog(self) -> pulumi.Output[str]:
|
|
911
911
|
"""
|
|
912
|
-
The database parameter that specifies the default catalog to use for Iceberg tables.
|
|
912
|
+
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).
|
|
913
913
|
"""
|
|
914
914
|
return pulumi.get(self, "catalog")
|
|
915
915
|
|
|
@@ -949,7 +949,7 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
949
949
|
@pulumi.getter(name="externalVolume")
|
|
950
950
|
def external_volume(self) -> pulumi.Output[str]:
|
|
951
951
|
"""
|
|
952
|
-
The database parameter that specifies the default external volume to use for Iceberg tables.
|
|
952
|
+
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).
|
|
953
953
|
"""
|
|
954
954
|
return pulumi.get(self, "external_volume")
|
|
955
955
|
|
|
@@ -989,7 +989,7 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
989
989
|
@pulumi.getter(name="quotedIdentifiersIgnoreCase")
|
|
990
990
|
def quoted_identifiers_ignore_case(self) -> pulumi.Output[bool]:
|
|
991
991
|
"""
|
|
992
|
-
If true, the case of quoted identifiers is ignored.
|
|
992
|
+
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).
|
|
993
993
|
"""
|
|
994
994
|
return pulumi.get(self, "quoted_identifiers_ignore_case")
|
|
995
995
|
|
|
@@ -997,7 +997,7 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
997
997
|
@pulumi.getter(name="replaceInvalidCharacters")
|
|
998
998
|
def replace_invalid_characters(self) -> pulumi.Output[bool]:
|
|
999
999
|
"""
|
|
1000
|
-
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.
|
|
1000
|
+
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).
|
|
1001
1001
|
"""
|
|
1002
1002
|
return pulumi.get(self, "replace_invalid_characters")
|
|
1003
1003
|
|
|
@@ -1005,7 +1005,7 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
1005
1005
|
@pulumi.getter(name="storageSerializationPolicy")
|
|
1006
1006
|
def storage_serialization_policy(self) -> pulumi.Output[str]:
|
|
1007
1007
|
"""
|
|
1008
|
-
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.
|
|
1008
|
+
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).
|
|
1009
1009
|
"""
|
|
1010
1010
|
return pulumi.get(self, "storage_serialization_policy")
|
|
1011
1011
|
|
|
@@ -1013,7 +1013,7 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
1013
1013
|
@pulumi.getter(name="suspendTaskAfterNumFailures")
|
|
1014
1014
|
def suspend_task_after_num_failures(self) -> pulumi.Output[int]:
|
|
1015
1015
|
"""
|
|
1016
|
-
How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending.
|
|
1016
|
+
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).
|
|
1017
1017
|
"""
|
|
1018
1018
|
return pulumi.get(self, "suspend_task_after_num_failures")
|
|
1019
1019
|
|
|
@@ -1021,7 +1021,7 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
1021
1021
|
@pulumi.getter(name="taskAutoRetryAttempts")
|
|
1022
1022
|
def task_auto_retry_attempts(self) -> pulumi.Output[int]:
|
|
1023
1023
|
"""
|
|
1024
|
-
Maximum automatic retries allowed for a user task.
|
|
1024
|
+
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).
|
|
1025
1025
|
"""
|
|
1026
1026
|
return pulumi.get(self, "task_auto_retry_attempts")
|
|
1027
1027
|
|
|
@@ -1037,7 +1037,7 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
1037
1037
|
@pulumi.getter(name="userTaskManagedInitialWarehouseSize")
|
|
1038
1038
|
def user_task_managed_initial_warehouse_size(self) -> pulumi.Output[str]:
|
|
1039
1039
|
"""
|
|
1040
|
-
The initial size of warehouse to use for managed warehouses in the absence of history.
|
|
1040
|
+
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).
|
|
1041
1041
|
"""
|
|
1042
1042
|
return pulumi.get(self, "user_task_managed_initial_warehouse_size")
|
|
1043
1043
|
|
|
@@ -1053,7 +1053,7 @@ class SecondaryDatabase(pulumi.CustomResource):
|
|
|
1053
1053
|
@pulumi.getter(name="userTaskTimeoutMs")
|
|
1054
1054
|
def user_task_timeout_ms(self) -> pulumi.Output[int]:
|
|
1055
1055
|
"""
|
|
1056
|
-
User task execution timeout in milliseconds.
|
|
1056
|
+
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).
|
|
1057
1057
|
"""
|
|
1058
1058
|
return pulumi.get(self, "user_task_timeout_ms")
|
|
1059
1059
|
|