pulumi-snowflake 0.62.0a1732602720__py3-none-any.whl → 0.62.0a1732732164__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 -0
- pulumi_snowflake/_inputs.py +6620 -588
- pulumi_snowflake/account_role.py +7 -7
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +7 -7
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +7 -7
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +7 -7
- pulumi_snowflake/authentication_policy.py +21 -21
- pulumi_snowflake/database.py +7 -7
- pulumi_snowflake/database_role.py +14 -14
- pulumi_snowflake/external_oauth_integration.py +7 -7
- pulumi_snowflake/external_volume.py +7 -7
- pulumi_snowflake/get_tags.py +134 -0
- pulumi_snowflake/get_tasks.py +125 -56
- pulumi_snowflake/legacy_service_user.py +7 -7
- pulumi_snowflake/masking_policy.py +21 -21
- pulumi_snowflake/network_policy.py +7 -7
- pulumi_snowflake/oauth_integration_for_custom_clients.py +7 -7
- pulumi_snowflake/oauth_integration_for_partner_applications.py +7 -7
- pulumi_snowflake/outputs.py +12197 -5310
- pulumi_snowflake/password_policy.py +2 -4
- pulumi_snowflake/primary_connection.py +7 -7
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/resource_monitor.py +7 -7
- pulumi_snowflake/role.py +7 -7
- pulumi_snowflake/row_access_policy.py +21 -21
- pulumi_snowflake/saml2_integration.py +7 -7
- pulumi_snowflake/scim_integration.py +7 -7
- pulumi_snowflake/secondary_connection.py +7 -7
- pulumi_snowflake/secondary_database.py +7 -7
- pulumi_snowflake/secret_with_authorization_code_grant.py +21 -21
- pulumi_snowflake/secret_with_basic_authentication.py +21 -21
- pulumi_snowflake/secret_with_client_credentials.py +21 -21
- pulumi_snowflake/secret_with_generic_string.py +21 -21
- pulumi_snowflake/service_user.py +7 -7
- pulumi_snowflake/shared_database.py +7 -7
- pulumi_snowflake/storage_integration.py +13 -0
- pulumi_snowflake/stream_on_directory_table.py +28 -28
- pulumi_snowflake/stream_on_external_table.py +28 -28
- pulumi_snowflake/stream_on_table.py +28 -28
- pulumi_snowflake/stream_on_view.py +28 -28
- pulumi_snowflake/tag.py +109 -36
- pulumi_snowflake/task.py +3008 -317
- pulumi_snowflake/user.py +7 -7
- pulumi_snowflake/view.py +21 -21
- pulumi_snowflake/warehouse.py +7 -7
- {pulumi_snowflake-0.62.0a1732602720.dist-info → pulumi_snowflake-0.62.0a1732732164.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.62.0a1732602720.dist-info → pulumi_snowflake-0.62.0a1732732164.dist-info}/RECORD +49 -48
- {pulumi_snowflake-0.62.0a1732602720.dist-info → pulumi_snowflake-0.62.0a1732732164.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-0.62.0a1732602720.dist-info → pulumi_snowflake-0.62.0a1732732164.dist-info}/top_level.txt +0 -0
|
@@ -28,10 +28,10 @@ class SecretWithGenericStringArgs:
|
|
|
28
28
|
name: Optional[pulumi.Input[str]] = None):
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a SecretWithGenericString resource.
|
|
31
|
-
:param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
32
|
-
:param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
31
|
+
:param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
32
|
+
:param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
33
33
|
:param pulumi.Input[str] comment: Specifies a comment for the secret.
|
|
34
|
-
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
34
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
35
35
|
"""
|
|
36
36
|
pulumi.set(__self__, "database", database)
|
|
37
37
|
pulumi.set(__self__, "schema", schema)
|
|
@@ -45,7 +45,7 @@ class SecretWithGenericStringArgs:
|
|
|
45
45
|
@pulumi.getter
|
|
46
46
|
def database(self) -> pulumi.Input[str]:
|
|
47
47
|
"""
|
|
48
|
-
The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
48
|
+
The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
49
49
|
"""
|
|
50
50
|
return pulumi.get(self, "database")
|
|
51
51
|
|
|
@@ -57,7 +57,7 @@ class SecretWithGenericStringArgs:
|
|
|
57
57
|
@pulumi.getter
|
|
58
58
|
def schema(self) -> pulumi.Input[str]:
|
|
59
59
|
"""
|
|
60
|
-
The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
60
|
+
The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
61
61
|
"""
|
|
62
62
|
return pulumi.get(self, "schema")
|
|
63
63
|
|
|
@@ -90,7 +90,7 @@ class SecretWithGenericStringArgs:
|
|
|
90
90
|
@pulumi.getter
|
|
91
91
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
92
92
|
"""
|
|
93
|
-
String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
93
|
+
String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
94
94
|
"""
|
|
95
95
|
return pulumi.get(self, "name")
|
|
96
96
|
|
|
@@ -114,11 +114,11 @@ class _SecretWithGenericStringState:
|
|
|
114
114
|
"""
|
|
115
115
|
Input properties used for looking up and filtering SecretWithGenericString resources.
|
|
116
116
|
:param pulumi.Input[str] comment: Specifies a comment for the secret.
|
|
117
|
-
:param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
117
|
+
:param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
118
118
|
:param pulumi.Input[Sequence[pulumi.Input['SecretWithGenericStringDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
|
|
119
119
|
:param pulumi.Input[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).
|
|
120
|
-
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
121
|
-
:param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
120
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
121
|
+
:param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
122
122
|
:param pulumi.Input[str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
|
|
123
123
|
:param pulumi.Input[Sequence[pulumi.Input['SecretWithGenericStringShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
|
|
124
124
|
"""
|
|
@@ -157,7 +157,7 @@ class _SecretWithGenericStringState:
|
|
|
157
157
|
@pulumi.getter
|
|
158
158
|
def database(self) -> Optional[pulumi.Input[str]]:
|
|
159
159
|
"""
|
|
160
|
-
The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
160
|
+
The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
161
161
|
"""
|
|
162
162
|
return pulumi.get(self, "database")
|
|
163
163
|
|
|
@@ -193,7 +193,7 @@ class _SecretWithGenericStringState:
|
|
|
193
193
|
@pulumi.getter
|
|
194
194
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
195
195
|
"""
|
|
196
|
-
String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
196
|
+
String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
197
197
|
"""
|
|
198
198
|
return pulumi.get(self, "name")
|
|
199
199
|
|
|
@@ -205,7 +205,7 @@ class _SecretWithGenericStringState:
|
|
|
205
205
|
@pulumi.getter
|
|
206
206
|
def schema(self) -> Optional[pulumi.Input[str]]:
|
|
207
207
|
"""
|
|
208
|
-
The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
208
|
+
The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
209
209
|
"""
|
|
210
210
|
return pulumi.get(self, "schema")
|
|
211
211
|
|
|
@@ -268,9 +268,9 @@ class SecretWithGenericString(pulumi.CustomResource):
|
|
|
268
268
|
:param str resource_name: The name of the resource.
|
|
269
269
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
270
270
|
:param pulumi.Input[str] comment: Specifies a comment for the secret.
|
|
271
|
-
:param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
272
|
-
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
273
|
-
:param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
271
|
+
:param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
272
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
273
|
+
:param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
274
274
|
"""
|
|
275
275
|
...
|
|
276
276
|
@overload
|
|
@@ -358,11 +358,11 @@ class SecretWithGenericString(pulumi.CustomResource):
|
|
|
358
358
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
359
359
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
360
360
|
:param pulumi.Input[str] comment: Specifies a comment for the secret.
|
|
361
|
-
:param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
361
|
+
:param pulumi.Input[str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
362
362
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithGenericStringDescribeOutputArgs', 'SecretWithGenericStringDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
|
|
363
363
|
:param pulumi.Input[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).
|
|
364
|
-
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
365
|
-
:param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
364
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
365
|
+
:param pulumi.Input[str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
366
366
|
:param pulumi.Input[str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
|
|
367
367
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithGenericStringShowOutputArgs', 'SecretWithGenericStringShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
|
|
368
368
|
"""
|
|
@@ -393,7 +393,7 @@ class SecretWithGenericString(pulumi.CustomResource):
|
|
|
393
393
|
@pulumi.getter
|
|
394
394
|
def database(self) -> pulumi.Output[str]:
|
|
395
395
|
"""
|
|
396
|
-
The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
396
|
+
The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
397
397
|
"""
|
|
398
398
|
return pulumi.get(self, "database")
|
|
399
399
|
|
|
@@ -417,7 +417,7 @@ class SecretWithGenericString(pulumi.CustomResource):
|
|
|
417
417
|
@pulumi.getter
|
|
418
418
|
def name(self) -> pulumi.Output[str]:
|
|
419
419
|
"""
|
|
420
|
-
String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
420
|
+
String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
421
421
|
"""
|
|
422
422
|
return pulumi.get(self, "name")
|
|
423
423
|
|
|
@@ -425,7 +425,7 @@ class SecretWithGenericString(pulumi.CustomResource):
|
|
|
425
425
|
@pulumi.getter
|
|
426
426
|
def schema(self) -> pulumi.Output[str]:
|
|
427
427
|
"""
|
|
428
|
-
The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
428
|
+
The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
429
429
|
"""
|
|
430
430
|
return pulumi.get(self, "schema")
|
|
431
431
|
|
pulumi_snowflake/service_user.py
CHANGED
|
@@ -131,7 +131,7 @@ class ServiceUserArgs:
|
|
|
131
131
|
:param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
|
|
132
132
|
:param pulumi.Input[str] login_name: The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
|
|
133
133
|
:param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
|
|
134
|
-
:param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
134
|
+
:param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
135
135
|
:param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
|
|
136
136
|
:param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
|
|
137
137
|
:param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
|
|
@@ -765,7 +765,7 @@ class ServiceUserArgs:
|
|
|
765
765
|
@pulumi.getter
|
|
766
766
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
767
767
|
"""
|
|
768
|
-
Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
768
|
+
Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
769
769
|
"""
|
|
770
770
|
return pulumi.get(self, "name")
|
|
771
771
|
|
|
@@ -1288,7 +1288,7 @@ class _ServiceUserState:
|
|
|
1288
1288
|
:param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
|
|
1289
1289
|
:param pulumi.Input[str] login_name: The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
|
|
1290
1290
|
:param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
|
|
1291
|
-
:param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
1291
|
+
:param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
1292
1292
|
:param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
|
|
1293
1293
|
:param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
|
|
1294
1294
|
:param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
|
|
@@ -1945,7 +1945,7 @@ class _ServiceUserState:
|
|
|
1945
1945
|
@pulumi.getter
|
|
1946
1946
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
1947
1947
|
"""
|
|
1948
|
-
Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
1948
|
+
Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
1949
1949
|
"""
|
|
1950
1950
|
return pulumi.get(self, "name")
|
|
1951
1951
|
|
|
@@ -2509,7 +2509,7 @@ class ServiceUser(pulumi.CustomResource):
|
|
|
2509
2509
|
:param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
|
|
2510
2510
|
:param pulumi.Input[str] login_name: The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
|
|
2511
2511
|
:param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
|
|
2512
|
-
:param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
2512
|
+
:param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
2513
2513
|
:param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
|
|
2514
2514
|
:param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
|
|
2515
2515
|
:param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
|
|
@@ -2861,7 +2861,7 @@ class ServiceUser(pulumi.CustomResource):
|
|
|
2861
2861
|
:param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. For more information about log levels, see [Setting log level](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-log-level). For more information, check [LOG_LEVEL docs](https://docs.snowflake.com/en/sql-reference/parameters#log-level).
|
|
2862
2862
|
:param pulumi.Input[str] login_name: The name users use to log in. If not supplied, snowflake will use name instead. Login names are always case-insensitive.
|
|
2863
2863
|
:param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
|
|
2864
|
-
:param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
2864
|
+
:param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
2865
2865
|
:param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
|
|
2866
2866
|
:param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
|
|
2867
2867
|
:param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
|
|
@@ -3291,7 +3291,7 @@ class ServiceUser(pulumi.CustomResource):
|
|
|
3291
3291
|
@pulumi.getter
|
|
3292
3292
|
def name(self) -> pulumi.Output[str]:
|
|
3293
3293
|
"""
|
|
3294
|
-
Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
3294
|
+
Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
3295
3295
|
"""
|
|
3296
3296
|
return pulumi.get(self, "name")
|
|
3297
3297
|
|
|
@@ -45,7 +45,7 @@ class SharedDatabaseArgs:
|
|
|
45
45
|
:param pulumi.Input[bool] enable_console_output: If true, enables stdout/stderr fast path logging for anonymous stored procedures.
|
|
46
46
|
: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).
|
|
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
|
-
:param pulumi.Input[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: `|`, `.`, `
|
|
48
|
+
:param pulumi.Input[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
49
|
: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).
|
|
50
50
|
: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).
|
|
51
51
|
: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).
|
|
@@ -178,7 +178,7 @@ class SharedDatabaseArgs:
|
|
|
178
178
|
@pulumi.getter
|
|
179
179
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
180
180
|
"""
|
|
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: `|`, `.`, `
|
|
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: `|`, `.`, `"`
|
|
182
182
|
"""
|
|
183
183
|
return pulumi.get(self, "name")
|
|
184
184
|
|
|
@@ -326,7 +326,7 @@ class _SharedDatabaseState:
|
|
|
326
326
|
:param pulumi.Input[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>"`.
|
|
327
327
|
:param pulumi.Input[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
328
|
: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).
|
|
329
|
-
:param pulumi.Input[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: `|`, `.`, `
|
|
329
|
+
:param pulumi.Input[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
330
|
: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).
|
|
331
331
|
: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).
|
|
332
332
|
: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).
|
|
@@ -474,7 +474,7 @@ class _SharedDatabaseState:
|
|
|
474
474
|
@pulumi.getter
|
|
475
475
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
476
476
|
"""
|
|
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: `|`, `.`, `
|
|
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: `|`, `.`, `"`
|
|
478
478
|
"""
|
|
479
479
|
return pulumi.get(self, "name")
|
|
480
480
|
|
|
@@ -630,7 +630,7 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
630
630
|
: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).
|
|
631
631
|
:param pulumi.Input[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>"`.
|
|
632
632
|
: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).
|
|
633
|
-
:param pulumi.Input[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: `|`, `.`, `
|
|
633
|
+
:param pulumi.Input[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: `|`, `.`, `"`
|
|
634
634
|
: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).
|
|
635
635
|
: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).
|
|
636
636
|
: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).
|
|
@@ -758,7 +758,7 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
758
758
|
:param pulumi.Input[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>"`.
|
|
759
759
|
:param pulumi.Input[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).
|
|
760
760
|
: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).
|
|
761
|
-
:param pulumi.Input[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: `|`, `.`, `
|
|
761
|
+
:param pulumi.Input[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: `|`, `.`, `"`
|
|
762
762
|
: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).
|
|
763
763
|
: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).
|
|
764
764
|
: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).
|
|
@@ -861,7 +861,7 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
861
861
|
@pulumi.getter
|
|
862
862
|
def name(self) -> pulumi.Output[str]:
|
|
863
863
|
"""
|
|
864
|
-
Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
864
|
+
Specifies the identifier for the database; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
865
865
|
"""
|
|
866
866
|
return pulumi.get(self, "name")
|
|
867
867
|
|
|
@@ -32,6 +32,7 @@ class StorageIntegrationArgs:
|
|
|
32
32
|
"""
|
|
33
33
|
The set of arguments for constructing a StorageIntegration resource.
|
|
34
34
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] storage_allowed_locations: Explicitly limits external stages that use the integration to reference one or more storage locations.
|
|
35
|
+
:param pulumi.Input[str] storage_provider: Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
35
36
|
:param pulumi.Input[str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
36
37
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
37
38
|
"""
|
|
@@ -69,6 +70,9 @@ class StorageIntegrationArgs:
|
|
|
69
70
|
@property
|
|
70
71
|
@pulumi.getter(name="storageProvider")
|
|
71
72
|
def storage_provider(self) -> pulumi.Input[str]:
|
|
73
|
+
"""
|
|
74
|
+
Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
75
|
+
"""
|
|
72
76
|
return pulumi.get(self, "storage_provider")
|
|
73
77
|
|
|
74
78
|
@storage_provider.setter
|
|
@@ -186,6 +190,7 @@ class _StorageIntegrationState:
|
|
|
186
190
|
:param pulumi.Input[str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
187
191
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
188
192
|
:param pulumi.Input[str] storage_gcp_service_account: This is the name of the Snowflake Google Service Account created for your account.
|
|
193
|
+
:param pulumi.Input[str] storage_provider: Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
189
194
|
"""
|
|
190
195
|
if azure_consent_url is not None:
|
|
191
196
|
pulumi.set(__self__, "azure_consent_url", azure_consent_url)
|
|
@@ -390,6 +395,9 @@ class _StorageIntegrationState:
|
|
|
390
395
|
@property
|
|
391
396
|
@pulumi.getter(name="storageProvider")
|
|
392
397
|
def storage_provider(self) -> Optional[pulumi.Input[str]]:
|
|
398
|
+
"""
|
|
399
|
+
Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
400
|
+
"""
|
|
393
401
|
return pulumi.get(self, "storage_provider")
|
|
394
402
|
|
|
395
403
|
@storage_provider.setter
|
|
@@ -434,6 +442,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
434
442
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] storage_allowed_locations: Explicitly limits external stages that use the integration to reference one or more storage locations.
|
|
435
443
|
:param pulumi.Input[str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
436
444
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
445
|
+
:param pulumi.Input[str] storage_provider: Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
437
446
|
"""
|
|
438
447
|
...
|
|
439
448
|
@overload
|
|
@@ -547,6 +556,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
547
556
|
:param pulumi.Input[str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
548
557
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
549
558
|
:param pulumi.Input[str] storage_gcp_service_account: This is the name of the Snowflake Google Service Account created for your account.
|
|
559
|
+
:param pulumi.Input[str] storage_provider: Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
550
560
|
"""
|
|
551
561
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
552
562
|
|
|
@@ -679,6 +689,9 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
679
689
|
@property
|
|
680
690
|
@pulumi.getter(name="storageProvider")
|
|
681
691
|
def storage_provider(self) -> pulumi.Output[str]:
|
|
692
|
+
"""
|
|
693
|
+
Specifies the storage provider for the integration. Valid options are: `S3` | `S3GOV` | `S3CHINA` | `GCS` | `AZURE`
|
|
694
|
+
"""
|
|
682
695
|
return pulumi.get(self, "storage_provider")
|
|
683
696
|
|
|
684
697
|
@property
|
|
@@ -29,12 +29,12 @@ class StreamOnDirectoryTableArgs:
|
|
|
29
29
|
name: Optional[pulumi.Input[str]] = None):
|
|
30
30
|
"""
|
|
31
31
|
The set of arguments for constructing a StreamOnDirectoryTable resource.
|
|
32
|
-
:param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
33
|
-
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
34
|
-
:param pulumi.Input[str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
32
|
+
:param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
33
|
+
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
34
|
+
:param pulumi.Input[str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
35
35
|
:param pulumi.Input[str] comment: Specifies a comment for the stream.
|
|
36
36
|
:param pulumi.Input[bool] copy_grants: Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
|
|
37
|
-
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
37
|
+
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
38
38
|
"""
|
|
39
39
|
pulumi.set(__self__, "database", database)
|
|
40
40
|
pulumi.set(__self__, "schema", schema)
|
|
@@ -50,7 +50,7 @@ class StreamOnDirectoryTableArgs:
|
|
|
50
50
|
@pulumi.getter
|
|
51
51
|
def database(self) -> pulumi.Input[str]:
|
|
52
52
|
"""
|
|
53
|
-
The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
53
|
+
The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
54
54
|
"""
|
|
55
55
|
return pulumi.get(self, "database")
|
|
56
56
|
|
|
@@ -62,7 +62,7 @@ class StreamOnDirectoryTableArgs:
|
|
|
62
62
|
@pulumi.getter
|
|
63
63
|
def schema(self) -> pulumi.Input[str]:
|
|
64
64
|
"""
|
|
65
|
-
The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
65
|
+
The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
66
66
|
"""
|
|
67
67
|
return pulumi.get(self, "schema")
|
|
68
68
|
|
|
@@ -74,7 +74,7 @@ class StreamOnDirectoryTableArgs:
|
|
|
74
74
|
@pulumi.getter
|
|
75
75
|
def stage(self) -> pulumi.Input[str]:
|
|
76
76
|
"""
|
|
77
|
-
Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
77
|
+
Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
78
78
|
"""
|
|
79
79
|
return pulumi.get(self, "stage")
|
|
80
80
|
|
|
@@ -110,7 +110,7 @@ class StreamOnDirectoryTableArgs:
|
|
|
110
110
|
@pulumi.getter
|
|
111
111
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
112
112
|
"""
|
|
113
|
-
Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
113
|
+
Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
114
114
|
"""
|
|
115
115
|
return pulumi.get(self, "name")
|
|
116
116
|
|
|
@@ -137,13 +137,13 @@ class _StreamOnDirectoryTableState:
|
|
|
137
137
|
Input properties used for looking up and filtering StreamOnDirectoryTable resources.
|
|
138
138
|
:param pulumi.Input[str] comment: Specifies a comment for the stream.
|
|
139
139
|
:param pulumi.Input[bool] copy_grants: Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
|
|
140
|
-
:param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
140
|
+
:param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
141
141
|
:param pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
|
|
142
142
|
:param pulumi.Input[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).
|
|
143
|
-
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
144
|
-
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
143
|
+
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
144
|
+
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
145
145
|
:param pulumi.Input[Sequence[pulumi.Input['StreamOnDirectoryTableShowOutputArgs']]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
|
|
146
|
-
:param pulumi.Input[str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
146
|
+
:param pulumi.Input[str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
147
147
|
:param pulumi.Input[str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
148
148
|
"""
|
|
149
149
|
if comment is not None:
|
|
@@ -197,7 +197,7 @@ class _StreamOnDirectoryTableState:
|
|
|
197
197
|
@pulumi.getter
|
|
198
198
|
def database(self) -> Optional[pulumi.Input[str]]:
|
|
199
199
|
"""
|
|
200
|
-
The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
200
|
+
The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
201
201
|
"""
|
|
202
202
|
return pulumi.get(self, "database")
|
|
203
203
|
|
|
@@ -233,7 +233,7 @@ class _StreamOnDirectoryTableState:
|
|
|
233
233
|
@pulumi.getter
|
|
234
234
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
235
235
|
"""
|
|
236
|
-
Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
236
|
+
Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
237
237
|
"""
|
|
238
238
|
return pulumi.get(self, "name")
|
|
239
239
|
|
|
@@ -245,7 +245,7 @@ class _StreamOnDirectoryTableState:
|
|
|
245
245
|
@pulumi.getter
|
|
246
246
|
def schema(self) -> Optional[pulumi.Input[str]]:
|
|
247
247
|
"""
|
|
248
|
-
The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
248
|
+
The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
249
249
|
"""
|
|
250
250
|
return pulumi.get(self, "schema")
|
|
251
251
|
|
|
@@ -269,7 +269,7 @@ class _StreamOnDirectoryTableState:
|
|
|
269
269
|
@pulumi.getter
|
|
270
270
|
def stage(self) -> Optional[pulumi.Input[str]]:
|
|
271
271
|
"""
|
|
272
|
-
Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
272
|
+
Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
273
273
|
"""
|
|
274
274
|
return pulumi.get(self, "stage")
|
|
275
275
|
|
|
@@ -322,10 +322,10 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
|
|
|
322
322
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
323
323
|
:param pulumi.Input[str] comment: Specifies a comment for the stream.
|
|
324
324
|
:param pulumi.Input[bool] copy_grants: Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
|
|
325
|
-
:param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
326
|
-
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
327
|
-
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
328
|
-
:param pulumi.Input[str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
325
|
+
:param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
326
|
+
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
327
|
+
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
328
|
+
:param pulumi.Input[str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
329
329
|
"""
|
|
330
330
|
...
|
|
331
331
|
@overload
|
|
@@ -417,13 +417,13 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
|
|
|
417
417
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
418
418
|
:param pulumi.Input[str] comment: Specifies a comment for the stream.
|
|
419
419
|
:param pulumi.Input[bool] copy_grants: Retains the access permissions from the original stream when a stream is recreated using the OR REPLACE clause. That is sometimes used when the provider detects changes for fields that can not be changed by ALTER. This value will not have any effect when creating a new stream.
|
|
420
|
-
:param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
420
|
+
:param pulumi.Input[str] database: The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
421
421
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnDirectoryTableDescribeOutputArgs', 'StreamOnDirectoryTableDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STREAM` for the given stream.
|
|
422
422
|
:param pulumi.Input[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).
|
|
423
|
-
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
424
|
-
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
423
|
+
:param pulumi.Input[str] name: Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
424
|
+
:param pulumi.Input[str] schema: The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
425
425
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StreamOnDirectoryTableShowOutputArgs', 'StreamOnDirectoryTableShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW STREAMS` for the given stream.
|
|
426
|
-
:param pulumi.Input[str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
426
|
+
:param pulumi.Input[str] stage: Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
427
427
|
:param pulumi.Input[str] stream_type: Specifies a type for the stream. This field is used for checking external changes and recreating the resources if needed.
|
|
428
428
|
"""
|
|
429
429
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -463,7 +463,7 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
|
|
|
463
463
|
@pulumi.getter
|
|
464
464
|
def database(self) -> pulumi.Output[str]:
|
|
465
465
|
"""
|
|
466
|
-
The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
466
|
+
The database in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
467
467
|
"""
|
|
468
468
|
return pulumi.get(self, "database")
|
|
469
469
|
|
|
@@ -487,7 +487,7 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
|
|
|
487
487
|
@pulumi.getter
|
|
488
488
|
def name(self) -> pulumi.Output[str]:
|
|
489
489
|
"""
|
|
490
|
-
Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
490
|
+
Specifies the identifier for the stream; must be unique for the database and schema in which the stream is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
491
491
|
"""
|
|
492
492
|
return pulumi.get(self, "name")
|
|
493
493
|
|
|
@@ -495,7 +495,7 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
|
|
|
495
495
|
@pulumi.getter
|
|
496
496
|
def schema(self) -> pulumi.Output[str]:
|
|
497
497
|
"""
|
|
498
|
-
The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
498
|
+
The schema in which to create the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
499
499
|
"""
|
|
500
500
|
return pulumi.get(self, "schema")
|
|
501
501
|
|
|
@@ -511,7 +511,7 @@ class StreamOnDirectoryTable(pulumi.CustomResource):
|
|
|
511
511
|
@pulumi.getter
|
|
512
512
|
def stage(self) -> pulumi.Output[str]:
|
|
513
513
|
"""
|
|
514
|
-
Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `
|
|
514
|
+
Specifies an identifier for the stage the stream will monitor. Due to Snowflake limitations, the provider can not read the stage's database and schema. For stages, Snowflake returns only partially qualified name instead of fully qualified name. Please use stages located in the same schema as the stream. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
515
515
|
"""
|
|
516
516
|
return pulumi.get(self, "stage")
|
|
517
517
|
|