pulumi-snowflake 2.3.0a1753339260__py3-none-any.whl → 2.3.0a1753398370__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 (157) hide show
  1. pulumi_snowflake/__init__.py +1 -1
  2. pulumi_snowflake/_inputs.py +16796 -16797
  3. pulumi_snowflake/account.py +252 -253
  4. pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
  5. pulumi_snowflake/account_parameter.py +35 -36
  6. pulumi_snowflake/account_password_policy_attachment.py +18 -19
  7. pulumi_snowflake/account_role.py +42 -43
  8. pulumi_snowflake/alert.py +149 -150
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
  12. pulumi_snowflake/api_integration.py +251 -252
  13. pulumi_snowflake/authentication_policy.py +167 -168
  14. pulumi_snowflake/compute_pool.py +167 -168
  15. pulumi_snowflake/config/__init__.py +1 -1
  16. pulumi_snowflake/config/__init__.pyi +1 -2
  17. pulumi_snowflake/config/outputs.py +21 -22
  18. pulumi_snowflake/config/vars.py +43 -44
  19. pulumi_snowflake/cortex_search_service.py +191 -192
  20. pulumi_snowflake/current_account.py +2088 -2089
  21. pulumi_snowflake/database.py +353 -354
  22. pulumi_snowflake/database_role.py +63 -64
  23. pulumi_snowflake/dynamic_table.py +274 -275
  24. pulumi_snowflake/email_notification_integration.py +70 -71
  25. pulumi_snowflake/execute.py +61 -62
  26. pulumi_snowflake/external_function.py +280 -281
  27. pulumi_snowflake/external_oauth_integration.py +288 -289
  28. pulumi_snowflake/external_table.py +246 -247
  29. pulumi_snowflake/external_volume.py +68 -69
  30. pulumi_snowflake/failover_group.py +135 -136
  31. pulumi_snowflake/file_format.py +622 -623
  32. pulumi_snowflake/function_java.py +320 -321
  33. pulumi_snowflake/function_javascript.py +243 -244
  34. pulumi_snowflake/function_python.py +334 -335
  35. pulumi_snowflake/function_scala.py +320 -321
  36. pulumi_snowflake/function_sql.py +226 -227
  37. pulumi_snowflake/get_account_roles.py +16 -17
  38. pulumi_snowflake/get_accounts.py +16 -17
  39. pulumi_snowflake/get_alerts.py +22 -23
  40. pulumi_snowflake/get_compute_pools.py +23 -24
  41. pulumi_snowflake/get_connections.py +10 -11
  42. pulumi_snowflake/get_cortex_search_services.py +18 -19
  43. pulumi_snowflake/get_current_account.py +9 -10
  44. pulumi_snowflake/get_current_role.py +5 -6
  45. pulumi_snowflake/get_database.py +25 -26
  46. pulumi_snowflake/get_database_role.py +19 -20
  47. pulumi_snowflake/get_database_roles.py +17 -18
  48. pulumi_snowflake/get_databases.py +29 -30
  49. pulumi_snowflake/get_dynamic_tables.py +13 -14
  50. pulumi_snowflake/get_external_functions.py +16 -17
  51. pulumi_snowflake/get_external_tables.py +16 -17
  52. pulumi_snowflake/get_failover_groups.py +10 -11
  53. pulumi_snowflake/get_file_formats.py +16 -17
  54. pulumi_snowflake/get_functions.py +16 -17
  55. pulumi_snowflake/get_git_repositories.py +18 -19
  56. pulumi_snowflake/get_grants.py +9 -10
  57. pulumi_snowflake/get_image_repositories.py +11 -12
  58. pulumi_snowflake/get_masking_policies.py +18 -19
  59. pulumi_snowflake/get_materialized_views.py +16 -17
  60. pulumi_snowflake/get_network_policies.py +16 -17
  61. pulumi_snowflake/get_parameters.py +34 -35
  62. pulumi_snowflake/get_pipes.py +16 -17
  63. pulumi_snowflake/get_procedures.py +16 -17
  64. pulumi_snowflake/get_resource_monitors.py +10 -11
  65. pulumi_snowflake/get_row_access_policies.py +18 -19
  66. pulumi_snowflake/get_schemas.py +30 -31
  67. pulumi_snowflake/get_secrets.py +17 -18
  68. pulumi_snowflake/get_security_integrations.py +16 -17
  69. pulumi_snowflake/get_sequences.py +16 -17
  70. pulumi_snowflake/get_services.py +30 -31
  71. pulumi_snowflake/get_shares.py +10 -11
  72. pulumi_snowflake/get_stages.py +16 -17
  73. pulumi_snowflake/get_storage_integrations.py +4 -5
  74. pulumi_snowflake/get_streamlits.py +18 -19
  75. pulumi_snowflake/get_streams.py +24 -25
  76. pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
  77. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
  78. pulumi_snowflake/get_system_get_private_link_config.py +21 -22
  79. pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
  80. pulumi_snowflake/get_tables.py +24 -25
  81. pulumi_snowflake/get_tags.py +11 -12
  82. pulumi_snowflake/get_tasks.py +30 -31
  83. pulumi_snowflake/get_users.py +29 -30
  84. pulumi_snowflake/get_views.py +24 -25
  85. pulumi_snowflake/get_warehouses.py +22 -23
  86. pulumi_snowflake/git_repository.py +133 -134
  87. pulumi_snowflake/grant_account_role.py +52 -53
  88. pulumi_snowflake/grant_application_role.py +52 -53
  89. pulumi_snowflake/grant_database_role.py +69 -70
  90. pulumi_snowflake/grant_ownership.py +55 -56
  91. pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
  92. pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
  93. pulumi_snowflake/grant_privileges_to_share.py +154 -155
  94. pulumi_snowflake/image_repository.py +80 -81
  95. pulumi_snowflake/job_service.py +148 -149
  96. pulumi_snowflake/legacy_service_user.py +1269 -1270
  97. pulumi_snowflake/managed_account.py +140 -141
  98. pulumi_snowflake/masking_policy.py +136 -137
  99. pulumi_snowflake/materialized_view.py +149 -150
  100. pulumi_snowflake/network_policy.py +116 -117
  101. pulumi_snowflake/network_policy_attachment.py +52 -53
  102. pulumi_snowflake/network_rule.py +129 -130
  103. pulumi_snowflake/notification_integration.py +298 -299
  104. pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
  105. pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
  106. pulumi_snowflake/object_parameter.py +72 -73
  107. pulumi_snowflake/outputs.py +15510 -15511
  108. pulumi_snowflake/password_policy.py +299 -300
  109. pulumi_snowflake/pipe.py +181 -182
  110. pulumi_snowflake/primary_connection.py +70 -71
  111. pulumi_snowflake/procedure_java.py +341 -342
  112. pulumi_snowflake/procedure_javascript.py +247 -248
  113. pulumi_snowflake/procedure_python.py +338 -339
  114. pulumi_snowflake/procedure_scala.py +341 -342
  115. pulumi_snowflake/procedure_sql.py +247 -248
  116. pulumi_snowflake/provider.py +377 -378
  117. pulumi_snowflake/pulumi-plugin.json +1 -1
  118. pulumi_snowflake/resource_monitor.py +165 -166
  119. pulumi_snowflake/row_access_policy.py +102 -103
  120. pulumi_snowflake/saml2_integration.py +303 -304
  121. pulumi_snowflake/schema.py +390 -391
  122. pulumi_snowflake/scim_integration.py +133 -134
  123. pulumi_snowflake/secondary_connection.py +72 -73
  124. pulumi_snowflake/secondary_database.py +350 -351
  125. pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
  126. pulumi_snowflake/secret_with_basic_authentication.py +121 -122
  127. pulumi_snowflake/secret_with_client_credentials.py +125 -126
  128. pulumi_snowflake/secret_with_generic_string.py +104 -105
  129. pulumi_snowflake/sequence.py +121 -122
  130. pulumi_snowflake/service.py +233 -234
  131. pulumi_snowflake/service_user.py +1239 -1240
  132. pulumi_snowflake/share.py +61 -62
  133. pulumi_snowflake/shared_database.py +299 -300
  134. pulumi_snowflake/stage.py +234 -235
  135. pulumi_snowflake/storage_integration.py +230 -231
  136. pulumi_snowflake/stream_on_directory_table.py +128 -129
  137. pulumi_snowflake/stream_on_external_table.py +151 -152
  138. pulumi_snowflake/stream_on_table.py +164 -165
  139. pulumi_snowflake/stream_on_view.py +164 -165
  140. pulumi_snowflake/streamlit.py +184 -185
  141. pulumi_snowflake/table.py +147 -148
  142. pulumi_snowflake/table_column_masking_policy_application.py +52 -53
  143. pulumi_snowflake/table_constraint.py +191 -192
  144. pulumi_snowflake/tag.py +114 -115
  145. pulumi_snowflake/tag_association.py +86 -87
  146. pulumi_snowflake/task.py +1224 -1225
  147. pulumi_snowflake/user.py +1346 -1347
  148. pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
  149. pulumi_snowflake/user_password_policy_attachment.py +35 -36
  150. pulumi_snowflake/user_public_keys.py +52 -53
  151. pulumi_snowflake/view.py +187 -188
  152. pulumi_snowflake/warehouse.py +286 -287
  153. {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
  154. pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
  155. pulumi_snowflake-2.3.0a1753339260.dist-info/RECORD +0 -158
  156. {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
  157. {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -20,67 +19,67 @@ __all__ = ['TableColumnMaskingPolicyApplicationArgs', 'TableColumnMaskingPolicyA
20
19
  @pulumi.input_type
21
20
  class TableColumnMaskingPolicyApplicationArgs:
22
21
  def __init__(__self__, *,
23
- column: pulumi.Input[builtins.str],
24
- masking_policy: pulumi.Input[builtins.str],
25
- table: pulumi.Input[builtins.str]):
22
+ column: pulumi.Input[_builtins.str],
23
+ masking_policy: pulumi.Input[_builtins.str],
24
+ table: pulumi.Input[_builtins.str]):
26
25
  """
27
26
  The set of arguments for constructing a TableColumnMaskingPolicyApplication resource.
28
- :param pulumi.Input[builtins.str] column: The column to apply the masking policy to.
29
- :param pulumi.Input[builtins.str] masking_policy: Fully qualified name (`database.schema.policyname`) of the policy to apply.
30
- :param pulumi.Input[builtins.str] table: The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
27
+ :param pulumi.Input[_builtins.str] column: The column to apply the masking policy to.
28
+ :param pulumi.Input[_builtins.str] masking_policy: Fully qualified name (`database.schema.policyname`) of the policy to apply.
29
+ :param pulumi.Input[_builtins.str] table: The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
31
30
  """
32
31
  pulumi.set(__self__, "column", column)
33
32
  pulumi.set(__self__, "masking_policy", masking_policy)
34
33
  pulumi.set(__self__, "table", table)
35
34
 
36
- @property
35
+ @_builtins.property
37
36
  @pulumi.getter
38
- def column(self) -> pulumi.Input[builtins.str]:
37
+ def column(self) -> pulumi.Input[_builtins.str]:
39
38
  """
40
39
  The column to apply the masking policy to.
41
40
  """
42
41
  return pulumi.get(self, "column")
43
42
 
44
43
  @column.setter
45
- def column(self, value: pulumi.Input[builtins.str]):
44
+ def column(self, value: pulumi.Input[_builtins.str]):
46
45
  pulumi.set(self, "column", value)
47
46
 
48
- @property
47
+ @_builtins.property
49
48
  @pulumi.getter(name="maskingPolicy")
50
- def masking_policy(self) -> pulumi.Input[builtins.str]:
49
+ def masking_policy(self) -> pulumi.Input[_builtins.str]:
51
50
  """
52
51
  Fully qualified name (`database.schema.policyname`) of the policy to apply.
53
52
  """
54
53
  return pulumi.get(self, "masking_policy")
55
54
 
56
55
  @masking_policy.setter
57
- def masking_policy(self, value: pulumi.Input[builtins.str]):
56
+ def masking_policy(self, value: pulumi.Input[_builtins.str]):
58
57
  pulumi.set(self, "masking_policy", value)
59
58
 
60
- @property
59
+ @_builtins.property
61
60
  @pulumi.getter
62
- def table(self) -> pulumi.Input[builtins.str]:
61
+ def table(self) -> pulumi.Input[_builtins.str]:
63
62
  """
64
63
  The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
65
64
  """
66
65
  return pulumi.get(self, "table")
67
66
 
68
67
  @table.setter
69
- def table(self, value: pulumi.Input[builtins.str]):
68
+ def table(self, value: pulumi.Input[_builtins.str]):
70
69
  pulumi.set(self, "table", value)
71
70
 
72
71
 
73
72
  @pulumi.input_type
74
73
  class _TableColumnMaskingPolicyApplicationState:
75
74
  def __init__(__self__, *,
76
- column: Optional[pulumi.Input[builtins.str]] = None,
77
- masking_policy: Optional[pulumi.Input[builtins.str]] = None,
78
- table: Optional[pulumi.Input[builtins.str]] = None):
75
+ column: Optional[pulumi.Input[_builtins.str]] = None,
76
+ masking_policy: Optional[pulumi.Input[_builtins.str]] = None,
77
+ table: Optional[pulumi.Input[_builtins.str]] = None):
79
78
  """
80
79
  Input properties used for looking up and filtering TableColumnMaskingPolicyApplication resources.
81
- :param pulumi.Input[builtins.str] column: The column to apply the masking policy to.
82
- :param pulumi.Input[builtins.str] masking_policy: Fully qualified name (`database.schema.policyname`) of the policy to apply.
83
- :param pulumi.Input[builtins.str] table: The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
80
+ :param pulumi.Input[_builtins.str] column: The column to apply the masking policy to.
81
+ :param pulumi.Input[_builtins.str] masking_policy: Fully qualified name (`database.schema.policyname`) of the policy to apply.
82
+ :param pulumi.Input[_builtins.str] table: The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
84
83
  """
85
84
  if column is not None:
86
85
  pulumi.set(__self__, "column", column)
@@ -89,40 +88,40 @@ class _TableColumnMaskingPolicyApplicationState:
89
88
  if table is not None:
90
89
  pulumi.set(__self__, "table", table)
91
90
 
92
- @property
91
+ @_builtins.property
93
92
  @pulumi.getter
94
- def column(self) -> Optional[pulumi.Input[builtins.str]]:
93
+ def column(self) -> Optional[pulumi.Input[_builtins.str]]:
95
94
  """
96
95
  The column to apply the masking policy to.
97
96
  """
98
97
  return pulumi.get(self, "column")
99
98
 
100
99
  @column.setter
101
- def column(self, value: Optional[pulumi.Input[builtins.str]]):
100
+ def column(self, value: Optional[pulumi.Input[_builtins.str]]):
102
101
  pulumi.set(self, "column", value)
103
102
 
104
- @property
103
+ @_builtins.property
105
104
  @pulumi.getter(name="maskingPolicy")
106
- def masking_policy(self) -> Optional[pulumi.Input[builtins.str]]:
105
+ def masking_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
107
106
  """
108
107
  Fully qualified name (`database.schema.policyname`) of the policy to apply.
109
108
  """
110
109
  return pulumi.get(self, "masking_policy")
111
110
 
112
111
  @masking_policy.setter
113
- def masking_policy(self, value: Optional[pulumi.Input[builtins.str]]):
112
+ def masking_policy(self, value: Optional[pulumi.Input[_builtins.str]]):
114
113
  pulumi.set(self, "masking_policy", value)
115
114
 
116
- @property
115
+ @_builtins.property
117
116
  @pulumi.getter
118
- def table(self) -> Optional[pulumi.Input[builtins.str]]:
117
+ def table(self) -> Optional[pulumi.Input[_builtins.str]]:
119
118
  """
120
119
  The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
121
120
  """
122
121
  return pulumi.get(self, "table")
123
122
 
124
123
  @table.setter
125
- def table(self, value: Optional[pulumi.Input[builtins.str]]):
124
+ def table(self, value: Optional[pulumi.Input[_builtins.str]]):
126
125
  pulumi.set(self, "table", value)
127
126
 
128
127
 
@@ -132,17 +131,17 @@ class TableColumnMaskingPolicyApplication(pulumi.CustomResource):
132
131
  def __init__(__self__,
133
132
  resource_name: str,
134
133
  opts: Optional[pulumi.ResourceOptions] = None,
135
- column: Optional[pulumi.Input[builtins.str]] = None,
136
- masking_policy: Optional[pulumi.Input[builtins.str]] = None,
137
- table: Optional[pulumi.Input[builtins.str]] = None,
134
+ column: Optional[pulumi.Input[_builtins.str]] = None,
135
+ masking_policy: Optional[pulumi.Input[_builtins.str]] = None,
136
+ table: Optional[pulumi.Input[_builtins.str]] = None,
138
137
  __props__=None):
139
138
  """
140
139
  Create a TableColumnMaskingPolicyApplication resource with the given unique name, props, and options.
141
140
  :param str resource_name: The name of the resource.
142
141
  :param pulumi.ResourceOptions opts: Options for the resource.
143
- :param pulumi.Input[builtins.str] column: The column to apply the masking policy to.
144
- :param pulumi.Input[builtins.str] masking_policy: Fully qualified name (`database.schema.policyname`) of the policy to apply.
145
- :param pulumi.Input[builtins.str] table: The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
142
+ :param pulumi.Input[_builtins.str] column: The column to apply the masking policy to.
143
+ :param pulumi.Input[_builtins.str] masking_policy: Fully qualified name (`database.schema.policyname`) of the policy to apply.
144
+ :param pulumi.Input[_builtins.str] table: The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
146
145
  """
147
146
  ...
148
147
  @overload
@@ -167,9 +166,9 @@ class TableColumnMaskingPolicyApplication(pulumi.CustomResource):
167
166
  def _internal_init(__self__,
168
167
  resource_name: str,
169
168
  opts: Optional[pulumi.ResourceOptions] = None,
170
- column: Optional[pulumi.Input[builtins.str]] = None,
171
- masking_policy: Optional[pulumi.Input[builtins.str]] = None,
172
- table: Optional[pulumi.Input[builtins.str]] = None,
169
+ column: Optional[pulumi.Input[_builtins.str]] = None,
170
+ masking_policy: Optional[pulumi.Input[_builtins.str]] = None,
171
+ table: Optional[pulumi.Input[_builtins.str]] = None,
173
172
  __props__=None):
174
173
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
175
174
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -198,9 +197,9 @@ class TableColumnMaskingPolicyApplication(pulumi.CustomResource):
198
197
  def get(resource_name: str,
199
198
  id: pulumi.Input[str],
200
199
  opts: Optional[pulumi.ResourceOptions] = None,
201
- column: Optional[pulumi.Input[builtins.str]] = None,
202
- masking_policy: Optional[pulumi.Input[builtins.str]] = None,
203
- table: Optional[pulumi.Input[builtins.str]] = None) -> 'TableColumnMaskingPolicyApplication':
200
+ column: Optional[pulumi.Input[_builtins.str]] = None,
201
+ masking_policy: Optional[pulumi.Input[_builtins.str]] = None,
202
+ table: Optional[pulumi.Input[_builtins.str]] = None) -> 'TableColumnMaskingPolicyApplication':
204
203
  """
205
204
  Get an existing TableColumnMaskingPolicyApplication resource's state with the given name, id, and optional extra
206
205
  properties used to qualify the lookup.
@@ -208,9 +207,9 @@ class TableColumnMaskingPolicyApplication(pulumi.CustomResource):
208
207
  :param str resource_name: The unique name of the resulting resource.
209
208
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
210
209
  :param pulumi.ResourceOptions opts: Options for the resource.
211
- :param pulumi.Input[builtins.str] column: The column to apply the masking policy to.
212
- :param pulumi.Input[builtins.str] masking_policy: Fully qualified name (`database.schema.policyname`) of the policy to apply.
213
- :param pulumi.Input[builtins.str] table: The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
210
+ :param pulumi.Input[_builtins.str] column: The column to apply the masking policy to.
211
+ :param pulumi.Input[_builtins.str] masking_policy: Fully qualified name (`database.schema.policyname`) of the policy to apply.
212
+ :param pulumi.Input[_builtins.str] table: The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
214
213
  """
215
214
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
216
215
 
@@ -221,25 +220,25 @@ class TableColumnMaskingPolicyApplication(pulumi.CustomResource):
221
220
  __props__.__dict__["table"] = table
222
221
  return TableColumnMaskingPolicyApplication(resource_name, opts=opts, __props__=__props__)
223
222
 
224
- @property
223
+ @_builtins.property
225
224
  @pulumi.getter
226
- def column(self) -> pulumi.Output[builtins.str]:
225
+ def column(self) -> pulumi.Output[_builtins.str]:
227
226
  """
228
227
  The column to apply the masking policy to.
229
228
  """
230
229
  return pulumi.get(self, "column")
231
230
 
232
- @property
231
+ @_builtins.property
233
232
  @pulumi.getter(name="maskingPolicy")
234
- def masking_policy(self) -> pulumi.Output[builtins.str]:
233
+ def masking_policy(self) -> pulumi.Output[_builtins.str]:
235
234
  """
236
235
  Fully qualified name (`database.schema.policyname`) of the policy to apply.
237
236
  """
238
237
  return pulumi.get(self, "masking_policy")
239
238
 
240
- @property
239
+ @_builtins.property
241
240
  @pulumi.getter
242
- def table(self) -> pulumi.Output[builtins.str]:
241
+ def table(self) -> pulumi.Output[_builtins.str]:
243
242
  """
244
243
  The fully qualified name (`database.schema.table`) of the table to apply the masking policy to.
245
244
  """