pulumi-snowflake 0.50.2a1709892015__py3-none-any.whl → 1.2.0a1736835738__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 +224 -172
- pulumi_snowflake/_inputs.py +52854 -1662
- pulumi_snowflake/_utilities.py +41 -5
- pulumi_snowflake/account.py +188 -214
- pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
- pulumi_snowflake/account_parameter.py +21 -44
- pulumi_snowflake/account_password_policy_attachment.py +7 -28
- pulumi_snowflake/account_role.py +250 -0
- pulumi_snowflake/alert.py +38 -43
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +704 -0
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +657 -0
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +692 -0
- pulumi_snowflake/api_integration.py +35 -50
- pulumi_snowflake/authentication_policy.py +622 -0
- pulumi_snowflake/config/__init__.pyi +76 -99
- pulumi_snowflake/config/outputs.py +5 -0
- pulumi_snowflake/config/vars.py +93 -124
- pulumi_snowflake/cortex_search_service.py +596 -0
- pulumi_snowflake/database.py +819 -209
- pulumi_snowflake/database_role.py +81 -40
- pulumi_snowflake/dynamic_table.py +44 -47
- pulumi_snowflake/email_notification_integration.py +35 -26
- pulumi_snowflake/{unsafe_execute.py → execute.py} +36 -139
- pulumi_snowflake/external_function.py +54 -71
- pulumi_snowflake/external_oauth_integration.py +593 -538
- pulumi_snowflake/external_table.py +67 -86
- pulumi_snowflake/external_volume.py +382 -0
- pulumi_snowflake/failover_group.py +59 -96
- pulumi_snowflake/file_format.py +33 -24
- pulumi_snowflake/function_java.py +1211 -0
- pulumi_snowflake/function_javascript.py +882 -0
- pulumi_snowflake/function_python.py +1212 -0
- pulumi_snowflake/function_scala.py +1212 -0
- pulumi_snowflake/function_sql.py +835 -0
- pulumi_snowflake/get_account_roles.py +129 -0
- pulumi_snowflake/get_accounts.py +53 -22
- pulumi_snowflake/get_alerts.py +22 -5
- pulumi_snowflake/get_connections.py +109 -0
- pulumi_snowflake/get_cortex_search_services.py +216 -0
- pulumi_snowflake/get_current_account.py +24 -9
- pulumi_snowflake/get_current_role.py +14 -7
- pulumi_snowflake/get_database.py +25 -5
- pulumi_snowflake/get_database_role.py +162 -0
- pulumi_snowflake/get_database_roles.py +79 -43
- pulumi_snowflake/get_databases.py +91 -69
- pulumi_snowflake/get_dynamic_tables.py +36 -19
- pulumi_snowflake/get_external_functions.py +28 -5
- pulumi_snowflake/get_external_tables.py +28 -5
- pulumi_snowflake/get_failover_groups.py +18 -7
- pulumi_snowflake/get_file_formats.py +28 -5
- pulumi_snowflake/get_functions.py +28 -5
- pulumi_snowflake/get_grants.py +207 -80
- pulumi_snowflake/get_masking_policies.py +91 -47
- pulumi_snowflake/get_materialized_views.py +28 -5
- pulumi_snowflake/get_network_policies.py +129 -0
- pulumi_snowflake/get_parameters.py +38 -11
- pulumi_snowflake/get_pipes.py +28 -5
- pulumi_snowflake/get_procedures.py +28 -5
- pulumi_snowflake/get_resource_monitors.py +37 -20
- pulumi_snowflake/get_row_access_policies.py +91 -47
- pulumi_snowflake/get_schemas.py +145 -37
- pulumi_snowflake/get_secrets.py +200 -0
- pulumi_snowflake/get_security_integrations.py +129 -0
- pulumi_snowflake/get_sequences.py +28 -5
- pulumi_snowflake/get_shares.py +18 -5
- pulumi_snowflake/get_stages.py +28 -5
- pulumi_snowflake/get_storage_integrations.py +16 -5
- pulumi_snowflake/get_streamlits.py +170 -0
- pulumi_snowflake/get_streams.py +114 -50
- pulumi_snowflake/get_system_generate_scim_access_token.py +18 -5
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +32 -7
- pulumi_snowflake/get_system_get_private_link_config.py +121 -6
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +15 -7
- pulumi_snowflake/get_tables.py +28 -5
- pulumi_snowflake/get_tags.py +130 -0
- pulumi_snowflake/get_tasks.py +134 -50
- pulumi_snowflake/get_users.py +116 -40
- pulumi_snowflake/get_views.py +114 -50
- pulumi_snowflake/get_warehouses.py +79 -22
- pulumi_snowflake/grant_account_role.py +28 -61
- pulumi_snowflake/grant_application_role.py +257 -0
- pulumi_snowflake/grant_database_role.py +35 -108
- pulumi_snowflake/grant_ownership.py +382 -0
- pulumi_snowflake/grant_privileges_to_account_role.py +42 -78
- pulumi_snowflake/grant_privileges_to_database_role.py +37 -223
- pulumi_snowflake/grant_privileges_to_share.py +96 -44
- pulumi_snowflake/legacy_service_user.py +3670 -0
- pulumi_snowflake/managed_account.py +42 -9
- pulumi_snowflake/masking_policy.py +213 -306
- pulumi_snowflake/materialized_view.py +62 -67
- pulumi_snowflake/network_policy.py +217 -57
- pulumi_snowflake/network_policy_attachment.py +7 -32
- pulumi_snowflake/network_rule.py +473 -0
- pulumi_snowflake/notification_integration.py +51 -82
- pulumi_snowflake/oauth_integration_for_custom_clients.py +906 -0
- pulumi_snowflake/{oauth_integration.py → oauth_integration_for_partner_applications.py} +191 -188
- pulumi_snowflake/object_parameter.py +12 -99
- pulumi_snowflake/outputs.py +49200 -2928
- pulumi_snowflake/password_policy.py +41 -28
- pulumi_snowflake/pipe.py +33 -0
- pulumi_snowflake/primary_connection.py +330 -0
- pulumi_snowflake/procedure_java.py +1273 -0
- pulumi_snowflake/procedure_javascript.py +895 -0
- pulumi_snowflake/procedure_python.py +1226 -0
- pulumi_snowflake/procedure_scala.py +1273 -0
- pulumi_snowflake/procedure_sql.py +895 -0
- pulumi_snowflake/provider.py +378 -613
- pulumi_snowflake/pulumi-plugin.json +2 -1
- pulumi_snowflake/resource_monitor.py +118 -323
- pulumi_snowflake/row_access_policy.py +200 -145
- pulumi_snowflake/{saml_integration.py → saml2_integration.py} +356 -295
- pulumi_snowflake/schema.py +949 -174
- pulumi_snowflake/scim_integration.py +286 -105
- pulumi_snowflake/secondary_connection.py +339 -0
- pulumi_snowflake/secondary_database.py +1080 -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/sequence.py +9 -30
- pulumi_snowflake/service_user.py +3585 -0
- pulumi_snowflake/share.py +35 -26
- pulumi_snowflake/shared_database.py +939 -0
- pulumi_snowflake/stage.py +95 -80
- pulumi_snowflake/storage_integration.py +48 -2
- pulumi_snowflake/stream_on_directory_table.py +517 -0
- pulumi_snowflake/stream_on_external_table.py +632 -0
- pulumi_snowflake/stream_on_table.py +666 -0
- pulumi_snowflake/stream_on_view.py +666 -0
- pulumi_snowflake/streamlit.py +671 -0
- pulumi_snowflake/table.py +86 -93
- pulumi_snowflake/table_column_masking_policy_application.py +7 -14
- pulumi_snowflake/table_constraint.py +29 -168
- pulumi_snowflake/tag.py +142 -70
- pulumi_snowflake/tag_association.py +40 -211
- pulumi_snowflake/task.py +3048 -414
- pulumi_snowflake/user.py +3351 -380
- pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
- pulumi_snowflake/user_password_policy_attachment.py +7 -6
- pulumi_snowflake/user_public_keys.py +5 -0
- pulumi_snowflake/view.py +466 -211
- pulumi_snowflake/warehouse.py +184 -164
- {pulumi_snowflake-0.50.2a1709892015.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/METADATA +7 -6
- pulumi_snowflake-1.2.0a1736835738.dist-info/RECORD +148 -0
- {pulumi_snowflake-0.50.2a1709892015.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/WHEEL +1 -1
- pulumi_snowflake/account_grant.py +0 -339
- pulumi_snowflake/database_grant.py +0 -491
- pulumi_snowflake/external_table_grant.py +0 -686
- pulumi_snowflake/failover_group_grant.py +0 -388
- pulumi_snowflake/file_format_grant.py +0 -631
- pulumi_snowflake/function.py +0 -868
- pulumi_snowflake/function_grant.py +0 -741
- pulumi_snowflake/get_role.py +0 -117
- pulumi_snowflake/get_roles.py +0 -116
- pulumi_snowflake/grant_privileges_to_role.py +0 -667
- pulumi_snowflake/integration_grant.py +0 -436
- pulumi_snowflake/masking_policy_grant.py +0 -538
- pulumi_snowflake/materialized_view_grant.py +0 -685
- pulumi_snowflake/pipe_grant.py +0 -583
- pulumi_snowflake/procedure.py +0 -883
- pulumi_snowflake/procedure_grant.py +0 -741
- pulumi_snowflake/resource_monitor_grant.py +0 -383
- pulumi_snowflake/role.py +0 -269
- pulumi_snowflake/role_grants.py +0 -348
- pulumi_snowflake/role_ownership_grant.py +0 -334
- pulumi_snowflake/row_access_policy_grant.py +0 -536
- pulumi_snowflake/schema_grant.py +0 -643
- pulumi_snowflake/sequence_grant.py +0 -631
- pulumi_snowflake/session_parameter.py +0 -328
- pulumi_snowflake/stage_grant.py +0 -631
- pulumi_snowflake/stream.py +0 -610
- pulumi_snowflake/stream_grant.py +0 -631
- pulumi_snowflake/table_grant.py +0 -673
- pulumi_snowflake/tag_grant.py +0 -528
- pulumi_snowflake/tag_masking_policy_association.py +0 -210
- pulumi_snowflake/task_grant.py +0 -631
- pulumi_snowflake/user_grant.py +0 -390
- pulumi_snowflake/user_ownership_grant.py +0 -286
- pulumi_snowflake/view_grant.py +0 -701
- pulumi_snowflake/warehouse_grant.py +0 -436
- pulumi_snowflake-0.50.2a1709892015.dist-info/RECORD +0 -136
- {pulumi_snowflake-0.50.2a1709892015.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/top_level.txt +0 -0
pulumi_snowflake/tag.py
CHANGED
|
@@ -4,10 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._inputs import *
|
|
11
18
|
|
|
12
19
|
__all__ = ['TagArgs', 'Tag']
|
|
13
20
|
|
|
@@ -18,14 +25,16 @@ class TagArgs:
|
|
|
18
25
|
schema: pulumi.Input[str],
|
|
19
26
|
allowed_values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
20
27
|
comment: Optional[pulumi.Input[str]] = None,
|
|
28
|
+
masking_policies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
21
29
|
name: Optional[pulumi.Input[str]] = None):
|
|
22
30
|
"""
|
|
23
31
|
The set of arguments for constructing a Tag resource.
|
|
24
|
-
:param pulumi.Input[str] database: The database in which to create the tag.
|
|
25
|
-
:param pulumi.Input[str] schema: The schema in which to create the tag.
|
|
26
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values:
|
|
32
|
+
:param pulumi.Input[str] database: The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
33
|
+
:param pulumi.Input[str] schema: The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
34
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Set of allowed values for the tag.
|
|
27
35
|
:param pulumi.Input[str] comment: Specifies a comment for the tag.
|
|
28
|
-
:param pulumi.Input[str]
|
|
36
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] masking_policies: Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them. For more information about this resource, see docs.
|
|
37
|
+
:param pulumi.Input[str] name: Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
29
38
|
"""
|
|
30
39
|
pulumi.set(__self__, "database", database)
|
|
31
40
|
pulumi.set(__self__, "schema", schema)
|
|
@@ -33,6 +42,8 @@ class TagArgs:
|
|
|
33
42
|
pulumi.set(__self__, "allowed_values", allowed_values)
|
|
34
43
|
if comment is not None:
|
|
35
44
|
pulumi.set(__self__, "comment", comment)
|
|
45
|
+
if masking_policies is not None:
|
|
46
|
+
pulumi.set(__self__, "masking_policies", masking_policies)
|
|
36
47
|
if name is not None:
|
|
37
48
|
pulumi.set(__self__, "name", name)
|
|
38
49
|
|
|
@@ -40,7 +51,7 @@ class TagArgs:
|
|
|
40
51
|
@pulumi.getter
|
|
41
52
|
def database(self) -> pulumi.Input[str]:
|
|
42
53
|
"""
|
|
43
|
-
The database in which to create the tag.
|
|
54
|
+
The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
44
55
|
"""
|
|
45
56
|
return pulumi.get(self, "database")
|
|
46
57
|
|
|
@@ -52,7 +63,7 @@ class TagArgs:
|
|
|
52
63
|
@pulumi.getter
|
|
53
64
|
def schema(self) -> pulumi.Input[str]:
|
|
54
65
|
"""
|
|
55
|
-
The schema in which to create the tag.
|
|
66
|
+
The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
56
67
|
"""
|
|
57
68
|
return pulumi.get(self, "schema")
|
|
58
69
|
|
|
@@ -64,7 +75,7 @@ class TagArgs:
|
|
|
64
75
|
@pulumi.getter(name="allowedValues")
|
|
65
76
|
def allowed_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
66
77
|
"""
|
|
67
|
-
|
|
78
|
+
Set of allowed values for the tag.
|
|
68
79
|
"""
|
|
69
80
|
return pulumi.get(self, "allowed_values")
|
|
70
81
|
|
|
@@ -84,11 +95,23 @@ class TagArgs:
|
|
|
84
95
|
def comment(self, value: Optional[pulumi.Input[str]]):
|
|
85
96
|
pulumi.set(self, "comment", value)
|
|
86
97
|
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter(name="maskingPolicies")
|
|
100
|
+
def masking_policies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
101
|
+
"""
|
|
102
|
+
Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them. For more information about this resource, see docs.
|
|
103
|
+
"""
|
|
104
|
+
return pulumi.get(self, "masking_policies")
|
|
105
|
+
|
|
106
|
+
@masking_policies.setter
|
|
107
|
+
def masking_policies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
108
|
+
pulumi.set(self, "masking_policies", value)
|
|
109
|
+
|
|
87
110
|
@property
|
|
88
111
|
@pulumi.getter
|
|
89
112
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
90
113
|
"""
|
|
91
|
-
Specifies the identifier for the tag; must be unique for the database in which the tag is created.
|
|
114
|
+
Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
92
115
|
"""
|
|
93
116
|
return pulumi.get(self, "name")
|
|
94
117
|
|
|
@@ -103,15 +126,21 @@ class _TagState:
|
|
|
103
126
|
allowed_values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
104
127
|
comment: Optional[pulumi.Input[str]] = None,
|
|
105
128
|
database: Optional[pulumi.Input[str]] = None,
|
|
129
|
+
fully_qualified_name: Optional[pulumi.Input[str]] = None,
|
|
130
|
+
masking_policies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
106
131
|
name: Optional[pulumi.Input[str]] = None,
|
|
107
|
-
schema: Optional[pulumi.Input[str]] = None
|
|
132
|
+
schema: Optional[pulumi.Input[str]] = None,
|
|
133
|
+
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['TagShowOutputArgs']]]] = None):
|
|
108
134
|
"""
|
|
109
135
|
Input properties used for looking up and filtering Tag resources.
|
|
110
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values:
|
|
136
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Set of allowed values for the tag.
|
|
111
137
|
:param pulumi.Input[str] comment: Specifies a comment for the tag.
|
|
112
|
-
:param pulumi.Input[str] database: The database in which to create the tag.
|
|
113
|
-
:param pulumi.Input[str]
|
|
114
|
-
:param pulumi.Input[str]
|
|
138
|
+
:param pulumi.Input[str] database: The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
139
|
+
: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).
|
|
140
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] masking_policies: Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them. For more information about this resource, see docs.
|
|
141
|
+
:param pulumi.Input[str] name: Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
142
|
+
:param pulumi.Input[str] schema: The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
143
|
+
:param pulumi.Input[Sequence[pulumi.Input['TagShowOutputArgs']]] show_outputs: Outputs the result of `SHOW TAGS` for the given tag.
|
|
115
144
|
"""
|
|
116
145
|
if allowed_values is not None:
|
|
117
146
|
pulumi.set(__self__, "allowed_values", allowed_values)
|
|
@@ -119,16 +148,22 @@ class _TagState:
|
|
|
119
148
|
pulumi.set(__self__, "comment", comment)
|
|
120
149
|
if database is not None:
|
|
121
150
|
pulumi.set(__self__, "database", database)
|
|
151
|
+
if fully_qualified_name is not None:
|
|
152
|
+
pulumi.set(__self__, "fully_qualified_name", fully_qualified_name)
|
|
153
|
+
if masking_policies is not None:
|
|
154
|
+
pulumi.set(__self__, "masking_policies", masking_policies)
|
|
122
155
|
if name is not None:
|
|
123
156
|
pulumi.set(__self__, "name", name)
|
|
124
157
|
if schema is not None:
|
|
125
158
|
pulumi.set(__self__, "schema", schema)
|
|
159
|
+
if show_outputs is not None:
|
|
160
|
+
pulumi.set(__self__, "show_outputs", show_outputs)
|
|
126
161
|
|
|
127
162
|
@property
|
|
128
163
|
@pulumi.getter(name="allowedValues")
|
|
129
164
|
def allowed_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
130
165
|
"""
|
|
131
|
-
|
|
166
|
+
Set of allowed values for the tag.
|
|
132
167
|
"""
|
|
133
168
|
return pulumi.get(self, "allowed_values")
|
|
134
169
|
|
|
@@ -152,7 +187,7 @@ class _TagState:
|
|
|
152
187
|
@pulumi.getter
|
|
153
188
|
def database(self) -> Optional[pulumi.Input[str]]:
|
|
154
189
|
"""
|
|
155
|
-
The database in which to create the tag.
|
|
190
|
+
The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
156
191
|
"""
|
|
157
192
|
return pulumi.get(self, "database")
|
|
158
193
|
|
|
@@ -160,11 +195,35 @@ class _TagState:
|
|
|
160
195
|
def database(self, value: Optional[pulumi.Input[str]]):
|
|
161
196
|
pulumi.set(self, "database", value)
|
|
162
197
|
|
|
198
|
+
@property
|
|
199
|
+
@pulumi.getter(name="fullyQualifiedName")
|
|
200
|
+
def fully_qualified_name(self) -> Optional[pulumi.Input[str]]:
|
|
201
|
+
"""
|
|
202
|
+
Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "fully_qualified_name")
|
|
205
|
+
|
|
206
|
+
@fully_qualified_name.setter
|
|
207
|
+
def fully_qualified_name(self, value: Optional[pulumi.Input[str]]):
|
|
208
|
+
pulumi.set(self, "fully_qualified_name", value)
|
|
209
|
+
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter(name="maskingPolicies")
|
|
212
|
+
def masking_policies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
213
|
+
"""
|
|
214
|
+
Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them. For more information about this resource, see docs.
|
|
215
|
+
"""
|
|
216
|
+
return pulumi.get(self, "masking_policies")
|
|
217
|
+
|
|
218
|
+
@masking_policies.setter
|
|
219
|
+
def masking_policies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
220
|
+
pulumi.set(self, "masking_policies", value)
|
|
221
|
+
|
|
163
222
|
@property
|
|
164
223
|
@pulumi.getter
|
|
165
224
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
166
225
|
"""
|
|
167
|
-
Specifies the identifier for the tag; must be unique for the database in which the tag is created.
|
|
226
|
+
Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
168
227
|
"""
|
|
169
228
|
return pulumi.get(self, "name")
|
|
170
229
|
|
|
@@ -176,7 +235,7 @@ class _TagState:
|
|
|
176
235
|
@pulumi.getter
|
|
177
236
|
def schema(self) -> Optional[pulumi.Input[str]]:
|
|
178
237
|
"""
|
|
179
|
-
The schema in which to create the tag.
|
|
238
|
+
The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
180
239
|
"""
|
|
181
240
|
return pulumi.get(self, "schema")
|
|
182
241
|
|
|
@@ -184,6 +243,18 @@ class _TagState:
|
|
|
184
243
|
def schema(self, value: Optional[pulumi.Input[str]]):
|
|
185
244
|
pulumi.set(self, "schema", value)
|
|
186
245
|
|
|
246
|
+
@property
|
|
247
|
+
@pulumi.getter(name="showOutputs")
|
|
248
|
+
def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TagShowOutputArgs']]]]:
|
|
249
|
+
"""
|
|
250
|
+
Outputs the result of `SHOW TAGS` for the given tag.
|
|
251
|
+
"""
|
|
252
|
+
return pulumi.get(self, "show_outputs")
|
|
253
|
+
|
|
254
|
+
@show_outputs.setter
|
|
255
|
+
def show_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TagShowOutputArgs']]]]):
|
|
256
|
+
pulumi.set(self, "show_outputs", value)
|
|
257
|
+
|
|
187
258
|
|
|
188
259
|
class Tag(pulumi.CustomResource):
|
|
189
260
|
@overload
|
|
@@ -193,42 +264,25 @@ class Tag(pulumi.CustomResource):
|
|
|
193
264
|
allowed_values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
194
265
|
comment: Optional[pulumi.Input[str]] = None,
|
|
195
266
|
database: Optional[pulumi.Input[str]] = None,
|
|
267
|
+
masking_policies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
196
268
|
name: Optional[pulumi.Input[str]] = None,
|
|
197
269
|
schema: Optional[pulumi.Input[str]] = None,
|
|
198
270
|
__props__=None):
|
|
199
271
|
"""
|
|
200
|
-
## Example Usage
|
|
201
|
-
|
|
202
|
-
```python
|
|
203
|
-
import pulumi
|
|
204
|
-
import pulumi_snowflake as snowflake
|
|
205
|
-
|
|
206
|
-
database = snowflake.Database("database")
|
|
207
|
-
schema = snowflake.Schema("schema", database=database.name)
|
|
208
|
-
tag = snowflake.Tag("tag",
|
|
209
|
-
database=database.name,
|
|
210
|
-
schema=schema.name,
|
|
211
|
-
allowed_values=[
|
|
212
|
-
"finance",
|
|
213
|
-
"engineering",
|
|
214
|
-
])
|
|
215
|
-
```
|
|
216
|
-
|
|
217
272
|
## Import
|
|
218
273
|
|
|
219
|
-
format is database name | schema name | tag name
|
|
220
|
-
|
|
221
274
|
```sh
|
|
222
|
-
$ pulumi import snowflake:index/tag:Tag example '
|
|
275
|
+
$ pulumi import snowflake:index/tag:Tag example '"<database_name>"."<schema_name>"."<tag_name>"'
|
|
223
276
|
```
|
|
224
277
|
|
|
225
278
|
:param str resource_name: The name of the resource.
|
|
226
279
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
227
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values:
|
|
280
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Set of allowed values for the tag.
|
|
228
281
|
:param pulumi.Input[str] comment: Specifies a comment for the tag.
|
|
229
|
-
:param pulumi.Input[str] database: The database in which to create the tag.
|
|
230
|
-
:param pulumi.Input[str]
|
|
231
|
-
:param pulumi.Input[str]
|
|
282
|
+
:param pulumi.Input[str] database: The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
283
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] masking_policies: Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them. For more information about this resource, see docs.
|
|
284
|
+
:param pulumi.Input[str] name: Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
285
|
+
:param pulumi.Input[str] schema: The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
232
286
|
"""
|
|
233
287
|
...
|
|
234
288
|
@overload
|
|
@@ -237,29 +291,10 @@ class Tag(pulumi.CustomResource):
|
|
|
237
291
|
args: TagArgs,
|
|
238
292
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
239
293
|
"""
|
|
240
|
-
## Example Usage
|
|
241
|
-
|
|
242
|
-
```python
|
|
243
|
-
import pulumi
|
|
244
|
-
import pulumi_snowflake as snowflake
|
|
245
|
-
|
|
246
|
-
database = snowflake.Database("database")
|
|
247
|
-
schema = snowflake.Schema("schema", database=database.name)
|
|
248
|
-
tag = snowflake.Tag("tag",
|
|
249
|
-
database=database.name,
|
|
250
|
-
schema=schema.name,
|
|
251
|
-
allowed_values=[
|
|
252
|
-
"finance",
|
|
253
|
-
"engineering",
|
|
254
|
-
])
|
|
255
|
-
```
|
|
256
|
-
|
|
257
294
|
## Import
|
|
258
295
|
|
|
259
|
-
format is database name | schema name | tag name
|
|
260
|
-
|
|
261
296
|
```sh
|
|
262
|
-
$ pulumi import snowflake:index/tag:Tag example '
|
|
297
|
+
$ pulumi import snowflake:index/tag:Tag example '"<database_name>"."<schema_name>"."<tag_name>"'
|
|
263
298
|
```
|
|
264
299
|
|
|
265
300
|
:param str resource_name: The name of the resource.
|
|
@@ -280,6 +315,7 @@ class Tag(pulumi.CustomResource):
|
|
|
280
315
|
allowed_values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
281
316
|
comment: Optional[pulumi.Input[str]] = None,
|
|
282
317
|
database: Optional[pulumi.Input[str]] = None,
|
|
318
|
+
masking_policies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
283
319
|
name: Optional[pulumi.Input[str]] = None,
|
|
284
320
|
schema: Optional[pulumi.Input[str]] = None,
|
|
285
321
|
__props__=None):
|
|
@@ -296,10 +332,13 @@ class Tag(pulumi.CustomResource):
|
|
|
296
332
|
if database is None and not opts.urn:
|
|
297
333
|
raise TypeError("Missing required property 'database'")
|
|
298
334
|
__props__.__dict__["database"] = database
|
|
335
|
+
__props__.__dict__["masking_policies"] = masking_policies
|
|
299
336
|
__props__.__dict__["name"] = name
|
|
300
337
|
if schema is None and not opts.urn:
|
|
301
338
|
raise TypeError("Missing required property 'schema'")
|
|
302
339
|
__props__.__dict__["schema"] = schema
|
|
340
|
+
__props__.__dict__["fully_qualified_name"] = None
|
|
341
|
+
__props__.__dict__["show_outputs"] = None
|
|
303
342
|
super(Tag, __self__).__init__(
|
|
304
343
|
'snowflake:index/tag:Tag',
|
|
305
344
|
resource_name,
|
|
@@ -313,8 +352,11 @@ class Tag(pulumi.CustomResource):
|
|
|
313
352
|
allowed_values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
314
353
|
comment: Optional[pulumi.Input[str]] = None,
|
|
315
354
|
database: Optional[pulumi.Input[str]] = None,
|
|
355
|
+
fully_qualified_name: Optional[pulumi.Input[str]] = None,
|
|
356
|
+
masking_policies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
316
357
|
name: Optional[pulumi.Input[str]] = None,
|
|
317
|
-
schema: Optional[pulumi.Input[str]] = None
|
|
358
|
+
schema: Optional[pulumi.Input[str]] = None,
|
|
359
|
+
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TagShowOutputArgs', 'TagShowOutputArgsDict']]]]] = None) -> 'Tag':
|
|
318
360
|
"""
|
|
319
361
|
Get an existing Tag resource's state with the given name, id, and optional extra
|
|
320
362
|
properties used to qualify the lookup.
|
|
@@ -322,11 +364,14 @@ class Tag(pulumi.CustomResource):
|
|
|
322
364
|
:param str resource_name: The unique name of the resulting resource.
|
|
323
365
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
324
366
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
325
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values:
|
|
367
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Set of allowed values for the tag.
|
|
326
368
|
:param pulumi.Input[str] comment: Specifies a comment for the tag.
|
|
327
|
-
:param pulumi.Input[str] database: The database in which to create the tag.
|
|
328
|
-
:param pulumi.Input[str]
|
|
329
|
-
:param pulumi.Input[str]
|
|
369
|
+
:param pulumi.Input[str] database: The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
370
|
+
: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).
|
|
371
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] masking_policies: Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them. For more information about this resource, see docs.
|
|
372
|
+
:param pulumi.Input[str] name: Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
373
|
+
:param pulumi.Input[str] schema: The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
374
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['TagShowOutputArgs', 'TagShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW TAGS` for the given tag.
|
|
330
375
|
"""
|
|
331
376
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
332
377
|
|
|
@@ -335,15 +380,18 @@ class Tag(pulumi.CustomResource):
|
|
|
335
380
|
__props__.__dict__["allowed_values"] = allowed_values
|
|
336
381
|
__props__.__dict__["comment"] = comment
|
|
337
382
|
__props__.__dict__["database"] = database
|
|
383
|
+
__props__.__dict__["fully_qualified_name"] = fully_qualified_name
|
|
384
|
+
__props__.__dict__["masking_policies"] = masking_policies
|
|
338
385
|
__props__.__dict__["name"] = name
|
|
339
386
|
__props__.__dict__["schema"] = schema
|
|
387
|
+
__props__.__dict__["show_outputs"] = show_outputs
|
|
340
388
|
return Tag(resource_name, opts=opts, __props__=__props__)
|
|
341
389
|
|
|
342
390
|
@property
|
|
343
391
|
@pulumi.getter(name="allowedValues")
|
|
344
392
|
def allowed_values(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
345
393
|
"""
|
|
346
|
-
|
|
394
|
+
Set of allowed values for the tag.
|
|
347
395
|
"""
|
|
348
396
|
return pulumi.get(self, "allowed_values")
|
|
349
397
|
|
|
@@ -359,15 +407,31 @@ class Tag(pulumi.CustomResource):
|
|
|
359
407
|
@pulumi.getter
|
|
360
408
|
def database(self) -> pulumi.Output[str]:
|
|
361
409
|
"""
|
|
362
|
-
The database in which to create the tag.
|
|
410
|
+
The database in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
363
411
|
"""
|
|
364
412
|
return pulumi.get(self, "database")
|
|
365
413
|
|
|
414
|
+
@property
|
|
415
|
+
@pulumi.getter(name="fullyQualifiedName")
|
|
416
|
+
def fully_qualified_name(self) -> pulumi.Output[str]:
|
|
417
|
+
"""
|
|
418
|
+
Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
419
|
+
"""
|
|
420
|
+
return pulumi.get(self, "fully_qualified_name")
|
|
421
|
+
|
|
422
|
+
@property
|
|
423
|
+
@pulumi.getter(name="maskingPolicies")
|
|
424
|
+
def masking_policies(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
425
|
+
"""
|
|
426
|
+
Set of masking policies for the tag. A tag can support one masking policy for each data type. If masking policies are assigned to the tag, before dropping the tag, the provider automatically unassigns them. For more information about this resource, see docs.
|
|
427
|
+
"""
|
|
428
|
+
return pulumi.get(self, "masking_policies")
|
|
429
|
+
|
|
366
430
|
@property
|
|
367
431
|
@pulumi.getter
|
|
368
432
|
def name(self) -> pulumi.Output[str]:
|
|
369
433
|
"""
|
|
370
|
-
Specifies the identifier for the tag; must be unique for the database in which the tag is created.
|
|
434
|
+
Specifies the identifier for the tag; must be unique for the database in which the tag is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
371
435
|
"""
|
|
372
436
|
return pulumi.get(self, "name")
|
|
373
437
|
|
|
@@ -375,7 +439,15 @@ class Tag(pulumi.CustomResource):
|
|
|
375
439
|
@pulumi.getter
|
|
376
440
|
def schema(self) -> pulumi.Output[str]:
|
|
377
441
|
"""
|
|
378
|
-
The schema in which to create the tag.
|
|
442
|
+
The schema in which to create the tag. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
379
443
|
"""
|
|
380
444
|
return pulumi.get(self, "schema")
|
|
381
445
|
|
|
446
|
+
@property
|
|
447
|
+
@pulumi.getter(name="showOutputs")
|
|
448
|
+
def show_outputs(self) -> pulumi.Output[Sequence['outputs.TagShowOutput']]:
|
|
449
|
+
"""
|
|
450
|
+
Outputs the result of `SHOW TAGS` for the given tag.
|
|
451
|
+
"""
|
|
452
|
+
return pulumi.get(self, "show_outputs")
|
|
453
|
+
|