pulumi-snowflake 0.62.0a1732602720__py3-none-any.whl → 0.62.0a1732732164__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 (49) hide show
  1. pulumi_snowflake/__init__.py +1 -0
  2. pulumi_snowflake/_inputs.py +6620 -588
  3. pulumi_snowflake/account_role.py +7 -7
  4. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +7 -7
  5. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +7 -7
  6. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +7 -7
  7. pulumi_snowflake/authentication_policy.py +21 -21
  8. pulumi_snowflake/database.py +7 -7
  9. pulumi_snowflake/database_role.py +14 -14
  10. pulumi_snowflake/external_oauth_integration.py +7 -7
  11. pulumi_snowflake/external_volume.py +7 -7
  12. pulumi_snowflake/get_tags.py +134 -0
  13. pulumi_snowflake/get_tasks.py +125 -56
  14. pulumi_snowflake/legacy_service_user.py +7 -7
  15. pulumi_snowflake/masking_policy.py +21 -21
  16. pulumi_snowflake/network_policy.py +7 -7
  17. pulumi_snowflake/oauth_integration_for_custom_clients.py +7 -7
  18. pulumi_snowflake/oauth_integration_for_partner_applications.py +7 -7
  19. pulumi_snowflake/outputs.py +12197 -5310
  20. pulumi_snowflake/password_policy.py +2 -4
  21. pulumi_snowflake/primary_connection.py +7 -7
  22. pulumi_snowflake/pulumi-plugin.json +1 -1
  23. pulumi_snowflake/resource_monitor.py +7 -7
  24. pulumi_snowflake/role.py +7 -7
  25. pulumi_snowflake/row_access_policy.py +21 -21
  26. pulumi_snowflake/saml2_integration.py +7 -7
  27. pulumi_snowflake/scim_integration.py +7 -7
  28. pulumi_snowflake/secondary_connection.py +7 -7
  29. pulumi_snowflake/secondary_database.py +7 -7
  30. pulumi_snowflake/secret_with_authorization_code_grant.py +21 -21
  31. pulumi_snowflake/secret_with_basic_authentication.py +21 -21
  32. pulumi_snowflake/secret_with_client_credentials.py +21 -21
  33. pulumi_snowflake/secret_with_generic_string.py +21 -21
  34. pulumi_snowflake/service_user.py +7 -7
  35. pulumi_snowflake/shared_database.py +7 -7
  36. pulumi_snowflake/storage_integration.py +13 -0
  37. pulumi_snowflake/stream_on_directory_table.py +28 -28
  38. pulumi_snowflake/stream_on_external_table.py +28 -28
  39. pulumi_snowflake/stream_on_table.py +28 -28
  40. pulumi_snowflake/stream_on_view.py +28 -28
  41. pulumi_snowflake/tag.py +109 -36
  42. pulumi_snowflake/task.py +3008 -317
  43. pulumi_snowflake/user.py +7 -7
  44. pulumi_snowflake/view.py +21 -21
  45. pulumi_snowflake/warehouse.py +7 -7
  46. {pulumi_snowflake-0.62.0a1732602720.dist-info → pulumi_snowflake-0.62.0a1732732164.dist-info}/METADATA +1 -1
  47. {pulumi_snowflake-0.62.0a1732602720.dist-info → pulumi_snowflake-0.62.0a1732732164.dist-info}/RECORD +49 -48
  48. {pulumi_snowflake-0.62.0a1732602720.dist-info → pulumi_snowflake-0.62.0a1732732164.dist-info}/WHEEL +0 -0
  49. {pulumi_snowflake-0.62.0a1732602720.dist-info → pulumi_snowflake-0.62.0a1732732164.dist-info}/top_level.txt +0 -0
pulumi_snowflake/user.py CHANGED
@@ -142,7 +142,7 @@ class UserArgs:
142
142
  :param pulumi.Input[str] middle_name: Middle name of the user.
143
143
  :param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
144
144
  :param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
145
- :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
145
+ :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
146
146
  :param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
147
147
  :param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
148
148
  :param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
@@ -856,7 +856,7 @@ class UserArgs:
856
856
  @pulumi.getter
857
857
  def name(self) -> Optional[pulumi.Input[str]]:
858
858
  """
859
- Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
859
+ Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
860
860
  """
861
861
  return pulumi.get(self, "name")
862
862
 
@@ -1399,7 +1399,7 @@ class _UserState:
1399
1399
  :param pulumi.Input[str] middle_name: Middle name of the user.
1400
1400
  :param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
1401
1401
  :param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
1402
- :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
1402
+ :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
1403
1403
  :param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
1404
1404
  :param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
1405
1405
  :param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
@@ -2136,7 +2136,7 @@ class _UserState:
2136
2136
  @pulumi.getter
2137
2137
  def name(self) -> Optional[pulumi.Input[str]]:
2138
2138
  """
2139
- Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
2139
+ Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
2140
2140
  """
2141
2141
  return pulumi.get(self, "name")
2142
2142
 
@@ -2722,7 +2722,7 @@ class User(pulumi.CustomResource):
2722
2722
  :param pulumi.Input[str] middle_name: Middle name of the user.
2723
2723
  :param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
2724
2724
  :param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
2725
- :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
2725
+ :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
2726
2726
  :param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
2727
2727
  :param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
2728
2728
  :param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
@@ -3101,7 +3101,7 @@ class User(pulumi.CustomResource):
3101
3101
  :param pulumi.Input[str] middle_name: Middle name of the user.
3102
3102
  :param pulumi.Input[int] multi_statement_count: Number of statements to execute when using the multi-statement capability. For more information, check [MULTI*STATEMENT*COUNT docs](https://docs.snowflake.com/en/sql-reference/parameters#multi-statement-count).
3103
3103
  :param pulumi.Input[str] must_change_password: Specifies whether the user is forced to change their password on next login (including their first/initial login) into the system. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
3104
- :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
3104
+ :param pulumi.Input[str] name: Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
3105
3105
  :param pulumi.Input[str] network_policy: Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. For more details, see [Controlling network traffic with network policies](https://docs.snowflake.com/en/user-guide/network-policies). Any existing network policy (created using [CREATE NETWORK POLICY](https://docs.snowflake.com/en/sql-reference/sql/create-network-policy)). For more information, check [NETWORK_POLICY docs](https://docs.snowflake.com/en/sql-reference/parameters#network-policy).
3106
3106
  :param pulumi.Input[bool] noorder_sequence_as_default: Specifies whether the ORDER or NOORDER property is set by default when you create a new sequence or add a new table column. The ORDER and NOORDER properties determine whether or not the values are generated for the sequence or auto-incremented column in [increasing or decreasing order](https://docs.snowflake.com/en/user-guide/querying-sequences.html#label-querying-sequences-increasing-values). For more information, check [NOORDER*SEQUENCE*AS_DEFAULT docs](https://docs.snowflake.com/en/sql-reference/parameters#noorder-sequence-as-default).
3107
3107
  :param pulumi.Input[bool] odbc_treat_decimal_as_int: Specifies how ODBC processes columns that have a scale of zero (0). For more information, check [ODBC*TREAT*DECIMAL*AS*INT docs](https://docs.snowflake.com/en/sql-reference/parameters#odbc-treat-decimal-as-int).
@@ -3580,7 +3580,7 @@ class User(pulumi.CustomResource):
3580
3580
  @pulumi.getter
3581
3581
  def name(self) -> pulumi.Output[str]:
3582
3582
  """
3583
- Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
3583
+ Name of the user. Note that if you do not supply login*name this will be used as login*name. Check the [docs](https://docs.snowflake.net/manuals/sql-reference/sql/create-user.html#required-parameters). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
3584
3584
  """
3585
3585
  return pulumi.get(self, "name")
3586
3586
 
pulumi_snowflake/view.py CHANGED
@@ -38,8 +38,8 @@ class ViewArgs:
38
38
  row_access_policy: Optional[pulumi.Input['ViewRowAccessPolicyArgs']] = None):
39
39
  """
40
40
  The set of arguments for constructing a View resource.
41
- :param pulumi.Input[str] database: The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
42
- :param pulumi.Input[str] schema: The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
41
+ :param pulumi.Input[str] database: The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
42
+ :param pulumi.Input[str] schema: The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
43
43
  :param pulumi.Input[str] statement: Specifies the query used to create the view.
44
44
  :param pulumi.Input['ViewAggregationPolicyArgs'] aggregation_policy: Specifies the aggregation policy to set on a view.
45
45
  :param pulumi.Input[str] change_tracking: Specifies to enable or disable change tracking on the table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
@@ -49,7 +49,7 @@ class ViewArgs:
49
49
  :param pulumi.Input[Sequence[pulumi.Input['ViewDataMetricFunctionArgs']]] data_metric_functions: Data metric functions used for the view.
50
50
  :param pulumi.Input['ViewDataMetricScheduleArgs'] data_metric_schedule: Specifies the schedule to run the data metric functions periodically.
51
51
  :param pulumi.Input[str] is_recursive: Specifies that the view can refer to itself using recursive syntax without necessarily using a CTE (common table expression). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
52
- :param pulumi.Input[str] name: Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
52
+ :param pulumi.Input[str] name: Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
53
53
  :param pulumi.Input['ViewRowAccessPolicyArgs'] row_access_policy: Specifies the row access policy to set on a view.
54
54
  """
55
55
  pulumi.set(__self__, "database", database)
@@ -84,7 +84,7 @@ class ViewArgs:
84
84
  @pulumi.getter
85
85
  def database(self) -> pulumi.Input[str]:
86
86
  """
87
- The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
87
+ The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
88
88
  """
89
89
  return pulumi.get(self, "database")
90
90
 
@@ -96,7 +96,7 @@ class ViewArgs:
96
96
  @pulumi.getter
97
97
  def schema(self) -> pulumi.Input[str]:
98
98
  """
99
- The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
99
+ The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
100
100
  """
101
101
  return pulumi.get(self, "schema")
102
102
 
@@ -234,7 +234,7 @@ class ViewArgs:
234
234
  @pulumi.getter
235
235
  def name(self) -> Optional[pulumi.Input[str]]:
236
236
  """
237
- Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
237
+ Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
238
238
  """
239
239
  return pulumi.get(self, "name")
240
240
 
@@ -285,13 +285,13 @@ class _ViewState:
285
285
  :param pulumi.Input[bool] copy_grants: Retains the access permissions from the original view when a new view is created using the OR REPLACE clause.
286
286
  :param pulumi.Input[Sequence[pulumi.Input['ViewDataMetricFunctionArgs']]] data_metric_functions: Data metric functions used for the view.
287
287
  :param pulumi.Input['ViewDataMetricScheduleArgs'] data_metric_schedule: Specifies the schedule to run the data metric functions periodically.
288
- :param pulumi.Input[str] database: The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
288
+ :param pulumi.Input[str] database: The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
289
289
  :param pulumi.Input[Sequence[pulumi.Input['ViewDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE VIEW` for the given view.
290
290
  :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).
291
291
  :param pulumi.Input[str] is_recursive: Specifies that the view can refer to itself using recursive syntax without necessarily using a CTE (common table expression). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
292
- :param pulumi.Input[str] name: Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
292
+ :param pulumi.Input[str] name: Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
293
293
  :param pulumi.Input['ViewRowAccessPolicyArgs'] row_access_policy: Specifies the row access policy to set on a view.
294
- :param pulumi.Input[str] schema: The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
294
+ :param pulumi.Input[str] schema: The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
295
295
  :param pulumi.Input[Sequence[pulumi.Input['ViewShowOutputArgs']]] show_outputs: Outputs the result of `SHOW VIEW` for the given view.
296
296
  :param pulumi.Input[str] statement: Specifies the query used to create the view.
297
297
  """
@@ -420,7 +420,7 @@ class _ViewState:
420
420
  @pulumi.getter
421
421
  def database(self) -> Optional[pulumi.Input[str]]:
422
422
  """
423
- The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
423
+ The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
424
424
  """
425
425
  return pulumi.get(self, "database")
426
426
 
@@ -486,7 +486,7 @@ class _ViewState:
486
486
  @pulumi.getter
487
487
  def name(self) -> Optional[pulumi.Input[str]]:
488
488
  """
489
- Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
489
+ Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
490
490
  """
491
491
  return pulumi.get(self, "name")
492
492
 
@@ -510,7 +510,7 @@ class _ViewState:
510
510
  @pulumi.getter
511
511
  def schema(self) -> Optional[pulumi.Input[str]]:
512
512
  """
513
- The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
513
+ The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
514
514
  """
515
515
  return pulumi.get(self, "schema")
516
516
 
@@ -580,11 +580,11 @@ class View(pulumi.CustomResource):
580
580
  :param pulumi.Input[bool] copy_grants: Retains the access permissions from the original view when a new view is created using the OR REPLACE clause.
581
581
  :param pulumi.Input[Sequence[pulumi.Input[Union['ViewDataMetricFunctionArgs', 'ViewDataMetricFunctionArgsDict']]]] data_metric_functions: Data metric functions used for the view.
582
582
  :param pulumi.Input[Union['ViewDataMetricScheduleArgs', 'ViewDataMetricScheduleArgsDict']] data_metric_schedule: Specifies the schedule to run the data metric functions periodically.
583
- :param pulumi.Input[str] database: The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
583
+ :param pulumi.Input[str] database: The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
584
584
  :param pulumi.Input[str] is_recursive: Specifies that the view can refer to itself using recursive syntax without necessarily using a CTE (common table expression). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
585
- :param pulumi.Input[str] name: Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
585
+ :param pulumi.Input[str] name: Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
586
586
  :param pulumi.Input[Union['ViewRowAccessPolicyArgs', 'ViewRowAccessPolicyArgsDict']] row_access_policy: Specifies the row access policy to set on a view.
587
- :param pulumi.Input[str] schema: The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
587
+ :param pulumi.Input[str] schema: The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
588
588
  :param pulumi.Input[str] statement: Specifies the query used to create the view.
589
589
  """
590
590
  ...
@@ -705,13 +705,13 @@ class View(pulumi.CustomResource):
705
705
  :param pulumi.Input[bool] copy_grants: Retains the access permissions from the original view when a new view is created using the OR REPLACE clause.
706
706
  :param pulumi.Input[Sequence[pulumi.Input[Union['ViewDataMetricFunctionArgs', 'ViewDataMetricFunctionArgsDict']]]] data_metric_functions: Data metric functions used for the view.
707
707
  :param pulumi.Input[Union['ViewDataMetricScheduleArgs', 'ViewDataMetricScheduleArgsDict']] data_metric_schedule: Specifies the schedule to run the data metric functions periodically.
708
- :param pulumi.Input[str] database: The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
708
+ :param pulumi.Input[str] database: The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
709
709
  :param pulumi.Input[Sequence[pulumi.Input[Union['ViewDescribeOutputArgs', 'ViewDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE VIEW` for the given view.
710
710
  :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).
711
711
  :param pulumi.Input[str] is_recursive: Specifies that the view can refer to itself using recursive syntax without necessarily using a CTE (common table expression). Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
712
- :param pulumi.Input[str] name: Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
712
+ :param pulumi.Input[str] name: Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
713
713
  :param pulumi.Input[Union['ViewRowAccessPolicyArgs', 'ViewRowAccessPolicyArgsDict']] row_access_policy: Specifies the row access policy to set on a view.
714
- :param pulumi.Input[str] schema: The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
714
+ :param pulumi.Input[str] schema: The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
715
715
  :param pulumi.Input[Sequence[pulumi.Input[Union['ViewShowOutputArgs', 'ViewShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW VIEW` for the given view.
716
716
  :param pulumi.Input[str] statement: Specifies the query used to create the view.
717
717
  """
@@ -799,7 +799,7 @@ class View(pulumi.CustomResource):
799
799
  @pulumi.getter
800
800
  def database(self) -> pulumi.Output[str]:
801
801
  """
802
- The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
802
+ The database in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
803
803
  """
804
804
  return pulumi.get(self, "database")
805
805
 
@@ -841,7 +841,7 @@ class View(pulumi.CustomResource):
841
841
  @pulumi.getter
842
842
  def name(self) -> pulumi.Output[str]:
843
843
  """
844
- Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
844
+ Specifies the identifier for the view; must be unique for the schema in which the view is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
845
845
  """
846
846
  return pulumi.get(self, "name")
847
847
 
@@ -857,7 +857,7 @@ class View(pulumi.CustomResource):
857
857
  @pulumi.getter
858
858
  def schema(self) -> pulumi.Output[str]:
859
859
  """
860
- The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
860
+ The schema in which to create the view. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
861
861
  """
862
862
  return pulumi.get(self, "schema")
863
863
 
@@ -47,7 +47,7 @@ class WarehouseArgs:
47
47
  :param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
48
48
  :param pulumi.Input[int] max_concurrency_level: Object parameter that specifies the concurrency level for SQL statements (i.e. queries and DML) executed by a warehouse.
49
49
  :param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
50
- :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
50
+ :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
51
51
  :param pulumi.Input[int] query_acceleration_max_scale_factor: Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size.
52
52
  :param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
53
53
  :param pulumi.Input[str] scaling_policy: Specifies the policy for automatically starting and shutting down clusters in a multi-cluster warehouse running in Auto-scale mode. Valid values are (case-insensitive): `STANDARD` | `ECONOMY`.
@@ -189,7 +189,7 @@ class WarehouseArgs:
189
189
  @pulumi.getter
190
190
  def name(self) -> Optional[pulumi.Input[str]]:
191
191
  """
192
- Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
192
+ Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
193
193
  """
194
194
  return pulumi.get(self, "name")
195
195
 
@@ -315,7 +315,7 @@ class _WarehouseState:
315
315
  :param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
316
316
  :param pulumi.Input[int] max_concurrency_level: Object parameter that specifies the concurrency level for SQL statements (i.e. queries and DML) executed by a warehouse.
317
317
  :param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
318
- :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
318
+ :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
319
319
  :param pulumi.Input[Sequence[pulumi.Input['WarehouseParameterArgs']]] parameters: Outputs the result of `SHOW PARAMETERS IN WAREHOUSE` for the given warehouse.
320
320
  :param pulumi.Input[int] query_acceleration_max_scale_factor: Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size.
321
321
  :param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
@@ -477,7 +477,7 @@ class _WarehouseState:
477
477
  @pulumi.getter
478
478
  def name(self) -> Optional[pulumi.Input[str]]:
479
479
  """
480
- Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
480
+ Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
481
481
  """
482
482
  return pulumi.get(self, "name")
483
483
 
@@ -633,7 +633,7 @@ class Warehouse(pulumi.CustomResource):
633
633
  :param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
634
634
  :param pulumi.Input[int] max_concurrency_level: Object parameter that specifies the concurrency level for SQL statements (i.e. queries and DML) executed by a warehouse.
635
635
  :param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
636
- :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
636
+ :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
637
637
  :param pulumi.Input[int] query_acceleration_max_scale_factor: Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size.
638
638
  :param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
639
639
  :param pulumi.Input[str] scaling_policy: Specifies the policy for automatically starting and shutting down clusters in a multi-cluster warehouse running in Auto-scale mode. Valid values are (case-insensitive): `STANDARD` | `ECONOMY`.
@@ -759,7 +759,7 @@ class Warehouse(pulumi.CustomResource):
759
759
  :param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
760
760
  :param pulumi.Input[int] max_concurrency_level: Object parameter that specifies the concurrency level for SQL statements (i.e. queries and DML) executed by a warehouse.
761
761
  :param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
762
- :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
762
+ :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
763
763
  :param pulumi.Input[Sequence[pulumi.Input[Union['WarehouseParameterArgs', 'WarehouseParameterArgsDict']]]] parameters: Outputs the result of `SHOW PARAMETERS IN WAREHOUSE` for the given warehouse.
764
764
  :param pulumi.Input[int] query_acceleration_max_scale_factor: Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size.
765
765
  :param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
@@ -871,7 +871,7 @@ class Warehouse(pulumi.CustomResource):
871
871
  @pulumi.getter
872
872
  def name(self) -> pulumi.Output[str]:
873
873
  """
874
- Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
874
+ Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`
875
875
  """
876
876
  return pulumi.get(self, "name")
877
877
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_snowflake
3
- Version: 0.62.0a1732602720
3
+ Version: 0.62.0a1732732164
4
4
  Summary: A Pulumi package for creating and managing snowflake cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,27 +1,27 @@
1
- pulumi_snowflake/__init__.py,sha256=vsUMFRNA-NVNPzN1VKIpIize2reyHSYbNe-kIoZpEyA,21925
2
- pulumi_snowflake/_inputs.py,sha256=B9CP62o1c1QHywYDvmH9UcjUmKEsxH9gsKUwFM9h-xA,1599015
1
+ pulumi_snowflake/__init__.py,sha256=O52y2xGrVXlOGApP9zcWUCaNUxq26kX4NLR8EaUv710,21949
2
+ pulumi_snowflake/_inputs.py,sha256=UsDoHdUzul2HFzrQnO8-FIS0BroX6FLxjBgkBg63114,1830027
3
3
  pulumi_snowflake/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
4
4
  pulumi_snowflake/account.py,sha256=AVDJ--RjWG-Pv4kw2kVQY0lyB8llAvod6jI4VodaYuQ,47160
5
5
  pulumi_snowflake/account_authentication_policy_attachment.py,sha256=nz_c1DMOysRj5nW24oAXDRHL5JvEKXhfAXB8uanqr24,7328
6
6
  pulumi_snowflake/account_parameter.py,sha256=jyy1gnFKoYVn49irrZZZlNlKeg9X58XY1gzWQWDI8Io,8927
7
7
  pulumi_snowflake/account_password_policy_attachment.py,sha256=BsKxVE6d_37Gpxh_fMa6mI5TClxnMQpnfL9J4uAnozY,6944
8
- pulumi_snowflake/account_role.py,sha256=EcKm8ysaiyheyACfhlPtHqQN7ilVSLLRgMliCaek8V4,11122
8
+ pulumi_snowflake/account_role.py,sha256=PP5pL3YBGW1mbBcvXKEGZ5JTD8NnFN2DrJC0pxljIPg,11052
9
9
  pulumi_snowflake/alert.py,sha256=dFZYIlKC1QHPwA--O80IVbFPwKXuMvq6cpbMJpO1x2o,24197
10
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=RQkNJQMQnYDm6RI6cTIMkUQfNqRyduZPNp-0MlUutJg,43269
11
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=o3SDwERSWXX2bMYcjFOUG2ZcOPo0slZrzEY1Rj-TMvg,40005
12
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=bi0cDCmArj_mi3qNVbJy5lrcj7GiPZCr7h_zkE8g2kk,40741
10
+ pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=bSzS6R12pd9H4X_gL4nizt7parnY8elfuq5Nzw3RFmk,43199
11
+ pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=nVPzwNOXh3PFn2vJIqw9b6g6GnuXF3G5ASB1f3-UojY,39935
12
+ pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=qB2BDIixEakZ1Ct-1fCWGaX68PJr47gMsnAugqOqUFk,40671
13
13
  pulumi_snowflake/api_integration.py,sha256=l1PvCrilGDnnLDi78fUs3PFmkaX_3LSbhLI88oWkAFY,40529
14
- pulumi_snowflake/authentication_policy.py,sha256=gjH9lwvd9o71N2GZGPDEl1jjsOZuABxg13ckhGfSa_0,42358
14
+ pulumi_snowflake/authentication_policy.py,sha256=GNY51NJIIr9alx0gIs3SYNB5jXhNwF3wrQPFUBUXuig,42148
15
15
  pulumi_snowflake/cortex_search_service.py,sha256=cQ3JFgokDMlP22Pmaqmb0UZGyItjicFOHERwcae-Zx4,25774
16
- pulumi_snowflake/database.py,sha256=yqG_HREDo8-UcraPDkStS6mVmNqeDMgz1sih9Ycj1vI,86934
16
+ pulumi_snowflake/database.py,sha256=ZYMPBdMs7k4hneu53j7aT5MWc_os9jQDZP0UE82rqwY,86864
17
17
  pulumi_snowflake/database_old.py,sha256=laFuzDtQoWo7iojPgITKEw0dQ01_sMIBJpe0p_9uIEE,27997
18
- pulumi_snowflake/database_role.py,sha256=2IHWUDRPIRaMNoD1Ie-ugy1I9sTYHEV2bwxA3tU4SCE,14753
18
+ pulumi_snowflake/database_role.py,sha256=7u-WU6RHISv_PX4KPtgoj7SlePOLJtsarOAXNBGZa3I,14613
19
19
  pulumi_snowflake/dynamic_table.py,sha256=_0zfkh5Qr6T42WfzsN1EO0p4HtXQ9HCvrITmgblwj8s,41364
20
20
  pulumi_snowflake/email_notification_integration.py,sha256=QnwfXgKmW01TYNbKayN2cvX0NfCIhittJ4YgIJ7DViM,12885
21
21
  pulumi_snowflake/external_function.py,sha256=PLM-30_f0LtAN6BYc7KjWih0nFZtn1v-OdVD2ofon7E,49316
22
- pulumi_snowflake/external_oauth_integration.py,sha256=mG-Zjwamgllnz4VLa0r3a1EBAPg4TTk-QMwwZFwv1d4,66588
22
+ pulumi_snowflake/external_oauth_integration.py,sha256=dUdQgrikRLGQ9Iqb2W4aZvlzFosdwnypYnd8Wlg-wkg,66518
23
23
  pulumi_snowflake/external_table.py,sha256=a_vd4m-gwKoJI6As6az_wlAYdBCJro_EmP_MdZ-3eSs,41563
24
- pulumi_snowflake/external_volume.py,sha256=0rglPwqSCTGPYQ3D6Arq9LDAA5Ho6zdoS2xWQ18UeaY,24306
24
+ pulumi_snowflake/external_volume.py,sha256=K7mV2PxGFhao103Zc1LRK0f4z8RG2mSEMN12Guxc8SQ,24236
25
25
  pulumi_snowflake/failover_group.py,sha256=eKqBhUUIlzocvBDnfUm1KAG0zPUklmcD5Bx_-V6oou0,38482
26
26
  pulumi_snowflake/file_format.py,sha256=lHZNvtfWdJ4qUgqj5qSR_K-XUqueG2znQcT-NnHIYq0,93070
27
27
  pulumi_snowflake/function.py,sha256=6AlpMLceE2RAhErpK0wmFGliAV5OoomP3BxK6chao6A,42264
@@ -66,7 +66,8 @@ pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=h3BdeP44-qeOAHgB6Wu
66
66
  pulumi_snowflake/get_system_get_private_link_config.py,sha256=HteDPCysQG6n8I7FJcQ13RqS2UV91Agtdcc3BUsYnYk,12331
67
67
  pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=5Fg3tkawVBDBGnscNAzztrxAOoH54PtbVxBlAPDgPYo,4189
68
68
  pulumi_snowflake/get_tables.py,sha256=IlDGQ4HMBdmzMRnKEbDEGHpI3G5k_FSKHt2EFFlZxSk,4779
69
- pulumi_snowflake/get_tasks.py,sha256=zl_s1JxCUDnM0OkvGNHV1EC-EMyRcey0BS4KCZrkerA,4732
69
+ pulumi_snowflake/get_tags.py,sha256=8Cc3UkdTHbRG-h1kwOarE_-f6HEFgO3cU2T5PnEf2V0,5890
70
+ pulumi_snowflake/get_tasks.py,sha256=bSgs472vW3syE9k9hplci0ZNsE-wENcEUS3CRGAjh28,11399
70
71
  pulumi_snowflake/get_users.py,sha256=ctrEYtC4oPvVxvMUfm8p1vU46dS9S7EC3IV7-bB_PhU,11468
71
72
  pulumi_snowflake/get_views.py,sha256=HUE1N7RqOBi-D9BdAmHVRYbPLPcwS2e9emsKUSmtUxI,10327
72
73
  pulumi_snowflake/get_warehouses.py,sha256=uBvZXCkza_sju0yh1e7vVc2TJdWUS9gEobUMNMSaXl0,8204
@@ -77,71 +78,71 @@ pulumi_snowflake/grant_ownership.py,sha256=DJWE2FO_ysPysBWOgWKTrxFifSreod-aW-HOs
77
78
  pulumi_snowflake/grant_privileges_to_account_role.py,sha256=1d1u9aFIIjlCAhsAwjAHQLaUQlgtjR55TL1CGwm_RaQ,31419
78
79
  pulumi_snowflake/grant_privileges_to_database_role.py,sha256=BelFNII1Q1O7EMKFHNLRz5ezvXJczYIfWpBUfVJ74wY,28532
79
80
  pulumi_snowflake/grant_privileges_to_share.py,sha256=Y3ltvhnH2Dw5kiRGwTaKxiIMwhIJNSxNEa0jJGxd1bo,25069
80
- pulumi_snowflake/legacy_service_user.py,sha256=1KRWBHP-sCv8DrcnCmlP-Qc7eYw5gVlHwYo68akGgpo,327186
81
+ pulumi_snowflake/legacy_service_user.py,sha256=ed_Z6hmvsRIuHy8_6QIzkLdVrP-TxT9FizZBgvFR-Ec,327116
81
82
  pulumi_snowflake/managed_account.py,sha256=kIqqXm5nYCw-AgaXM1jhEL4wUQVfadzYoc4m3VaEPb4,22352
82
- pulumi_snowflake/masking_policy.py,sha256=vXs24jH6ffq5mKtJQiKAbpKY0QcBXW_EcXQyQrbwWjA,35639
83
+ pulumi_snowflake/masking_policy.py,sha256=uM2a2S_MXbqKHeknTvNEeYPK1ctn8gA4HI4awg9C3WI,35429
83
84
  pulumi_snowflake/materialized_view.py,sha256=y1TFBXlXVVMBeSIcgileuptX3oX9VgS-hfkCCellnPE,24500
84
- pulumi_snowflake/network_policy.py,sha256=BnPLeOhnBWJ1gs4wtVqhycmw6v8rVbnxFyl8hcKuOas,27672
85
+ pulumi_snowflake/network_policy.py,sha256=f-9KJtVc2KHVHwI8iulHTQIUwjiOVbmI_-QyNUe6CD4,27602
85
86
  pulumi_snowflake/network_policy_attachment.py,sha256=4JQY3WsgKwIC_9k9izZX60In-dniPmu0P6N7WAe2fbg,15364
86
87
  pulumi_snowflake/network_rule.py,sha256=bvyfGis-UjvH2oMMP-96k_ABWTU9Jd7AB_Mm81nPN-A,23929
87
88
  pulumi_snowflake/notification_integration.py,sha256=onf6ayHu0Ns6Ibmlr7BoQ__2Clc-EMnSIAXokecVgbs,49366
88
89
  pulumi_snowflake/oauth_integration.py,sha256=LvL2jjSYPwF3ilaxpPX8q8J9yU6rxXbRCYYMlqalWzA,31539
89
- pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=P4XZGOowBPm3g4s8ZVNqp_isUfGhKwE0RLh8po4850g,56015
90
- pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=KG1Fi47z29mRaWZ93MtFOWVDKYWXNWKsTYoeBC9_cj4,36607
90
+ pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=0HQXMOzTKyKRkfSl7-7KYvwJ3q9A7cOxLe2VkaBvOeM,55945
91
+ pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=XTXauQgMBwkbXFek69k1hgmdmsC_XsJqOcwkk_HA288,36537
91
92
  pulumi_snowflake/object_parameter.py,sha256=KiQuEvG6NrH-NFmAg_FnmmX5ZBBD6lVB7v6sCJUrXiA,18715
92
- pulumi_snowflake/outputs.py,sha256=y3bwic_t1duWXNcgLTsn_vFqdoL_hYXHwOHcmKIP_ls,1344258
93
- pulumi_snowflake/password_policy.py,sha256=Vh54yzM_4WtVKMrLQU6uAPznTrcYB58hJk1ug199rXE,53905
93
+ pulumi_snowflake/outputs.py,sha256=8clXJTVHj8VhH0TSZVSvLuIIXepDwNKMTbj-keO0VFQ,1575156
94
+ pulumi_snowflake/password_policy.py,sha256=YrEGmTPmrJMqhmpf7V57YnjRKYok9zmTFAfiyma9WTM,53819
94
95
  pulumi_snowflake/pipe.py,sha256=TUydVIVUwkIuDeCxpwVziLj5nOCsqcIejZ-JybN94qg,26413
95
- pulumi_snowflake/primary_connection.py,sha256=WgLVi-69X81I31R8WMZ61zwH5C6W2iYRZiP1lSS5fn4,18843
96
+ pulumi_snowflake/primary_connection.py,sha256=S1G8zVY4iSgXP6wgoogS-aIGOmYzJxlyNmo0d3eTjhA,18773
96
97
  pulumi_snowflake/procedure.py,sha256=Dg8cjvxO3iLp6g9ND2lQpkhGI14O42xlZMsGsR4ZMds,45794
97
98
  pulumi_snowflake/provider.py,sha256=YiaSLv9PM7dB-q2b7W_SS4KswxPjcqI4skaEAcoAOkI,102620
98
- pulumi_snowflake/pulumi-plugin.json,sha256=zjCC43ZzvGIrX4a2uGu9f_hw171llq5Y3tN0ODqOd2I,86
99
+ pulumi_snowflake/pulumi-plugin.json,sha256=RnFdfElZNJ3xyzDvan3ki7LbH5yAFVw6HHM0rxugBOQ,86
99
100
  pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
- pulumi_snowflake/resource_monitor.py,sha256=ZAYYFguvUfRV7QC0ReOHOhcE3gHbLcUDPOF2c_4qnjI,42101
101
- pulumi_snowflake/role.py,sha256=6XbCskGmmGtB7Yr8U9uZNkqFbxCPKtGey3CVCEpSUhQ,10891
102
- pulumi_snowflake/row_access_policy.py,sha256=i8LWudc25urMsjlKWjPgCizSHCGXlvPrG4KA8Gwgbc4,28095
103
- pulumi_snowflake/saml2_integration.py,sha256=u0mKSWh4VWhgvbN8XG5OsS6owRgHueW6Fmk-Qxx89ss,76679
101
+ pulumi_snowflake/resource_monitor.py,sha256=2i8agd2_EQn3Y41UR6piLxLRLf6YtyPzH9t68BbYWk8,42031
102
+ pulumi_snowflake/role.py,sha256=ihb2gIzixpeD78g9VQI5zYQNZILvo9UM2SuLXAcJTL4,10821
103
+ pulumi_snowflake/row_access_policy.py,sha256=2PxA5Mlvaww5it1WRJqNWL1bMgEsErTZ5RKQ050d_9Y,27885
104
+ pulumi_snowflake/saml2_integration.py,sha256=Chp4LROFgDEgN8me6xAuVc51XPfJGCFBG9GemCZlDkM,76609
104
105
  pulumi_snowflake/saml_integration.py,sha256=25snUHI4FQzzHnhKVqnbXGvuEC0oOs812tGx7Vud3v0,62645
105
106
  pulumi_snowflake/schema.py,sha256=iTC2DamZu-X6Y1W7bg-1r-VdPVrw3-on089U1H0w0Yk,92492
106
- pulumi_snowflake/scim_integration.py,sha256=nTbLnwIHXicNFXrovxfGwTHPNydkK9kykJGjzbNqa38,28734
107
- pulumi_snowflake/secondary_connection.py,sha256=licxDQsc4EdXhAhBN6JM5zxu4ZbaGpu1gISpQ6p01XE,17448
108
- pulumi_snowflake/secondary_database.py,sha256=LvzAa9vYCpELorXG3366ScmRwpfzFuXFMIoh87DElJ8,82584
109
- pulumi_snowflake/secret_with_authorization_code_grant.py,sha256=3PL8NG4boLBA1jfxu2EL-8g18iwojsGqI_VJiKVttKk,29382
110
- pulumi_snowflake/secret_with_basic_authentication.py,sha256=oxCgc1XZzsQMmrMP_SIjsWo3qlvbB_-A4mRCAGT5QPI,24500
111
- pulumi_snowflake/secret_with_client_credentials.py,sha256=3CKeBP4pt9Y6Vtq_jZm-YjT-D9yQRh5GaeJ_y4pXZv0,26854
112
- pulumi_snowflake/secret_with_generic_string.py,sha256=in5RxXvZ8RkVtHj1OaXLL1XDAzq1msiFR6ChY2o6F0Q,22477
107
+ pulumi_snowflake/scim_integration.py,sha256=tzGSjl2qfbdDZArpoWDXO85zKNnpiIhPHUAsm_pgTVg,28664
108
+ pulumi_snowflake/secondary_connection.py,sha256=rWZMV2cRQsex54Odmp0tjOOrgJGHXasGhaLd7A2VZI4,17378
109
+ pulumi_snowflake/secondary_database.py,sha256=X05WZgWalqzbsFKeB2Ct6pVaTPkuoYkLZwK59stWYwA,82514
110
+ pulumi_snowflake/secret_with_authorization_code_grant.py,sha256=VaPg2aIBuLIBAxX8eX9WS5rYKZaJc3YmsHqRkulP9z8,29172
111
+ pulumi_snowflake/secret_with_basic_authentication.py,sha256=rCn7-XHRZEixemQuW1O7cDy93htPV66pEi0Db1pWSkQ,24290
112
+ pulumi_snowflake/secret_with_client_credentials.py,sha256=Lly9rNyLBw3uFGEJEni52MaddXh9D2Xex1mJ_oQOC-Y,26644
113
+ pulumi_snowflake/secret_with_generic_string.py,sha256=ofGq6eVnxX4RP0N0ynzs19pJ6YJDpwH5lBGb9xhxDR0,22267
113
114
  pulumi_snowflake/sequence.py,sha256=3uch8fN22pyburdAvyvHjktLgiVoFqqw0pXX1sD4q1Q,18290
114
- pulumi_snowflake/service_user.py,sha256=G-dAHCezsD5vcARCptHw3hQE3RCqdp9xwelbdSVuEdY,321186
115
+ pulumi_snowflake/service_user.py,sha256=1zPhXWs7dJLi1kXitnK-muVdPxlJA-B87doDyasdRtc,321116
115
116
  pulumi_snowflake/session_parameter.py,sha256=jmzbbo5i4UtLyijM4aiOJ6KDCt7Qgxznn51UtECrIo4,12933
116
117
  pulumi_snowflake/share.py,sha256=PmUfEZZuLv_Ls6o8cH3qwA7TkJXYYmsEggqgF22VLGM,12275
117
- pulumi_snowflake/shared_database.py,sha256=hG7QRWFWDbFdMOyg-6qc-UE_9RKRWDzB-hidYVXazcg,65735
118
+ pulumi_snowflake/shared_database.py,sha256=GxNvGpVHLAVxLuVqgLg716IZVXPtDkbbuRslOZUwJmg,65665
118
119
  pulumi_snowflake/stage.py,sha256=vbGPND3vgFK81mOs_C894EmzrPbDj_CtX7w02bpPan4,38015
119
- pulumi_snowflake/storage_integration.py,sha256=vb1ofhP6LU-J6t2_qBAB7rPqqF6MlpPU7M16fKx2pO0,33141
120
+ pulumi_snowflake/storage_integration.py,sha256=RxVJndz3CQPmS6d8ozo-_CIlrY2J5Y-tpObd8xIWDtg,34253
120
121
  pulumi_snowflake/stream.py,sha256=5E1OJaOaiArwfqWH21tcNq_xj5EXWP8YTw5WToOC6zI,26825
121
- pulumi_snowflake/stream_on_directory_table.py,sha256=Irpcp7_sjaDC-dk4G3mMZu02xAyMZkNTdhrLJk8E3GI,29512
122
- pulumi_snowflake/stream_on_external_table.py,sha256=KbCSl51FWQ8CyD3iA5I_RPAM0i8kTbU2l7-2cbKm-j8,34584
123
- pulumi_snowflake/stream_on_table.py,sha256=t2eNpM-zt-60ZwMimPMMBZ3GZn5Y6YDrkAW15wT19zk,35180
124
- pulumi_snowflake/stream_on_view.py,sha256=eNHuc7LJSUMNF5czSm79gUy2i3x32r32EAsSAuPJL-0,35073
122
+ pulumi_snowflake/stream_on_directory_table.py,sha256=eoK5aWuT02m0dzk4_YRbcstljNpQbRh2San0ZHeyiVc,29232
123
+ pulumi_snowflake/stream_on_external_table.py,sha256=n-2YaORVatNJcbFgn0PTNvniRPz2tUEr2dl1Pv148YI,34304
124
+ pulumi_snowflake/stream_on_table.py,sha256=LLfOwniTcjQWfw4RTOxHpQ7AJeXmd6o4E0tQB2SggsE,34900
125
+ pulumi_snowflake/stream_on_view.py,sha256=lkDkXRVyEzv96S4nnwFSp2CUZI6p2fbHJ_BejIKhVsM,34793
125
126
  pulumi_snowflake/streamlit.py,sha256=2qCRo345W5x69yGfPogDRNXfsVTj9sKO4AkcvnThjoQ,31013
126
127
  pulumi_snowflake/table.py,sha256=ytScReoDsOfI3X2JR1rm2FtLPxnGDAzqj-T9EHAzxsc,33157
127
128
  pulumi_snowflake/table_column_masking_policy_application.py,sha256=He2six0YqZ5AHAb3lnHIpDNn3QhdNIPPzl82tK29Dhk,10717
128
129
  pulumi_snowflake/table_constraint.py,sha256=clloXd2bSwHxVuSRj3DPl44Yj3B5qaMYV5JcYEuG7H4,31166
129
- pulumi_snowflake/tag.py,sha256=jE2cNJCXna0ZwpIv7piAM4tnJVDF_J0z-0VTiCbnIJ8,15397
130
+ pulumi_snowflake/tag.py,sha256=1m9vSMB2GtS2o-KhGHEBBQPf-RAWvzyckJeObVB_8QM,22537
130
131
  pulumi_snowflake/tag_association.py,sha256=N25kJPYEYiYmn0lFP90mEdSYf-pmCV4nPYn6MWN0A5k,22842
131
132
  pulumi_snowflake/tag_masking_policy_association.py,sha256=E1LrfN7lLlRUqf8j9JL0tjLYiZXgkI3KviA13N6BM1s,9865
132
- pulumi_snowflake/task.py,sha256=2wYzEEw6rfhBzqJe87eWxS2dC2E4XxyeLJfzr38rSTw,47908
133
+ pulumi_snowflake/task.py,sha256=VgCtLgBaX_x4_hH0wxosoPXuJNP5HRNo_EtoLr7UGbY,320201
133
134
  pulumi_snowflake/unsafe_execute.py,sha256=6Gp1SrnXsnlri07rkSm9PtE1Ys_5mR2w64wCO5X3pNA,11926
134
- pulumi_snowflake/user.py,sha256=KDvJ0k5BOiq5IiXjiWOXfR7FoJP4U-Mb-85MTGwFSVg,335187
135
+ pulumi_snowflake/user.py,sha256=iwgOWluem7Z_AYRx8417pOhLNvW7ZukjobGhV-7mDvA,335117
135
136
  pulumi_snowflake/user_authentication_policy_attachment.py,sha256=oZ-xdgGbkChufZp1OsGfp4tEDN3OWIRezUG-xzjhDQ0,9142
136
137
  pulumi_snowflake/user_password_policy_attachment.py,sha256=FwvBU8U-_KdpgbplKi3Q3s_Pulh1paOfOvqUvyhB5oQ,8924
137
138
  pulumi_snowflake/user_public_keys.py,sha256=hsyt78EP4kHs5SK7rLCPsWIHXI64N0D-KUdGUnO_sxY,11452
138
- pulumi_snowflake/view.py,sha256=394gynbpC5gPl7vkf7GeoZRuXtze6IsdEKVSW4uzMcY,49148
139
- pulumi_snowflake/warehouse.py,sha256=se2NXj9yS6klXgp7Acgr0niPUTwPwhioJz21rQgoCfA,58531
139
+ pulumi_snowflake/view.py,sha256=t6Pdh6OhNcLKctgYpW4j-Kf0wN3uKT72gTaQ4_NBfG8,48938
140
+ pulumi_snowflake/warehouse.py,sha256=FM-k6FycXeGOELTpdBpbD6Istd3ruBD8XS5_colE1sw,58461
140
141
  pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
141
142
  pulumi_snowflake/config/__init__.pyi,sha256=KY9Y8c6BWuAzIw6wERoii8J1SjaSHxMa2LgsZ1_Wodg,12177
142
143
  pulumi_snowflake/config/outputs.py,sha256=iAJ-lzy_gkkdNr_znbdiKbAphOhXY3G9NGJHcHMk8rU,4041
143
144
  pulumi_snowflake/config/vars.py,sha256=L4aNuov9BOY6CVUrY_Ir7c-2lvj4Y0HQzd9A-bu4zfM,18915
144
- pulumi_snowflake-0.62.0a1732602720.dist-info/METADATA,sha256=WMNZgkjBhUuP6gdfY70a8vNouidz71JjRpS0L3JJjLE,5044
145
- pulumi_snowflake-0.62.0a1732602720.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
146
- pulumi_snowflake-0.62.0a1732602720.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
147
- pulumi_snowflake-0.62.0a1732602720.dist-info/RECORD,,
145
+ pulumi_snowflake-0.62.0a1732732164.dist-info/METADATA,sha256=4FteG490wOdcWwOwaYDTbJwtOQc7fj-nLOjyY9NDEKk,5044
146
+ pulumi_snowflake-0.62.0a1732732164.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
147
+ pulumi_snowflake-0.62.0a1732732164.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
148
+ pulumi_snowflake-0.62.0a1732732164.dist-info/RECORD,,