pulumi-snowflake 1.1.4a1742960027__py3-none-any.whl → 1.2.0__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.

Files changed (147) hide show
  1. pulumi_snowflake/__init__.py +1 -0
  2. pulumi_snowflake/_inputs.py +12306 -12305
  3. pulumi_snowflake/account.py +189 -188
  4. pulumi_snowflake/account_authentication_policy_attachment.py +15 -14
  5. pulumi_snowflake/account_parameter.py +29 -28
  6. pulumi_snowflake/account_password_policy_attachment.py +15 -14
  7. pulumi_snowflake/account_role.py +32 -31
  8. pulumi_snowflake/alert.py +123 -122
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +161 -160
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +147 -146
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +157 -156
  12. pulumi_snowflake/api_integration.py +218 -217
  13. pulumi_snowflake/authentication_policy.py +137 -136
  14. pulumi_snowflake/config/__init__.py +1 -0
  15. pulumi_snowflake/config/__init__.pyi +1 -0
  16. pulumi_snowflake/config/outputs.py +16 -15
  17. pulumi_snowflake/config/vars.py +1 -0
  18. pulumi_snowflake/cortex_search_service.py +141 -140
  19. pulumi_snowflake/database.py +288 -287
  20. pulumi_snowflake/database_role.py +50 -49
  21. pulumi_snowflake/dynamic_table.py +227 -226
  22. pulumi_snowflake/email_notification_integration.py +56 -55
  23. pulumi_snowflake/execute.py +50 -49
  24. pulumi_snowflake/external_function.py +237 -236
  25. pulumi_snowflake/external_oauth_integration.py +232 -231
  26. pulumi_snowflake/external_table.py +206 -205
  27. pulumi_snowflake/external_volume.py +59 -54
  28. pulumi_snowflake/failover_group.py +109 -108
  29. pulumi_snowflake/file_format.py +512 -511
  30. pulumi_snowflake/function_java.py +255 -254
  31. pulumi_snowflake/function_javascript.py +199 -198
  32. pulumi_snowflake/function_python.py +272 -271
  33. pulumi_snowflake/function_scala.py +255 -254
  34. pulumi_snowflake/function_sql.py +185 -184
  35. pulumi_snowflake/get_account_roles.py +12 -11
  36. pulumi_snowflake/get_accounts.py +12 -11
  37. pulumi_snowflake/get_alerts.py +23 -18
  38. pulumi_snowflake/get_connections.py +7 -6
  39. pulumi_snowflake/get_cortex_search_services.py +18 -13
  40. pulumi_snowflake/get_current_account.py +11 -6
  41. pulumi_snowflake/get_current_role.py +9 -4
  42. pulumi_snowflake/get_database.py +21 -16
  43. pulumi_snowflake/get_database_role.py +20 -15
  44. pulumi_snowflake/get_database_roles.py +12 -11
  45. pulumi_snowflake/get_databases.py +24 -23
  46. pulumi_snowflake/get_dynamic_tables.py +13 -8
  47. pulumi_snowflake/get_external_functions.py +18 -13
  48. pulumi_snowflake/get_external_tables.py +18 -13
  49. pulumi_snowflake/get_failover_groups.py +13 -8
  50. pulumi_snowflake/get_file_formats.py +18 -13
  51. pulumi_snowflake/get_functions.py +18 -13
  52. pulumi_snowflake/get_grants.py +6 -1
  53. pulumi_snowflake/get_masking_policies.py +13 -12
  54. pulumi_snowflake/get_materialized_views.py +18 -13
  55. pulumi_snowflake/get_network_policies.py +13 -12
  56. pulumi_snowflake/get_parameters.py +34 -29
  57. pulumi_snowflake/get_pipes.py +18 -13
  58. pulumi_snowflake/get_procedures.py +18 -13
  59. pulumi_snowflake/get_resource_monitors.py +7 -6
  60. pulumi_snowflake/get_row_access_policies.py +13 -12
  61. pulumi_snowflake/get_schemas.py +24 -23
  62. pulumi_snowflake/get_secrets.py +17 -12
  63. pulumi_snowflake/get_security_integrations.py +13 -12
  64. pulumi_snowflake/get_sequences.py +18 -13
  65. pulumi_snowflake/get_shares.py +13 -8
  66. pulumi_snowflake/get_stages.py +18 -13
  67. pulumi_snowflake/get_storage_integrations.py +8 -3
  68. pulumi_snowflake/get_streamlits.py +13 -12
  69. pulumi_snowflake/get_streams.py +18 -17
  70. pulumi_snowflake/get_system_generate_scim_access_token.py +14 -9
  71. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +12 -7
  72. pulumi_snowflake/get_system_get_private_link_config.py +17 -12
  73. pulumi_snowflake/get_system_get_snowflake_platform_info.py +10 -5
  74. pulumi_snowflake/get_tables.py +18 -13
  75. pulumi_snowflake/get_tags.py +7 -6
  76. pulumi_snowflake/get_tasks.py +23 -22
  77. pulumi_snowflake/get_users.py +24 -23
  78. pulumi_snowflake/get_views.py +18 -17
  79. pulumi_snowflake/get_warehouses.py +19 -18
  80. pulumi_snowflake/grant_account_role.py +43 -42
  81. pulumi_snowflake/grant_application_role.py +43 -42
  82. pulumi_snowflake/grant_database_role.py +57 -56
  83. pulumi_snowflake/grant_ownership.py +43 -42
  84. pulumi_snowflake/grant_privileges_to_account_role.py +107 -106
  85. pulumi_snowflake/grant_privileges_to_database_role.py +104 -103
  86. pulumi_snowflake/grant_privileges_to_share.py +127 -126
  87. pulumi_snowflake/legacy_service_user.py +1048 -1047
  88. pulumi_snowflake/managed_account.py +116 -115
  89. pulumi_snowflake/masking_policy.py +109 -108
  90. pulumi_snowflake/materialized_view.py +126 -125
  91. pulumi_snowflake/network_policy.py +92 -91
  92. pulumi_snowflake/network_policy_attachment.py +46 -45
  93. pulumi_snowflake/network_rule.py +106 -105
  94. pulumi_snowflake/notification_integration.py +254 -240
  95. pulumi_snowflake/oauth_integration_for_custom_clients.py +225 -224
  96. pulumi_snowflake/oauth_integration_for_partner_applications.py +143 -142
  97. pulumi_snowflake/object_parameter.py +60 -59
  98. pulumi_snowflake/outputs.py +9282 -9281
  99. pulumi_snowflake/password_policy.py +291 -286
  100. pulumi_snowflake/pipe.py +151 -150
  101. pulumi_snowflake/primary_connection.py +55 -54
  102. pulumi_snowflake/procedure_java.py +273 -272
  103. pulumi_snowflake/procedure_javascript.py +203 -202
  104. pulumi_snowflake/procedure_python.py +273 -272
  105. pulumi_snowflake/procedure_scala.py +273 -272
  106. pulumi_snowflake/procedure_sql.py +203 -202
  107. pulumi_snowflake/provider.py +303 -302
  108. pulumi_snowflake/pulumi-plugin.json +1 -1
  109. pulumi_snowflake/resource_monitor.py +134 -133
  110. pulumi_snowflake/row_access_policy.py +78 -77
  111. pulumi_snowflake/saml2_integration.py +258 -257
  112. pulumi_snowflake/schema.py +322 -321
  113. pulumi_snowflake/scim_integration.py +109 -108
  114. pulumi_snowflake/secondary_connection.py +57 -56
  115. pulumi_snowflake/secondary_database.py +288 -287
  116. pulumi_snowflake/secret_with_authorization_code_grant.py +109 -108
  117. pulumi_snowflake/secret_with_basic_authentication.py +95 -94
  118. pulumi_snowflake/secret_with_client_credentials.py +99 -98
  119. pulumi_snowflake/secret_with_generic_string.py +81 -80
  120. pulumi_snowflake/sequence.py +108 -107
  121. pulumi_snowflake/service_user.py +1021 -1020
  122. pulumi_snowflake/share.py +50 -49
  123. pulumi_snowflake/shared_database.py +246 -245
  124. pulumi_snowflake/stage.py +190 -189
  125. pulumi_snowflake/storage_integration.py +231 -165
  126. pulumi_snowflake/stream_on_directory_table.py +100 -99
  127. pulumi_snowflake/stream_on_external_table.py +117 -116
  128. pulumi_snowflake/stream_on_table.py +127 -126
  129. pulumi_snowflake/stream_on_view.py +127 -126
  130. pulumi_snowflake/streamlit.py +148 -147
  131. pulumi_snowflake/table.py +119 -118
  132. pulumi_snowflake/table_column_masking_policy_application.py +43 -42
  133. pulumi_snowflake/table_constraint.py +173 -172
  134. pulumi_snowflake/tag.py +92 -91
  135. pulumi_snowflake/tag_association.py +74 -73
  136. pulumi_snowflake/task.py +1005 -1004
  137. pulumi_snowflake/user.py +1110 -1109
  138. pulumi_snowflake/user_authentication_policy_attachment.py +29 -28
  139. pulumi_snowflake/user_password_policy_attachment.py +29 -28
  140. pulumi_snowflake/user_public_keys.py +43 -42
  141. pulumi_snowflake/view.py +142 -141
  142. pulumi_snowflake/warehouse.py +244 -243
  143. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/METADATA +1 -1
  144. pulumi_snowflake-1.2.0.dist-info/RECORD +148 -0
  145. pulumi_snowflake-1.1.4a1742960027.dist-info/RECORD +0 -148
  146. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/WHEEL +0 -0
  147. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -19,18 +20,18 @@ __all__ = ['TagAssociationArgs', 'TagAssociation']
19
20
  @pulumi.input_type
20
21
  class TagAssociationArgs:
21
22
  def __init__(__self__, *,
22
- object_identifiers: pulumi.Input[Sequence[pulumi.Input[str]]],
23
- object_type: pulumi.Input[str],
24
- tag_id: pulumi.Input[str],
25
- tag_value: pulumi.Input[str],
26
- skip_validation: Optional[pulumi.Input[bool]] = None):
23
+ object_identifiers: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
24
+ object_type: pulumi.Input[builtins.str],
25
+ tag_id: pulumi.Input[builtins.str],
26
+ tag_value: pulumi.Input[builtins.str],
27
+ skip_validation: Optional[pulumi.Input[builtins.bool]] = None):
27
28
  """
28
29
  The set of arguments for constructing a TagAssociation resource.
29
- :param pulumi.Input[Sequence[pulumi.Input[str]]] object_identifiers: Specifies the object identifiers for the tag association.
30
- :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].
31
- :param pulumi.Input[str] tag_id: Specifies the identifier for the tag.
32
- :param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
33
- :param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
30
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] object_identifiers: Specifies the object identifiers for the tag association.
31
+ :param pulumi.Input[builtins.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].
32
+ :param pulumi.Input[builtins.str] tag_id: Specifies the identifier for the tag.
33
+ :param pulumi.Input[builtins.str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
34
+ :param pulumi.Input[builtins.bool] skip_validation: (Default: `true`) If true, skips validation of the tag association.
34
35
  """
35
36
  pulumi.set(__self__, "object_identifiers", object_identifiers)
36
37
  pulumi.set(__self__, "object_type", object_type)
@@ -41,80 +42,80 @@ class TagAssociationArgs:
41
42
 
42
43
  @property
43
44
  @pulumi.getter(name="objectIdentifiers")
44
- def object_identifiers(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
45
+ def object_identifiers(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
45
46
  """
46
47
  Specifies the object identifiers for the tag association.
47
48
  """
48
49
  return pulumi.get(self, "object_identifiers")
49
50
 
50
51
  @object_identifiers.setter
51
- def object_identifiers(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
52
+ def object_identifiers(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
52
53
  pulumi.set(self, "object_identifiers", value)
53
54
 
54
55
  @property
55
56
  @pulumi.getter(name="objectType")
56
- def object_type(self) -> pulumi.Input[str]:
57
+ def object_type(self) -> pulumi.Input[builtins.str]:
57
58
  """
58
59
  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].
59
60
  """
60
61
  return pulumi.get(self, "object_type")
61
62
 
62
63
  @object_type.setter
63
- def object_type(self, value: pulumi.Input[str]):
64
+ def object_type(self, value: pulumi.Input[builtins.str]):
64
65
  pulumi.set(self, "object_type", value)
65
66
 
66
67
  @property
67
68
  @pulumi.getter(name="tagId")
68
- def tag_id(self) -> pulumi.Input[str]:
69
+ def tag_id(self) -> pulumi.Input[builtins.str]:
69
70
  """
70
71
  Specifies the identifier for the tag.
71
72
  """
72
73
  return pulumi.get(self, "tag_id")
73
74
 
74
75
  @tag_id.setter
75
- def tag_id(self, value: pulumi.Input[str]):
76
+ def tag_id(self, value: pulumi.Input[builtins.str]):
76
77
  pulumi.set(self, "tag_id", value)
77
78
 
78
79
  @property
79
80
  @pulumi.getter(name="tagValue")
80
- def tag_value(self) -> pulumi.Input[str]:
81
+ def tag_value(self) -> pulumi.Input[builtins.str]:
81
82
  """
82
83
  Specifies the value of the tag, (e.g. 'finance' or 'engineering')
83
84
  """
84
85
  return pulumi.get(self, "tag_value")
85
86
 
86
87
  @tag_value.setter
87
- def tag_value(self, value: pulumi.Input[str]):
88
+ def tag_value(self, value: pulumi.Input[builtins.str]):
88
89
  pulumi.set(self, "tag_value", value)
89
90
 
90
91
  @property
91
92
  @pulumi.getter(name="skipValidation")
92
- def skip_validation(self) -> Optional[pulumi.Input[bool]]:
93
+ def skip_validation(self) -> Optional[pulumi.Input[builtins.bool]]:
93
94
  """
94
- If true, skips validation of the tag association.
95
+ (Default: `true`) If true, skips validation of the tag association.
95
96
  """
96
97
  return pulumi.get(self, "skip_validation")
97
98
 
98
99
  @skip_validation.setter
99
- def skip_validation(self, value: Optional[pulumi.Input[bool]]):
100
+ def skip_validation(self, value: Optional[pulumi.Input[builtins.bool]]):
100
101
  pulumi.set(self, "skip_validation", value)
101
102
 
102
103
 
103
104
  @pulumi.input_type
104
105
  class _TagAssociationState:
105
106
  def __init__(__self__, *,
106
- object_identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
107
- object_type: Optional[pulumi.Input[str]] = None,
108
- skip_validation: Optional[pulumi.Input[bool]] = None,
109
- tag_id: Optional[pulumi.Input[str]] = None,
110
- tag_value: Optional[pulumi.Input[str]] = None):
107
+ object_identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
108
+ object_type: Optional[pulumi.Input[builtins.str]] = None,
109
+ skip_validation: Optional[pulumi.Input[builtins.bool]] = None,
110
+ tag_id: Optional[pulumi.Input[builtins.str]] = None,
111
+ tag_value: Optional[pulumi.Input[builtins.str]] = None):
111
112
  """
112
113
  Input properties used for looking up and filtering TagAssociation resources.
113
- :param pulumi.Input[Sequence[pulumi.Input[str]]] object_identifiers: Specifies the object identifiers for the tag association.
114
- :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].
115
- :param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
116
- :param pulumi.Input[str] tag_id: Specifies the identifier for the tag.
117
- :param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
114
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] object_identifiers: Specifies the object identifiers for the tag association.
115
+ :param pulumi.Input[builtins.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].
116
+ :param pulumi.Input[builtins.bool] skip_validation: (Default: `true`) If true, skips validation of the tag association.
117
+ :param pulumi.Input[builtins.str] tag_id: Specifies the identifier for the tag.
118
+ :param pulumi.Input[builtins.str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
118
119
  """
119
120
  if object_identifiers is not None:
120
121
  pulumi.set(__self__, "object_identifiers", object_identifiers)
@@ -129,62 +130,62 @@ class _TagAssociationState:
129
130
 
130
131
  @property
131
132
  @pulumi.getter(name="objectIdentifiers")
132
- def object_identifiers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
133
+ def object_identifiers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
133
134
  """
134
135
  Specifies the object identifiers for the tag association.
135
136
  """
136
137
  return pulumi.get(self, "object_identifiers")
137
138
 
138
139
  @object_identifiers.setter
139
- def object_identifiers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
140
+ def object_identifiers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
140
141
  pulumi.set(self, "object_identifiers", value)
141
142
 
142
143
  @property
143
144
  @pulumi.getter(name="objectType")
144
- def object_type(self) -> Optional[pulumi.Input[str]]:
145
+ def object_type(self) -> Optional[pulumi.Input[builtins.str]]:
145
146
  """
146
147
  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].
147
148
  """
148
149
  return pulumi.get(self, "object_type")
149
150
 
150
151
  @object_type.setter
151
- def object_type(self, value: Optional[pulumi.Input[str]]):
152
+ def object_type(self, value: Optional[pulumi.Input[builtins.str]]):
152
153
  pulumi.set(self, "object_type", value)
153
154
 
154
155
  @property
155
156
  @pulumi.getter(name="skipValidation")
156
- def skip_validation(self) -> Optional[pulumi.Input[bool]]:
157
+ def skip_validation(self) -> Optional[pulumi.Input[builtins.bool]]:
157
158
  """
158
- If true, skips validation of the tag association.
159
+ (Default: `true`) If true, skips validation of the tag association.
159
160
  """
160
161
  return pulumi.get(self, "skip_validation")
161
162
 
162
163
  @skip_validation.setter
163
- def skip_validation(self, value: Optional[pulumi.Input[bool]]):
164
+ def skip_validation(self, value: Optional[pulumi.Input[builtins.bool]]):
164
165
  pulumi.set(self, "skip_validation", value)
165
166
 
166
167
  @property
167
168
  @pulumi.getter(name="tagId")
168
- def tag_id(self) -> Optional[pulumi.Input[str]]:
169
+ def tag_id(self) -> Optional[pulumi.Input[builtins.str]]:
169
170
  """
170
171
  Specifies the identifier for the tag.
171
172
  """
172
173
  return pulumi.get(self, "tag_id")
173
174
 
174
175
  @tag_id.setter
175
- def tag_id(self, value: Optional[pulumi.Input[str]]):
176
+ def tag_id(self, value: Optional[pulumi.Input[builtins.str]]):
176
177
  pulumi.set(self, "tag_id", value)
177
178
 
178
179
  @property
179
180
  @pulumi.getter(name="tagValue")
180
- def tag_value(self) -> Optional[pulumi.Input[str]]:
181
+ def tag_value(self) -> Optional[pulumi.Input[builtins.str]]:
181
182
  """
182
183
  Specifies the value of the tag, (e.g. 'finance' or 'engineering')
183
184
  """
184
185
  return pulumi.get(self, "tag_value")
185
186
 
186
187
  @tag_value.setter
187
- def tag_value(self, value: Optional[pulumi.Input[str]]):
188
+ def tag_value(self, value: Optional[pulumi.Input[builtins.str]]):
188
189
  pulumi.set(self, "tag_value", value)
189
190
 
190
191
 
@@ -193,11 +194,11 @@ class TagAssociation(pulumi.CustomResource):
193
194
  def __init__(__self__,
194
195
  resource_name: str,
195
196
  opts: Optional[pulumi.ResourceOptions] = None,
196
- object_identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
197
- object_type: Optional[pulumi.Input[str]] = None,
198
- skip_validation: Optional[pulumi.Input[bool]] = None,
199
- tag_id: Optional[pulumi.Input[str]] = None,
200
- tag_value: Optional[pulumi.Input[str]] = None,
197
+ object_identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
198
+ object_type: Optional[pulumi.Input[builtins.str]] = None,
199
+ skip_validation: Optional[pulumi.Input[builtins.bool]] = None,
200
+ tag_id: Optional[pulumi.Input[builtins.str]] = None,
201
+ tag_value: Optional[pulumi.Input[builtins.str]] = None,
201
202
  __props__=None):
202
203
  """
203
204
  ## Import
@@ -210,11 +211,11 @@ class TagAssociation(pulumi.CustomResource):
210
211
 
211
212
  :param str resource_name: The name of the resource.
212
213
  :param pulumi.ResourceOptions opts: Options for the resource.
213
- :param pulumi.Input[Sequence[pulumi.Input[str]]] object_identifiers: Specifies the object identifiers for the tag association.
214
- :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].
215
- :param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
216
- :param pulumi.Input[str] tag_id: Specifies the identifier for the tag.
217
- :param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
214
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] object_identifiers: Specifies the object identifiers for the tag association.
215
+ :param pulumi.Input[builtins.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].
216
+ :param pulumi.Input[builtins.bool] skip_validation: (Default: `true`) If true, skips validation of the tag association.
217
+ :param pulumi.Input[builtins.str] tag_id: Specifies the identifier for the tag.
218
+ :param pulumi.Input[builtins.str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
218
219
  """
219
220
  ...
220
221
  @overload
@@ -246,11 +247,11 @@ class TagAssociation(pulumi.CustomResource):
246
247
  def _internal_init(__self__,
247
248
  resource_name: str,
248
249
  opts: Optional[pulumi.ResourceOptions] = None,
249
- object_identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
250
- object_type: Optional[pulumi.Input[str]] = None,
251
- skip_validation: Optional[pulumi.Input[bool]] = None,
252
- tag_id: Optional[pulumi.Input[str]] = None,
253
- tag_value: Optional[pulumi.Input[str]] = None,
250
+ object_identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
251
+ object_type: Optional[pulumi.Input[builtins.str]] = None,
252
+ skip_validation: Optional[pulumi.Input[builtins.bool]] = None,
253
+ tag_id: Optional[pulumi.Input[builtins.str]] = None,
254
+ tag_value: Optional[pulumi.Input[builtins.str]] = None,
254
255
  __props__=None):
255
256
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
256
257
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -283,11 +284,11 @@ class TagAssociation(pulumi.CustomResource):
283
284
  def get(resource_name: str,
284
285
  id: pulumi.Input[str],
285
286
  opts: Optional[pulumi.ResourceOptions] = None,
286
- object_identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
287
- object_type: Optional[pulumi.Input[str]] = None,
288
- skip_validation: Optional[pulumi.Input[bool]] = None,
289
- tag_id: Optional[pulumi.Input[str]] = None,
290
- tag_value: Optional[pulumi.Input[str]] = None) -> 'TagAssociation':
287
+ object_identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
288
+ object_type: Optional[pulumi.Input[builtins.str]] = None,
289
+ skip_validation: Optional[pulumi.Input[builtins.bool]] = None,
290
+ tag_id: Optional[pulumi.Input[builtins.str]] = None,
291
+ tag_value: Optional[pulumi.Input[builtins.str]] = None) -> 'TagAssociation':
291
292
  """
292
293
  Get an existing TagAssociation resource's state with the given name, id, and optional extra
293
294
  properties used to qualify the lookup.
@@ -295,11 +296,11 @@ class TagAssociation(pulumi.CustomResource):
295
296
  :param str resource_name: The unique name of the resulting resource.
296
297
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
297
298
  :param pulumi.ResourceOptions opts: Options for the resource.
298
- :param pulumi.Input[Sequence[pulumi.Input[str]]] object_identifiers: Specifies the object identifiers for the tag association.
299
- :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].
300
- :param pulumi.Input[bool] skip_validation: If true, skips validation of the tag association.
301
- :param pulumi.Input[str] tag_id: Specifies the identifier for the tag.
302
- :param pulumi.Input[str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
299
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] object_identifiers: Specifies the object identifiers for the tag association.
300
+ :param pulumi.Input[builtins.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].
301
+ :param pulumi.Input[builtins.bool] skip_validation: (Default: `true`) If true, skips validation of the tag association.
302
+ :param pulumi.Input[builtins.str] tag_id: Specifies the identifier for the tag.
303
+ :param pulumi.Input[builtins.str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
303
304
  """
304
305
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
305
306
 
@@ -314,7 +315,7 @@ class TagAssociation(pulumi.CustomResource):
314
315
 
315
316
  @property
316
317
  @pulumi.getter(name="objectIdentifiers")
317
- def object_identifiers(self) -> pulumi.Output[Sequence[str]]:
318
+ def object_identifiers(self) -> pulumi.Output[Sequence[builtins.str]]:
318
319
  """
319
320
  Specifies the object identifiers for the tag association.
320
321
  """
@@ -322,7 +323,7 @@ class TagAssociation(pulumi.CustomResource):
322
323
 
323
324
  @property
324
325
  @pulumi.getter(name="objectType")
325
- def object_type(self) -> pulumi.Output[str]:
326
+ def object_type(self) -> pulumi.Output[builtins.str]:
326
327
  """
327
328
  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].
328
329
  """
@@ -330,15 +331,15 @@ class TagAssociation(pulumi.CustomResource):
330
331
 
331
332
  @property
332
333
  @pulumi.getter(name="skipValidation")
333
- def skip_validation(self) -> pulumi.Output[Optional[bool]]:
334
+ def skip_validation(self) -> pulumi.Output[Optional[builtins.bool]]:
334
335
  """
335
- If true, skips validation of the tag association.
336
+ (Default: `true`) If true, skips validation of the tag association.
336
337
  """
337
338
  return pulumi.get(self, "skip_validation")
338
339
 
339
340
  @property
340
341
  @pulumi.getter(name="tagId")
341
- def tag_id(self) -> pulumi.Output[str]:
342
+ def tag_id(self) -> pulumi.Output[builtins.str]:
342
343
  """
343
344
  Specifies the identifier for the tag.
344
345
  """
@@ -346,7 +347,7 @@ class TagAssociation(pulumi.CustomResource):
346
347
 
347
348
  @property
348
349
  @pulumi.getter(name="tagValue")
349
- def tag_value(self) -> pulumi.Output[str]:
350
+ def tag_value(self) -> pulumi.Output[builtins.str]:
350
351
  """
351
352
  Specifies the value of the tag, (e.g. 'finance' or 'engineering')
352
353
  """