pulumi-snowflake 0.62.0__py3-none-any.whl → 0.62.0a1731653966__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 +0 -1
- pulumi_snowflake/_inputs.py +588 -6620
- 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_tasks.py +56 -125
- 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 +5301 -12188
- pulumi_snowflake/password_policy.py +4 -2
- 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 +0 -13
- 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 +36 -109
- pulumi_snowflake/task.py +319 -3010
- pulumi_snowflake/user.py +7 -7
- pulumi_snowflake/view.py +21 -21
- pulumi_snowflake/warehouse.py +7 -7
- {pulumi_snowflake-0.62.0.dist-info → pulumi_snowflake-0.62.0a1731653966.dist-info}/METADATA +5 -5
- {pulumi_snowflake-0.62.0.dist-info → pulumi_snowflake-0.62.0a1731653966.dist-info}/RECORD +48 -49
- {pulumi_snowflake-0.62.0.dist-info → pulumi_snowflake-0.62.0a1731653966.dist-info}/WHEEL +1 -1
- pulumi_snowflake/get_tags.py +0 -134
- {pulumi_snowflake-0.62.0.dist-info → pulumi_snowflake-0.62.0a1731653966.dist-info}/top_level.txt +0 -0
|
@@ -26,9 +26,9 @@ class DatabaseRoleArgs:
|
|
|
26
26
|
name: Optional[pulumi.Input[str]] = None):
|
|
27
27
|
"""
|
|
28
28
|
The set of arguments for constructing a DatabaseRole resource.
|
|
29
|
-
:param pulumi.Input[str] database: The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
29
|
+
:param pulumi.Input[str] database: The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
30
30
|
:param pulumi.Input[str] comment: Specifies a comment for the database role.
|
|
31
|
-
:param pulumi.Input[str] name: Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
31
|
+
:param pulumi.Input[str] name: Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
32
32
|
"""
|
|
33
33
|
pulumi.set(__self__, "database", database)
|
|
34
34
|
if comment is not None:
|
|
@@ -40,7 +40,7 @@ class DatabaseRoleArgs:
|
|
|
40
40
|
@pulumi.getter
|
|
41
41
|
def database(self) -> pulumi.Input[str]:
|
|
42
42
|
"""
|
|
43
|
-
The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
43
|
+
The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
44
44
|
"""
|
|
45
45
|
return pulumi.get(self, "database")
|
|
46
46
|
|
|
@@ -64,7 +64,7 @@ class DatabaseRoleArgs:
|
|
|
64
64
|
@pulumi.getter
|
|
65
65
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
66
66
|
"""
|
|
67
|
-
Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
67
|
+
Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
68
68
|
"""
|
|
69
69
|
return pulumi.get(self, "name")
|
|
70
70
|
|
|
@@ -84,9 +84,9 @@ class _DatabaseRoleState:
|
|
|
84
84
|
"""
|
|
85
85
|
Input properties used for looking up and filtering DatabaseRole resources.
|
|
86
86
|
:param pulumi.Input[str] comment: Specifies a comment for the database role.
|
|
87
|
-
:param pulumi.Input[str] database: The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
87
|
+
:param pulumi.Input[str] database: The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
88
88
|
: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).
|
|
89
|
-
:param pulumi.Input[str] name: Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
89
|
+
:param pulumi.Input[str] name: Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
90
90
|
:param pulumi.Input[Sequence[pulumi.Input['DatabaseRoleShowOutputArgs']]] show_outputs: Outputs the result of `SHOW DATABASE ROLES` for the given database role. Note that this value will be only recomputed whenever comment field changes.
|
|
91
91
|
"""
|
|
92
92
|
if comment is not None:
|
|
@@ -116,7 +116,7 @@ class _DatabaseRoleState:
|
|
|
116
116
|
@pulumi.getter
|
|
117
117
|
def database(self) -> Optional[pulumi.Input[str]]:
|
|
118
118
|
"""
|
|
119
|
-
The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
119
|
+
The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
120
120
|
"""
|
|
121
121
|
return pulumi.get(self, "database")
|
|
122
122
|
|
|
@@ -140,7 +140,7 @@ class _DatabaseRoleState:
|
|
|
140
140
|
@pulumi.getter
|
|
141
141
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
142
142
|
"""
|
|
143
|
-
Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
143
|
+
Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
144
144
|
"""
|
|
145
145
|
return pulumi.get(self, "name")
|
|
146
146
|
|
|
@@ -180,8 +180,8 @@ class DatabaseRole(pulumi.CustomResource):
|
|
|
180
180
|
:param str resource_name: The name of the resource.
|
|
181
181
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
182
182
|
:param pulumi.Input[str] comment: Specifies a comment for the database role.
|
|
183
|
-
:param pulumi.Input[str] database: The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
184
|
-
:param pulumi.Input[str] name: Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
183
|
+
:param pulumi.Input[str] database: The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
184
|
+
:param pulumi.Input[str] name: Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
185
185
|
"""
|
|
186
186
|
...
|
|
187
187
|
@overload
|
|
@@ -253,9 +253,9 @@ class DatabaseRole(pulumi.CustomResource):
|
|
|
253
253
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
254
254
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
255
255
|
:param pulumi.Input[str] comment: Specifies a comment for the database role.
|
|
256
|
-
:param pulumi.Input[str] database: The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
256
|
+
:param pulumi.Input[str] database: The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
257
257
|
: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).
|
|
258
|
-
:param pulumi.Input[str] name: Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
258
|
+
:param pulumi.Input[str] name: Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
259
259
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DatabaseRoleShowOutputArgs', 'DatabaseRoleShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW DATABASE ROLES` for the given database role. Note that this value will be only recomputed whenever comment field changes.
|
|
260
260
|
"""
|
|
261
261
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -281,7 +281,7 @@ class DatabaseRole(pulumi.CustomResource):
|
|
|
281
281
|
@pulumi.getter
|
|
282
282
|
def database(self) -> pulumi.Output[str]:
|
|
283
283
|
"""
|
|
284
|
-
The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
284
|
+
The database in which to create the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
285
285
|
"""
|
|
286
286
|
return pulumi.get(self, "database")
|
|
287
287
|
|
|
@@ -297,7 +297,7 @@ class DatabaseRole(pulumi.CustomResource):
|
|
|
297
297
|
@pulumi.getter
|
|
298
298
|
def name(self) -> pulumi.Output[str]:
|
|
299
299
|
"""
|
|
300
|
-
Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
300
|
+
Specifies the identifier for the database role. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
301
301
|
"""
|
|
302
302
|
return pulumi.get(self, "name")
|
|
303
303
|
|
|
@@ -54,7 +54,7 @@ class ExternalOauthIntegrationArgs:
|
|
|
54
54
|
:param pulumi.Input[str] external_oauth_rsa_public_key2: Specifies a second RSA public key, without the -----BEGIN PUBLIC KEY----- and -----END PUBLIC KEY----- headers. Used for key rotation. If removed from the config, the resource is recreated.
|
|
55
55
|
:param pulumi.Input[str] external_oauth_scope_delimiter: Specifies the scope delimiter in the authorization token.
|
|
56
56
|
:param pulumi.Input[str] external_oauth_scope_mapping_attribute: Specifies the access token claim to map the access token to an account role. If removed from the config, the resource is recreated.
|
|
57
|
-
:param pulumi.Input[str] name: Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
57
|
+
:param pulumi.Input[str] name: Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
58
58
|
"""
|
|
59
59
|
pulumi.set(__self__, "enabled", enabled)
|
|
60
60
|
pulumi.set(__self__, "external_oauth_issuer", external_oauth_issuer)
|
|
@@ -268,7 +268,7 @@ class ExternalOauthIntegrationArgs:
|
|
|
268
268
|
@pulumi.getter
|
|
269
269
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
270
270
|
"""
|
|
271
|
-
Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
271
|
+
Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
272
272
|
"""
|
|
273
273
|
return pulumi.get(self, "name")
|
|
274
274
|
|
|
@@ -319,7 +319,7 @@ class _ExternalOauthIntegrationState:
|
|
|
319
319
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] external_oauth_token_user_mapping_claims: Specifies the access token claim or claims that can be used to map the access token to a Snowflake user record. If removed from the config, the resource is recreated.
|
|
320
320
|
:param pulumi.Input[str] external_oauth_type: Specifies the OAuth 2.0 authorization server to be Okta, Microsoft Azure AD, Ping Identity PingFederate, or a Custom OAuth 2.0 authorization server. Valid values are (case-insensitive): `OKTA` | `AZURE` | `PING_FEDERATE` | `CUSTOM`.
|
|
321
321
|
: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).
|
|
322
|
-
:param pulumi.Input[str] name: Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
322
|
+
:param pulumi.Input[str] name: Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
323
323
|
:param pulumi.Input[Sequence[pulumi.Input['ExternalOauthIntegrationRelatedParameterArgs']]] related_parameters: Paramteres related to this security integration.
|
|
324
324
|
:param pulumi.Input[Sequence[pulumi.Input['ExternalOauthIntegrationShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
|
|
325
325
|
"""
|
|
@@ -572,7 +572,7 @@ class _ExternalOauthIntegrationState:
|
|
|
572
572
|
@pulumi.getter
|
|
573
573
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
574
574
|
"""
|
|
575
|
-
Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
575
|
+
Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
576
576
|
"""
|
|
577
577
|
return pulumi.get(self, "name")
|
|
578
578
|
|
|
@@ -651,7 +651,7 @@ class ExternalOauthIntegration(pulumi.CustomResource):
|
|
|
651
651
|
:param pulumi.Input[str] external_oauth_snowflake_user_mapping_attribute: Indicates which Snowflake user record attribute should be used to map the access token to a Snowflake user record. Valid values are (case-insensitive): `LOGIN_NAME` | `EMAIL_ADDRESS`.
|
|
652
652
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] external_oauth_token_user_mapping_claims: Specifies the access token claim or claims that can be used to map the access token to a Snowflake user record. If removed from the config, the resource is recreated.
|
|
653
653
|
:param pulumi.Input[str] external_oauth_type: Specifies the OAuth 2.0 authorization server to be Okta, Microsoft Azure AD, Ping Identity PingFederate, or a Custom OAuth 2.0 authorization server. Valid values are (case-insensitive): `OKTA` | `AZURE` | `PING_FEDERATE` | `CUSTOM`.
|
|
654
|
-
:param pulumi.Input[str] name: Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
654
|
+
:param pulumi.Input[str] name: Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
655
655
|
"""
|
|
656
656
|
...
|
|
657
657
|
@overload
|
|
@@ -790,7 +790,7 @@ class ExternalOauthIntegration(pulumi.CustomResource):
|
|
|
790
790
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] external_oauth_token_user_mapping_claims: Specifies the access token claim or claims that can be used to map the access token to a Snowflake user record. If removed from the config, the resource is recreated.
|
|
791
791
|
:param pulumi.Input[str] external_oauth_type: Specifies the OAuth 2.0 authorization server to be Okta, Microsoft Azure AD, Ping Identity PingFederate, or a Custom OAuth 2.0 authorization server. Valid values are (case-insensitive): `OKTA` | `AZURE` | `PING_FEDERATE` | `CUSTOM`.
|
|
792
792
|
: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).
|
|
793
|
-
:param pulumi.Input[str] name: Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
793
|
+
:param pulumi.Input[str] name: Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
794
794
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExternalOauthIntegrationRelatedParameterArgs', 'ExternalOauthIntegrationRelatedParameterArgsDict']]]] related_parameters: Paramteres related to this security integration.
|
|
795
795
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExternalOauthIntegrationShowOutputArgs', 'ExternalOauthIntegrationShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
|
|
796
796
|
"""
|
|
@@ -960,7 +960,7 @@ class ExternalOauthIntegration(pulumi.CustomResource):
|
|
|
960
960
|
@pulumi.getter
|
|
961
961
|
def name(self) -> pulumi.Output[str]:
|
|
962
962
|
"""
|
|
963
|
-
Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
963
|
+
Specifies the name of the External Oath integration. This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
964
964
|
"""
|
|
965
965
|
return pulumi.get(self, "name")
|
|
966
966
|
|
|
@@ -30,7 +30,7 @@ class ExternalVolumeArgs:
|
|
|
30
30
|
:param pulumi.Input[Sequence[pulumi.Input['ExternalVolumeStorageLocationArgs']]] storage_locations: List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.
|
|
31
31
|
:param pulumi.Input[str] allow_writes: Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
32
32
|
:param pulumi.Input[str] comment: Specifies a comment for the external volume.
|
|
33
|
-
:param pulumi.Input[str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
33
|
+
:param pulumi.Input[str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
34
34
|
"""
|
|
35
35
|
pulumi.set(__self__, "storage_locations", storage_locations)
|
|
36
36
|
if allow_writes is not None:
|
|
@@ -80,7 +80,7 @@ class ExternalVolumeArgs:
|
|
|
80
80
|
@pulumi.getter
|
|
81
81
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
82
82
|
"""
|
|
83
|
-
Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
83
|
+
Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
84
84
|
"""
|
|
85
85
|
return pulumi.get(self, "name")
|
|
86
86
|
|
|
@@ -105,7 +105,7 @@ class _ExternalVolumeState:
|
|
|
105
105
|
:param pulumi.Input[str] comment: Specifies a comment for the external volume.
|
|
106
106
|
:param pulumi.Input[Sequence[pulumi.Input['ExternalVolumeDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE EXTERNAL VOLUME` for the given external volume.
|
|
107
107
|
: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).
|
|
108
|
-
:param pulumi.Input[str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
108
|
+
:param pulumi.Input[str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
109
109
|
:param pulumi.Input[Sequence[pulumi.Input['ExternalVolumeShowOutputArgs']]] show_outputs: Outputs the result of `SHOW EXTERNAL VOLUMES` for the given external volume.
|
|
110
110
|
:param pulumi.Input[Sequence[pulumi.Input['ExternalVolumeStorageLocationArgs']]] storage_locations: List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.
|
|
111
111
|
"""
|
|
@@ -176,7 +176,7 @@ class _ExternalVolumeState:
|
|
|
176
176
|
@pulumi.getter
|
|
177
177
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
178
178
|
"""
|
|
179
|
-
Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
179
|
+
Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
180
180
|
"""
|
|
181
181
|
return pulumi.get(self, "name")
|
|
182
182
|
|
|
@@ -226,7 +226,7 @@ class ExternalVolume(pulumi.CustomResource):
|
|
|
226
226
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
227
227
|
:param pulumi.Input[str] allow_writes: Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
228
228
|
:param pulumi.Input[str] comment: Specifies a comment for the external volume.
|
|
229
|
-
:param pulumi.Input[str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
229
|
+
:param pulumi.Input[str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
230
230
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeStorageLocationArgs', 'ExternalVolumeStorageLocationArgsDict']]]] storage_locations: List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.
|
|
231
231
|
"""
|
|
232
232
|
...
|
|
@@ -303,7 +303,7 @@ class ExternalVolume(pulumi.CustomResource):
|
|
|
303
303
|
:param pulumi.Input[str] comment: Specifies a comment for the external volume.
|
|
304
304
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeDescribeOutputArgs', 'ExternalVolumeDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE EXTERNAL VOLUME` for the given external volume.
|
|
305
305
|
: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).
|
|
306
|
-
:param pulumi.Input[str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
306
|
+
:param pulumi.Input[str] name: Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
307
307
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeShowOutputArgs', 'ExternalVolumeShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW EXTERNAL VOLUMES` for the given external volume.
|
|
308
308
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExternalVolumeStorageLocationArgs', 'ExternalVolumeStorageLocationArgsDict']]]] storage_locations: List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.
|
|
309
309
|
"""
|
|
@@ -356,7 +356,7 @@ class ExternalVolume(pulumi.CustomResource):
|
|
|
356
356
|
@pulumi.getter
|
|
357
357
|
def name(self) -> pulumi.Output[str]:
|
|
358
358
|
"""
|
|
359
|
-
Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
|
|
359
|
+
Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
360
360
|
"""
|
|
361
361
|
return pulumi.get(self, "name")
|
|
362
362
|
|
pulumi_snowflake/get_tasks.py
CHANGED
|
@@ -14,7 +14,6 @@ else:
|
|
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
15
|
from . import _utilities
|
|
16
16
|
from . import outputs
|
|
17
|
-
from ._inputs import *
|
|
18
17
|
|
|
19
18
|
__all__ = [
|
|
20
19
|
'GetTasksResult',
|
|
@@ -28,96 +27,52 @@ class GetTasksResult:
|
|
|
28
27
|
"""
|
|
29
28
|
A collection of values returned by getTasks.
|
|
30
29
|
"""
|
|
31
|
-
def __init__(__self__,
|
|
30
|
+
def __init__(__self__, database=None, id=None, schema=None, tasks=None):
|
|
31
|
+
if database and not isinstance(database, str):
|
|
32
|
+
raise TypeError("Expected argument 'database' to be a str")
|
|
33
|
+
pulumi.set(__self__, "database", database)
|
|
32
34
|
if id and not isinstance(id, str):
|
|
33
35
|
raise TypeError("Expected argument 'id' to be a str")
|
|
34
36
|
pulumi.set(__self__, "id", id)
|
|
35
|
-
if
|
|
36
|
-
raise TypeError("Expected argument '
|
|
37
|
-
pulumi.set(__self__, "
|
|
38
|
-
if like and not isinstance(like, str):
|
|
39
|
-
raise TypeError("Expected argument 'like' to be a str")
|
|
40
|
-
pulumi.set(__self__, "like", like)
|
|
41
|
-
if limit and not isinstance(limit, dict):
|
|
42
|
-
raise TypeError("Expected argument 'limit' to be a dict")
|
|
43
|
-
pulumi.set(__self__, "limit", limit)
|
|
44
|
-
if root_only and not isinstance(root_only, bool):
|
|
45
|
-
raise TypeError("Expected argument 'root_only' to be a bool")
|
|
46
|
-
pulumi.set(__self__, "root_only", root_only)
|
|
47
|
-
if starts_with and not isinstance(starts_with, str):
|
|
48
|
-
raise TypeError("Expected argument 'starts_with' to be a str")
|
|
49
|
-
pulumi.set(__self__, "starts_with", starts_with)
|
|
37
|
+
if schema and not isinstance(schema, str):
|
|
38
|
+
raise TypeError("Expected argument 'schema' to be a str")
|
|
39
|
+
pulumi.set(__self__, "schema", schema)
|
|
50
40
|
if tasks and not isinstance(tasks, list):
|
|
51
41
|
raise TypeError("Expected argument 'tasks' to be a list")
|
|
52
42
|
pulumi.set(__self__, "tasks", tasks)
|
|
53
|
-
if with_parameters and not isinstance(with_parameters, bool):
|
|
54
|
-
raise TypeError("Expected argument 'with_parameters' to be a bool")
|
|
55
|
-
pulumi.set(__self__, "with_parameters", with_parameters)
|
|
56
43
|
|
|
57
44
|
@property
|
|
58
45
|
@pulumi.getter
|
|
59
|
-
def
|
|
60
|
-
"""
|
|
61
|
-
The provider-assigned unique ID for this managed resource.
|
|
62
|
-
"""
|
|
63
|
-
return pulumi.get(self, "id")
|
|
64
|
-
|
|
65
|
-
@property
|
|
66
|
-
@pulumi.getter(name="in")
|
|
67
|
-
def in_(self) -> Optional['outputs.GetTasksInResult']:
|
|
46
|
+
def database(self) -> str:
|
|
68
47
|
"""
|
|
69
|
-
|
|
48
|
+
The database from which to return the schemas from.
|
|
70
49
|
"""
|
|
71
|
-
return pulumi.get(self, "
|
|
50
|
+
return pulumi.get(self, "database")
|
|
72
51
|
|
|
73
52
|
@property
|
|
74
53
|
@pulumi.getter
|
|
75
|
-
def
|
|
54
|
+
def id(self) -> str:
|
|
76
55
|
"""
|
|
77
|
-
|
|
56
|
+
The provider-assigned unique ID for this managed resource.
|
|
78
57
|
"""
|
|
79
|
-
return pulumi.get(self, "
|
|
58
|
+
return pulumi.get(self, "id")
|
|
80
59
|
|
|
81
60
|
@property
|
|
82
61
|
@pulumi.getter
|
|
83
|
-
def
|
|
84
|
-
"""
|
|
85
|
-
Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
|
|
86
|
-
"""
|
|
87
|
-
return pulumi.get(self, "limit")
|
|
88
|
-
|
|
89
|
-
@property
|
|
90
|
-
@pulumi.getter(name="rootOnly")
|
|
91
|
-
def root_only(self) -> Optional[bool]:
|
|
62
|
+
def schema(self) -> str:
|
|
92
63
|
"""
|
|
93
|
-
|
|
64
|
+
The schema from which to return the tasks from.
|
|
94
65
|
"""
|
|
95
|
-
return pulumi.get(self, "
|
|
96
|
-
|
|
97
|
-
@property
|
|
98
|
-
@pulumi.getter(name="startsWith")
|
|
99
|
-
def starts_with(self) -> Optional[str]:
|
|
100
|
-
"""
|
|
101
|
-
Filters the output with **case-sensitive** characters indicating the beginning of the object name.
|
|
102
|
-
"""
|
|
103
|
-
return pulumi.get(self, "starts_with")
|
|
66
|
+
return pulumi.get(self, "schema")
|
|
104
67
|
|
|
105
68
|
@property
|
|
106
69
|
@pulumi.getter
|
|
107
70
|
def tasks(self) -> Sequence['outputs.GetTasksTaskResult']:
|
|
108
71
|
"""
|
|
109
|
-
|
|
72
|
+
The tasks in the schema
|
|
110
73
|
"""
|
|
111
74
|
return pulumi.get(self, "tasks")
|
|
112
75
|
|
|
113
|
-
@property
|
|
114
|
-
@pulumi.getter(name="withParameters")
|
|
115
|
-
def with_parameters(self) -> Optional[bool]:
|
|
116
|
-
"""
|
|
117
|
-
Runs SHOW PARAMETERS FOR TASK for each task returned by SHOW TASK and saves the output to the parameters field as a map. By default this value is set to true.
|
|
118
|
-
"""
|
|
119
|
-
return pulumi.get(self, "with_parameters")
|
|
120
|
-
|
|
121
76
|
|
|
122
77
|
class AwaitableGetTasksResult(GetTasksResult):
|
|
123
78
|
# pylint: disable=using-constant-test
|
|
@@ -125,90 +80,66 @@ class AwaitableGetTasksResult(GetTasksResult):
|
|
|
125
80
|
if False:
|
|
126
81
|
yield self
|
|
127
82
|
return GetTasksResult(
|
|
83
|
+
database=self.database,
|
|
128
84
|
id=self.id,
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
with_parameters=self.with_parameters)
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
def get_tasks(in_: Optional[Union['GetTasksInArgs', 'GetTasksInArgsDict']] = None,
|
|
139
|
-
like: Optional[str] = None,
|
|
140
|
-
limit: Optional[Union['GetTasksLimitArgs', 'GetTasksLimitArgsDict']] = None,
|
|
141
|
-
root_only: Optional[bool] = None,
|
|
142
|
-
starts_with: Optional[str] = None,
|
|
143
|
-
with_parameters: Optional[bool] = None,
|
|
85
|
+
schema=self.schema,
|
|
86
|
+
tasks=self.tasks)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
def get_tasks(database: Optional[str] = None,
|
|
90
|
+
schema: Optional[str] = None,
|
|
144
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTasksResult:
|
|
145
92
|
"""
|
|
146
|
-
|
|
93
|
+
## Example Usage
|
|
94
|
+
|
|
95
|
+
```python
|
|
96
|
+
import pulumi
|
|
97
|
+
import pulumi_snowflake as snowflake
|
|
147
98
|
|
|
148
|
-
|
|
99
|
+
current = snowflake.get_tasks(database="MYDB",
|
|
100
|
+
schema="MYSCHEMA")
|
|
101
|
+
```
|
|
149
102
|
|
|
150
103
|
|
|
151
|
-
:param
|
|
152
|
-
:param str
|
|
153
|
-
:param Union['GetTasksLimitArgs', 'GetTasksLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
|
|
154
|
-
:param bool root_only: Filters the command output to return only root tasks (tasks with no predecessors).
|
|
155
|
-
:param str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
|
|
156
|
-
:param bool with_parameters: Runs SHOW PARAMETERS FOR TASK for each task returned by SHOW TASK and saves the output to the parameters field as a map. By default this value is set to true.
|
|
104
|
+
:param str database: The database from which to return the schemas from.
|
|
105
|
+
:param str schema: The schema from which to return the tasks from.
|
|
157
106
|
"""
|
|
158
107
|
__args__ = dict()
|
|
159
|
-
__args__['
|
|
160
|
-
__args__['
|
|
161
|
-
__args__['limit'] = limit
|
|
162
|
-
__args__['rootOnly'] = root_only
|
|
163
|
-
__args__['startsWith'] = starts_with
|
|
164
|
-
__args__['withParameters'] = with_parameters
|
|
108
|
+
__args__['database'] = database
|
|
109
|
+
__args__['schema'] = schema
|
|
165
110
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
166
111
|
__ret__ = pulumi.runtime.invoke('snowflake:index/getTasks:getTasks', __args__, opts=opts, typ=GetTasksResult).value
|
|
167
112
|
|
|
168
113
|
return AwaitableGetTasksResult(
|
|
114
|
+
database=pulumi.get(__ret__, 'database'),
|
|
169
115
|
id=pulumi.get(__ret__, 'id'),
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
starts_with=pulumi.get(__ret__, 'starts_with'),
|
|
175
|
-
tasks=pulumi.get(__ret__, 'tasks'),
|
|
176
|
-
with_parameters=pulumi.get(__ret__, 'with_parameters'))
|
|
177
|
-
def get_tasks_output(in_: Optional[pulumi.Input[Optional[Union['GetTasksInArgs', 'GetTasksInArgsDict']]]] = None,
|
|
178
|
-
like: Optional[pulumi.Input[Optional[str]]] = None,
|
|
179
|
-
limit: Optional[pulumi.Input[Optional[Union['GetTasksLimitArgs', 'GetTasksLimitArgsDict']]]] = None,
|
|
180
|
-
root_only: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
181
|
-
starts_with: Optional[pulumi.Input[Optional[str]]] = None,
|
|
182
|
-
with_parameters: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
116
|
+
schema=pulumi.get(__ret__, 'schema'),
|
|
117
|
+
tasks=pulumi.get(__ret__, 'tasks'))
|
|
118
|
+
def get_tasks_output(database: Optional[pulumi.Input[str]] = None,
|
|
119
|
+
schema: Optional[pulumi.Input[str]] = None,
|
|
183
120
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTasksResult]:
|
|
184
121
|
"""
|
|
185
|
-
|
|
122
|
+
## Example Usage
|
|
123
|
+
|
|
124
|
+
```python
|
|
125
|
+
import pulumi
|
|
126
|
+
import pulumi_snowflake as snowflake
|
|
186
127
|
|
|
187
|
-
|
|
128
|
+
current = snowflake.get_tasks(database="MYDB",
|
|
129
|
+
schema="MYSCHEMA")
|
|
130
|
+
```
|
|
188
131
|
|
|
189
132
|
|
|
190
|
-
:param
|
|
191
|
-
:param str
|
|
192
|
-
:param Union['GetTasksLimitArgs', 'GetTasksLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
|
|
193
|
-
:param bool root_only: Filters the command output to return only root tasks (tasks with no predecessors).
|
|
194
|
-
:param str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
|
|
195
|
-
:param bool with_parameters: Runs SHOW PARAMETERS FOR TASK for each task returned by SHOW TASK and saves the output to the parameters field as a map. By default this value is set to true.
|
|
133
|
+
:param str database: The database from which to return the schemas from.
|
|
134
|
+
:param str schema: The schema from which to return the tasks from.
|
|
196
135
|
"""
|
|
197
136
|
__args__ = dict()
|
|
198
|
-
__args__['
|
|
199
|
-
__args__['
|
|
200
|
-
__args__['limit'] = limit
|
|
201
|
-
__args__['rootOnly'] = root_only
|
|
202
|
-
__args__['startsWith'] = starts_with
|
|
203
|
-
__args__['withParameters'] = with_parameters
|
|
137
|
+
__args__['database'] = database
|
|
138
|
+
__args__['schema'] = schema
|
|
204
139
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
205
140
|
__ret__ = pulumi.runtime.invoke_output('snowflake:index/getTasks:getTasks', __args__, opts=opts, typ=GetTasksResult)
|
|
206
141
|
return __ret__.apply(lambda __response__: GetTasksResult(
|
|
142
|
+
database=pulumi.get(__response__, 'database'),
|
|
207
143
|
id=pulumi.get(__response__, 'id'),
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
limit=pulumi.get(__response__, 'limit'),
|
|
211
|
-
root_only=pulumi.get(__response__, 'root_only'),
|
|
212
|
-
starts_with=pulumi.get(__response__, 'starts_with'),
|
|
213
|
-
tasks=pulumi.get(__response__, 'tasks'),
|
|
214
|
-
with_parameters=pulumi.get(__response__, 'with_parameters')))
|
|
144
|
+
schema=pulumi.get(__response__, 'schema'),
|
|
145
|
+
tasks=pulumi.get(__response__, 'tasks')))
|
|
@@ -134,7 +134,7 @@ class LegacyServiceUserArgs:
|
|
|
134
134
|
: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.
|
|
135
135
|
: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).
|
|
136
136
|
:param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
137
|
-
: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: `|`, `.`, `"`
|
|
137
|
+
: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: `|`, `.`, `(`, `)`, `"`
|
|
138
138
|
: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).
|
|
139
139
|
: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).
|
|
140
140
|
: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).
|
|
@@ -784,7 +784,7 @@ class LegacyServiceUserArgs:
|
|
|
784
784
|
@pulumi.getter
|
|
785
785
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
786
786
|
"""
|
|
787
|
-
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: `|`, `.`, `"`
|
|
787
|
+
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: `|`, `.`, `(`, `)`, `"`
|
|
788
788
|
"""
|
|
789
789
|
return pulumi.get(self, "name")
|
|
790
790
|
|
|
@@ -1319,7 +1319,7 @@ class _LegacyServiceUserState:
|
|
|
1319
1319
|
: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.
|
|
1320
1320
|
: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).
|
|
1321
1321
|
:param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
1322
|
-
: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: `|`, `.`, `"`
|
|
1322
|
+
: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: `|`, `.`, `(`, `)`, `"`
|
|
1323
1323
|
: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).
|
|
1324
1324
|
: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).
|
|
1325
1325
|
: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).
|
|
@@ -1992,7 +1992,7 @@ class _LegacyServiceUserState:
|
|
|
1992
1992
|
@pulumi.getter
|
|
1993
1993
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
1994
1994
|
"""
|
|
1995
|
-
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: `|`, `.`, `"`
|
|
1995
|
+
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: `|`, `.`, `(`, `)`, `"`
|
|
1996
1996
|
"""
|
|
1997
1997
|
return pulumi.get(self, "name")
|
|
1998
1998
|
|
|
@@ -2570,7 +2570,7 @@ class LegacyServiceUser(pulumi.CustomResource):
|
|
|
2570
2570
|
: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.
|
|
2571
2571
|
: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).
|
|
2572
2572
|
:param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
2573
|
-
: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: `|`, `.`, `"`
|
|
2573
|
+
: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: `|`, `.`, `(`, `)`, `"`
|
|
2574
2574
|
: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).
|
|
2575
2575
|
: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).
|
|
2576
2576
|
: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).
|
|
@@ -2931,7 +2931,7 @@ class LegacyServiceUser(pulumi.CustomResource):
|
|
|
2931
2931
|
: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.
|
|
2932
2932
|
: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).
|
|
2933
2933
|
:param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
2934
|
-
: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: `|`, `.`, `"`
|
|
2934
|
+
: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: `|`, `.`, `(`, `)`, `"`
|
|
2935
2935
|
: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).
|
|
2936
2936
|
: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).
|
|
2937
2937
|
: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).
|
|
@@ -3371,7 +3371,7 @@ class LegacyServiceUser(pulumi.CustomResource):
|
|
|
3371
3371
|
@pulumi.getter
|
|
3372
3372
|
def name(self) -> pulumi.Output[str]:
|
|
3373
3373
|
"""
|
|
3374
|
-
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: `|`, `.`, `"`
|
|
3374
|
+
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: `|`, `.`, `(`, `)`, `"`
|
|
3375
3375
|
"""
|
|
3376
3376
|
return pulumi.get(self, "name")
|
|
3377
3377
|
|