pulumi-snowflake 0.50.3a1710160126__py3-none-any.whl → 1.2.0a1736849992__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 +52857 -1665
- pulumi_snowflake/_utilities.py +41 -5
- pulumi_snowflake/account.py +188 -218
- pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
- pulumi_snowflake/account_parameter.py +21 -48
- pulumi_snowflake/account_password_policy_attachment.py +7 -32
- pulumi_snowflake/account_role.py +250 -0
- pulumi_snowflake/alert.py +38 -47
- 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 +33 -52
- 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 -213
- pulumi_snowflake/database_role.py +81 -44
- pulumi_snowflake/dynamic_table.py +42 -49
- pulumi_snowflake/email_notification_integration.py +33 -28
- pulumi_snowflake/{unsafe_execute.py → execute.py} +36 -39
- pulumi_snowflake/external_function.py +54 -75
- pulumi_snowflake/external_oauth_integration.py +593 -542
- pulumi_snowflake/external_table.py +67 -90
- pulumi_snowflake/external_volume.py +382 -0
- pulumi_snowflake/failover_group.py +57 -98
- pulumi_snowflake/file_format.py +33 -28
- 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 -9
- pulumi_snowflake/get_connections.py +109 -0
- pulumi_snowflake/get_cortex_search_services.py +216 -0
- pulumi_snowflake/get_current_account.py +24 -13
- pulumi_snowflake/get_current_role.py +14 -7
- pulumi_snowflake/get_database.py +25 -9
- pulumi_snowflake/get_database_role.py +162 -0
- pulumi_snowflake/get_database_roles.py +79 -47
- pulumi_snowflake/get_databases.py +91 -73
- pulumi_snowflake/get_dynamic_tables.py +36 -19
- pulumi_snowflake/get_external_functions.py +28 -9
- pulumi_snowflake/get_external_tables.py +28 -9
- pulumi_snowflake/get_failover_groups.py +18 -7
- pulumi_snowflake/get_file_formats.py +28 -9
- pulumi_snowflake/get_functions.py +28 -9
- pulumi_snowflake/get_grants.py +207 -84
- pulumi_snowflake/get_masking_policies.py +91 -51
- pulumi_snowflake/get_materialized_views.py +28 -9
- pulumi_snowflake/get_network_policies.py +129 -0
- pulumi_snowflake/get_parameters.py +38 -15
- pulumi_snowflake/get_pipes.py +28 -9
- pulumi_snowflake/get_procedures.py +28 -9
- pulumi_snowflake/get_resource_monitors.py +37 -24
- pulumi_snowflake/get_row_access_policies.py +91 -51
- pulumi_snowflake/get_schemas.py +145 -41
- pulumi_snowflake/get_secrets.py +200 -0
- pulumi_snowflake/get_security_integrations.py +129 -0
- pulumi_snowflake/get_sequences.py +28 -9
- pulumi_snowflake/get_shares.py +18 -9
- pulumi_snowflake/get_stages.py +28 -9
- pulumi_snowflake/get_storage_integrations.py +16 -9
- pulumi_snowflake/get_streamlits.py +170 -0
- pulumi_snowflake/get_streams.py +114 -54
- pulumi_snowflake/get_system_generate_scim_access_token.py +18 -9
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +32 -7
- pulumi_snowflake/get_system_get_private_link_config.py +120 -5
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +15 -7
- pulumi_snowflake/get_tables.py +28 -9
- pulumi_snowflake/get_tags.py +130 -0
- pulumi_snowflake/get_tasks.py +134 -54
- pulumi_snowflake/get_users.py +116 -44
- pulumi_snowflake/get_views.py +114 -54
- pulumi_snowflake/get_warehouses.py +79 -26
- pulumi_snowflake/grant_account_role.py +28 -75
- pulumi_snowflake/grant_application_role.py +257 -0
- pulumi_snowflake/grant_database_role.py +35 -94
- 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 -383
- pulumi_snowflake/grant_privileges_to_share.py +96 -44
- pulumi_snowflake/legacy_service_user.py +3670 -0
- pulumi_snowflake/managed_account.py +40 -11
- pulumi_snowflake/masking_policy.py +213 -310
- pulumi_snowflake/materialized_view.py +62 -71
- pulumi_snowflake/network_policy.py +217 -61
- pulumi_snowflake/network_policy_attachment.py +5 -34
- pulumi_snowflake/network_rule.py +473 -0
- pulumi_snowflake/notification_integration.py +49 -84
- pulumi_snowflake/oauth_integration_for_custom_clients.py +906 -0
- pulumi_snowflake/{oauth_integration.py → oauth_integration_for_partner_applications.py} +191 -192
- pulumi_snowflake/object_parameter.py +10 -101
- pulumi_snowflake/outputs.py +49200 -2928
- pulumi_snowflake/password_policy.py +41 -28
- pulumi_snowflake/pipe.py +33 -4
- 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 -327
- pulumi_snowflake/row_access_policy.py +200 -149
- pulumi_snowflake/{saml_integration.py → saml2_integration.py} +356 -299
- pulumi_snowflake/schema.py +949 -178
- pulumi_snowflake/scim_integration.py +286 -109
- 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 -34
- pulumi_snowflake/service_user.py +3585 -0
- pulumi_snowflake/share.py +33 -28
- pulumi_snowflake/shared_database.py +939 -0
- pulumi_snowflake/stage.py +95 -84
- pulumi_snowflake/storage_integration.py +46 -4
- 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 -97
- pulumi_snowflake/table_column_masking_policy_application.py +7 -14
- pulumi_snowflake/table_constraint.py +29 -172
- pulumi_snowflake/tag.py +142 -74
- pulumi_snowflake/tag_association.py +40 -215
- pulumi_snowflake/task.py +3048 -418
- pulumi_snowflake/user.py +3351 -384
- pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
- pulumi_snowflake/user_password_policy_attachment.py +5 -4
- pulumi_snowflake/user_public_keys.py +5 -0
- pulumi_snowflake/view.py +466 -215
- pulumi_snowflake/warehouse.py +184 -168
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736849992.dist-info}/METADATA +7 -6
- pulumi_snowflake-1.2.0a1736849992.dist-info/RECORD +148 -0
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736849992.dist-info}/WHEEL +1 -1
- pulumi_snowflake/account_grant.py +0 -343
- pulumi_snowflake/database_grant.py +0 -495
- pulumi_snowflake/external_table_grant.py +0 -690
- pulumi_snowflake/failover_group_grant.py +0 -388
- pulumi_snowflake/file_format_grant.py +0 -635
- pulumi_snowflake/function.py +0 -872
- pulumi_snowflake/function_grant.py +0 -745
- pulumi_snowflake/get_role.py +0 -121
- pulumi_snowflake/get_roles.py +0 -120
- pulumi_snowflake/grant_privileges_to_role.py +0 -825
- pulumi_snowflake/integration_grant.py +0 -440
- pulumi_snowflake/masking_policy_grant.py +0 -542
- pulumi_snowflake/materialized_view_grant.py +0 -689
- pulumi_snowflake/pipe_grant.py +0 -587
- pulumi_snowflake/procedure.py +0 -887
- pulumi_snowflake/procedure_grant.py +0 -745
- pulumi_snowflake/resource_monitor_grant.py +0 -387
- pulumi_snowflake/role.py +0 -273
- pulumi_snowflake/role_grants.py +0 -352
- pulumi_snowflake/role_ownership_grant.py +0 -338
- pulumi_snowflake/row_access_policy_grant.py +0 -540
- pulumi_snowflake/schema_grant.py +0 -647
- pulumi_snowflake/sequence_grant.py +0 -635
- pulumi_snowflake/session_parameter.py +0 -332
- pulumi_snowflake/stage_grant.py +0 -635
- pulumi_snowflake/stream.py +0 -614
- pulumi_snowflake/stream_grant.py +0 -635
- pulumi_snowflake/table_grant.py +0 -677
- pulumi_snowflake/tag_grant.py +0 -532
- pulumi_snowflake/tag_masking_policy_association.py +0 -210
- pulumi_snowflake/task_grant.py +0 -635
- pulumi_snowflake/user_grant.py +0 -394
- pulumi_snowflake/user_ownership_grant.py +0 -286
- pulumi_snowflake/view_grant.py +0 -705
- pulumi_snowflake/warehouse_grant.py +0 -440
- pulumi_snowflake-0.50.3a1710160126.dist-info/RECORD +0 -136
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736849992.dist-info}/top_level.txt +0 -0
|
@@ -1,210 +0,0 @@
|
|
|
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 pulumi
|
|
8
|
-
import pulumi.runtime
|
|
9
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
-
from . import _utilities
|
|
11
|
-
|
|
12
|
-
__all__ = ['TagMaskingPolicyAssociationArgs', 'TagMaskingPolicyAssociation']
|
|
13
|
-
|
|
14
|
-
@pulumi.input_type
|
|
15
|
-
class TagMaskingPolicyAssociationArgs:
|
|
16
|
-
def __init__(__self__, *,
|
|
17
|
-
masking_policy_id: pulumi.Input[str],
|
|
18
|
-
tag_id: pulumi.Input[str]):
|
|
19
|
-
"""
|
|
20
|
-
The set of arguments for constructing a TagMaskingPolicyAssociation resource.
|
|
21
|
-
:param pulumi.Input[str] masking_policy_id: The resource id of the masking policy
|
|
22
|
-
: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)
|
|
23
|
-
"""
|
|
24
|
-
pulumi.set(__self__, "masking_policy_id", masking_policy_id)
|
|
25
|
-
pulumi.set(__self__, "tag_id", tag_id)
|
|
26
|
-
|
|
27
|
-
@property
|
|
28
|
-
@pulumi.getter(name="maskingPolicyId")
|
|
29
|
-
def masking_policy_id(self) -> pulumi.Input[str]:
|
|
30
|
-
"""
|
|
31
|
-
The resource id of the masking policy
|
|
32
|
-
"""
|
|
33
|
-
return pulumi.get(self, "masking_policy_id")
|
|
34
|
-
|
|
35
|
-
@masking_policy_id.setter
|
|
36
|
-
def masking_policy_id(self, value: pulumi.Input[str]):
|
|
37
|
-
pulumi.set(self, "masking_policy_id", value)
|
|
38
|
-
|
|
39
|
-
@property
|
|
40
|
-
@pulumi.getter(name="tagId")
|
|
41
|
-
def tag_id(self) -> pulumi.Input[str]:
|
|
42
|
-
"""
|
|
43
|
-
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)
|
|
44
|
-
"""
|
|
45
|
-
return pulumi.get(self, "tag_id")
|
|
46
|
-
|
|
47
|
-
@tag_id.setter
|
|
48
|
-
def tag_id(self, value: pulumi.Input[str]):
|
|
49
|
-
pulumi.set(self, "tag_id", value)
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
@pulumi.input_type
|
|
53
|
-
class _TagMaskingPolicyAssociationState:
|
|
54
|
-
def __init__(__self__, *,
|
|
55
|
-
masking_policy_id: Optional[pulumi.Input[str]] = None,
|
|
56
|
-
tag_id: Optional[pulumi.Input[str]] = None):
|
|
57
|
-
"""
|
|
58
|
-
Input properties used for looking up and filtering TagMaskingPolicyAssociation resources.
|
|
59
|
-
:param pulumi.Input[str] masking_policy_id: The resource id of the masking policy
|
|
60
|
-
: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)
|
|
61
|
-
"""
|
|
62
|
-
if masking_policy_id is not None:
|
|
63
|
-
pulumi.set(__self__, "masking_policy_id", masking_policy_id)
|
|
64
|
-
if tag_id is not None:
|
|
65
|
-
pulumi.set(__self__, "tag_id", tag_id)
|
|
66
|
-
|
|
67
|
-
@property
|
|
68
|
-
@pulumi.getter(name="maskingPolicyId")
|
|
69
|
-
def masking_policy_id(self) -> Optional[pulumi.Input[str]]:
|
|
70
|
-
"""
|
|
71
|
-
The resource id of the masking policy
|
|
72
|
-
"""
|
|
73
|
-
return pulumi.get(self, "masking_policy_id")
|
|
74
|
-
|
|
75
|
-
@masking_policy_id.setter
|
|
76
|
-
def masking_policy_id(self, value: Optional[pulumi.Input[str]]):
|
|
77
|
-
pulumi.set(self, "masking_policy_id", value)
|
|
78
|
-
|
|
79
|
-
@property
|
|
80
|
-
@pulumi.getter(name="tagId")
|
|
81
|
-
def tag_id(self) -> Optional[pulumi.Input[str]]:
|
|
82
|
-
"""
|
|
83
|
-
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)
|
|
84
|
-
"""
|
|
85
|
-
return pulumi.get(self, "tag_id")
|
|
86
|
-
|
|
87
|
-
@tag_id.setter
|
|
88
|
-
def tag_id(self, value: Optional[pulumi.Input[str]]):
|
|
89
|
-
pulumi.set(self, "tag_id", value)
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
class TagMaskingPolicyAssociation(pulumi.CustomResource):
|
|
93
|
-
@overload
|
|
94
|
-
def __init__(__self__,
|
|
95
|
-
resource_name: str,
|
|
96
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
|
97
|
-
masking_policy_id: Optional[pulumi.Input[str]] = None,
|
|
98
|
-
tag_id: Optional[pulumi.Input[str]] = None,
|
|
99
|
-
__props__=None):
|
|
100
|
-
"""
|
|
101
|
-
Attach a masking policy to a tag. Requires a current warehouse to be set. Either with SNOWFLAKE_WAREHOUSE env variable or in current session. If no warehouse is provided, a temporary warehouse will be created.
|
|
102
|
-
|
|
103
|
-
## Import
|
|
104
|
-
|
|
105
|
-
format is tag database name | tag schema name | tag name | masking policy database | masking policy schema | masking policy name
|
|
106
|
-
|
|
107
|
-
```sh
|
|
108
|
-
$ pulumi import snowflake:index/tagMaskingPolicyAssociation:TagMaskingPolicyAssociation example 'tag_db|tag_schema|tag_name|mp_db|mp_schema|mp_name'
|
|
109
|
-
```
|
|
110
|
-
|
|
111
|
-
:param str resource_name: The name of the resource.
|
|
112
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
113
|
-
:param pulumi.Input[str] masking_policy_id: The resource id of the masking policy
|
|
114
|
-
: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)
|
|
115
|
-
"""
|
|
116
|
-
...
|
|
117
|
-
@overload
|
|
118
|
-
def __init__(__self__,
|
|
119
|
-
resource_name: str,
|
|
120
|
-
args: TagMaskingPolicyAssociationArgs,
|
|
121
|
-
opts: Optional[pulumi.ResourceOptions] = None):
|
|
122
|
-
"""
|
|
123
|
-
Attach a masking policy to a tag. Requires a current warehouse to be set. Either with SNOWFLAKE_WAREHOUSE env variable or in current session. If no warehouse is provided, a temporary warehouse will be created.
|
|
124
|
-
|
|
125
|
-
## Import
|
|
126
|
-
|
|
127
|
-
format is tag database name | tag schema name | tag name | masking policy database | masking policy schema | masking policy name
|
|
128
|
-
|
|
129
|
-
```sh
|
|
130
|
-
$ pulumi import snowflake:index/tagMaskingPolicyAssociation:TagMaskingPolicyAssociation example 'tag_db|tag_schema|tag_name|mp_db|mp_schema|mp_name'
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
:param str resource_name: The name of the resource.
|
|
134
|
-
:param TagMaskingPolicyAssociationArgs args: The arguments to use to populate this resource's properties.
|
|
135
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
136
|
-
"""
|
|
137
|
-
...
|
|
138
|
-
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
139
|
-
resource_args, opts = _utilities.get_resource_args_opts(TagMaskingPolicyAssociationArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
140
|
-
if resource_args is not None:
|
|
141
|
-
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
142
|
-
else:
|
|
143
|
-
__self__._internal_init(resource_name, *args, **kwargs)
|
|
144
|
-
|
|
145
|
-
def _internal_init(__self__,
|
|
146
|
-
resource_name: str,
|
|
147
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
|
148
|
-
masking_policy_id: Optional[pulumi.Input[str]] = None,
|
|
149
|
-
tag_id: Optional[pulumi.Input[str]] = None,
|
|
150
|
-
__props__=None):
|
|
151
|
-
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
152
|
-
if not isinstance(opts, pulumi.ResourceOptions):
|
|
153
|
-
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
154
|
-
if opts.id is None:
|
|
155
|
-
if __props__ is not None:
|
|
156
|
-
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
157
|
-
__props__ = TagMaskingPolicyAssociationArgs.__new__(TagMaskingPolicyAssociationArgs)
|
|
158
|
-
|
|
159
|
-
if masking_policy_id is None and not opts.urn:
|
|
160
|
-
raise TypeError("Missing required property 'masking_policy_id'")
|
|
161
|
-
__props__.__dict__["masking_policy_id"] = masking_policy_id
|
|
162
|
-
if tag_id is None and not opts.urn:
|
|
163
|
-
raise TypeError("Missing required property 'tag_id'")
|
|
164
|
-
__props__.__dict__["tag_id"] = tag_id
|
|
165
|
-
super(TagMaskingPolicyAssociation, __self__).__init__(
|
|
166
|
-
'snowflake:index/tagMaskingPolicyAssociation:TagMaskingPolicyAssociation',
|
|
167
|
-
resource_name,
|
|
168
|
-
__props__,
|
|
169
|
-
opts)
|
|
170
|
-
|
|
171
|
-
@staticmethod
|
|
172
|
-
def get(resource_name: str,
|
|
173
|
-
id: pulumi.Input[str],
|
|
174
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
|
175
|
-
masking_policy_id: Optional[pulumi.Input[str]] = None,
|
|
176
|
-
tag_id: Optional[pulumi.Input[str]] = None) -> 'TagMaskingPolicyAssociation':
|
|
177
|
-
"""
|
|
178
|
-
Get an existing TagMaskingPolicyAssociation resource's state with the given name, id, and optional extra
|
|
179
|
-
properties used to qualify the lookup.
|
|
180
|
-
|
|
181
|
-
:param str resource_name: The unique name of the resulting resource.
|
|
182
|
-
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
183
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
184
|
-
:param pulumi.Input[str] masking_policy_id: The resource id of the masking policy
|
|
185
|
-
: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)
|
|
186
|
-
"""
|
|
187
|
-
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
188
|
-
|
|
189
|
-
__props__ = _TagMaskingPolicyAssociationState.__new__(_TagMaskingPolicyAssociationState)
|
|
190
|
-
|
|
191
|
-
__props__.__dict__["masking_policy_id"] = masking_policy_id
|
|
192
|
-
__props__.__dict__["tag_id"] = tag_id
|
|
193
|
-
return TagMaskingPolicyAssociation(resource_name, opts=opts, __props__=__props__)
|
|
194
|
-
|
|
195
|
-
@property
|
|
196
|
-
@pulumi.getter(name="maskingPolicyId")
|
|
197
|
-
def masking_policy_id(self) -> pulumi.Output[str]:
|
|
198
|
-
"""
|
|
199
|
-
The resource id of the masking policy
|
|
200
|
-
"""
|
|
201
|
-
return pulumi.get(self, "masking_policy_id")
|
|
202
|
-
|
|
203
|
-
@property
|
|
204
|
-
@pulumi.getter(name="tagId")
|
|
205
|
-
def tag_id(self) -> pulumi.Output[str]:
|
|
206
|
-
"""
|
|
207
|
-
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)
|
|
208
|
-
"""
|
|
209
|
-
return pulumi.get(self, "tag_id")
|
|
210
|
-
|