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.
- pulumi_snowflake/__init__.py +1 -1
- pulumi_snowflake/_inputs.py +16796 -16797
- pulumi_snowflake/account.py +252 -253
- pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
- pulumi_snowflake/account_parameter.py +35 -36
- pulumi_snowflake/account_password_policy_attachment.py +18 -19
- pulumi_snowflake/account_role.py +42 -43
- pulumi_snowflake/alert.py +149 -150
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
- pulumi_snowflake/api_integration.py +251 -252
- pulumi_snowflake/authentication_policy.py +167 -168
- pulumi_snowflake/compute_pool.py +167 -168
- pulumi_snowflake/config/__init__.py +1 -1
- pulumi_snowflake/config/__init__.pyi +1 -2
- pulumi_snowflake/config/outputs.py +21 -22
- pulumi_snowflake/config/vars.py +43 -44
- pulumi_snowflake/cortex_search_service.py +191 -192
- pulumi_snowflake/current_account.py +2088 -2089
- pulumi_snowflake/database.py +353 -354
- pulumi_snowflake/database_role.py +63 -64
- pulumi_snowflake/dynamic_table.py +274 -275
- pulumi_snowflake/email_notification_integration.py +70 -71
- pulumi_snowflake/execute.py +61 -62
- pulumi_snowflake/external_function.py +280 -281
- pulumi_snowflake/external_oauth_integration.py +288 -289
- pulumi_snowflake/external_table.py +246 -247
- pulumi_snowflake/external_volume.py +68 -69
- pulumi_snowflake/failover_group.py +135 -136
- pulumi_snowflake/file_format.py +622 -623
- pulumi_snowflake/function_java.py +320 -321
- pulumi_snowflake/function_javascript.py +243 -244
- pulumi_snowflake/function_python.py +334 -335
- pulumi_snowflake/function_scala.py +320 -321
- pulumi_snowflake/function_sql.py +226 -227
- pulumi_snowflake/get_account_roles.py +16 -17
- pulumi_snowflake/get_accounts.py +16 -17
- pulumi_snowflake/get_alerts.py +22 -23
- pulumi_snowflake/get_compute_pools.py +23 -24
- pulumi_snowflake/get_connections.py +10 -11
- pulumi_snowflake/get_cortex_search_services.py +18 -19
- pulumi_snowflake/get_current_account.py +9 -10
- pulumi_snowflake/get_current_role.py +5 -6
- pulumi_snowflake/get_database.py +25 -26
- pulumi_snowflake/get_database_role.py +19 -20
- pulumi_snowflake/get_database_roles.py +17 -18
- pulumi_snowflake/get_databases.py +29 -30
- pulumi_snowflake/get_dynamic_tables.py +13 -14
- pulumi_snowflake/get_external_functions.py +16 -17
- pulumi_snowflake/get_external_tables.py +16 -17
- pulumi_snowflake/get_failover_groups.py +10 -11
- pulumi_snowflake/get_file_formats.py +16 -17
- pulumi_snowflake/get_functions.py +16 -17
- pulumi_snowflake/get_git_repositories.py +18 -19
- pulumi_snowflake/get_grants.py +9 -10
- pulumi_snowflake/get_image_repositories.py +11 -12
- pulumi_snowflake/get_masking_policies.py +18 -19
- pulumi_snowflake/get_materialized_views.py +16 -17
- pulumi_snowflake/get_network_policies.py +16 -17
- pulumi_snowflake/get_parameters.py +34 -35
- pulumi_snowflake/get_pipes.py +16 -17
- pulumi_snowflake/get_procedures.py +16 -17
- pulumi_snowflake/get_resource_monitors.py +10 -11
- pulumi_snowflake/get_row_access_policies.py +18 -19
- pulumi_snowflake/get_schemas.py +30 -31
- pulumi_snowflake/get_secrets.py +17 -18
- pulumi_snowflake/get_security_integrations.py +16 -17
- pulumi_snowflake/get_sequences.py +16 -17
- pulumi_snowflake/get_services.py +30 -31
- pulumi_snowflake/get_shares.py +10 -11
- pulumi_snowflake/get_stages.py +16 -17
- pulumi_snowflake/get_storage_integrations.py +4 -5
- pulumi_snowflake/get_streamlits.py +18 -19
- pulumi_snowflake/get_streams.py +24 -25
- pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
- pulumi_snowflake/get_system_get_private_link_config.py +21 -22
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
- pulumi_snowflake/get_tables.py +24 -25
- pulumi_snowflake/get_tags.py +11 -12
- pulumi_snowflake/get_tasks.py +30 -31
- pulumi_snowflake/get_users.py +29 -30
- pulumi_snowflake/get_views.py +24 -25
- pulumi_snowflake/get_warehouses.py +22 -23
- pulumi_snowflake/git_repository.py +133 -134
- pulumi_snowflake/grant_account_role.py +52 -53
- pulumi_snowflake/grant_application_role.py +52 -53
- pulumi_snowflake/grant_database_role.py +69 -70
- pulumi_snowflake/grant_ownership.py +55 -56
- pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
- pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
- pulumi_snowflake/grant_privileges_to_share.py +154 -155
- pulumi_snowflake/image_repository.py +80 -81
- pulumi_snowflake/job_service.py +148 -149
- pulumi_snowflake/legacy_service_user.py +1269 -1270
- pulumi_snowflake/managed_account.py +140 -141
- pulumi_snowflake/masking_policy.py +136 -137
- pulumi_snowflake/materialized_view.py +149 -150
- pulumi_snowflake/network_policy.py +116 -117
- pulumi_snowflake/network_policy_attachment.py +52 -53
- pulumi_snowflake/network_rule.py +129 -130
- pulumi_snowflake/notification_integration.py +298 -299
- pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
- pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
- pulumi_snowflake/object_parameter.py +72 -73
- pulumi_snowflake/outputs.py +15510 -15511
- pulumi_snowflake/password_policy.py +299 -300
- pulumi_snowflake/pipe.py +181 -182
- pulumi_snowflake/primary_connection.py +70 -71
- pulumi_snowflake/procedure_java.py +341 -342
- pulumi_snowflake/procedure_javascript.py +247 -248
- pulumi_snowflake/procedure_python.py +338 -339
- pulumi_snowflake/procedure_scala.py +341 -342
- pulumi_snowflake/procedure_sql.py +247 -248
- pulumi_snowflake/provider.py +377 -378
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/resource_monitor.py +165 -166
- pulumi_snowflake/row_access_policy.py +102 -103
- pulumi_snowflake/saml2_integration.py +303 -304
- pulumi_snowflake/schema.py +390 -391
- pulumi_snowflake/scim_integration.py +133 -134
- pulumi_snowflake/secondary_connection.py +72 -73
- pulumi_snowflake/secondary_database.py +350 -351
- pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
- pulumi_snowflake/secret_with_basic_authentication.py +121 -122
- pulumi_snowflake/secret_with_client_credentials.py +125 -126
- pulumi_snowflake/secret_with_generic_string.py +104 -105
- pulumi_snowflake/sequence.py +121 -122
- pulumi_snowflake/service.py +233 -234
- pulumi_snowflake/service_user.py +1239 -1240
- pulumi_snowflake/share.py +61 -62
- pulumi_snowflake/shared_database.py +299 -300
- pulumi_snowflake/stage.py +234 -235
- pulumi_snowflake/storage_integration.py +230 -231
- pulumi_snowflake/stream_on_directory_table.py +128 -129
- pulumi_snowflake/stream_on_external_table.py +151 -152
- pulumi_snowflake/stream_on_table.py +164 -165
- pulumi_snowflake/stream_on_view.py +164 -165
- pulumi_snowflake/streamlit.py +184 -185
- pulumi_snowflake/table.py +147 -148
- pulumi_snowflake/table_column_masking_policy_application.py +52 -53
- pulumi_snowflake/table_constraint.py +191 -192
- pulumi_snowflake/tag.py +114 -115
- pulumi_snowflake/tag_association.py +86 -87
- pulumi_snowflake/task.py +1224 -1225
- pulumi_snowflake/user.py +1346 -1347
- pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
- pulumi_snowflake/user_password_policy_attachment.py +35 -36
- pulumi_snowflake/user_public_keys.py +52 -53
- pulumi_snowflake/view.py +187 -188
- pulumi_snowflake/warehouse.py +286 -287
- {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
- pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
- pulumi_snowflake-2.3.0a1752907264.dist-info/RECORD +0 -158
- {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
- {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,42 +19,42 @@ __all__ = ['SharedDatabaseArgs', 'SharedDatabase']
|
|
|
20
19
|
@pulumi.input_type
|
|
21
20
|
class SharedDatabaseArgs:
|
|
22
21
|
def __init__(__self__, *,
|
|
23
|
-
from_share: pulumi.Input[
|
|
24
|
-
catalog: Optional[pulumi.Input[
|
|
25
|
-
comment: Optional[pulumi.Input[
|
|
26
|
-
default_ddl_collation: Optional[pulumi.Input[
|
|
27
|
-
enable_console_output: Optional[pulumi.Input[
|
|
28
|
-
external_volume: Optional[pulumi.Input[
|
|
29
|
-
log_level: Optional[pulumi.Input[
|
|
30
|
-
name: Optional[pulumi.Input[
|
|
31
|
-
quoted_identifiers_ignore_case: Optional[pulumi.Input[
|
|
32
|
-
replace_invalid_characters: Optional[pulumi.Input[
|
|
33
|
-
storage_serialization_policy: Optional[pulumi.Input[
|
|
34
|
-
suspend_task_after_num_failures: Optional[pulumi.Input[
|
|
35
|
-
task_auto_retry_attempts: Optional[pulumi.Input[
|
|
36
|
-
trace_level: Optional[pulumi.Input[
|
|
37
|
-
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[
|
|
38
|
-
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[
|
|
39
|
-
user_task_timeout_ms: Optional[pulumi.Input[
|
|
22
|
+
from_share: pulumi.Input[_builtins.str],
|
|
23
|
+
catalog: Optional[pulumi.Input[_builtins.str]] = None,
|
|
24
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
25
|
+
default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
|
+
enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
27
|
+
external_volume: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
|
+
log_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
30
|
+
quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
31
|
+
replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
32
|
+
storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
33
|
+
suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
|
|
34
|
+
task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
|
|
35
|
+
trace_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
36
|
+
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
|
|
37
|
+
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
38
|
+
user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None):
|
|
40
39
|
"""
|
|
41
40
|
The set of arguments for constructing a SharedDatabase resource.
|
|
42
|
-
:param pulumi.Input[
|
|
43
|
-
:param pulumi.Input[
|
|
44
|
-
:param pulumi.Input[
|
|
45
|
-
:param pulumi.Input[
|
|
46
|
-
:param pulumi.Input[
|
|
47
|
-
:param pulumi.Input[
|
|
48
|
-
:param pulumi.Input[
|
|
49
|
-
:param pulumi.Input[
|
|
50
|
-
:param pulumi.Input[
|
|
51
|
-
:param pulumi.Input[
|
|
52
|
-
:param pulumi.Input[
|
|
53
|
-
:param pulumi.Input[
|
|
54
|
-
:param pulumi.Input[
|
|
55
|
-
:param pulumi.Input[
|
|
56
|
-
:param pulumi.Input[
|
|
57
|
-
:param pulumi.Input[
|
|
58
|
-
:param pulumi.Input[
|
|
41
|
+
:param pulumi.Input[_builtins.str] from_share: A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<share_name>"`. For more information about this resource, see docs.
|
|
42
|
+
: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).
|
|
43
|
+
:param pulumi.Input[_builtins.str] comment: Specifies a comment for the database.
|
|
44
|
+
: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).
|
|
45
|
+
:param pulumi.Input[_builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
46
|
+
: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).
|
|
47
|
+
: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).
|
|
48
|
+
:param pulumi.Input[_builtins.str] name: Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
49
|
+
: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).
|
|
50
|
+
: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).
|
|
51
|
+
: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).
|
|
52
|
+
: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).
|
|
53
|
+
: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).
|
|
54
|
+
: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).
|
|
55
|
+
: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).
|
|
56
|
+
:param pulumi.Input[_builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
57
|
+
: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).
|
|
59
58
|
"""
|
|
60
59
|
pulumi.set(__self__, "from_share", from_share)
|
|
61
60
|
if catalog is not None:
|
|
@@ -91,252 +90,252 @@ class SharedDatabaseArgs:
|
|
|
91
90
|
if user_task_timeout_ms is not None:
|
|
92
91
|
pulumi.set(__self__, "user_task_timeout_ms", user_task_timeout_ms)
|
|
93
92
|
|
|
94
|
-
@property
|
|
93
|
+
@_builtins.property
|
|
95
94
|
@pulumi.getter(name="fromShare")
|
|
96
|
-
def from_share(self) -> pulumi.Input[
|
|
95
|
+
def from_share(self) -> pulumi.Input[_builtins.str]:
|
|
97
96
|
"""
|
|
98
97
|
A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<share_name>"`. For more information about this resource, see docs.
|
|
99
98
|
"""
|
|
100
99
|
return pulumi.get(self, "from_share")
|
|
101
100
|
|
|
102
101
|
@from_share.setter
|
|
103
|
-
def from_share(self, value: pulumi.Input[
|
|
102
|
+
def from_share(self, value: pulumi.Input[_builtins.str]):
|
|
104
103
|
pulumi.set(self, "from_share", value)
|
|
105
104
|
|
|
106
|
-
@property
|
|
105
|
+
@_builtins.property
|
|
107
106
|
@pulumi.getter
|
|
108
|
-
def catalog(self) -> Optional[pulumi.Input[
|
|
107
|
+
def catalog(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
109
108
|
"""
|
|
110
109
|
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).
|
|
111
110
|
"""
|
|
112
111
|
return pulumi.get(self, "catalog")
|
|
113
112
|
|
|
114
113
|
@catalog.setter
|
|
115
|
-
def catalog(self, value: Optional[pulumi.Input[
|
|
114
|
+
def catalog(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
116
115
|
pulumi.set(self, "catalog", value)
|
|
117
116
|
|
|
118
|
-
@property
|
|
117
|
+
@_builtins.property
|
|
119
118
|
@pulumi.getter
|
|
120
|
-
def comment(self) -> Optional[pulumi.Input[
|
|
119
|
+
def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
121
120
|
"""
|
|
122
121
|
Specifies a comment for the database.
|
|
123
122
|
"""
|
|
124
123
|
return pulumi.get(self, "comment")
|
|
125
124
|
|
|
126
125
|
@comment.setter
|
|
127
|
-
def comment(self, value: Optional[pulumi.Input[
|
|
126
|
+
def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
128
127
|
pulumi.set(self, "comment", value)
|
|
129
128
|
|
|
130
|
-
@property
|
|
129
|
+
@_builtins.property
|
|
131
130
|
@pulumi.getter(name="defaultDdlCollation")
|
|
132
|
-
def default_ddl_collation(self) -> Optional[pulumi.Input[
|
|
131
|
+
def default_ddl_collation(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
133
132
|
"""
|
|
134
133
|
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).
|
|
135
134
|
"""
|
|
136
135
|
return pulumi.get(self, "default_ddl_collation")
|
|
137
136
|
|
|
138
137
|
@default_ddl_collation.setter
|
|
139
|
-
def default_ddl_collation(self, value: Optional[pulumi.Input[
|
|
138
|
+
def default_ddl_collation(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
140
139
|
pulumi.set(self, "default_ddl_collation", value)
|
|
141
140
|
|
|
142
|
-
@property
|
|
141
|
+
@_builtins.property
|
|
143
142
|
@pulumi.getter(name="enableConsoleOutput")
|
|
144
|
-
def enable_console_output(self) -> Optional[pulumi.Input[
|
|
143
|
+
def enable_console_output(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
145
144
|
"""
|
|
146
145
|
If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
147
146
|
"""
|
|
148
147
|
return pulumi.get(self, "enable_console_output")
|
|
149
148
|
|
|
150
149
|
@enable_console_output.setter
|
|
151
|
-
def enable_console_output(self, value: Optional[pulumi.Input[
|
|
150
|
+
def enable_console_output(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
152
151
|
pulumi.set(self, "enable_console_output", value)
|
|
153
152
|
|
|
154
|
-
@property
|
|
153
|
+
@_builtins.property
|
|
155
154
|
@pulumi.getter(name="externalVolume")
|
|
156
|
-
def external_volume(self) -> Optional[pulumi.Input[
|
|
155
|
+
def external_volume(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
157
156
|
"""
|
|
158
157
|
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).
|
|
159
158
|
"""
|
|
160
159
|
return pulumi.get(self, "external_volume")
|
|
161
160
|
|
|
162
161
|
@external_volume.setter
|
|
163
|
-
def external_volume(self, value: Optional[pulumi.Input[
|
|
162
|
+
def external_volume(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
164
163
|
pulumi.set(self, "external_volume", value)
|
|
165
164
|
|
|
166
|
-
@property
|
|
165
|
+
@_builtins.property
|
|
167
166
|
@pulumi.getter(name="logLevel")
|
|
168
|
-
def log_level(self) -> Optional[pulumi.Input[
|
|
167
|
+
def log_level(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
169
168
|
"""
|
|
170
169
|
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).
|
|
171
170
|
"""
|
|
172
171
|
return pulumi.get(self, "log_level")
|
|
173
172
|
|
|
174
173
|
@log_level.setter
|
|
175
|
-
def log_level(self, value: Optional[pulumi.Input[
|
|
174
|
+
def log_level(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
176
175
|
pulumi.set(self, "log_level", value)
|
|
177
176
|
|
|
178
|
-
@property
|
|
177
|
+
@_builtins.property
|
|
179
178
|
@pulumi.getter
|
|
180
|
-
def name(self) -> Optional[pulumi.Input[
|
|
179
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
181
180
|
"""
|
|
182
181
|
Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
183
182
|
"""
|
|
184
183
|
return pulumi.get(self, "name")
|
|
185
184
|
|
|
186
185
|
@name.setter
|
|
187
|
-
def name(self, value: Optional[pulumi.Input[
|
|
186
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
188
187
|
pulumi.set(self, "name", value)
|
|
189
188
|
|
|
190
|
-
@property
|
|
189
|
+
@_builtins.property
|
|
191
190
|
@pulumi.getter(name="quotedIdentifiersIgnoreCase")
|
|
192
|
-
def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[
|
|
191
|
+
def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
193
192
|
"""
|
|
194
193
|
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).
|
|
195
194
|
"""
|
|
196
195
|
return pulumi.get(self, "quoted_identifiers_ignore_case")
|
|
197
196
|
|
|
198
197
|
@quoted_identifiers_ignore_case.setter
|
|
199
|
-
def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[
|
|
198
|
+
def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
200
199
|
pulumi.set(self, "quoted_identifiers_ignore_case", value)
|
|
201
200
|
|
|
202
|
-
@property
|
|
201
|
+
@_builtins.property
|
|
203
202
|
@pulumi.getter(name="replaceInvalidCharacters")
|
|
204
|
-
def replace_invalid_characters(self) -> Optional[pulumi.Input[
|
|
203
|
+
def replace_invalid_characters(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
205
204
|
"""
|
|
206
205
|
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).
|
|
207
206
|
"""
|
|
208
207
|
return pulumi.get(self, "replace_invalid_characters")
|
|
209
208
|
|
|
210
209
|
@replace_invalid_characters.setter
|
|
211
|
-
def replace_invalid_characters(self, value: Optional[pulumi.Input[
|
|
210
|
+
def replace_invalid_characters(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
212
211
|
pulumi.set(self, "replace_invalid_characters", value)
|
|
213
212
|
|
|
214
|
-
@property
|
|
213
|
+
@_builtins.property
|
|
215
214
|
@pulumi.getter(name="storageSerializationPolicy")
|
|
216
|
-
def storage_serialization_policy(self) -> Optional[pulumi.Input[
|
|
215
|
+
def storage_serialization_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
217
216
|
"""
|
|
218
217
|
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).
|
|
219
218
|
"""
|
|
220
219
|
return pulumi.get(self, "storage_serialization_policy")
|
|
221
220
|
|
|
222
221
|
@storage_serialization_policy.setter
|
|
223
|
-
def storage_serialization_policy(self, value: Optional[pulumi.Input[
|
|
222
|
+
def storage_serialization_policy(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
224
223
|
pulumi.set(self, "storage_serialization_policy", value)
|
|
225
224
|
|
|
226
|
-
@property
|
|
225
|
+
@_builtins.property
|
|
227
226
|
@pulumi.getter(name="suspendTaskAfterNumFailures")
|
|
228
|
-
def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[
|
|
227
|
+
def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
229
228
|
"""
|
|
230
229
|
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).
|
|
231
230
|
"""
|
|
232
231
|
return pulumi.get(self, "suspend_task_after_num_failures")
|
|
233
232
|
|
|
234
233
|
@suspend_task_after_num_failures.setter
|
|
235
|
-
def suspend_task_after_num_failures(self, value: Optional[pulumi.Input[
|
|
234
|
+
def suspend_task_after_num_failures(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
236
235
|
pulumi.set(self, "suspend_task_after_num_failures", value)
|
|
237
236
|
|
|
238
|
-
@property
|
|
237
|
+
@_builtins.property
|
|
239
238
|
@pulumi.getter(name="taskAutoRetryAttempts")
|
|
240
|
-
def task_auto_retry_attempts(self) -> Optional[pulumi.Input[
|
|
239
|
+
def task_auto_retry_attempts(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
241
240
|
"""
|
|
242
241
|
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).
|
|
243
242
|
"""
|
|
244
243
|
return pulumi.get(self, "task_auto_retry_attempts")
|
|
245
244
|
|
|
246
245
|
@task_auto_retry_attempts.setter
|
|
247
|
-
def task_auto_retry_attempts(self, value: Optional[pulumi.Input[
|
|
246
|
+
def task_auto_retry_attempts(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
248
247
|
pulumi.set(self, "task_auto_retry_attempts", value)
|
|
249
248
|
|
|
250
|
-
@property
|
|
249
|
+
@_builtins.property
|
|
251
250
|
@pulumi.getter(name="traceLevel")
|
|
252
|
-
def trace_level(self) -> Optional[pulumi.Input[
|
|
251
|
+
def trace_level(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
253
252
|
"""
|
|
254
253
|
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).
|
|
255
254
|
"""
|
|
256
255
|
return pulumi.get(self, "trace_level")
|
|
257
256
|
|
|
258
257
|
@trace_level.setter
|
|
259
|
-
def trace_level(self, value: Optional[pulumi.Input[
|
|
258
|
+
def trace_level(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
260
259
|
pulumi.set(self, "trace_level", value)
|
|
261
260
|
|
|
262
|
-
@property
|
|
261
|
+
@_builtins.property
|
|
263
262
|
@pulumi.getter(name="userTaskManagedInitialWarehouseSize")
|
|
264
|
-
def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[
|
|
263
|
+
def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
265
264
|
"""
|
|
266
265
|
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).
|
|
267
266
|
"""
|
|
268
267
|
return pulumi.get(self, "user_task_managed_initial_warehouse_size")
|
|
269
268
|
|
|
270
269
|
@user_task_managed_initial_warehouse_size.setter
|
|
271
|
-
def user_task_managed_initial_warehouse_size(self, value: Optional[pulumi.Input[
|
|
270
|
+
def user_task_managed_initial_warehouse_size(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
272
271
|
pulumi.set(self, "user_task_managed_initial_warehouse_size", value)
|
|
273
272
|
|
|
274
|
-
@property
|
|
273
|
+
@_builtins.property
|
|
275
274
|
@pulumi.getter(name="userTaskMinimumTriggerIntervalInSeconds")
|
|
276
|
-
def user_task_minimum_trigger_interval_in_seconds(self) -> Optional[pulumi.Input[
|
|
275
|
+
def user_task_minimum_trigger_interval_in_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
277
276
|
"""
|
|
278
277
|
Minimum amount of time between Triggered Task executions in seconds.
|
|
279
278
|
"""
|
|
280
279
|
return pulumi.get(self, "user_task_minimum_trigger_interval_in_seconds")
|
|
281
280
|
|
|
282
281
|
@user_task_minimum_trigger_interval_in_seconds.setter
|
|
283
|
-
def user_task_minimum_trigger_interval_in_seconds(self, value: Optional[pulumi.Input[
|
|
282
|
+
def user_task_minimum_trigger_interval_in_seconds(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
284
283
|
pulumi.set(self, "user_task_minimum_trigger_interval_in_seconds", value)
|
|
285
284
|
|
|
286
|
-
@property
|
|
285
|
+
@_builtins.property
|
|
287
286
|
@pulumi.getter(name="userTaskTimeoutMs")
|
|
288
|
-
def user_task_timeout_ms(self) -> Optional[pulumi.Input[
|
|
287
|
+
def user_task_timeout_ms(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
289
288
|
"""
|
|
290
289
|
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).
|
|
291
290
|
"""
|
|
292
291
|
return pulumi.get(self, "user_task_timeout_ms")
|
|
293
292
|
|
|
294
293
|
@user_task_timeout_ms.setter
|
|
295
|
-
def user_task_timeout_ms(self, value: Optional[pulumi.Input[
|
|
294
|
+
def user_task_timeout_ms(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
296
295
|
pulumi.set(self, "user_task_timeout_ms", value)
|
|
297
296
|
|
|
298
297
|
|
|
299
298
|
@pulumi.input_type
|
|
300
299
|
class _SharedDatabaseState:
|
|
301
300
|
def __init__(__self__, *,
|
|
302
|
-
catalog: Optional[pulumi.Input[
|
|
303
|
-
comment: Optional[pulumi.Input[
|
|
304
|
-
default_ddl_collation: Optional[pulumi.Input[
|
|
305
|
-
enable_console_output: Optional[pulumi.Input[
|
|
306
|
-
external_volume: Optional[pulumi.Input[
|
|
307
|
-
from_share: Optional[pulumi.Input[
|
|
308
|
-
fully_qualified_name: Optional[pulumi.Input[
|
|
309
|
-
log_level: Optional[pulumi.Input[
|
|
310
|
-
name: Optional[pulumi.Input[
|
|
311
|
-
quoted_identifiers_ignore_case: Optional[pulumi.Input[
|
|
312
|
-
replace_invalid_characters: Optional[pulumi.Input[
|
|
313
|
-
storage_serialization_policy: Optional[pulumi.Input[
|
|
314
|
-
suspend_task_after_num_failures: Optional[pulumi.Input[
|
|
315
|
-
task_auto_retry_attempts: Optional[pulumi.Input[
|
|
316
|
-
trace_level: Optional[pulumi.Input[
|
|
317
|
-
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[
|
|
318
|
-
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[
|
|
319
|
-
user_task_timeout_ms: Optional[pulumi.Input[
|
|
301
|
+
catalog: Optional[pulumi.Input[_builtins.str]] = None,
|
|
302
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
303
|
+
default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
|
|
304
|
+
enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
305
|
+
external_volume: Optional[pulumi.Input[_builtins.str]] = None,
|
|
306
|
+
from_share: Optional[pulumi.Input[_builtins.str]] = None,
|
|
307
|
+
fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
308
|
+
log_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
309
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
310
|
+
quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
311
|
+
replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
312
|
+
storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
313
|
+
suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
|
|
314
|
+
task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
|
|
315
|
+
trace_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
316
|
+
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
|
|
317
|
+
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
318
|
+
user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None):
|
|
320
319
|
"""
|
|
321
320
|
Input properties used for looking up and filtering SharedDatabase resources.
|
|
322
|
-
:param pulumi.Input[
|
|
323
|
-
:param pulumi.Input[
|
|
324
|
-
:param pulumi.Input[
|
|
325
|
-
:param pulumi.Input[
|
|
326
|
-
:param pulumi.Input[
|
|
327
|
-
:param pulumi.Input[
|
|
328
|
-
:param pulumi.Input[
|
|
329
|
-
:param pulumi.Input[
|
|
330
|
-
:param pulumi.Input[
|
|
331
|
-
:param pulumi.Input[
|
|
332
|
-
:param pulumi.Input[
|
|
333
|
-
:param pulumi.Input[
|
|
334
|
-
:param pulumi.Input[
|
|
335
|
-
:param pulumi.Input[
|
|
336
|
-
:param pulumi.Input[
|
|
337
|
-
:param pulumi.Input[
|
|
338
|
-
:param pulumi.Input[
|
|
339
|
-
:param pulumi.Input[
|
|
321
|
+
: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).
|
|
322
|
+
:param pulumi.Input[_builtins.str] comment: Specifies a comment for the database.
|
|
323
|
+
: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).
|
|
324
|
+
:param pulumi.Input[_builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
325
|
+
: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).
|
|
326
|
+
:param pulumi.Input[_builtins.str] from_share: A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<share_name>"`. For more information about this resource, see docs.
|
|
327
|
+
: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).
|
|
328
|
+
: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).
|
|
329
|
+
:param pulumi.Input[_builtins.str] name: Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
330
|
+
: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).
|
|
331
|
+
: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).
|
|
332
|
+
: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).
|
|
333
|
+
: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).
|
|
334
|
+
: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).
|
|
335
|
+
: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).
|
|
336
|
+
: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).
|
|
337
|
+
:param pulumi.Input[_builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
338
|
+
: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).
|
|
340
339
|
"""
|
|
341
340
|
if catalog is not None:
|
|
342
341
|
pulumi.set(__self__, "catalog", catalog)
|
|
@@ -375,220 +374,220 @@ class _SharedDatabaseState:
|
|
|
375
374
|
if user_task_timeout_ms is not None:
|
|
376
375
|
pulumi.set(__self__, "user_task_timeout_ms", user_task_timeout_ms)
|
|
377
376
|
|
|
378
|
-
@property
|
|
377
|
+
@_builtins.property
|
|
379
378
|
@pulumi.getter
|
|
380
|
-
def catalog(self) -> Optional[pulumi.Input[
|
|
379
|
+
def catalog(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
381
380
|
"""
|
|
382
381
|
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).
|
|
383
382
|
"""
|
|
384
383
|
return pulumi.get(self, "catalog")
|
|
385
384
|
|
|
386
385
|
@catalog.setter
|
|
387
|
-
def catalog(self, value: Optional[pulumi.Input[
|
|
386
|
+
def catalog(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
388
387
|
pulumi.set(self, "catalog", value)
|
|
389
388
|
|
|
390
|
-
@property
|
|
389
|
+
@_builtins.property
|
|
391
390
|
@pulumi.getter
|
|
392
|
-
def comment(self) -> Optional[pulumi.Input[
|
|
391
|
+
def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
393
392
|
"""
|
|
394
393
|
Specifies a comment for the database.
|
|
395
394
|
"""
|
|
396
395
|
return pulumi.get(self, "comment")
|
|
397
396
|
|
|
398
397
|
@comment.setter
|
|
399
|
-
def comment(self, value: Optional[pulumi.Input[
|
|
398
|
+
def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
400
399
|
pulumi.set(self, "comment", value)
|
|
401
400
|
|
|
402
|
-
@property
|
|
401
|
+
@_builtins.property
|
|
403
402
|
@pulumi.getter(name="defaultDdlCollation")
|
|
404
|
-
def default_ddl_collation(self) -> Optional[pulumi.Input[
|
|
403
|
+
def default_ddl_collation(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
405
404
|
"""
|
|
406
405
|
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).
|
|
407
406
|
"""
|
|
408
407
|
return pulumi.get(self, "default_ddl_collation")
|
|
409
408
|
|
|
410
409
|
@default_ddl_collation.setter
|
|
411
|
-
def default_ddl_collation(self, value: Optional[pulumi.Input[
|
|
410
|
+
def default_ddl_collation(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
412
411
|
pulumi.set(self, "default_ddl_collation", value)
|
|
413
412
|
|
|
414
|
-
@property
|
|
413
|
+
@_builtins.property
|
|
415
414
|
@pulumi.getter(name="enableConsoleOutput")
|
|
416
|
-
def enable_console_output(self) -> Optional[pulumi.Input[
|
|
415
|
+
def enable_console_output(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
417
416
|
"""
|
|
418
417
|
If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
419
418
|
"""
|
|
420
419
|
return pulumi.get(self, "enable_console_output")
|
|
421
420
|
|
|
422
421
|
@enable_console_output.setter
|
|
423
|
-
def enable_console_output(self, value: Optional[pulumi.Input[
|
|
422
|
+
def enable_console_output(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
424
423
|
pulumi.set(self, "enable_console_output", value)
|
|
425
424
|
|
|
426
|
-
@property
|
|
425
|
+
@_builtins.property
|
|
427
426
|
@pulumi.getter(name="externalVolume")
|
|
428
|
-
def external_volume(self) -> Optional[pulumi.Input[
|
|
427
|
+
def external_volume(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
429
428
|
"""
|
|
430
429
|
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).
|
|
431
430
|
"""
|
|
432
431
|
return pulumi.get(self, "external_volume")
|
|
433
432
|
|
|
434
433
|
@external_volume.setter
|
|
435
|
-
def external_volume(self, value: Optional[pulumi.Input[
|
|
434
|
+
def external_volume(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
436
435
|
pulumi.set(self, "external_volume", value)
|
|
437
436
|
|
|
438
|
-
@property
|
|
437
|
+
@_builtins.property
|
|
439
438
|
@pulumi.getter(name="fromShare")
|
|
440
|
-
def from_share(self) -> Optional[pulumi.Input[
|
|
439
|
+
def from_share(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
441
440
|
"""
|
|
442
441
|
A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<share_name>"`. For more information about this resource, see docs.
|
|
443
442
|
"""
|
|
444
443
|
return pulumi.get(self, "from_share")
|
|
445
444
|
|
|
446
445
|
@from_share.setter
|
|
447
|
-
def from_share(self, value: Optional[pulumi.Input[
|
|
446
|
+
def from_share(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
448
447
|
pulumi.set(self, "from_share", value)
|
|
449
448
|
|
|
450
|
-
@property
|
|
449
|
+
@_builtins.property
|
|
451
450
|
@pulumi.getter(name="fullyQualifiedName")
|
|
452
|
-
def fully_qualified_name(self) -> Optional[pulumi.Input[
|
|
451
|
+
def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
453
452
|
"""
|
|
454
453
|
Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
455
454
|
"""
|
|
456
455
|
return pulumi.get(self, "fully_qualified_name")
|
|
457
456
|
|
|
458
457
|
@fully_qualified_name.setter
|
|
459
|
-
def fully_qualified_name(self, value: Optional[pulumi.Input[
|
|
458
|
+
def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
460
459
|
pulumi.set(self, "fully_qualified_name", value)
|
|
461
460
|
|
|
462
|
-
@property
|
|
461
|
+
@_builtins.property
|
|
463
462
|
@pulumi.getter(name="logLevel")
|
|
464
|
-
def log_level(self) -> Optional[pulumi.Input[
|
|
463
|
+
def log_level(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
465
464
|
"""
|
|
466
465
|
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).
|
|
467
466
|
"""
|
|
468
467
|
return pulumi.get(self, "log_level")
|
|
469
468
|
|
|
470
469
|
@log_level.setter
|
|
471
|
-
def log_level(self, value: Optional[pulumi.Input[
|
|
470
|
+
def log_level(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
472
471
|
pulumi.set(self, "log_level", value)
|
|
473
472
|
|
|
474
|
-
@property
|
|
473
|
+
@_builtins.property
|
|
475
474
|
@pulumi.getter
|
|
476
|
-
def name(self) -> Optional[pulumi.Input[
|
|
475
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
477
476
|
"""
|
|
478
477
|
Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
479
478
|
"""
|
|
480
479
|
return pulumi.get(self, "name")
|
|
481
480
|
|
|
482
481
|
@name.setter
|
|
483
|
-
def name(self, value: Optional[pulumi.Input[
|
|
482
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
484
483
|
pulumi.set(self, "name", value)
|
|
485
484
|
|
|
486
|
-
@property
|
|
485
|
+
@_builtins.property
|
|
487
486
|
@pulumi.getter(name="quotedIdentifiersIgnoreCase")
|
|
488
|
-
def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[
|
|
487
|
+
def quoted_identifiers_ignore_case(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
489
488
|
"""
|
|
490
489
|
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).
|
|
491
490
|
"""
|
|
492
491
|
return pulumi.get(self, "quoted_identifiers_ignore_case")
|
|
493
492
|
|
|
494
493
|
@quoted_identifiers_ignore_case.setter
|
|
495
|
-
def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[
|
|
494
|
+
def quoted_identifiers_ignore_case(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
496
495
|
pulumi.set(self, "quoted_identifiers_ignore_case", value)
|
|
497
496
|
|
|
498
|
-
@property
|
|
497
|
+
@_builtins.property
|
|
499
498
|
@pulumi.getter(name="replaceInvalidCharacters")
|
|
500
|
-
def replace_invalid_characters(self) -> Optional[pulumi.Input[
|
|
499
|
+
def replace_invalid_characters(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
501
500
|
"""
|
|
502
501
|
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).
|
|
503
502
|
"""
|
|
504
503
|
return pulumi.get(self, "replace_invalid_characters")
|
|
505
504
|
|
|
506
505
|
@replace_invalid_characters.setter
|
|
507
|
-
def replace_invalid_characters(self, value: Optional[pulumi.Input[
|
|
506
|
+
def replace_invalid_characters(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
508
507
|
pulumi.set(self, "replace_invalid_characters", value)
|
|
509
508
|
|
|
510
|
-
@property
|
|
509
|
+
@_builtins.property
|
|
511
510
|
@pulumi.getter(name="storageSerializationPolicy")
|
|
512
|
-
def storage_serialization_policy(self) -> Optional[pulumi.Input[
|
|
511
|
+
def storage_serialization_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
513
512
|
"""
|
|
514
513
|
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).
|
|
515
514
|
"""
|
|
516
515
|
return pulumi.get(self, "storage_serialization_policy")
|
|
517
516
|
|
|
518
517
|
@storage_serialization_policy.setter
|
|
519
|
-
def storage_serialization_policy(self, value: Optional[pulumi.Input[
|
|
518
|
+
def storage_serialization_policy(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
520
519
|
pulumi.set(self, "storage_serialization_policy", value)
|
|
521
520
|
|
|
522
|
-
@property
|
|
521
|
+
@_builtins.property
|
|
523
522
|
@pulumi.getter(name="suspendTaskAfterNumFailures")
|
|
524
|
-
def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[
|
|
523
|
+
def suspend_task_after_num_failures(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
525
524
|
"""
|
|
526
525
|
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).
|
|
527
526
|
"""
|
|
528
527
|
return pulumi.get(self, "suspend_task_after_num_failures")
|
|
529
528
|
|
|
530
529
|
@suspend_task_after_num_failures.setter
|
|
531
|
-
def suspend_task_after_num_failures(self, value: Optional[pulumi.Input[
|
|
530
|
+
def suspend_task_after_num_failures(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
532
531
|
pulumi.set(self, "suspend_task_after_num_failures", value)
|
|
533
532
|
|
|
534
|
-
@property
|
|
533
|
+
@_builtins.property
|
|
535
534
|
@pulumi.getter(name="taskAutoRetryAttempts")
|
|
536
|
-
def task_auto_retry_attempts(self) -> Optional[pulumi.Input[
|
|
535
|
+
def task_auto_retry_attempts(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
537
536
|
"""
|
|
538
537
|
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).
|
|
539
538
|
"""
|
|
540
539
|
return pulumi.get(self, "task_auto_retry_attempts")
|
|
541
540
|
|
|
542
541
|
@task_auto_retry_attempts.setter
|
|
543
|
-
def task_auto_retry_attempts(self, value: Optional[pulumi.Input[
|
|
542
|
+
def task_auto_retry_attempts(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
544
543
|
pulumi.set(self, "task_auto_retry_attempts", value)
|
|
545
544
|
|
|
546
|
-
@property
|
|
545
|
+
@_builtins.property
|
|
547
546
|
@pulumi.getter(name="traceLevel")
|
|
548
|
-
def trace_level(self) -> Optional[pulumi.Input[
|
|
547
|
+
def trace_level(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
549
548
|
"""
|
|
550
549
|
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).
|
|
551
550
|
"""
|
|
552
551
|
return pulumi.get(self, "trace_level")
|
|
553
552
|
|
|
554
553
|
@trace_level.setter
|
|
555
|
-
def trace_level(self, value: Optional[pulumi.Input[
|
|
554
|
+
def trace_level(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
556
555
|
pulumi.set(self, "trace_level", value)
|
|
557
556
|
|
|
558
|
-
@property
|
|
557
|
+
@_builtins.property
|
|
559
558
|
@pulumi.getter(name="userTaskManagedInitialWarehouseSize")
|
|
560
|
-
def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[
|
|
559
|
+
def user_task_managed_initial_warehouse_size(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
561
560
|
"""
|
|
562
561
|
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).
|
|
563
562
|
"""
|
|
564
563
|
return pulumi.get(self, "user_task_managed_initial_warehouse_size")
|
|
565
564
|
|
|
566
565
|
@user_task_managed_initial_warehouse_size.setter
|
|
567
|
-
def user_task_managed_initial_warehouse_size(self, value: Optional[pulumi.Input[
|
|
566
|
+
def user_task_managed_initial_warehouse_size(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
568
567
|
pulumi.set(self, "user_task_managed_initial_warehouse_size", value)
|
|
569
568
|
|
|
570
|
-
@property
|
|
569
|
+
@_builtins.property
|
|
571
570
|
@pulumi.getter(name="userTaskMinimumTriggerIntervalInSeconds")
|
|
572
|
-
def user_task_minimum_trigger_interval_in_seconds(self) -> Optional[pulumi.Input[
|
|
571
|
+
def user_task_minimum_trigger_interval_in_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
573
572
|
"""
|
|
574
573
|
Minimum amount of time between Triggered Task executions in seconds.
|
|
575
574
|
"""
|
|
576
575
|
return pulumi.get(self, "user_task_minimum_trigger_interval_in_seconds")
|
|
577
576
|
|
|
578
577
|
@user_task_minimum_trigger_interval_in_seconds.setter
|
|
579
|
-
def user_task_minimum_trigger_interval_in_seconds(self, value: Optional[pulumi.Input[
|
|
578
|
+
def user_task_minimum_trigger_interval_in_seconds(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
580
579
|
pulumi.set(self, "user_task_minimum_trigger_interval_in_seconds", value)
|
|
581
580
|
|
|
582
|
-
@property
|
|
581
|
+
@_builtins.property
|
|
583
582
|
@pulumi.getter(name="userTaskTimeoutMs")
|
|
584
|
-
def user_task_timeout_ms(self) -> Optional[pulumi.Input[
|
|
583
|
+
def user_task_timeout_ms(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
585
584
|
"""
|
|
586
585
|
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).
|
|
587
586
|
"""
|
|
588
587
|
return pulumi.get(self, "user_task_timeout_ms")
|
|
589
588
|
|
|
590
589
|
@user_task_timeout_ms.setter
|
|
591
|
-
def user_task_timeout_ms(self, value: Optional[pulumi.Input[
|
|
590
|
+
def user_task_timeout_ms(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
592
591
|
pulumi.set(self, "user_task_timeout_ms", value)
|
|
593
592
|
|
|
594
593
|
|
|
@@ -598,23 +597,23 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
598
597
|
def __init__(__self__,
|
|
599
598
|
resource_name: str,
|
|
600
599
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
601
|
-
catalog: Optional[pulumi.Input[
|
|
602
|
-
comment: Optional[pulumi.Input[
|
|
603
|
-
default_ddl_collation: Optional[pulumi.Input[
|
|
604
|
-
enable_console_output: Optional[pulumi.Input[
|
|
605
|
-
external_volume: Optional[pulumi.Input[
|
|
606
|
-
from_share: Optional[pulumi.Input[
|
|
607
|
-
log_level: Optional[pulumi.Input[
|
|
608
|
-
name: Optional[pulumi.Input[
|
|
609
|
-
quoted_identifiers_ignore_case: Optional[pulumi.Input[
|
|
610
|
-
replace_invalid_characters: Optional[pulumi.Input[
|
|
611
|
-
storage_serialization_policy: Optional[pulumi.Input[
|
|
612
|
-
suspend_task_after_num_failures: Optional[pulumi.Input[
|
|
613
|
-
task_auto_retry_attempts: Optional[pulumi.Input[
|
|
614
|
-
trace_level: Optional[pulumi.Input[
|
|
615
|
-
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[
|
|
616
|
-
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[
|
|
617
|
-
user_task_timeout_ms: Optional[pulumi.Input[
|
|
600
|
+
catalog: Optional[pulumi.Input[_builtins.str]] = None,
|
|
601
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
602
|
+
default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
|
|
603
|
+
enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
604
|
+
external_volume: Optional[pulumi.Input[_builtins.str]] = None,
|
|
605
|
+
from_share: Optional[pulumi.Input[_builtins.str]] = None,
|
|
606
|
+
log_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
607
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
608
|
+
quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
609
|
+
replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
610
|
+
storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
611
|
+
suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
|
|
612
|
+
task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
|
|
613
|
+
trace_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
614
|
+
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
|
|
615
|
+
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
616
|
+
user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None,
|
|
618
617
|
__props__=None):
|
|
619
618
|
"""
|
|
620
619
|
## Import
|
|
@@ -625,23 +624,23 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
625
624
|
|
|
626
625
|
:param str resource_name: The name of the resource.
|
|
627
626
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
628
|
-
:param pulumi.Input[
|
|
629
|
-
:param pulumi.Input[
|
|
630
|
-
:param pulumi.Input[
|
|
631
|
-
:param pulumi.Input[
|
|
632
|
-
:param pulumi.Input[
|
|
633
|
-
:param pulumi.Input[
|
|
634
|
-
:param pulumi.Input[
|
|
635
|
-
:param pulumi.Input[
|
|
636
|
-
:param pulumi.Input[
|
|
637
|
-
:param pulumi.Input[
|
|
638
|
-
:param pulumi.Input[
|
|
639
|
-
:param pulumi.Input[
|
|
640
|
-
:param pulumi.Input[
|
|
641
|
-
:param pulumi.Input[
|
|
642
|
-
:param pulumi.Input[
|
|
643
|
-
:param pulumi.Input[
|
|
644
|
-
:param pulumi.Input[
|
|
627
|
+
: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).
|
|
628
|
+
:param pulumi.Input[_builtins.str] comment: Specifies a comment for the database.
|
|
629
|
+
: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).
|
|
630
|
+
:param pulumi.Input[_builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
631
|
+
: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).
|
|
632
|
+
:param pulumi.Input[_builtins.str] from_share: A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<share_name>"`. For more information about this resource, see docs.
|
|
633
|
+
: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).
|
|
634
|
+
:param pulumi.Input[_builtins.str] name: Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
635
|
+
: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).
|
|
636
|
+
: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).
|
|
637
|
+
: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).
|
|
638
|
+
: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).
|
|
639
|
+
: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).
|
|
640
|
+
: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).
|
|
641
|
+
: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).
|
|
642
|
+
:param pulumi.Input[_builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
643
|
+
: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).
|
|
645
644
|
"""
|
|
646
645
|
...
|
|
647
646
|
@overload
|
|
@@ -671,23 +670,23 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
671
670
|
def _internal_init(__self__,
|
|
672
671
|
resource_name: str,
|
|
673
672
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
674
|
-
catalog: Optional[pulumi.Input[
|
|
675
|
-
comment: Optional[pulumi.Input[
|
|
676
|
-
default_ddl_collation: Optional[pulumi.Input[
|
|
677
|
-
enable_console_output: Optional[pulumi.Input[
|
|
678
|
-
external_volume: Optional[pulumi.Input[
|
|
679
|
-
from_share: Optional[pulumi.Input[
|
|
680
|
-
log_level: Optional[pulumi.Input[
|
|
681
|
-
name: Optional[pulumi.Input[
|
|
682
|
-
quoted_identifiers_ignore_case: Optional[pulumi.Input[
|
|
683
|
-
replace_invalid_characters: Optional[pulumi.Input[
|
|
684
|
-
storage_serialization_policy: Optional[pulumi.Input[
|
|
685
|
-
suspend_task_after_num_failures: Optional[pulumi.Input[
|
|
686
|
-
task_auto_retry_attempts: Optional[pulumi.Input[
|
|
687
|
-
trace_level: Optional[pulumi.Input[
|
|
688
|
-
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[
|
|
689
|
-
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[
|
|
690
|
-
user_task_timeout_ms: Optional[pulumi.Input[
|
|
673
|
+
catalog: Optional[pulumi.Input[_builtins.str]] = None,
|
|
674
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
675
|
+
default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
|
|
676
|
+
enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
677
|
+
external_volume: Optional[pulumi.Input[_builtins.str]] = None,
|
|
678
|
+
from_share: Optional[pulumi.Input[_builtins.str]] = None,
|
|
679
|
+
log_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
680
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
681
|
+
quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
682
|
+
replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
683
|
+
storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
684
|
+
suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
|
|
685
|
+
task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
|
|
686
|
+
trace_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
687
|
+
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
|
|
688
|
+
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
689
|
+
user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None,
|
|
691
690
|
__props__=None):
|
|
692
691
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
693
692
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -727,24 +726,24 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
727
726
|
def get(resource_name: str,
|
|
728
727
|
id: pulumi.Input[str],
|
|
729
728
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
730
|
-
catalog: Optional[pulumi.Input[
|
|
731
|
-
comment: Optional[pulumi.Input[
|
|
732
|
-
default_ddl_collation: Optional[pulumi.Input[
|
|
733
|
-
enable_console_output: Optional[pulumi.Input[
|
|
734
|
-
external_volume: Optional[pulumi.Input[
|
|
735
|
-
from_share: Optional[pulumi.Input[
|
|
736
|
-
fully_qualified_name: Optional[pulumi.Input[
|
|
737
|
-
log_level: Optional[pulumi.Input[
|
|
738
|
-
name: Optional[pulumi.Input[
|
|
739
|
-
quoted_identifiers_ignore_case: Optional[pulumi.Input[
|
|
740
|
-
replace_invalid_characters: Optional[pulumi.Input[
|
|
741
|
-
storage_serialization_policy: Optional[pulumi.Input[
|
|
742
|
-
suspend_task_after_num_failures: Optional[pulumi.Input[
|
|
743
|
-
task_auto_retry_attempts: Optional[pulumi.Input[
|
|
744
|
-
trace_level: Optional[pulumi.Input[
|
|
745
|
-
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[
|
|
746
|
-
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[
|
|
747
|
-
user_task_timeout_ms: Optional[pulumi.Input[
|
|
729
|
+
catalog: Optional[pulumi.Input[_builtins.str]] = None,
|
|
730
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
731
|
+
default_ddl_collation: Optional[pulumi.Input[_builtins.str]] = None,
|
|
732
|
+
enable_console_output: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
733
|
+
external_volume: Optional[pulumi.Input[_builtins.str]] = None,
|
|
734
|
+
from_share: Optional[pulumi.Input[_builtins.str]] = None,
|
|
735
|
+
fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
736
|
+
log_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
737
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
738
|
+
quoted_identifiers_ignore_case: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
739
|
+
replace_invalid_characters: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
740
|
+
storage_serialization_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
741
|
+
suspend_task_after_num_failures: Optional[pulumi.Input[_builtins.int]] = None,
|
|
742
|
+
task_auto_retry_attempts: Optional[pulumi.Input[_builtins.int]] = None,
|
|
743
|
+
trace_level: Optional[pulumi.Input[_builtins.str]] = None,
|
|
744
|
+
user_task_managed_initial_warehouse_size: Optional[pulumi.Input[_builtins.str]] = None,
|
|
745
|
+
user_task_minimum_trigger_interval_in_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
746
|
+
user_task_timeout_ms: Optional[pulumi.Input[_builtins.int]] = None) -> 'SharedDatabase':
|
|
748
747
|
"""
|
|
749
748
|
Get an existing SharedDatabase resource's state with the given name, id, and optional extra
|
|
750
749
|
properties used to qualify the lookup.
|
|
@@ -752,24 +751,24 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
752
751
|
:param str resource_name: The unique name of the resulting resource.
|
|
753
752
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
754
753
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
755
|
-
:param pulumi.Input[
|
|
756
|
-
:param pulumi.Input[
|
|
757
|
-
:param pulumi.Input[
|
|
758
|
-
:param pulumi.Input[
|
|
759
|
-
:param pulumi.Input[
|
|
760
|
-
:param pulumi.Input[
|
|
761
|
-
:param pulumi.Input[
|
|
762
|
-
:param pulumi.Input[
|
|
763
|
-
:param pulumi.Input[
|
|
764
|
-
:param pulumi.Input[
|
|
765
|
-
:param pulumi.Input[
|
|
766
|
-
:param pulumi.Input[
|
|
767
|
-
:param pulumi.Input[
|
|
768
|
-
:param pulumi.Input[
|
|
769
|
-
:param pulumi.Input[
|
|
770
|
-
:param pulumi.Input[
|
|
771
|
-
:param pulumi.Input[
|
|
772
|
-
:param pulumi.Input[
|
|
754
|
+
: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).
|
|
755
|
+
:param pulumi.Input[_builtins.str] comment: Specifies a comment for the database.
|
|
756
|
+
: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).
|
|
757
|
+
:param pulumi.Input[_builtins.bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
758
|
+
: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).
|
|
759
|
+
:param pulumi.Input[_builtins.str] from_share: A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<share_name>"`. For more information about this resource, see docs.
|
|
760
|
+
: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).
|
|
761
|
+
: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).
|
|
762
|
+
:param pulumi.Input[_builtins.str] name: Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
763
|
+
: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).
|
|
764
|
+
: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).
|
|
765
|
+
: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).
|
|
766
|
+
: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).
|
|
767
|
+
: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).
|
|
768
|
+
: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).
|
|
769
|
+
: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).
|
|
770
|
+
:param pulumi.Input[_builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
771
|
+
: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).
|
|
773
772
|
"""
|
|
774
773
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
775
774
|
|
|
@@ -795,145 +794,145 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
795
794
|
__props__.__dict__["user_task_timeout_ms"] = user_task_timeout_ms
|
|
796
795
|
return SharedDatabase(resource_name, opts=opts, __props__=__props__)
|
|
797
796
|
|
|
798
|
-
@property
|
|
797
|
+
@_builtins.property
|
|
799
798
|
@pulumi.getter
|
|
800
|
-
def catalog(self) -> pulumi.Output[
|
|
799
|
+
def catalog(self) -> pulumi.Output[_builtins.str]:
|
|
801
800
|
"""
|
|
802
801
|
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).
|
|
803
802
|
"""
|
|
804
803
|
return pulumi.get(self, "catalog")
|
|
805
804
|
|
|
806
|
-
@property
|
|
805
|
+
@_builtins.property
|
|
807
806
|
@pulumi.getter
|
|
808
|
-
def comment(self) -> pulumi.Output[Optional[
|
|
807
|
+
def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
809
808
|
"""
|
|
810
809
|
Specifies a comment for the database.
|
|
811
810
|
"""
|
|
812
811
|
return pulumi.get(self, "comment")
|
|
813
812
|
|
|
814
|
-
@property
|
|
813
|
+
@_builtins.property
|
|
815
814
|
@pulumi.getter(name="defaultDdlCollation")
|
|
816
|
-
def default_ddl_collation(self) -> pulumi.Output[
|
|
815
|
+
def default_ddl_collation(self) -> pulumi.Output[_builtins.str]:
|
|
817
816
|
"""
|
|
818
817
|
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).
|
|
819
818
|
"""
|
|
820
819
|
return pulumi.get(self, "default_ddl_collation")
|
|
821
820
|
|
|
822
|
-
@property
|
|
821
|
+
@_builtins.property
|
|
823
822
|
@pulumi.getter(name="enableConsoleOutput")
|
|
824
|
-
def enable_console_output(self) -> pulumi.Output[
|
|
823
|
+
def enable_console_output(self) -> pulumi.Output[_builtins.bool]:
|
|
825
824
|
"""
|
|
826
825
|
If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
827
826
|
"""
|
|
828
827
|
return pulumi.get(self, "enable_console_output")
|
|
829
828
|
|
|
830
|
-
@property
|
|
829
|
+
@_builtins.property
|
|
831
830
|
@pulumi.getter(name="externalVolume")
|
|
832
|
-
def external_volume(self) -> pulumi.Output[
|
|
831
|
+
def external_volume(self) -> pulumi.Output[_builtins.str]:
|
|
833
832
|
"""
|
|
834
833
|
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).
|
|
835
834
|
"""
|
|
836
835
|
return pulumi.get(self, "external_volume")
|
|
837
836
|
|
|
838
|
-
@property
|
|
837
|
+
@_builtins.property
|
|
839
838
|
@pulumi.getter(name="fromShare")
|
|
840
|
-
def from_share(self) -> pulumi.Output[
|
|
839
|
+
def from_share(self) -> pulumi.Output[_builtins.str]:
|
|
841
840
|
"""
|
|
842
841
|
A fully qualified path to a share from which the database will be created. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<share_name>"`. For more information about this resource, see docs.
|
|
843
842
|
"""
|
|
844
843
|
return pulumi.get(self, "from_share")
|
|
845
844
|
|
|
846
|
-
@property
|
|
845
|
+
@_builtins.property
|
|
847
846
|
@pulumi.getter(name="fullyQualifiedName")
|
|
848
|
-
def fully_qualified_name(self) -> pulumi.Output[
|
|
847
|
+
def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
|
|
849
848
|
"""
|
|
850
849
|
Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
851
850
|
"""
|
|
852
851
|
return pulumi.get(self, "fully_qualified_name")
|
|
853
852
|
|
|
854
|
-
@property
|
|
853
|
+
@_builtins.property
|
|
855
854
|
@pulumi.getter(name="logLevel")
|
|
856
|
-
def log_level(self) -> pulumi.Output[
|
|
855
|
+
def log_level(self) -> pulumi.Output[_builtins.str]:
|
|
857
856
|
"""
|
|
858
857
|
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).
|
|
859
858
|
"""
|
|
860
859
|
return pulumi.get(self, "log_level")
|
|
861
860
|
|
|
862
|
-
@property
|
|
861
|
+
@_builtins.property
|
|
863
862
|
@pulumi.getter
|
|
864
|
-
def name(self) -> pulumi.Output[
|
|
863
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
|
865
864
|
"""
|
|
866
865
|
Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
867
866
|
"""
|
|
868
867
|
return pulumi.get(self, "name")
|
|
869
868
|
|
|
870
|
-
@property
|
|
869
|
+
@_builtins.property
|
|
871
870
|
@pulumi.getter(name="quotedIdentifiersIgnoreCase")
|
|
872
|
-
def quoted_identifiers_ignore_case(self) -> pulumi.Output[
|
|
871
|
+
def quoted_identifiers_ignore_case(self) -> pulumi.Output[_builtins.bool]:
|
|
873
872
|
"""
|
|
874
873
|
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).
|
|
875
874
|
"""
|
|
876
875
|
return pulumi.get(self, "quoted_identifiers_ignore_case")
|
|
877
876
|
|
|
878
|
-
@property
|
|
877
|
+
@_builtins.property
|
|
879
878
|
@pulumi.getter(name="replaceInvalidCharacters")
|
|
880
|
-
def replace_invalid_characters(self) -> pulumi.Output[
|
|
879
|
+
def replace_invalid_characters(self) -> pulumi.Output[_builtins.bool]:
|
|
881
880
|
"""
|
|
882
881
|
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).
|
|
883
882
|
"""
|
|
884
883
|
return pulumi.get(self, "replace_invalid_characters")
|
|
885
884
|
|
|
886
|
-
@property
|
|
885
|
+
@_builtins.property
|
|
887
886
|
@pulumi.getter(name="storageSerializationPolicy")
|
|
888
|
-
def storage_serialization_policy(self) -> pulumi.Output[
|
|
887
|
+
def storage_serialization_policy(self) -> pulumi.Output[_builtins.str]:
|
|
889
888
|
"""
|
|
890
889
|
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).
|
|
891
890
|
"""
|
|
892
891
|
return pulumi.get(self, "storage_serialization_policy")
|
|
893
892
|
|
|
894
|
-
@property
|
|
893
|
+
@_builtins.property
|
|
895
894
|
@pulumi.getter(name="suspendTaskAfterNumFailures")
|
|
896
|
-
def suspend_task_after_num_failures(self) -> pulumi.Output[
|
|
895
|
+
def suspend_task_after_num_failures(self) -> pulumi.Output[_builtins.int]:
|
|
897
896
|
"""
|
|
898
897
|
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).
|
|
899
898
|
"""
|
|
900
899
|
return pulumi.get(self, "suspend_task_after_num_failures")
|
|
901
900
|
|
|
902
|
-
@property
|
|
901
|
+
@_builtins.property
|
|
903
902
|
@pulumi.getter(name="taskAutoRetryAttempts")
|
|
904
|
-
def task_auto_retry_attempts(self) -> pulumi.Output[
|
|
903
|
+
def task_auto_retry_attempts(self) -> pulumi.Output[_builtins.int]:
|
|
905
904
|
"""
|
|
906
905
|
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).
|
|
907
906
|
"""
|
|
908
907
|
return pulumi.get(self, "task_auto_retry_attempts")
|
|
909
908
|
|
|
910
|
-
@property
|
|
909
|
+
@_builtins.property
|
|
911
910
|
@pulumi.getter(name="traceLevel")
|
|
912
|
-
def trace_level(self) -> pulumi.Output[
|
|
911
|
+
def trace_level(self) -> pulumi.Output[_builtins.str]:
|
|
913
912
|
"""
|
|
914
913
|
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).
|
|
915
914
|
"""
|
|
916
915
|
return pulumi.get(self, "trace_level")
|
|
917
916
|
|
|
918
|
-
@property
|
|
917
|
+
@_builtins.property
|
|
919
918
|
@pulumi.getter(name="userTaskManagedInitialWarehouseSize")
|
|
920
|
-
def user_task_managed_initial_warehouse_size(self) -> pulumi.Output[
|
|
919
|
+
def user_task_managed_initial_warehouse_size(self) -> pulumi.Output[_builtins.str]:
|
|
921
920
|
"""
|
|
922
921
|
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).
|
|
923
922
|
"""
|
|
924
923
|
return pulumi.get(self, "user_task_managed_initial_warehouse_size")
|
|
925
924
|
|
|
926
|
-
@property
|
|
925
|
+
@_builtins.property
|
|
927
926
|
@pulumi.getter(name="userTaskMinimumTriggerIntervalInSeconds")
|
|
928
|
-
def user_task_minimum_trigger_interval_in_seconds(self) -> pulumi.Output[
|
|
927
|
+
def user_task_minimum_trigger_interval_in_seconds(self) -> pulumi.Output[_builtins.int]:
|
|
929
928
|
"""
|
|
930
929
|
Minimum amount of time between Triggered Task executions in seconds.
|
|
931
930
|
"""
|
|
932
931
|
return pulumi.get(self, "user_task_minimum_trigger_interval_in_seconds")
|
|
933
932
|
|
|
934
|
-
@property
|
|
933
|
+
@_builtins.property
|
|
935
934
|
@pulumi.getter(name="userTaskTimeoutMs")
|
|
936
|
-
def user_task_timeout_ms(self) -> pulumi.Output[
|
|
935
|
+
def user_task_timeout_ms(self) -> pulumi.Output[_builtins.int]:
|
|
937
936
|
"""
|
|
938
937
|
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).
|
|
939
938
|
"""
|