pulumi-snowflake 0.61.0a1731393894__py3-none-any.whl → 0.61.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-snowflake might be problematic. Click here for more details.
- pulumi_snowflake/__init__.py +110 -0
- pulumi_snowflake/_inputs.py +5182 -1837
- pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
- pulumi_snowflake/authentication_policy.py +622 -0
- pulumi_snowflake/config/__init__.pyi +86 -36
- pulumi_snowflake/config/vars.py +104 -40
- pulumi_snowflake/external_volume.py +378 -0
- pulumi_snowflake/get_connections.py +147 -0
- pulumi_snowflake/get_grants.py +4 -0
- pulumi_snowflake/get_secrets.py +204 -0
- pulumi_snowflake/get_streams.py +105 -56
- pulumi_snowflake/grant_account_role.py +2 -2
- pulumi_snowflake/grant_application_role.py +2 -2
- pulumi_snowflake/grant_database_role.py +2 -2
- pulumi_snowflake/grant_ownership.py +14 -14
- pulumi_snowflake/grant_privileges_to_account_role.py +8 -8
- pulumi_snowflake/grant_privileges_to_database_role.py +8 -8
- pulumi_snowflake/grant_privileges_to_share.py +2 -2
- pulumi_snowflake/legacy_service_user.py +4 -0
- pulumi_snowflake/outputs.py +4390 -1335
- pulumi_snowflake/primary_connection.py +330 -0
- pulumi_snowflake/provider.py +433 -146
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/secondary_connection.py +339 -0
- pulumi_snowflake/secret_with_authorization_code_grant.py +548 -0
- pulumi_snowflake/secret_with_basic_authentication.py +500 -0
- pulumi_snowflake/secret_with_client_credentials.py +511 -0
- pulumi_snowflake/secret_with_generic_string.py +452 -0
- pulumi_snowflake/stream_on_directory_table.py +530 -0
- pulumi_snowflake/stream_on_external_table.py +50 -2
- pulumi_snowflake/stream_on_table.py +48 -0
- pulumi_snowflake/stream_on_view.py +679 -0
- pulumi_snowflake/tag_association.py +7 -7
- pulumi_snowflake/user.py +4 -0
- pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
- {pulumi_snowflake-0.61.0a1731393894.dist-info → pulumi_snowflake-0.61.1.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.61.0a1731393894.dist-info → pulumi_snowflake-0.61.1.dist-info}/RECORD +39 -25
- {pulumi_snowflake-0.61.0a1731393894.dist-info → pulumi_snowflake-0.61.1.dist-info}/WHEEL +1 -1
- {pulumi_snowflake-0.61.0a1731393894.dist-info → pulumi_snowflake-0.61.1.dist-info}/top_level.txt +0 -0
|
@@ -30,7 +30,7 @@ class TagAssociationArgs:
|
|
|
30
30
|
"""
|
|
31
31
|
The set of arguments for constructing a TagAssociation resource.
|
|
32
32
|
:param pulumi.Input[Sequence[pulumi.Input['TagAssociationObjectIdentifierArgs']]] object_identifiers: Specifies the object identifier for the tag association.
|
|
33
|
-
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
33
|
+
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
34
34
|
:param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
|
|
35
35
|
:param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
36
36
|
:param pulumi.Input[str] object_name: Specifies the object identifier for the tag association.
|
|
@@ -64,7 +64,7 @@ class TagAssociationArgs:
|
|
|
64
64
|
@pulumi.getter(name="objectType")
|
|
65
65
|
def object_type(self) -> pulumi.Input[str]:
|
|
66
66
|
"""
|
|
67
|
-
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
67
|
+
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
68
68
|
"""
|
|
69
69
|
return pulumi.get(self, "object_type")
|
|
70
70
|
|
|
@@ -135,7 +135,7 @@ class _TagAssociationState:
|
|
|
135
135
|
Input properties used for looking up and filtering TagAssociation resources.
|
|
136
136
|
:param pulumi.Input[Sequence[pulumi.Input['TagAssociationObjectIdentifierArgs']]] object_identifiers: Specifies the object identifier for the tag association.
|
|
137
137
|
:param pulumi.Input[str] object_name: Specifies the object identifier for the tag association.
|
|
138
|
-
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
138
|
+
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
139
139
|
:param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
|
|
140
140
|
:param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
|
|
141
141
|
:param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
@@ -185,7 +185,7 @@ class _TagAssociationState:
|
|
|
185
185
|
@pulumi.getter(name="objectType")
|
|
186
186
|
def object_type(self) -> Optional[pulumi.Input[str]]:
|
|
187
187
|
"""
|
|
188
|
-
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
188
|
+
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
189
189
|
"""
|
|
190
190
|
return pulumi.get(self, "object_type")
|
|
191
191
|
|
|
@@ -255,7 +255,7 @@ class TagAssociation(pulumi.CustomResource):
|
|
|
255
255
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
256
256
|
:param pulumi.Input[Sequence[pulumi.Input[Union['TagAssociationObjectIdentifierArgs', 'TagAssociationObjectIdentifierArgsDict']]]] object_identifiers: Specifies the object identifier for the tag association.
|
|
257
257
|
:param pulumi.Input[str] object_name: Specifies the object identifier for the tag association.
|
|
258
|
-
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
258
|
+
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
259
259
|
:param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
|
|
260
260
|
:param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
|
|
261
261
|
:param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
@@ -344,7 +344,7 @@ class TagAssociation(pulumi.CustomResource):
|
|
|
344
344
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
345
345
|
:param pulumi.Input[Sequence[pulumi.Input[Union['TagAssociationObjectIdentifierArgs', 'TagAssociationObjectIdentifierArgsDict']]]] object_identifiers: Specifies the object identifier for the tag association.
|
|
346
346
|
:param pulumi.Input[str] object_name: Specifies the object identifier for the tag association.
|
|
347
|
-
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
347
|
+
:param pulumi.Input[str] object_type: Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
348
348
|
:param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
|
|
349
349
|
:param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
|
|
350
350
|
:param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
@@ -382,7 +382,7 @@ class TagAssociation(pulumi.CustomResource):
|
|
|
382
382
|
@pulumi.getter(name="objectType")
|
|
383
383
|
def object_type(self) -> pulumi.Output[str]:
|
|
384
384
|
"""
|
|
385
|
-
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE INTEGRATION NETWORK POLICY ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT EXTERNAL FUNCTION EXTERNAL TABLE GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
385
|
+
Specifies the type of object to add a tag. Allowed object types: [ACCOUNT APPLICATION APPLICATION PACKAGE DATABASE FAILOVER GROUP INTEGRATION NETWORK POLICY REPLICATION GROUP ROLE SHARE USER WAREHOUSE DATABASE ROLE SCHEMA ALERT SNOWFLAKE.CORE.BUDGET SNOWFLAKE.ML.CLASSIFICATION EXTERNAL FUNCTION EXTERNAL TABLE FUNCTION GIT REPOSITORY ICEBERG TABLE MATERIALIZED VIEW PIPE MASKING POLICY PASSWORD POLICY ROW ACCESS POLICY SESSION POLICY PRIVACY POLICY PROCEDURE STAGE STREAM TABLE TASK VIEW COLUMN EVENT TABLE].
|
|
386
386
|
"""
|
|
387
387
|
return pulumi.get(self, "object_type")
|
|
388
388
|
|
pulumi_snowflake/user.py
CHANGED
|
@@ -2678,6 +2678,8 @@ class User(pulumi.CustomResource):
|
|
|
2678
2678
|
$ pulumi import snowflake:index/user:User example '"<user_name>"'
|
|
2679
2679
|
```
|
|
2680
2680
|
|
|
2681
|
+
Note: pulumi preview+apply may be needed after successful import to fill out all the missing fields (like `password`) in state.
|
|
2682
|
+
|
|
2681
2683
|
:param str resource_name: The name of the resource.
|
|
2682
2684
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
2683
2685
|
:param pulumi.Input[bool] abort_detached_query: Specifies the action that Snowflake performs for in-progress queries if connectivity is lost due to abrupt termination of a session (e.g. network outage, browser termination, service interruption). For more information, check [ABORT*DETACHED*QUERY docs](https://docs.snowflake.com/en/sql-reference/parameters#abort-detached-query).
|
|
@@ -2768,6 +2770,8 @@ class User(pulumi.CustomResource):
|
|
|
2768
2770
|
$ pulumi import snowflake:index/user:User example '"<user_name>"'
|
|
2769
2771
|
```
|
|
2770
2772
|
|
|
2773
|
+
Note: pulumi preview+apply may be needed after successful import to fill out all the missing fields (like `password`) in state.
|
|
2774
|
+
|
|
2771
2775
|
:param str resource_name: The name of the resource.
|
|
2772
2776
|
:param UserArgs args: The arguments to use to populate this resource's properties.
|
|
2773
2777
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = ['UserAuthenticationPolicyAttachmentArgs', 'UserAuthenticationPolicyAttachment']
|
|
18
|
+
|
|
19
|
+
@pulumi.input_type
|
|
20
|
+
class UserAuthenticationPolicyAttachmentArgs:
|
|
21
|
+
def __init__(__self__, *,
|
|
22
|
+
authentication_policy_name: pulumi.Input[str],
|
|
23
|
+
user_name: pulumi.Input[str]):
|
|
24
|
+
"""
|
|
25
|
+
The set of arguments for constructing a UserAuthenticationPolicyAttachment resource.
|
|
26
|
+
:param pulumi.Input[str] authentication_policy_name: Fully qualified name of the authentication policy
|
|
27
|
+
:param pulumi.Input[str] user_name: User name of the user you want to attach the authentication policy to
|
|
28
|
+
"""
|
|
29
|
+
pulumi.set(__self__, "authentication_policy_name", authentication_policy_name)
|
|
30
|
+
pulumi.set(__self__, "user_name", user_name)
|
|
31
|
+
|
|
32
|
+
@property
|
|
33
|
+
@pulumi.getter(name="authenticationPolicyName")
|
|
34
|
+
def authentication_policy_name(self) -> pulumi.Input[str]:
|
|
35
|
+
"""
|
|
36
|
+
Fully qualified name of the authentication policy
|
|
37
|
+
"""
|
|
38
|
+
return pulumi.get(self, "authentication_policy_name")
|
|
39
|
+
|
|
40
|
+
@authentication_policy_name.setter
|
|
41
|
+
def authentication_policy_name(self, value: pulumi.Input[str]):
|
|
42
|
+
pulumi.set(self, "authentication_policy_name", value)
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter(name="userName")
|
|
46
|
+
def user_name(self) -> pulumi.Input[str]:
|
|
47
|
+
"""
|
|
48
|
+
User name of the user you want to attach the authentication policy to
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "user_name")
|
|
51
|
+
|
|
52
|
+
@user_name.setter
|
|
53
|
+
def user_name(self, value: pulumi.Input[str]):
|
|
54
|
+
pulumi.set(self, "user_name", value)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
@pulumi.input_type
|
|
58
|
+
class _UserAuthenticationPolicyAttachmentState:
|
|
59
|
+
def __init__(__self__, *,
|
|
60
|
+
authentication_policy_name: Optional[pulumi.Input[str]] = None,
|
|
61
|
+
user_name: Optional[pulumi.Input[str]] = None):
|
|
62
|
+
"""
|
|
63
|
+
Input properties used for looking up and filtering UserAuthenticationPolicyAttachment resources.
|
|
64
|
+
:param pulumi.Input[str] authentication_policy_name: Fully qualified name of the authentication policy
|
|
65
|
+
:param pulumi.Input[str] user_name: User name of the user you want to attach the authentication policy to
|
|
66
|
+
"""
|
|
67
|
+
if authentication_policy_name is not None:
|
|
68
|
+
pulumi.set(__self__, "authentication_policy_name", authentication_policy_name)
|
|
69
|
+
if user_name is not None:
|
|
70
|
+
pulumi.set(__self__, "user_name", user_name)
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter(name="authenticationPolicyName")
|
|
74
|
+
def authentication_policy_name(self) -> Optional[pulumi.Input[str]]:
|
|
75
|
+
"""
|
|
76
|
+
Fully qualified name of the authentication policy
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "authentication_policy_name")
|
|
79
|
+
|
|
80
|
+
@authentication_policy_name.setter
|
|
81
|
+
def authentication_policy_name(self, value: Optional[pulumi.Input[str]]):
|
|
82
|
+
pulumi.set(self, "authentication_policy_name", value)
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter(name="userName")
|
|
86
|
+
def user_name(self) -> Optional[pulumi.Input[str]]:
|
|
87
|
+
"""
|
|
88
|
+
User name of the user you want to attach the authentication policy to
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "user_name")
|
|
91
|
+
|
|
92
|
+
@user_name.setter
|
|
93
|
+
def user_name(self, value: Optional[pulumi.Input[str]]):
|
|
94
|
+
pulumi.set(self, "user_name", value)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
class UserAuthenticationPolicyAttachment(pulumi.CustomResource):
|
|
98
|
+
@overload
|
|
99
|
+
def __init__(__self__,
|
|
100
|
+
resource_name: str,
|
|
101
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
102
|
+
authentication_policy_name: Optional[pulumi.Input[str]] = None,
|
|
103
|
+
user_name: Optional[pulumi.Input[str]] = None,
|
|
104
|
+
__props__=None):
|
|
105
|
+
"""
|
|
106
|
+
Create a UserAuthenticationPolicyAttachment resource with the given unique name, props, and options.
|
|
107
|
+
:param str resource_name: The name of the resource.
|
|
108
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
109
|
+
:param pulumi.Input[str] authentication_policy_name: Fully qualified name of the authentication policy
|
|
110
|
+
:param pulumi.Input[str] user_name: User name of the user you want to attach the authentication policy to
|
|
111
|
+
"""
|
|
112
|
+
...
|
|
113
|
+
@overload
|
|
114
|
+
def __init__(__self__,
|
|
115
|
+
resource_name: str,
|
|
116
|
+
args: UserAuthenticationPolicyAttachmentArgs,
|
|
117
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
118
|
+
"""
|
|
119
|
+
Create a UserAuthenticationPolicyAttachment resource with the given unique name, props, and options.
|
|
120
|
+
:param str resource_name: The name of the resource.
|
|
121
|
+
:param UserAuthenticationPolicyAttachmentArgs args: The arguments to use to populate this resource's properties.
|
|
122
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
123
|
+
"""
|
|
124
|
+
...
|
|
125
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
126
|
+
resource_args, opts = _utilities.get_resource_args_opts(UserAuthenticationPolicyAttachmentArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
127
|
+
if resource_args is not None:
|
|
128
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
129
|
+
else:
|
|
130
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
131
|
+
|
|
132
|
+
def _internal_init(__self__,
|
|
133
|
+
resource_name: str,
|
|
134
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
135
|
+
authentication_policy_name: Optional[pulumi.Input[str]] = None,
|
|
136
|
+
user_name: Optional[pulumi.Input[str]] = None,
|
|
137
|
+
__props__=None):
|
|
138
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
139
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
140
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
141
|
+
if opts.id is None:
|
|
142
|
+
if __props__ is not None:
|
|
143
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
144
|
+
__props__ = UserAuthenticationPolicyAttachmentArgs.__new__(UserAuthenticationPolicyAttachmentArgs)
|
|
145
|
+
|
|
146
|
+
if authentication_policy_name is None and not opts.urn:
|
|
147
|
+
raise TypeError("Missing required property 'authentication_policy_name'")
|
|
148
|
+
__props__.__dict__["authentication_policy_name"] = authentication_policy_name
|
|
149
|
+
if user_name is None and not opts.urn:
|
|
150
|
+
raise TypeError("Missing required property 'user_name'")
|
|
151
|
+
__props__.__dict__["user_name"] = user_name
|
|
152
|
+
super(UserAuthenticationPolicyAttachment, __self__).__init__(
|
|
153
|
+
'snowflake:index/userAuthenticationPolicyAttachment:UserAuthenticationPolicyAttachment',
|
|
154
|
+
resource_name,
|
|
155
|
+
__props__,
|
|
156
|
+
opts)
|
|
157
|
+
|
|
158
|
+
@staticmethod
|
|
159
|
+
def get(resource_name: str,
|
|
160
|
+
id: pulumi.Input[str],
|
|
161
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
162
|
+
authentication_policy_name: Optional[pulumi.Input[str]] = None,
|
|
163
|
+
user_name: Optional[pulumi.Input[str]] = None) -> 'UserAuthenticationPolicyAttachment':
|
|
164
|
+
"""
|
|
165
|
+
Get an existing UserAuthenticationPolicyAttachment resource's state with the given name, id, and optional extra
|
|
166
|
+
properties used to qualify the lookup.
|
|
167
|
+
|
|
168
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
169
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
170
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
171
|
+
:param pulumi.Input[str] authentication_policy_name: Fully qualified name of the authentication policy
|
|
172
|
+
:param pulumi.Input[str] user_name: User name of the user you want to attach the authentication policy to
|
|
173
|
+
"""
|
|
174
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
175
|
+
|
|
176
|
+
__props__ = _UserAuthenticationPolicyAttachmentState.__new__(_UserAuthenticationPolicyAttachmentState)
|
|
177
|
+
|
|
178
|
+
__props__.__dict__["authentication_policy_name"] = authentication_policy_name
|
|
179
|
+
__props__.__dict__["user_name"] = user_name
|
|
180
|
+
return UserAuthenticationPolicyAttachment(resource_name, opts=opts, __props__=__props__)
|
|
181
|
+
|
|
182
|
+
@property
|
|
183
|
+
@pulumi.getter(name="authenticationPolicyName")
|
|
184
|
+
def authentication_policy_name(self) -> pulumi.Output[str]:
|
|
185
|
+
"""
|
|
186
|
+
Fully qualified name of the authentication policy
|
|
187
|
+
"""
|
|
188
|
+
return pulumi.get(self, "authentication_policy_name")
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
@pulumi.getter(name="userName")
|
|
192
|
+
def user_name(self) -> pulumi.Output[str]:
|
|
193
|
+
"""
|
|
194
|
+
User name of the user you want to attach the authentication policy to
|
|
195
|
+
"""
|
|
196
|
+
return pulumi.get(self, "user_name")
|
|
197
|
+
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
pulumi_snowflake/__init__.py,sha256=
|
|
2
|
-
pulumi_snowflake/_inputs.py,sha256=
|
|
1
|
+
pulumi_snowflake/__init__.py,sha256=vsUMFRNA-NVNPzN1VKIpIize2reyHSYbNe-kIoZpEyA,21925
|
|
2
|
+
pulumi_snowflake/_inputs.py,sha256=B9CP62o1c1QHywYDvmH9UcjUmKEsxH9gsKUwFM9h-xA,1599015
|
|
3
3
|
pulumi_snowflake/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
4
|
pulumi_snowflake/account.py,sha256=AVDJ--RjWG-Pv4kw2kVQY0lyB8llAvod6jI4VodaYuQ,47160
|
|
5
|
+
pulumi_snowflake/account_authentication_policy_attachment.py,sha256=nz_c1DMOysRj5nW24oAXDRHL5JvEKXhfAXB8uanqr24,7328
|
|
5
6
|
pulumi_snowflake/account_parameter.py,sha256=jyy1gnFKoYVn49irrZZZlNlKeg9X58XY1gzWQWDI8Io,8927
|
|
6
7
|
pulumi_snowflake/account_password_policy_attachment.py,sha256=BsKxVE6d_37Gpxh_fMa6mI5TClxnMQpnfL9J4uAnozY,6944
|
|
7
8
|
pulumi_snowflake/account_role.py,sha256=EcKm8ysaiyheyACfhlPtHqQN7ilVSLLRgMliCaek8V4,11122
|
|
@@ -10,6 +11,7 @@ pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py
|
|
|
10
11
|
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=o3SDwERSWXX2bMYcjFOUG2ZcOPo0slZrzEY1Rj-TMvg,40005
|
|
11
12
|
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=bi0cDCmArj_mi3qNVbJy5lrcj7GiPZCr7h_zkE8g2kk,40741
|
|
12
13
|
pulumi_snowflake/api_integration.py,sha256=l1PvCrilGDnnLDi78fUs3PFmkaX_3LSbhLI88oWkAFY,40529
|
|
14
|
+
pulumi_snowflake/authentication_policy.py,sha256=gjH9lwvd9o71N2GZGPDEl1jjsOZuABxg13ckhGfSa_0,42358
|
|
13
15
|
pulumi_snowflake/cortex_search_service.py,sha256=cQ3JFgokDMlP22Pmaqmb0UZGyItjicFOHERwcae-Zx4,25774
|
|
14
16
|
pulumi_snowflake/database.py,sha256=yqG_HREDo8-UcraPDkStS6mVmNqeDMgz1sih9Ycj1vI,86934
|
|
15
17
|
pulumi_snowflake/database_old.py,sha256=laFuzDtQoWo7iojPgITKEw0dQ01_sMIBJpe0p_9uIEE,27997
|
|
@@ -19,11 +21,13 @@ pulumi_snowflake/email_notification_integration.py,sha256=QnwfXgKmW01TYNbKayN2cv
|
|
|
19
21
|
pulumi_snowflake/external_function.py,sha256=PLM-30_f0LtAN6BYc7KjWih0nFZtn1v-OdVD2ofon7E,49316
|
|
20
22
|
pulumi_snowflake/external_oauth_integration.py,sha256=mG-Zjwamgllnz4VLa0r3a1EBAPg4TTk-QMwwZFwv1d4,66588
|
|
21
23
|
pulumi_snowflake/external_table.py,sha256=a_vd4m-gwKoJI6As6az_wlAYdBCJro_EmP_MdZ-3eSs,41563
|
|
24
|
+
pulumi_snowflake/external_volume.py,sha256=0rglPwqSCTGPYQ3D6Arq9LDAA5Ho6zdoS2xWQ18UeaY,24306
|
|
22
25
|
pulumi_snowflake/failover_group.py,sha256=eKqBhUUIlzocvBDnfUm1KAG0zPUklmcD5Bx_-V6oou0,38482
|
|
23
26
|
pulumi_snowflake/file_format.py,sha256=lHZNvtfWdJ4qUgqj5qSR_K-XUqueG2znQcT-NnHIYq0,93070
|
|
24
27
|
pulumi_snowflake/function.py,sha256=6AlpMLceE2RAhErpK0wmFGliAV5OoomP3BxK6chao6A,42264
|
|
25
28
|
pulumi_snowflake/get_accounts.py,sha256=drV8C9P7oF7hWelJUA0rnEpnBFNYUy6QyACJTjqxJLA,4030
|
|
26
29
|
pulumi_snowflake/get_alerts.py,sha256=_IyVwpVU7mFI3qBAZ7sloe7dwg7VUwMl7ALPu5mqUFk,5719
|
|
30
|
+
pulumi_snowflake/get_connections.py,sha256=rfgiTXeHkiCiSYD1MKuG0BDKDwkDrHU7yHMKaYfSv4w,6288
|
|
27
31
|
pulumi_snowflake/get_cortex_search_services.py,sha256=KgkLUd4IXnBJOSkWTC0fTynKe0RWWLUJIq--y5KwC_A,10227
|
|
28
32
|
pulumi_snowflake/get_current_account.py,sha256=HQXQmEqT1E70rQ_NCXuWjx5ivRGDynh8ocYRN9r7KLk,4479
|
|
29
33
|
pulumi_snowflake/get_current_role.py,sha256=Wn-tEIwECv_ArYNBmElEvDscJuo5NeyvgooecWFWEqQ,3052
|
|
@@ -37,7 +41,7 @@ pulumi_snowflake/get_external_tables.py,sha256=lBwav7CuHKlbsK6U3JRYPwRwplW84gTql
|
|
|
37
41
|
pulumi_snowflake/get_failover_groups.py,sha256=mzl8NbL1vtGw7zGoZYvjvExb03lg0-tnLZtI3cq1CGQ,4180
|
|
38
42
|
pulumi_snowflake/get_file_formats.py,sha256=hv9mVRcHZxFp7J3aIQbOIwMYRqxx8D8KR8OiP0wjFfU,5062
|
|
39
43
|
pulumi_snowflake/get_functions.py,sha256=j1Zn7BhWdt8yAOk94IsWQqy9aR9kGMAVpSclAYwyf6w,4920
|
|
40
|
-
pulumi_snowflake/get_grants.py,sha256=
|
|
44
|
+
pulumi_snowflake/get_grants.py,sha256=kZs_h6BLOn83z847kxht6a1JqxC_3I9-NxuZBb9yUmE,15885
|
|
41
45
|
pulumi_snowflake/get_masking_policies.py,sha256=RaAkBITXMHzGqz8SUMcjS3NJ8v4zPTLnF4AigbIEYWo,10056
|
|
42
46
|
pulumi_snowflake/get_materialized_views.py,sha256=RTsrQfY0--cdVrEaXZvw48HEH2LY2kjfmOed_A1Pi-Q,5298
|
|
43
47
|
pulumi_snowflake/get_network_policies.py,sha256=qd7QDeOh8ZjnifqCIWIq25kxRFt__CZTaU6eIc4jnKg,7010
|
|
@@ -49,13 +53,14 @@ pulumi_snowflake/get_role.py,sha256=ksfqZO5UDxzTU5O60UIhty55zxaDa9G8RB-4O1AzChs,
|
|
|
49
53
|
pulumi_snowflake/get_roles.py,sha256=E0WKAFf-JI7B2TVIfCymXQtwcViDR3_gAsk8g0hvFQc,5965
|
|
50
54
|
pulumi_snowflake/get_row_access_policies.py,sha256=iRXdT5mwf0SxHUiogLOIk0sDPe2tqBbEmMSQN1AMRcA,10270
|
|
51
55
|
pulumi_snowflake/get_schemas.py,sha256=CkaS9r6fgjCi-HdTuvpTNXLFKRZbdnwHIOVsKP14T_A,11925
|
|
56
|
+
pulumi_snowflake/get_secrets.py,sha256=o3f9CO2qAsLd5Oo-g6qLWL9401toGuSF1awJYXnlFss,9106
|
|
52
57
|
pulumi_snowflake/get_security_integrations.py,sha256=sIAT1CtSZh5YgwbjmSSpk_nrY0qKHTqa5uQffupSSn4,7347
|
|
53
58
|
pulumi_snowflake/get_sequences.py,sha256=t5oVHXgaWcxy1-E8s3Zrfdjsw-RNnC9GArheYXRHXFs,4920
|
|
54
59
|
pulumi_snowflake/get_shares.py,sha256=YOG1xpv4Byx_eKg3AV3NPoCRDUWpjxJOg9-Xn4MdIKw,3962
|
|
55
60
|
pulumi_snowflake/get_stages.py,sha256=mwRm1LPaY05wOaBE4pqBVHvHhBmFOyPtbtWqaBuoxK0,4779
|
|
56
61
|
pulumi_snowflake/get_storage_integrations.py,sha256=d2RrwpmXizsNX8n_JAjOKDUL5wtoTu39RUPnejtPjec,3579
|
|
57
62
|
pulumi_snowflake/get_streamlits.py,sha256=sJxb_6GQKbNn2a2KOcenNuxItBf3DLJ2z6w0uyUGZTw,9637
|
|
58
|
-
pulumi_snowflake/get_streams.py,sha256=
|
|
63
|
+
pulumi_snowflake/get_streams.py,sha256=A9eKB1lxMwuKMKip8QZjDabCRlas2TMdaRaKVMjdeCs,10439
|
|
59
64
|
pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=tQssNNgQf-_3TsAtt-0wRlQh5eaGcKbyKNAkhh47Xwc,4695
|
|
60
65
|
pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=h3BdeP44-qeOAHgB6WuSKCqNgR_DRDwGNUiXVFo-nD4,4990
|
|
61
66
|
pulumi_snowflake/get_system_get_private_link_config.py,sha256=HteDPCysQG6n8I7FJcQ13RqS2UV91Agtdcc3BUsYnYk,12331
|
|
@@ -65,14 +70,14 @@ pulumi_snowflake/get_tasks.py,sha256=zl_s1JxCUDnM0OkvGNHV1EC-EMyRcey0BS4KCZrkerA
|
|
|
65
70
|
pulumi_snowflake/get_users.py,sha256=ctrEYtC4oPvVxvMUfm8p1vU46dS9S7EC3IV7-bB_PhU,11468
|
|
66
71
|
pulumi_snowflake/get_views.py,sha256=HUE1N7RqOBi-D9BdAmHVRYbPLPcwS2e9emsKUSmtUxI,10327
|
|
67
72
|
pulumi_snowflake/get_warehouses.py,sha256=uBvZXCkza_sju0yh1e7vVc2TJdWUS9gEobUMNMSaXl0,8204
|
|
68
|
-
pulumi_snowflake/grant_account_role.py,sha256=
|
|
69
|
-
pulumi_snowflake/grant_application_role.py,sha256=
|
|
70
|
-
pulumi_snowflake/grant_database_role.py,sha256=
|
|
71
|
-
pulumi_snowflake/grant_ownership.py,sha256=
|
|
72
|
-
pulumi_snowflake/grant_privileges_to_account_role.py,sha256=
|
|
73
|
-
pulumi_snowflake/grant_privileges_to_database_role.py,sha256=
|
|
74
|
-
pulumi_snowflake/grant_privileges_to_share.py,sha256=
|
|
75
|
-
pulumi_snowflake/legacy_service_user.py,sha256=
|
|
73
|
+
pulumi_snowflake/grant_account_role.py,sha256=8LkAdD0mFzIcHwjjDhp0T_P3LpqIcmgOR7SxTpH1214,11362
|
|
74
|
+
pulumi_snowflake/grant_application_role.py,sha256=IgnG1VfQ9T79kSC1S_-FPXQ7j5vk28DLw5HsFfkVZlM,12181
|
|
75
|
+
pulumi_snowflake/grant_database_role.py,sha256=cY5CNJ9R9lbQ6gJUC6os6KBpaDI0PP59BPeFVNsEwdQ,14815
|
|
76
|
+
pulumi_snowflake/grant_ownership.py,sha256=DJWE2FO_ysPysBWOgWKTrxFifSreod-aW-HOsYlG3aQ,19078
|
|
77
|
+
pulumi_snowflake/grant_privileges_to_account_role.py,sha256=1d1u9aFIIjlCAhsAwjAHQLaUQlgtjR55TL1CGwm_RaQ,31419
|
|
78
|
+
pulumi_snowflake/grant_privileges_to_database_role.py,sha256=BelFNII1Q1O7EMKFHNLRz5ezvXJczYIfWpBUfVJ74wY,28532
|
|
79
|
+
pulumi_snowflake/grant_privileges_to_share.py,sha256=Y3ltvhnH2Dw5kiRGwTaKxiIMwhIJNSxNEa0jJGxd1bo,25069
|
|
80
|
+
pulumi_snowflake/legacy_service_user.py,sha256=1KRWBHP-sCv8DrcnCmlP-Qc7eYw5gVlHwYo68akGgpo,327186
|
|
76
81
|
pulumi_snowflake/managed_account.py,sha256=kIqqXm5nYCw-AgaXM1jhEL4wUQVfadzYoc4m3VaEPb4,22352
|
|
77
82
|
pulumi_snowflake/masking_policy.py,sha256=vXs24jH6ffq5mKtJQiKAbpKY0QcBXW_EcXQyQrbwWjA,35639
|
|
78
83
|
pulumi_snowflake/materialized_view.py,sha256=y1TFBXlXVVMBeSIcgileuptX3oX9VgS-hfkCCellnPE,24500
|
|
@@ -84,12 +89,13 @@ pulumi_snowflake/oauth_integration.py,sha256=LvL2jjSYPwF3ilaxpPX8q8J9yU6rxXbRCYY
|
|
|
84
89
|
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=P4XZGOowBPm3g4s8ZVNqp_isUfGhKwE0RLh8po4850g,56015
|
|
85
90
|
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=KG1Fi47z29mRaWZ93MtFOWVDKYWXNWKsTYoeBC9_cj4,36607
|
|
86
91
|
pulumi_snowflake/object_parameter.py,sha256=KiQuEvG6NrH-NFmAg_FnmmX5ZBBD6lVB7v6sCJUrXiA,18715
|
|
87
|
-
pulumi_snowflake/outputs.py,sha256=
|
|
92
|
+
pulumi_snowflake/outputs.py,sha256=y3bwic_t1duWXNcgLTsn_vFqdoL_hYXHwOHcmKIP_ls,1344258
|
|
88
93
|
pulumi_snowflake/password_policy.py,sha256=Vh54yzM_4WtVKMrLQU6uAPznTrcYB58hJk1ug199rXE,53905
|
|
89
94
|
pulumi_snowflake/pipe.py,sha256=TUydVIVUwkIuDeCxpwVziLj5nOCsqcIejZ-JybN94qg,26413
|
|
95
|
+
pulumi_snowflake/primary_connection.py,sha256=WgLVi-69X81I31R8WMZ61zwH5C6W2iYRZiP1lSS5fn4,18843
|
|
90
96
|
pulumi_snowflake/procedure.py,sha256=Dg8cjvxO3iLp6g9ND2lQpkhGI14O42xlZMsGsR4ZMds,45794
|
|
91
|
-
pulumi_snowflake/provider.py,sha256=
|
|
92
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=
|
|
97
|
+
pulumi_snowflake/provider.py,sha256=YiaSLv9PM7dB-q2b7W_SS4KswxPjcqI4skaEAcoAOkI,102620
|
|
98
|
+
pulumi_snowflake/pulumi-plugin.json,sha256=6leL5GX9_Mv33ZZYrAOJoRYCTzmzF1xhub6vj9DqDXE,69
|
|
93
99
|
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
100
|
pulumi_snowflake/resource_monitor.py,sha256=ZAYYFguvUfRV7QC0ReOHOhcE3gHbLcUDPOF2c_4qnjI,42101
|
|
95
101
|
pulumi_snowflake/role.py,sha256=6XbCskGmmGtB7Yr8U9uZNkqFbxCPKtGey3CVCEpSUhQ,10891
|
|
@@ -98,7 +104,12 @@ pulumi_snowflake/saml2_integration.py,sha256=u0mKSWh4VWhgvbN8XG5OsS6owRgHueW6Fmk
|
|
|
98
104
|
pulumi_snowflake/saml_integration.py,sha256=25snUHI4FQzzHnhKVqnbXGvuEC0oOs812tGx7Vud3v0,62645
|
|
99
105
|
pulumi_snowflake/schema.py,sha256=iTC2DamZu-X6Y1W7bg-1r-VdPVrw3-on089U1H0w0Yk,92492
|
|
100
106
|
pulumi_snowflake/scim_integration.py,sha256=nTbLnwIHXicNFXrovxfGwTHPNydkK9kykJGjzbNqa38,28734
|
|
107
|
+
pulumi_snowflake/secondary_connection.py,sha256=licxDQsc4EdXhAhBN6JM5zxu4ZbaGpu1gISpQ6p01XE,17448
|
|
101
108
|
pulumi_snowflake/secondary_database.py,sha256=LvzAa9vYCpELorXG3366ScmRwpfzFuXFMIoh87DElJ8,82584
|
|
109
|
+
pulumi_snowflake/secret_with_authorization_code_grant.py,sha256=3PL8NG4boLBA1jfxu2EL-8g18iwojsGqI_VJiKVttKk,29382
|
|
110
|
+
pulumi_snowflake/secret_with_basic_authentication.py,sha256=oxCgc1XZzsQMmrMP_SIjsWo3qlvbB_-A4mRCAGT5QPI,24500
|
|
111
|
+
pulumi_snowflake/secret_with_client_credentials.py,sha256=3CKeBP4pt9Y6Vtq_jZm-YjT-D9yQRh5GaeJ_y4pXZv0,26854
|
|
112
|
+
pulumi_snowflake/secret_with_generic_string.py,sha256=in5RxXvZ8RkVtHj1OaXLL1XDAzq1msiFR6ChY2o6F0Q,22477
|
|
102
113
|
pulumi_snowflake/sequence.py,sha256=3uch8fN22pyburdAvyvHjktLgiVoFqqw0pXX1sD4q1Q,18290
|
|
103
114
|
pulumi_snowflake/service_user.py,sha256=G-dAHCezsD5vcARCptHw3hQE3RCqdp9xwelbdSVuEdY,321186
|
|
104
115
|
pulumi_snowflake/session_parameter.py,sha256=jmzbbo5i4UtLyijM4aiOJ6KDCt7Qgxznn51UtECrIo4,12933
|
|
@@ -107,27 +118,30 @@ pulumi_snowflake/shared_database.py,sha256=hG7QRWFWDbFdMOyg-6qc-UE_9RKRWDzB-hidY
|
|
|
107
118
|
pulumi_snowflake/stage.py,sha256=vbGPND3vgFK81mOs_C894EmzrPbDj_CtX7w02bpPan4,38015
|
|
108
119
|
pulumi_snowflake/storage_integration.py,sha256=vb1ofhP6LU-J6t2_qBAB7rPqqF6MlpPU7M16fKx2pO0,33141
|
|
109
120
|
pulumi_snowflake/stream.py,sha256=5E1OJaOaiArwfqWH21tcNq_xj5EXWP8YTw5WToOC6zI,26825
|
|
110
|
-
pulumi_snowflake/
|
|
111
|
-
pulumi_snowflake/
|
|
121
|
+
pulumi_snowflake/stream_on_directory_table.py,sha256=Irpcp7_sjaDC-dk4G3mMZu02xAyMZkNTdhrLJk8E3GI,29512
|
|
122
|
+
pulumi_snowflake/stream_on_external_table.py,sha256=KbCSl51FWQ8CyD3iA5I_RPAM0i8kTbU2l7-2cbKm-j8,34584
|
|
123
|
+
pulumi_snowflake/stream_on_table.py,sha256=t2eNpM-zt-60ZwMimPMMBZ3GZn5Y6YDrkAW15wT19zk,35180
|
|
124
|
+
pulumi_snowflake/stream_on_view.py,sha256=eNHuc7LJSUMNF5czSm79gUy2i3x32r32EAsSAuPJL-0,35073
|
|
112
125
|
pulumi_snowflake/streamlit.py,sha256=2qCRo345W5x69yGfPogDRNXfsVTj9sKO4AkcvnThjoQ,31013
|
|
113
126
|
pulumi_snowflake/table.py,sha256=ytScReoDsOfI3X2JR1rm2FtLPxnGDAzqj-T9EHAzxsc,33157
|
|
114
127
|
pulumi_snowflake/table_column_masking_policy_application.py,sha256=He2six0YqZ5AHAb3lnHIpDNn3QhdNIPPzl82tK29Dhk,10717
|
|
115
128
|
pulumi_snowflake/table_constraint.py,sha256=clloXd2bSwHxVuSRj3DPl44Yj3B5qaMYV5JcYEuG7H4,31166
|
|
116
129
|
pulumi_snowflake/tag.py,sha256=jE2cNJCXna0ZwpIv7piAM4tnJVDF_J0z-0VTiCbnIJ8,15397
|
|
117
|
-
pulumi_snowflake/tag_association.py,sha256=
|
|
130
|
+
pulumi_snowflake/tag_association.py,sha256=N25kJPYEYiYmn0lFP90mEdSYf-pmCV4nPYn6MWN0A5k,22842
|
|
118
131
|
pulumi_snowflake/tag_masking_policy_association.py,sha256=E1LrfN7lLlRUqf8j9JL0tjLYiZXgkI3KviA13N6BM1s,9865
|
|
119
132
|
pulumi_snowflake/task.py,sha256=2wYzEEw6rfhBzqJe87eWxS2dC2E4XxyeLJfzr38rSTw,47908
|
|
120
133
|
pulumi_snowflake/unsafe_execute.py,sha256=6Gp1SrnXsnlri07rkSm9PtE1Ys_5mR2w64wCO5X3pNA,11926
|
|
121
|
-
pulumi_snowflake/user.py,sha256=
|
|
134
|
+
pulumi_snowflake/user.py,sha256=KDvJ0k5BOiq5IiXjiWOXfR7FoJP4U-Mb-85MTGwFSVg,335187
|
|
135
|
+
pulumi_snowflake/user_authentication_policy_attachment.py,sha256=oZ-xdgGbkChufZp1OsGfp4tEDN3OWIRezUG-xzjhDQ0,9142
|
|
122
136
|
pulumi_snowflake/user_password_policy_attachment.py,sha256=FwvBU8U-_KdpgbplKi3Q3s_Pulh1paOfOvqUvyhB5oQ,8924
|
|
123
137
|
pulumi_snowflake/user_public_keys.py,sha256=hsyt78EP4kHs5SK7rLCPsWIHXI64N0D-KUdGUnO_sxY,11452
|
|
124
138
|
pulumi_snowflake/view.py,sha256=394gynbpC5gPl7vkf7GeoZRuXtze6IsdEKVSW4uzMcY,49148
|
|
125
139
|
pulumi_snowflake/warehouse.py,sha256=se2NXj9yS6klXgp7Acgr0niPUTwPwhioJz21rQgoCfA,58531
|
|
126
140
|
pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
127
|
-
pulumi_snowflake/config/__init__.pyi,sha256=
|
|
141
|
+
pulumi_snowflake/config/__init__.pyi,sha256=KY9Y8c6BWuAzIw6wERoii8J1SjaSHxMa2LgsZ1_Wodg,12177
|
|
128
142
|
pulumi_snowflake/config/outputs.py,sha256=iAJ-lzy_gkkdNr_znbdiKbAphOhXY3G9NGJHcHMk8rU,4041
|
|
129
|
-
pulumi_snowflake/config/vars.py,sha256=
|
|
130
|
-
pulumi_snowflake-0.61.
|
|
131
|
-
pulumi_snowflake-0.61.
|
|
132
|
-
pulumi_snowflake-0.61.
|
|
133
|
-
pulumi_snowflake-0.61.
|
|
143
|
+
pulumi_snowflake/config/vars.py,sha256=L4aNuov9BOY6CVUrY_Ir7c-2lvj4Y0HQzd9A-bu4zfM,18915
|
|
144
|
+
pulumi_snowflake-0.61.1.dist-info/METADATA,sha256=g7l9I_NZllSrD4ICQ4wcL-pQGZsbRlPGsJ6MNqUHZ5Y,5038
|
|
145
|
+
pulumi_snowflake-0.61.1.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
|
146
|
+
pulumi_snowflake-0.61.1.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
147
|
+
pulumi_snowflake-0.61.1.dist-info/RECORD,,
|
{pulumi_snowflake-0.61.0a1731393894.dist-info → pulumi_snowflake-0.61.1.dist-info}/top_level.txt
RENAMED
|
File without changes
|