pulumi-snowflake 0.58.0__py3-none-any.whl → 0.58.0a1722528062__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 (92) hide show
  1. pulumi_snowflake/_inputs.py +125 -5857
  2. pulumi_snowflake/account.py +50 -28
  3. pulumi_snowflake/account_parameter.py +28 -0
  4. pulumi_snowflake/account_password_policy_attachment.py +30 -2
  5. pulumi_snowflake/account_role.py +32 -51
  6. pulumi_snowflake/alert.py +45 -33
  7. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +19 -39
  8. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +19 -39
  9. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +19 -39
  10. pulumi_snowflake/api_integration.py +54 -28
  11. pulumi_snowflake/cortex_search_service.py +0 -28
  12. pulumi_snowflake/database.py +148 -97
  13. pulumi_snowflake/database_old.py +77 -5
  14. pulumi_snowflake/database_role.py +42 -76
  15. pulumi_snowflake/dynamic_table.py +43 -33
  16. pulumi_snowflake/email_notification_integration.py +26 -28
  17. pulumi_snowflake/external_function.py +62 -38
  18. pulumi_snowflake/external_oauth_integration.py +21 -41
  19. pulumi_snowflake/external_table.py +58 -38
  20. pulumi_snowflake/failover_group.py +82 -38
  21. pulumi_snowflake/file_format.py +26 -28
  22. pulumi_snowflake/function.py +9 -33
  23. pulumi_snowflake/get_cortex_search_services.py +16 -16
  24. pulumi_snowflake/get_database_roles.py +38 -61
  25. pulumi_snowflake/get_databases.py +6 -6
  26. pulumi_snowflake/get_dynamic_tables.py +12 -12
  27. pulumi_snowflake/get_grants.py +138 -138
  28. pulumi_snowflake/get_network_policies.py +2 -2
  29. pulumi_snowflake/get_roles.py +2 -2
  30. pulumi_snowflake/get_schemas.py +8 -12
  31. pulumi_snowflake/get_security_integrations.py +2 -2
  32. pulumi_snowflake/get_streamlits.py +10 -10
  33. pulumi_snowflake/get_users.py +33 -96
  34. pulumi_snowflake/get_views.py +53 -92
  35. pulumi_snowflake/get_warehouses.py +2 -2
  36. pulumi_snowflake/grant_account_role.py +4 -0
  37. pulumi_snowflake/grant_application_role.py +4 -0
  38. pulumi_snowflake/grant_database_role.py +4 -0
  39. pulumi_snowflake/grant_ownership.py +5 -5
  40. pulumi_snowflake/grant_privileges_to_account_role.py +15 -15
  41. pulumi_snowflake/grant_privileges_to_database_role.py +12 -16
  42. pulumi_snowflake/grant_privileges_to_share.py +0 -47
  43. pulumi_snowflake/managed_account.py +4 -28
  44. pulumi_snowflake/masking_policy.py +89 -33
  45. pulumi_snowflake/materialized_view.py +39 -33
  46. pulumi_snowflake/network_policy.py +49 -47
  47. pulumi_snowflake/network_policy_attachment.py +30 -0
  48. pulumi_snowflake/network_rule.py +66 -28
  49. pulumi_snowflake/notification_integration.py +34 -28
  50. pulumi_snowflake/oauth_integration.py +34 -0
  51. pulumi_snowflake/oauth_integration_for_custom_clients.py +105 -39
  52. pulumi_snowflake/oauth_integration_for_partner_applications.py +19 -39
  53. pulumi_snowflake/object_parameter.py +103 -5
  54. pulumi_snowflake/outputs.py +4207 -12013
  55. pulumi_snowflake/password_policy.py +28 -28
  56. pulumi_snowflake/pipe.py +4 -28
  57. pulumi_snowflake/procedure.py +9 -33
  58. pulumi_snowflake/provider.py +16 -16
  59. pulumi_snowflake/pulumi-plugin.json +1 -1
  60. pulumi_snowflake/resource_monitor.py +48 -28
  61. pulumi_snowflake/role.py +32 -51
  62. pulumi_snowflake/row_access_policy.py +34 -28
  63. pulumi_snowflake/saml2_integration.py +19 -39
  64. pulumi_snowflake/saml_integration.py +34 -0
  65. pulumi_snowflake/schema.py +28 -52
  66. pulumi_snowflake/scim_integration.py +19 -39
  67. pulumi_snowflake/secondary_database.py +19 -35
  68. pulumi_snowflake/sequence.py +36 -4
  69. pulumi_snowflake/session_parameter.py +32 -0
  70. pulumi_snowflake/share.py +28 -28
  71. pulumi_snowflake/shared_database.py +15 -35
  72. pulumi_snowflake/stage.py +33 -33
  73. pulumi_snowflake/storage_integration.py +4 -28
  74. pulumi_snowflake/stream.py +4 -28
  75. pulumi_snowflake/streamlit.py +19 -39
  76. pulumi_snowflake/table.py +47 -43
  77. pulumi_snowflake/table_column_masking_policy_application.py +14 -2
  78. pulumi_snowflake/table_constraint.py +157 -5
  79. pulumi_snowflake/tag.py +40 -28
  80. pulumi_snowflake/tag_association.py +125 -5
  81. pulumi_snowflake/tag_masking_policy_association.py +4 -0
  82. pulumi_snowflake/task.py +92 -28
  83. pulumi_snowflake/unsafe_execute.py +20 -2
  84. pulumi_snowflake/user.py +373 -3346
  85. pulumi_snowflake/user_password_policy_attachment.py +36 -0
  86. pulumi_snowflake/view.py +185 -465
  87. pulumi_snowflake/warehouse.py +43 -39
  88. {pulumi_snowflake-0.58.0.dist-info → pulumi_snowflake-0.58.0a1722528062.dist-info}/METADATA +1 -1
  89. pulumi_snowflake-0.58.0a1722528062.dist-info/RECORD +129 -0
  90. {pulumi_snowflake-0.58.0.dist-info → pulumi_snowflake-0.58.0a1722528062.dist-info}/WHEEL +1 -1
  91. pulumi_snowflake-0.58.0.dist-info/RECORD +0 -129
  92. {pulumi_snowflake-0.58.0.dist-info → pulumi_snowflake-0.58.0a1722528062.dist-info}/top_level.txt +0 -0
@@ -42,7 +42,7 @@ class WarehouseArgs:
42
42
  :param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
43
43
  :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.
44
44
  :param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
45
- :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: `|`, `.`, `(`, `)`, `"`
45
+ :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account.
46
46
  :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.
47
47
  :param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
48
48
  :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`.
@@ -184,7 +184,7 @@ class WarehouseArgs:
184
184
  @pulumi.getter
185
185
  def name(self) -> Optional[pulumi.Input[str]]:
186
186
  """
187
- Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
187
+ Identifier for the virtual warehouse; must be unique for your account.
188
188
  """
189
189
  return pulumi.get(self, "name")
190
190
 
@@ -284,7 +284,6 @@ class _WarehouseState:
284
284
  auto_suspend: Optional[pulumi.Input[int]] = None,
285
285
  comment: Optional[pulumi.Input[str]] = None,
286
286
  enable_query_acceleration: Optional[pulumi.Input[str]] = None,
287
- fully_qualified_name: Optional[pulumi.Input[str]] = None,
288
287
  initially_suspended: Optional[pulumi.Input[bool]] = None,
289
288
  max_cluster_count: Optional[pulumi.Input[int]] = None,
290
289
  max_concurrency_level: Optional[pulumi.Input[int]] = None,
@@ -305,12 +304,11 @@ class _WarehouseState:
305
304
  :param pulumi.Input[int] auto_suspend: Specifies the number of seconds of inactivity after which a warehouse is automatically suspended.
306
305
  :param pulumi.Input[str] comment: Specifies a comment for the warehouse.
307
306
  :param pulumi.Input[str] enable_query_acceleration: Specifies whether to enable the query acceleration service for queries that rely on this warehouse for compute resources. 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.
308
- :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).
309
307
  :param pulumi.Input[bool] initially_suspended: Specifies whether the warehouse is created initially in the ‘Suspended’ state.
310
308
  :param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
311
309
  :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.
312
310
  :param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
313
- :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: `|`, `.`, `(`, `)`, `"`
311
+ :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account.
314
312
  :param pulumi.Input[Sequence[pulumi.Input['WarehouseParameterArgs']]] parameters: Outputs the result of `SHOW PARAMETERS IN WAREHOUSE` for the given warehouse.
315
313
  :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.
316
314
  :param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
@@ -329,8 +327,6 @@ class _WarehouseState:
329
327
  pulumi.set(__self__, "comment", comment)
330
328
  if enable_query_acceleration is not None:
331
329
  pulumi.set(__self__, "enable_query_acceleration", enable_query_acceleration)
332
- if fully_qualified_name is not None:
333
- pulumi.set(__self__, "fully_qualified_name", fully_qualified_name)
334
330
  if initially_suspended is not None:
335
331
  pulumi.set(__self__, "initially_suspended", initially_suspended)
336
332
  if max_cluster_count is not None:
@@ -408,18 +404,6 @@ class _WarehouseState:
408
404
  def enable_query_acceleration(self, value: Optional[pulumi.Input[str]]):
409
405
  pulumi.set(self, "enable_query_acceleration", value)
410
406
 
411
- @property
412
- @pulumi.getter(name="fullyQualifiedName")
413
- def fully_qualified_name(self) -> Optional[pulumi.Input[str]]:
414
- """
415
- Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
416
- """
417
- return pulumi.get(self, "fully_qualified_name")
418
-
419
- @fully_qualified_name.setter
420
- def fully_qualified_name(self, value: Optional[pulumi.Input[str]]):
421
- pulumi.set(self, "fully_qualified_name", value)
422
-
423
407
  @property
424
408
  @pulumi.getter(name="initiallySuspended")
425
409
  def initially_suspended(self) -> Optional[pulumi.Input[bool]]:
@@ -472,7 +456,7 @@ class _WarehouseState:
472
456
  @pulumi.getter
473
457
  def name(self) -> Optional[pulumi.Input[str]]:
474
458
  """
475
- Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
459
+ Identifier for the virtual warehouse; must be unique for your account.
476
460
  """
477
461
  return pulumi.get(self, "name")
478
462
 
@@ -612,6 +596,22 @@ class Warehouse(pulumi.CustomResource):
612
596
  warehouse_type: Optional[pulumi.Input[str]] = None,
613
597
  __props__=None):
614
598
  """
599
+ !> **V1 release candidate** This resource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
600
+
601
+ Resource used to manage warehouse objects. For more information, check [warehouse documentation](https://docs.snowflake.com/en/sql-reference/commands-warehouse).
602
+
603
+ ## Example Usage
604
+
605
+ ```python
606
+ import pulumi
607
+ import pulumi_snowflake as snowflake
608
+
609
+ warehouse = snowflake.Warehouse("warehouse",
610
+ name="test",
611
+ comment="foo",
612
+ warehouse_size="small")
613
+ ```
614
+
615
615
  ## Import
616
616
 
617
617
  ```sh
@@ -628,7 +628,7 @@ class Warehouse(pulumi.CustomResource):
628
628
  :param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
629
629
  :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.
630
630
  :param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
631
- :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: `|`, `.`, `(`, `)`, `"`
631
+ :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account.
632
632
  :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.
633
633
  :param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
634
634
  :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`.
@@ -644,6 +644,22 @@ class Warehouse(pulumi.CustomResource):
644
644
  args: Optional[WarehouseArgs] = None,
645
645
  opts: Optional[pulumi.ResourceOptions] = None):
646
646
  """
647
+ !> **V1 release candidate** This resource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
648
+
649
+ Resource used to manage warehouse objects. For more information, check [warehouse documentation](https://docs.snowflake.com/en/sql-reference/commands-warehouse).
650
+
651
+ ## Example Usage
652
+
653
+ ```python
654
+ import pulumi
655
+ import pulumi_snowflake as snowflake
656
+
657
+ warehouse = snowflake.Warehouse("warehouse",
658
+ name="test",
659
+ comment="foo",
660
+ warehouse_size="small")
661
+ ```
662
+
647
663
  ## Import
648
664
 
649
665
  ```sh
@@ -706,7 +722,6 @@ class Warehouse(pulumi.CustomResource):
706
722
  __props__.__dict__["statement_timeout_in_seconds"] = statement_timeout_in_seconds
707
723
  __props__.__dict__["warehouse_size"] = warehouse_size
708
724
  __props__.__dict__["warehouse_type"] = warehouse_type
709
- __props__.__dict__["fully_qualified_name"] = None
710
725
  __props__.__dict__["parameters"] = None
711
726
  __props__.__dict__["show_outputs"] = None
712
727
  super(Warehouse, __self__).__init__(
@@ -723,17 +738,16 @@ class Warehouse(pulumi.CustomResource):
723
738
  auto_suspend: Optional[pulumi.Input[int]] = None,
724
739
  comment: Optional[pulumi.Input[str]] = None,
725
740
  enable_query_acceleration: Optional[pulumi.Input[str]] = None,
726
- fully_qualified_name: Optional[pulumi.Input[str]] = None,
727
741
  initially_suspended: Optional[pulumi.Input[bool]] = None,
728
742
  max_cluster_count: Optional[pulumi.Input[int]] = None,
729
743
  max_concurrency_level: Optional[pulumi.Input[int]] = None,
730
744
  min_cluster_count: Optional[pulumi.Input[int]] = None,
731
745
  name: Optional[pulumi.Input[str]] = None,
732
- parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WarehouseParameterArgs', 'WarehouseParameterArgsDict']]]]] = None,
746
+ parameters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WarehouseParameterArgs']]]]] = None,
733
747
  query_acceleration_max_scale_factor: Optional[pulumi.Input[int]] = None,
734
748
  resource_monitor: Optional[pulumi.Input[str]] = None,
735
749
  scaling_policy: Optional[pulumi.Input[str]] = None,
736
- show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WarehouseShowOutputArgs', 'WarehouseShowOutputArgsDict']]]]] = None,
750
+ show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WarehouseShowOutputArgs']]]]] = None,
737
751
  statement_queued_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
738
752
  statement_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
739
753
  warehouse_size: Optional[pulumi.Input[str]] = None,
@@ -749,17 +763,16 @@ class Warehouse(pulumi.CustomResource):
749
763
  :param pulumi.Input[int] auto_suspend: Specifies the number of seconds of inactivity after which a warehouse is automatically suspended.
750
764
  :param pulumi.Input[str] comment: Specifies a comment for the warehouse.
751
765
  :param pulumi.Input[str] enable_query_acceleration: Specifies whether to enable the query acceleration service for queries that rely on this warehouse for compute resources. 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.
752
- :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).
753
766
  :param pulumi.Input[bool] initially_suspended: Specifies whether the warehouse is created initially in the ‘Suspended’ state.
754
767
  :param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
755
768
  :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.
756
769
  :param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
757
- :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: `|`, `.`, `(`, `)`, `"`
758
- :param pulumi.Input[Sequence[pulumi.Input[Union['WarehouseParameterArgs', 'WarehouseParameterArgsDict']]]] parameters: Outputs the result of `SHOW PARAMETERS IN WAREHOUSE` for the given warehouse.
770
+ :param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account.
771
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WarehouseParameterArgs']]]] parameters: Outputs the result of `SHOW PARAMETERS IN WAREHOUSE` for the given warehouse.
759
772
  :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.
760
773
  :param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
761
774
  :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`.
762
- :param pulumi.Input[Sequence[pulumi.Input[Union['WarehouseShowOutputArgs', 'WarehouseShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW WAREHOUSE` for the given warehouse.
775
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WarehouseShowOutputArgs']]]] show_outputs: Outputs the result of `SHOW WAREHOUSE` for the given warehouse.
763
776
  :param pulumi.Input[int] statement_queued_timeout_in_seconds: Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
764
777
  :param pulumi.Input[int] statement_timeout_in_seconds: Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system
765
778
  :param pulumi.Input[str] warehouse_size: Specifies the size of the virtual warehouse. Valid values are (case-insensitive): `XSMALL` | `X-SMALL` | `SMALL` | `MEDIUM` | `LARGE` | `XLARGE` | `X-LARGE` | `XXLARGE` | `X2LARGE` | `2X-LARGE` | `XXXLARGE` | `X3LARGE` | `3X-LARGE` | `X4LARGE` | `4X-LARGE` | `X5LARGE` | `5X-LARGE` | `X6LARGE` | `6X-LARGE`. Consult [warehouse documentation](https://docs.snowflake.com/en/sql-reference/sql/create-warehouse#optional-properties-objectproperties) for the details. Note: removing the size from config will result in the resource recreation.
@@ -773,7 +786,6 @@ class Warehouse(pulumi.CustomResource):
773
786
  __props__.__dict__["auto_suspend"] = auto_suspend
774
787
  __props__.__dict__["comment"] = comment
775
788
  __props__.__dict__["enable_query_acceleration"] = enable_query_acceleration
776
- __props__.__dict__["fully_qualified_name"] = fully_qualified_name
777
789
  __props__.__dict__["initially_suspended"] = initially_suspended
778
790
  __props__.__dict__["max_cluster_count"] = max_cluster_count
779
791
  __props__.__dict__["max_concurrency_level"] = max_concurrency_level
@@ -822,14 +834,6 @@ class Warehouse(pulumi.CustomResource):
822
834
  """
823
835
  return pulumi.get(self, "enable_query_acceleration")
824
836
 
825
- @property
826
- @pulumi.getter(name="fullyQualifiedName")
827
- def fully_qualified_name(self) -> pulumi.Output[str]:
828
- """
829
- Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
830
- """
831
- return pulumi.get(self, "fully_qualified_name")
832
-
833
837
  @property
834
838
  @pulumi.getter(name="initiallySuspended")
835
839
  def initially_suspended(self) -> pulumi.Output[Optional[bool]]:
@@ -866,7 +870,7 @@ class Warehouse(pulumi.CustomResource):
866
870
  @pulumi.getter
867
871
  def name(self) -> pulumi.Output[str]:
868
872
  """
869
- Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
873
+ Identifier for the virtual warehouse; must be unique for your account.
870
874
  """
871
875
  return pulumi.get(self, "name")
872
876
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_snowflake
3
- Version: 0.58.0
3
+ Version: 0.58.0a1722528062
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
@@ -0,0 +1,129 @@
1
+ pulumi_snowflake/__init__.py,sha256=jLhHlQ_zLRRsNuX3MUUJZ6Zeo6ajiEG6dI7bTYnbqms,17867
2
+ pulumi_snowflake/_inputs.py,sha256=ZOPttY6q57bhXWRXNaP1yNkJFdHMakHSHifPz5TKGzU,539581
3
+ pulumi_snowflake/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
4
+ pulumi_snowflake/account.py,sha256=vJUJAc9rMC1XkVlj_q4AwDu6kO0DAvGFOqc89XTTGUs,47120
5
+ pulumi_snowflake/account_parameter.py,sha256=tQwfHgeDP9BHYfvXuhSl1vTub0UvMw52KGJNNy-n_ds,9445
6
+ pulumi_snowflake/account_password_policy_attachment.py,sha256=-JsZcmX9NHY2KQS1devUCXoqEZFKTUSZaOd_jl97S_k,7628
7
+ pulumi_snowflake/account_role.py,sha256=4JH9BLYZNM6nfHVv6i6iDaF14h0_LBpwmBcZWDue0wo,9557
8
+ pulumi_snowflake/alert.py,sha256=biv6GdmJ2sncU60-vLs_b4MNS_n2NGftoXjrU1trbU8,23278
9
+ pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=JIORJkSlxZHmGjb7KrapDckadvUZ9SnkoYunW3-EXjs,41678
10
+ pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=VzYEOq4dAcwQ5u2Xr5dhf1ptu6vqLtra3MLgZTVnDVY,38422
11
+ pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=sxlpFaZI4Q9EL3aHQagijmVZqZTT_6yy3ZxvZaYhIs8,39174
12
+ pulumi_snowflake/api_integration.py,sha256=KRwKhCyjlTuoM-IHtkgTD31uIJlGv340s78VBsEf7Qg,40947
13
+ pulumi_snowflake/cortex_search_service.py,sha256=3tsNMJxmOdj9nGpnGW0Bd5Zo1bCEckV1olo186019fg,23896
14
+ pulumi_snowflake/database.py,sha256=vpkuuZhlGj-5H_6OAdbK7nfjiySTbM0zNDLzN0GDopY,86565
15
+ pulumi_snowflake/database_old.py,sha256=27OE3sOJKSNMuhPwBA9AjSV3aQaLbbEoReLjotYUutc,30383
16
+ pulumi_snowflake/database_role.py,sha256=3jo3f547ySt5GuNBCKlUx7WyboeSjxZ2oUgbgpWi6cI,9831
17
+ pulumi_snowflake/dynamic_table.py,sha256=TT7bi_TFwNEsi9wSwvFr5TB3WGXAs89jYMhnY02felk,40652
18
+ pulumi_snowflake/email_notification_integration.py,sha256=Vf2-KL9Ec6KVb2-ijUV7YAzOsYwst5BKypwDHhWkjJs,11731
19
+ pulumi_snowflake/external_function.py,sha256=EHYcrx0MNRCyV8HV3CM0w9bRfXfVbP9STWzqSMKzFW4,48911
20
+ pulumi_snowflake/external_oauth_integration.py,sha256=0bxSj53wpi4q4DIOwmFfotOH8rza00wBd17VbSub63k,64979
21
+ pulumi_snowflake/external_table.py,sha256=utJNNSFmiigInW1EAMDK6-bGlj4U3TtYSSIoJXK6dpg,40874
22
+ pulumi_snowflake/failover_group.py,sha256=qkzfmKwLfPzwyZPQqro0nLTIlkYnAPWQ0ep6rLS9Jvs,38900
23
+ pulumi_snowflake/file_format.py,sha256=02NrI5_S1O2Xt6fHn_hKN2WoH3jhyJLBdYDHGJ9AoOU,91876
24
+ pulumi_snowflake/function.py,sha256=Y2BmKRWeq3FItyZ7sHNNMItMj3hfqSFj3vhvBzXlPlw,40353
25
+ pulumi_snowflake/get_accounts.py,sha256=1XaZzHCyz4veYUDjZ-urRSFR0WCEPCGpAneC8B_F7gk,3423
26
+ pulumi_snowflake/get_alerts.py,sha256=IOYjHzz6mofcwCs9US7STsx9kKz1pleAer2IR1iQEbg,4948
27
+ pulumi_snowflake/get_cortex_search_services.py,sha256=dc8s7Z6ynmWIuhxPMpApZnjfAB_P8GVAmz_HmOLdM0U,9171
28
+ pulumi_snowflake/get_current_account.py,sha256=ekQYpY3r7i7TXxCTtMo8B9MdLVQEfgURVxt0zs7glC4,3848
29
+ pulumi_snowflake/get_current_role.py,sha256=8qctYLhiMpij40a-sTPUpxno0OBzyTpp4pp1v0Dm3OM,2532
30
+ pulumi_snowflake/get_database.py,sha256=-OCZl50Fyaz8OSDes2wLsaf9dsk927UHIlFuut5ACSw,6025
31
+ pulumi_snowflake/get_database_role.py,sha256=VgJGlvm4SNuYWpoaClTLlyIS8dszGaX2WZgUpASbdFE,4493
32
+ pulumi_snowflake/get_database_roles.py,sha256=phyvBWznKjhUlGomFhsB2McEmdY6FSRAqy6Ux4qt22w,3656
33
+ pulumi_snowflake/get_databases.py,sha256=Gd4cXd1D8XIhO2n8SNeaxB8GSgWpYQXSNMXJkpUyiL8,10125
34
+ pulumi_snowflake/get_dynamic_tables.py,sha256=QIh9_v7aq2ena2BkGLdhYHKMa_tj6qN1ezdTKw5bCNc,7140
35
+ pulumi_snowflake/get_external_functions.py,sha256=-UoeIjSURHaxT-3F70gfowF1Xmy8TkbaKLNFpxYdEYo,4650
36
+ pulumi_snowflake/get_external_tables.py,sha256=MeoscZ7LbpY-Fj9zaQoXz-4VsQBSxhpyPiMiAn201hg,4481
37
+ pulumi_snowflake/get_failover_groups.py,sha256=3_2DcfbgcxQ3vPE-2uE18f_41j1p3nYruuB11nmrVIw,3531
38
+ pulumi_snowflake/get_file_formats.py,sha256=nM16keOSoW2kFh4te0gpAE-xIc3VwyzrW2tx76jDukI,4352
39
+ pulumi_snowflake/get_functions.py,sha256=A8jzOryl_PloHXf8EIKEt1NCIP3oQSyAV8XMdVIwKKY,4221
40
+ pulumi_snowflake/get_grants.py,sha256=hHqQkfXr9y9UJCTAG8jpf36HL3BqHUxyza6LbnzZLCE,14707
41
+ pulumi_snowflake/get_masking_policies.py,sha256=ra6_KaY7vxq4o3xztRQF7qJT4j8sQHmQRvxIA_MaxGs,4519
42
+ pulumi_snowflake/get_materialized_views.py,sha256=SzrOyytKFC1L1Bxtf_k8PI0wXfP_zkvrAfRHdYJIovQ,4558
43
+ pulumi_snowflake/get_network_policies.py,sha256=QFQLzEvCNuFWh7ZXdfh5Qk_1NF34Fmq322_ci5MG1kY,6251
44
+ pulumi_snowflake/get_parameters.py,sha256=sziM3-TIrQKQutCRQddpm6ql82SaE5lie55lm1dNAOw,9700
45
+ pulumi_snowflake/get_pipes.py,sha256=S8EURVcZJze6r7br5sdFFEcxmf358EK3ept7Sft5CFE,4053
46
+ pulumi_snowflake/get_procedures.py,sha256=1DZvj-MhgKOW3BGB6EQVtofsGAha8Rg7Sh2P1jsDars,4263
47
+ pulumi_snowflake/get_resource_monitors.py,sha256=ou1SwZvtDDpkFmFYvYZpmS_KeI_Zy51OW4Rk9EEDAGw,2895
48
+ pulumi_snowflake/get_role.py,sha256=BvCk_WCi6C8GvQc9q4nlWprYwVt9pI1pHUYieW_2JRs,3392
49
+ pulumi_snowflake/get_roles.py,sha256=KqVrYYO78IOiBWwN0AD4nB_tRG148MSk4lfiUk1xHGQ,5279
50
+ pulumi_snowflake/get_row_access_policies.py,sha256=U6dOdDDR5IN60wvnJmZ2vNr7JE6HrHzJ5Js9WHCBncs,4628
51
+ pulumi_snowflake/get_schemas.py,sha256=yJikfoEkxSpWPVsRmmJFnhwlBmZyVmwwGSllVsp3bTY,9942
52
+ pulumi_snowflake/get_security_integrations.py,sha256=n-n8vPw4xGAX2fMOt3DT-CCVG6BUM0mR2iTSPSOuDqc,6563
53
+ pulumi_snowflake/get_sequences.py,sha256=xp_duxQQTXk5R6MW7bhoqX9dEk7bATY1fk5F8vcuOoM,4221
54
+ pulumi_snowflake/get_shares.py,sha256=xOrMChS5bTQ8vIETDAtJt1Ar7VDjSo3fpqQldXyfRLU,3365
55
+ pulumi_snowflake/get_stages.py,sha256=0aDVuqtlisNUHBA1z81PgpUrYSNmfIUp3CrNTPG9vt0,4095
56
+ pulumi_snowflake/get_storage_integrations.py,sha256=B96Ikapf8A8FcFYRivOwOooBjbyj7wsZnul0C7kHJK4,3003
57
+ pulumi_snowflake/get_streamlits.py,sha256=s9bF0f9OI3hpRRWuZBY2zDQXYz2I8bsJ29cSa3gAnUg,8615
58
+ pulumi_snowflake/get_streams.py,sha256=lKhjr5ZI0ImQjl-zJPjVwzZNwPJDmZws4znbyQYynY8,4137
59
+ pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=qDnAfUXWuNeg4CkP0Rt8SZliQsE9kAyMYlB8U3cikvg,3986
60
+ pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=fm4NJGPdm5RehwqL0glf-HfiAf_71JxLNmNJaXQSNrI,4269
61
+ pulumi_snowflake/get_system_get_private_link_config.py,sha256=WaaVjQAKPaoOFig494UkEiVFaoOkfBlJHwGCaln9yQY,11211
62
+ pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=QLFK-mEZVXbTSfKzQOi83VE_fn5H5K8YAMJaQsQY8Rg,3520
63
+ pulumi_snowflake/get_tables.py,sha256=AG1baNGUWbRj4ow9g7OY6dGqkL-eUvgDtCOydrHvN9Y,4095
64
+ pulumi_snowflake/get_tasks.py,sha256=lzEuSYuJHfOeGhkVeFH2MdR612BWq5Ywc14P6tawsjo,4053
65
+ pulumi_snowflake/get_users.py,sha256=7oj99U-ynVSDwVarsWQZsUOwxMjoPOWwRRHeVwcX7Ko,3637
66
+ pulumi_snowflake/get_views.py,sha256=FkSkOYf7GwUf2yeD3mEmgsu9uzVvnVnxxY5sUUORqsg,4053
67
+ pulumi_snowflake/get_warehouses.py,sha256=C1_jnJa1PIkIjf5kFiTO3Ta-HzsfVhQqc_JvdPnNWog,7353
68
+ pulumi_snowflake/grant_account_role.py,sha256=qo-o4zRtA9_NaCTrK-WMtn7lfN5bsuaAmYHLnzKtJyc,11240
69
+ pulumi_snowflake/grant_application_role.py,sha256=XOWw4Ag836RenWYFPV0hKNXT6v_gMqd3PqGxxsQJXlI,12023
70
+ pulumi_snowflake/grant_database_role.py,sha256=MZy5M4neHp2ON2fH4L26Rt4dLP_MT3ShDcrUe407qLI,14679
71
+ pulumi_snowflake/grant_ownership.py,sha256=VKWEdrzOInu-nvppR9hWqvlRTERo-zOlEUSqAD1_JiE,18019
72
+ pulumi_snowflake/grant_privileges_to_account_role.py,sha256=jDtyZF_Ye9HZXtv-g8B62Ahq3L4YYCRDx02vJ4oatEs,30215
73
+ pulumi_snowflake/grant_privileges_to_database_role.py,sha256=pIa3Zdht3EPCAia2fQ_bFoyh5eswEV58jle2rTpiSzs,27918
74
+ pulumi_snowflake/grant_privileges_to_share.py,sha256=U03vjv93LgnKjcEDglAsfUlcQmdO8LUMicMIRAvjOR8,22545
75
+ pulumi_snowflake/managed_account.py,sha256=IsRioua9GLxB93e8v4mSS88bYkHJ3DyOo64ao3cp_BY,20526
76
+ pulumi_snowflake/masking_policy.py,sha256=2KnJCdaIKk4ocLgVlCFCf9ngDVFamjga7fszkas0Kjw,29322
77
+ pulumi_snowflake/materialized_view.py,sha256=_VhZ7Q1RiPsbPDWlPxVeVCqqHLUQsxoggGiPq2CaCE0,23378
78
+ pulumi_snowflake/network_policy.py,sha256=iHNumhYizKI89XluLbvSiqsXzb6lETYSB07y04Zrxtc,27073
79
+ pulumi_snowflake/network_policy_attachment.py,sha256=EXOob_OuzWvFFMr_KffaX3TDs9Z2toWZXdFdsWxpGQ4,15886
80
+ pulumi_snowflake/network_rule.py,sha256=3ZfVe2h9JjvKuWhQ9umrvLHoQsTu9X5jD98kH7uDsQs,24105
81
+ pulumi_snowflake/notification_integration.py,sha256=mtEOKUNubXTaZFln3Z5iIXjIU9acipZyNBKRwo_oaEA,48506
82
+ pulumi_snowflake/oauth_integration.py,sha256=z6m4d7mxQ5C7UTIFBMr1262WlizqfRbW169RMm2UiJo,32685
83
+ pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=BhgxRBJIr48FvtJfvcyN9UeM4Df2wj0yS5I5-NvqAHQ,57552
84
+ pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=y9A2BGeubtrP2Jt-ASGb5n2z7YFvCxiIPeXce2uYrys,35058
85
+ pulumi_snowflake/object_parameter.py,sha256=RrZ30vr5g-snSKZiJtTd7oGkCk8V0CDNv44uA4J-U_0,21635
86
+ pulumi_snowflake/outputs.py,sha256=thd-a75ay8x9sNLi0iYGh_flOnkFcV3TeGoowCQFf58,645812
87
+ pulumi_snowflake/password_policy.py,sha256=KbUVIr4fMYuwYf1HEfKxTjf6jSuJbarcTDZh17laQGY,53191
88
+ pulumi_snowflake/pipe.py,sha256=N_U9gy0MMoCRTOxDyOtEherFeG_QCu7aT-TsaH1MhcA,24843
89
+ pulumi_snowflake/procedure.py,sha256=qfNFo_jm1k3diAeRC8dGlydckWxPlPVolWYY2UZ6MDQ,43878
90
+ pulumi_snowflake/provider.py,sha256=UJDRm9PEGDK3jQ1LKdk4qclY1eCZ-Tk8x5W0U9lXptk,85040
91
+ pulumi_snowflake/pulumi-plugin.json,sha256=ezpGVXbH4_VRY2nyZhnXEqsku4i0v8lVidjWKmmsWLY,86
92
+ pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ pulumi_snowflake/resource_monitor.py,sha256=V2bJR2jvWbO4yZYUF8lp8qzBIgM85mP878FzuLAdCcU,38970
94
+ pulumi_snowflake/role.py,sha256=FxM6f4zF4QmBhDY5gkkQtHmPrahnXAwljrbhzaaFOkQ,8864
95
+ pulumi_snowflake/row_access_policy.py,sha256=z9GSTCGxTvHtZUxh0cQu35yitocJ8lUR90XcWqIC58c,20109
96
+ pulumi_snowflake/saml2_integration.py,sha256=otCBBv9ApaRXpfzRrPO69hfKW_gLvU2iJwDoXLbUFrM,75148
97
+ pulumi_snowflake/saml_integration.py,sha256=bVQPrrXXKTym0w3usppuiJERA6cg7rjQcOc5zGO6cMo,65285
98
+ pulumi_snowflake/schema.py,sha256=5qPA9qsJQpJfpwbxC9QeGjNcauqrO6SEfuR3au1mPZc,89571
99
+ pulumi_snowflake/scim_integration.py,sha256=gVqjop-w8NACJEPN79nMqKugQsVczLSI6ExB5jy2Nfc,27203
100
+ pulumi_snowflake/secondary_database.py,sha256=ROih4_eNLTCIe2axTTeGnfQp89_LHmTt-nHnlegZxUg,82073
101
+ pulumi_snowflake/sequence.py,sha256=WCrhrUSIeSS4aRAg_q8CknVjsswpDB9ksZaCp_uJybg,18596
102
+ pulumi_snowflake/session_parameter.py,sha256=3MITgbXMi6B3-XGLI7iebq2pRHgG6-pBPGMNs-I4Jyk,13557
103
+ pulumi_snowflake/share.py,sha256=WvO2tfeyPs5s0q7myV6TyEMXeazsZpI3gsTcl5ssdzM,11207
104
+ pulumi_snowflake/shared_database.py,sha256=28h8Rtu1x2lKxunODmOVXlZnGFFxms6zjWsu4d2kzIs,64356
105
+ pulumi_snowflake/stage.py,sha256=MSpWrW_FWlwMEAXUb1vxp806Cg5v5MIjX-jz2dg6lOo,35611
106
+ pulumi_snowflake/storage_integration.py,sha256=usRmBXSV_0UBL9PZiF51T5w6Dxfsj4MnhJPdxqytcBk,31315
107
+ pulumi_snowflake/stream.py,sha256=WgZ87qdjc4_meR5x2JNd8lsrdfn1y1gWalVs2u_CIZ4,24999
108
+ pulumi_snowflake/streamlit.py,sha256=M5Ur33AIJrzkZH9kMxUsBjm0A3CCytQNq0rECtnVYKY,30129
109
+ pulumi_snowflake/table.py,sha256=N3XFJBDXbBniEhBI4FZJpdtmFgAHEOOHCTLWbgkl_r4,32250
110
+ pulumi_snowflake/table_column_masking_policy_application.py,sha256=gM5EZc64cM86Pd2r_QaPyJc5wTtiuNfjMMbmV2ko6gc,11641
111
+ pulumi_snowflake/table_constraint.py,sha256=LrMNV6xetwgtU8AvaC0iJT9_H6uQCaSYOoXBlbkuxn4,35778
112
+ pulumi_snowflake/tag.py,sha256=arbK3yapCB2mFgxb2UhkbwZWl5dCTaANgd9eA9CTLBA,14591
113
+ pulumi_snowflake/tag_association.py,sha256=oR2jKBmCvnIHkvAodWmeHkyZTpowJhgwsq1Y3tvsJIM,26054
114
+ pulumi_snowflake/tag_masking_policy_association.py,sha256=peiS_9g69yO976ZTIz53DCRky90xcP44G4telKz6eFc,10129
115
+ pulumi_snowflake/task.py,sha256=H2cdntrFuWNcGpJl5Ywbls5P5GAfzIHboGUkShKsQ4Y,48980
116
+ pulumi_snowflake/unsafe_execute.py,sha256=s3djFyuRkbM_RE_qxX4k861H3Btf7t3bHQnpSd2LjWw,13480
117
+ pulumi_snowflake/user.py,sha256=rl5DfPWWUUnoea9muzD3JRpym_fvFLaPPCHawBD5N-8,43432
118
+ pulumi_snowflake/user_password_policy_attachment.py,sha256=KlKgy4vWuR9gQ-J5NMjrBsh3XUtltstBMbBL0KGEYBY,10050
119
+ pulumi_snowflake/user_public_keys.py,sha256=Z8QaNFXe8bGM0pzxRwM3bPSlGvqXVOxejQLDbhQm5Ck,11278
120
+ pulumi_snowflake/view.py,sha256=d2SmLn2QyX13cxkxEKIb9mXtq6snpygNUt2tlLDLO5Y,24660
121
+ pulumi_snowflake/warehouse.py,sha256=DEtOsHWi17reBD1i_XFiJwO9l0IHFy4Mn8dGco21Bt4,57470
122
+ pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
123
+ pulumi_snowflake/config/__init__.pyi,sha256=wA0KR9Mzb7OhcEV0M_FSljX8L_jCHB4hMilHnLcVwTo,9868
124
+ pulumi_snowflake/config/outputs.py,sha256=zm82Qv8RbeJ_iKb90mfdQeQBHOwjYRC8zHHII-DHiNs,3867
125
+ pulumi_snowflake/config/vars.py,sha256=D3v_7m-rX66OwF6n2t32KU1cRLebk5_u6vSbTuL9o-Y,15762
126
+ pulumi_snowflake-0.58.0a1722528062.dist-info/METADATA,sha256=SsZ0bcF8AVKY0RHRk4jLFUfwXhcjVUPFYbPvcPDjrp4,4981
127
+ pulumi_snowflake-0.58.0a1722528062.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
128
+ pulumi_snowflake-0.58.0a1722528062.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
129
+ pulumi_snowflake-0.58.0a1722528062.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.2)
2
+ Generator: setuptools (72.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,129 +0,0 @@
1
- pulumi_snowflake/__init__.py,sha256=jLhHlQ_zLRRsNuX3MUUJZ6Zeo6ajiEG6dI7bTYnbqms,17867
2
- pulumi_snowflake/_inputs.py,sha256=kZWGLszpY9SKSEK5T9mHYiAsaZUKOj3sgLc2zZXR6BI,753122
3
- pulumi_snowflake/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
4
- pulumi_snowflake/account.py,sha256=jH3DxskMHSTxox8DfeVZ3fmSH1gfu4KPz9bYEJMxCLQ,46986
5
- pulumi_snowflake/account_parameter.py,sha256=NLCma6MdpBgH29t-flNQfwUQ_nUy4OMVo3c9s_YUs_0,8753
6
- pulumi_snowflake/account_password_policy_attachment.py,sha256=HM1StOWHSWobxaFTfQEyW8i0cegg_jdJ8vAO5s6kfGc,6770
7
- pulumi_snowflake/account_role.py,sha256=TYf571kn63Rzz038FbGliu7YEQ5N0NFA-LViyMAbjJk,10948
8
- pulumi_snowflake/alert.py,sha256=JDlRxzDGUDLUppEBjS0McLj1Wew6SA-LMXFzQMk_1QI,24023
9
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=wZcnFYOuJlmwUzfw1esGy6kICMYykZOamn5y9hj-dWE,43095
10
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=BLpscA1uJgS5RuZT--DTvDjSIwH4cCybyv6fnVdZ2Sk,39831
11
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=yEKk8zu7bn2SV4RqG1qo8qZR3bZqTac9fw17TWGSxZg,40567
12
- pulumi_snowflake/api_integration.py,sha256=QbKQ0WM7bhQTIlsDDAZWFg3onUlqM3q7UJ9CEOFQUFs,40355
13
- pulumi_snowflake/cortex_search_service.py,sha256=4xAZW8bnU0ICOtsAQXKrZ5HLDbk5y_EBAcY9wlFR1K4,25600
14
- pulumi_snowflake/database.py,sha256=yZgpshJBp-gqUcuEmah8UX3oPu819Tv05LC9gwKIIVY,86760
15
- pulumi_snowflake/database_old.py,sha256=QQPuv_9NTHMrHdvgztu41ysX-oL3a9AAANPdZ2m7WgA,27823
16
- pulumi_snowflake/database_role.py,sha256=Bp1JIbnfm8Gpn5oyUnnJiAslQJUhrNOkqSsWiFK2NWo,14579
17
- pulumi_snowflake/dynamic_table.py,sha256=wS-LAszKT6j8XjgUmmX_imVpmKvRPkT1-TrfeicjO4A,41190
18
- pulumi_snowflake/email_notification_integration.py,sha256=vHtSBw8MnZuABXNwh0qBW9FqMXKMsQhnN-6vJfOyHQg,12711
19
- pulumi_snowflake/external_function.py,sha256=0b0SKpZj9FnL82iJu0pfNKNH9eNSJWHge-zjlDfJuNI,49142
20
- pulumi_snowflake/external_oauth_integration.py,sha256=bAcVYc5yBlaK7P_XIbBHRBrtbelcHwxXEhczkA9fkbg,66414
21
- pulumi_snowflake/external_table.py,sha256=4tA5fCRgrtSkgZlVlY0m2qwecd8vpHMvg4ZpRouGuOs,41389
22
- pulumi_snowflake/failover_group.py,sha256=e9ZrQgK3Ous-Zi_H-ZHZBQOtaqX1MYKgIG0HtFya0B8,38308
23
- pulumi_snowflake/file_format.py,sha256=SNYbLUxLR5IT0BblAognqU8lApTCRv471ruQM_UyUe0,92896
24
- pulumi_snowflake/function.py,sha256=gHYAeC9MXQhBMkju-zoRQvid6zU0pqtPcFLw3v7hlBQ,42090
25
- pulumi_snowflake/get_accounts.py,sha256=1XaZzHCyz4veYUDjZ-urRSFR0WCEPCGpAneC8B_F7gk,3423
26
- pulumi_snowflake/get_alerts.py,sha256=IOYjHzz6mofcwCs9US7STsx9kKz1pleAer2IR1iQEbg,4948
27
- pulumi_snowflake/get_cortex_search_services.py,sha256=kWy5WqbZl2AuHw2kBLg3nuyNVIWmXWah_LqIYcllgTQ,9319
28
- pulumi_snowflake/get_current_account.py,sha256=ekQYpY3r7i7TXxCTtMo8B9MdLVQEfgURVxt0zs7glC4,3848
29
- pulumi_snowflake/get_current_role.py,sha256=8qctYLhiMpij40a-sTPUpxno0OBzyTpp4pp1v0Dm3OM,2532
30
- pulumi_snowflake/get_database.py,sha256=-OCZl50Fyaz8OSDes2wLsaf9dsk927UHIlFuut5ACSw,6025
31
- pulumi_snowflake/get_database_role.py,sha256=VgJGlvm4SNuYWpoaClTLlyIS8dszGaX2WZgUpASbdFE,4493
32
- pulumi_snowflake/get_database_roles.py,sha256=6VWRNqTyIhwBL1kRRZZDCg1BzaAinTN1r1UIFstvwV4,7002
33
- pulumi_snowflake/get_databases.py,sha256=eTr97oMUtON16CGdOSRr6NDzc4nw9KGMXXPEpBFhPV4,10215
34
- pulumi_snowflake/get_dynamic_tables.py,sha256=n9IPEtqJ6IYk37eS-pXY_KP2F174TUzlaeBJjI7UCFA,7388
35
- pulumi_snowflake/get_external_functions.py,sha256=-UoeIjSURHaxT-3F70gfowF1Xmy8TkbaKLNFpxYdEYo,4650
36
- pulumi_snowflake/get_external_tables.py,sha256=MeoscZ7LbpY-Fj9zaQoXz-4VsQBSxhpyPiMiAn201hg,4481
37
- pulumi_snowflake/get_failover_groups.py,sha256=3_2DcfbgcxQ3vPE-2uE18f_41j1p3nYruuB11nmrVIw,3531
38
- pulumi_snowflake/get_file_formats.py,sha256=nM16keOSoW2kFh4te0gpAE-xIc3VwyzrW2tx76jDukI,4352
39
- pulumi_snowflake/get_functions.py,sha256=A8jzOryl_PloHXf8EIKEt1NCIP3oQSyAV8XMdVIwKKY,4221
40
- pulumi_snowflake/get_grants.py,sha256=o8S62PUU6mNrmdSqft7_iXTlOgaY-MNq46UyExQUr3E,14011
41
- pulumi_snowflake/get_masking_policies.py,sha256=ra6_KaY7vxq4o3xztRQF7qJT4j8sQHmQRvxIA_MaxGs,4519
42
- pulumi_snowflake/get_materialized_views.py,sha256=SzrOyytKFC1L1Bxtf_k8PI0wXfP_zkvrAfRHdYJIovQ,4558
43
- pulumi_snowflake/get_network_policies.py,sha256=7E5UrgcVlA202R1j141IjEjTOfgvgMLWgk50mDEQ6ns,6269
44
- pulumi_snowflake/get_parameters.py,sha256=sziM3-TIrQKQutCRQddpm6ql82SaE5lie55lm1dNAOw,9700
45
- pulumi_snowflake/get_pipes.py,sha256=S8EURVcZJze6r7br5sdFFEcxmf358EK3ept7Sft5CFE,4053
46
- pulumi_snowflake/get_procedures.py,sha256=1DZvj-MhgKOW3BGB6EQVtofsGAha8Rg7Sh2P1jsDars,4263
47
- pulumi_snowflake/get_resource_monitors.py,sha256=ou1SwZvtDDpkFmFYvYZpmS_KeI_Zy51OW4Rk9EEDAGw,2895
48
- pulumi_snowflake/get_role.py,sha256=BvCk_WCi6C8GvQc9q4nlWprYwVt9pI1pHUYieW_2JRs,3392
49
- pulumi_snowflake/get_roles.py,sha256=I48pxk_QaE14ls-FghgbZm-vagZ3TDzlqoGX764KMrs,5295
50
- pulumi_snowflake/get_row_access_policies.py,sha256=U6dOdDDR5IN60wvnJmZ2vNr7JE6HrHzJ5Js9WHCBncs,4628
51
- pulumi_snowflake/get_schemas.py,sha256=lZ4UCri1rHq65Zex7CXQ_GUcXyDCWOtETXa8tmNVpYU,10856
52
- pulumi_snowflake/get_security_integrations.py,sha256=U9PAfYXQ9LflMrL0CiEnn-yhef9uEJbLM_iwMZQLERQ,6581
53
- pulumi_snowflake/get_sequences.py,sha256=xp_duxQQTXk5R6MW7bhoqX9dEk7bATY1fk5F8vcuOoM,4221
54
- pulumi_snowflake/get_shares.py,sha256=xOrMChS5bTQ8vIETDAtJt1Ar7VDjSo3fpqQldXyfRLU,3365
55
- pulumi_snowflake/get_stages.py,sha256=0aDVuqtlisNUHBA1z81PgpUrYSNmfIUp3CrNTPG9vt0,4095
56
- pulumi_snowflake/get_storage_integrations.py,sha256=B96Ikapf8A8FcFYRivOwOooBjbyj7wsZnul0C7kHJK4,3003
57
- pulumi_snowflake/get_streamlits.py,sha256=V0EM8OhxuuLG5R-Y_KRBgwEUcAo0df94kd3HHchmtGA,8773
58
- pulumi_snowflake/get_streams.py,sha256=lKhjr5ZI0ImQjl-zJPjVwzZNwPJDmZws4znbyQYynY8,4137
59
- pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=qDnAfUXWuNeg4CkP0Rt8SZliQsE9kAyMYlB8U3cikvg,3986
60
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=fm4NJGPdm5RehwqL0glf-HfiAf_71JxLNmNJaXQSNrI,4269
61
- pulumi_snowflake/get_system_get_private_link_config.py,sha256=WaaVjQAKPaoOFig494UkEiVFaoOkfBlJHwGCaln9yQY,11211
62
- pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=QLFK-mEZVXbTSfKzQOi83VE_fn5H5K8YAMJaQsQY8Rg,3520
63
- pulumi_snowflake/get_tables.py,sha256=AG1baNGUWbRj4ow9g7OY6dGqkL-eUvgDtCOydrHvN9Y,4095
64
- pulumi_snowflake/get_tasks.py,sha256=lzEuSYuJHfOeGhkVeFH2MdR612BWq5Ywc14P6tawsjo,4053
65
- pulumi_snowflake/get_users.py,sha256=UQ6g-zIgFjWO4YmN7O2zOFfzUZEAsw0ncZSbentfubM,10479
66
- pulumi_snowflake/get_views.py,sha256=qvRRafcCiC2eczd7MeC6cQcxa5nt4POsI3MpPbTHcTQ,8588
67
- pulumi_snowflake/get_warehouses.py,sha256=6KFeQL76lEbl-Oyutye0JlES_IkNCpjCt5d7Oryq2hU,7371
68
- pulumi_snowflake/grant_account_role.py,sha256=lxR9N7ObN22MK1BITBAA31xwMzZRU6hHKuGNON3CBPw,11188
69
- pulumi_snowflake/grant_application_role.py,sha256=UNm21GWjYep4EKt_oiLhHeP_HR4vMNeS7_Z0KEoLVXo,11971
70
- pulumi_snowflake/grant_database_role.py,sha256=wE1ZcvcgpFf4KlOvGVX55E8nI8bMvKzZzqWt7GiNVu8,14627
71
- pulumi_snowflake/grant_ownership.py,sha256=BI6V1NDGeXAZLLXtgKG54J_o0tHhHGzLQOEBE-ZIlpY,18104
72
- pulumi_snowflake/grant_privileges_to_account_role.py,sha256=M1MzrwoYOWtSWrFYukLSedbx43v7WiFHxjVbDC8lhnI,30835
73
- pulumi_snowflake/grant_privileges_to_database_role.py,sha256=BbcAkNXx9S2XwRQQRb4f5tBigVP9no7e0dFFjb3Uc7o,27860
74
- pulumi_snowflake/grant_privileges_to_share.py,sha256=AeHSy5_z0cjg6H8YF2rCNyUjiClG10wtsXvYH3zejzk,24751
75
- pulumi_snowflake/managed_account.py,sha256=opk6VJuTiojT3g2rOhj9eOxG0OTmYe9Mqshfsfostsw,22178
76
- pulumi_snowflake/masking_policy.py,sha256=PTJUht5gimuViu8ISFwZXHZQQ3RrCft6L-O_I8NGqP4,28305
77
- pulumi_snowflake/materialized_view.py,sha256=np5uyds74dxI91To7fC8ZR6lh2rV9a_92DGO9WHeyAc,24326
78
- pulumi_snowflake/network_policy.py,sha256=3xcb9r1Cx2r9QaGkr2RKydQ5iu1pwSUcjxnXuMIsZ1A,27498
79
- pulumi_snowflake/network_policy_attachment.py,sha256=2fuljncw1CSP7DxpomHZ4PUdB0JcDjnkjt9dHcQeeXw,15190
80
- pulumi_snowflake/network_rule.py,sha256=cM8JhtLMfeUBtvcJk2u_Y4ibcqfWmSPGiRrSbBenFEo,23755
81
- pulumi_snowflake/notification_integration.py,sha256=OrGW3CGSI7nqkMRy6-gf_n7jt_VrR_pmyILC2jfhIrw,49192
82
- pulumi_snowflake/oauth_integration.py,sha256=vQzP4Sl6mS6ZTqMX7tT-Uq_XcyjuhbXnJtDZYbXq38A,31365
83
- pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=oIcLrB53zyWGaNdTBoPkGWMt-yq2zeNpdRqflwk0RCI,55841
84
- pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=5QMmnM3Jplc8TyRoHd8zA8QG6g4Wt0J6P3hRTg9YFFk,36433
85
- pulumi_snowflake/object_parameter.py,sha256=lEUHFXGrS2NNn4Md9-LIQMbB9wMle_DsIycm7mgYFNc,18541
86
- pulumi_snowflake/outputs.py,sha256=-Xsw1LaRQYxaxJ0tHjEjYDsp2H0KJpruBhKqwCYYbHo,910869
87
- pulumi_snowflake/password_policy.py,sha256=sTR0Y7OnaA5rlltAwOw1D0XXHdD9PvvLI_Z69I2f4RU,53731
88
- pulumi_snowflake/pipe.py,sha256=BWpaXzBs1SGB6gNZeimXBYecT0vxCR2zp_gnEJhjeSE,26239
89
- pulumi_snowflake/procedure.py,sha256=XNUBvg9bF0dxBccqnQNnFAjl3MNSF1xGPc9sAfFJChY,45620
90
- pulumi_snowflake/provider.py,sha256=PEyKukbl3zEttQSVtkbM_RY9u8Ro14hPbNYCTwCvOaw,85280
91
- pulumi_snowflake/pulumi-plugin.json,sha256=l2IWxuhJNdrsAXUAYKAg76_NFhRke7D1KMiWPB7UV7M,69
92
- pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
- pulumi_snowflake/resource_monitor.py,sha256=7YjrfEtLqZGgSEsaLNebjf8Fh1ht9gFdqXZZTpijOqw,39434
94
- pulumi_snowflake/role.py,sha256=M5uy8EnOre_YL_BF_whhEDQQ1BREC8v8-yCVrVpB7cI,10717
95
- pulumi_snowflake/row_access_policy.py,sha256=Qi_nfiFThsfj300hdlNYeOb2E3Oo2POGYLb8w6PEZ8M,20735
96
- pulumi_snowflake/saml2_integration.py,sha256=jwNfpIX3Kj-xFZMEfS-09lyr77dD_QyMP3PEJJeTSkQ,76505
97
- pulumi_snowflake/saml_integration.py,sha256=330aNgwiOsNj1x16vU4myGhA9zkaMJyvpIjaAmxgfDU,62471
98
- pulumi_snowflake/schema.py,sha256=DA-UaAxx-jkiSpQ8b-ukhAfoMD17m82sONA4aNBVEgI,92318
99
- pulumi_snowflake/scim_integration.py,sha256=qRDbB7QXc4R_lYTpwyBMQz0WhKuFiYkqSKmgKxUKeeQ,28560
100
- pulumi_snowflake/secondary_database.py,sha256=_-2IFUkkg_RyoLBE6DB5Kevg1n3uAYwkszWS5LwTm-o,82410
101
- pulumi_snowflake/sequence.py,sha256=n8WG8gT9KOm6sAC3WNxlN3ql0wPhxkLUHHv_uQN_9kQ,18116
102
- pulumi_snowflake/session_parameter.py,sha256=0JuhSs8KLw8l8NEStrDREv463tIQTkSGtPkceI7Krtk,12759
103
- pulumi_snowflake/share.py,sha256=wSV7ohLk_PKagh81hy_dXfSD1A8zS_acv2ZjlHh7z4w,12101
104
- pulumi_snowflake/shared_database.py,sha256=Y5mLBBpQDuRz1BN2Kc25mxYsiDZjjZP2Y01xQ55eHk0,65561
105
- pulumi_snowflake/stage.py,sha256=5gxnMtsYsPeD7CCXM7Iq7xkVOzntIaBt65aP2lNjtJU,36476
106
- pulumi_snowflake/storage_integration.py,sha256=nSxX43Ab2GQ865Hw8uKtn1U4Log07YFojktQZT3qUcM,32967
107
- pulumi_snowflake/stream.py,sha256=jN73wRK7Jl2u9hs2s1gmCw1-m86zj1dK4DHpwOZmFFk,26651
108
- pulumi_snowflake/streamlit.py,sha256=esm8YJmRunwBMoLXDgyyqyWLH2WDq9ZCRQ8hGh9dFlE,30839
109
- pulumi_snowflake/table.py,sha256=j3RVoWgDbwAywaEGNsejamYufyHSo5bLBEkEukU2GLw,32983
110
- pulumi_snowflake/table_column_masking_policy_application.py,sha256=yxUKWGQ9FYMM5DFeERgjx8pfsIsHwu0Ld6ixxybe4vk,10543
111
- pulumi_snowflake/table_constraint.py,sha256=nBNlzmwVet-jBd6vLS1DXmRKNbI7VkyULZBS9AX_pPg,30992
112
- pulumi_snowflake/tag.py,sha256=ajzU6m8usKe3V37VN50BrdbaPJWA_yjrGELJ9CuyYk8,15223
113
- pulumi_snowflake/tag_association.py,sha256=84bORYJMgG4xQXW1nG7bf4hi5oRrJ5GwffZqnoliL_8,21919
114
- pulumi_snowflake/tag_masking_policy_association.py,sha256=MkGYO_A8nuiBfca2EdwK0rkcmBoI49TdYZUL36p_u3k,9691
115
- pulumi_snowflake/task.py,sha256=prgW83QdoC8WwRTZtjcAvuncz7p34BEpxDcVJ5dJQcU,47734
116
- pulumi_snowflake/unsafe_execute.py,sha256=PMd-Kt53tvGOsWPTOTExeSRvtDaT-t3uwZpydOTXjGo,11752
117
- pulumi_snowflake/user.py,sha256=kVJI3Fe_jrS-Hc29LtBVIFxTRRt0fRC3ah6oqRour9I,334725
118
- pulumi_snowflake/user_password_policy_attachment.py,sha256=SMTbHU2Qqy915fVV7Z9HTt9NjyTFYlgSDzPBi4t2x8w,8750
119
- pulumi_snowflake/user_public_keys.py,sha256=Z8QaNFXe8bGM0pzxRwM3bPSlGvqXVOxejQLDbhQm5Ck,11278
120
- pulumi_snowflake/view.py,sha256=sj3P4YOxYnA7aELlWdi2R_6ueAEyPpVXDsPCsagNmuQ,48330
121
- pulumi_snowflake/warehouse.py,sha256=QftxJogf_XsoRKAuCmq0Vx4NFZLyJ6WZ2B2PaTPBkHE,58353
122
- pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
123
- pulumi_snowflake/config/__init__.pyi,sha256=wA0KR9Mzb7OhcEV0M_FSljX8L_jCHB4hMilHnLcVwTo,9868
124
- pulumi_snowflake/config/outputs.py,sha256=zm82Qv8RbeJ_iKb90mfdQeQBHOwjYRC8zHHII-DHiNs,3867
125
- pulumi_snowflake/config/vars.py,sha256=D3v_7m-rX66OwF6n2t32KU1cRLebk5_u6vSbTuL9o-Y,15762
126
- pulumi_snowflake-0.58.0.dist-info/METADATA,sha256=PRofjVLKOJp7kAooSwcv9V_TLkTER5DtRLIn-_No26A,4970
127
- pulumi_snowflake-0.58.0.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
128
- pulumi_snowflake-0.58.0.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
129
- pulumi_snowflake-0.58.0.dist-info/RECORD,,