pulumi-snowflake 0.58.0a1726035035__py3-none-any.whl → 0.58.0a1726066221__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-snowflake might be problematic. Click here for more details.
- pulumi_snowflake/_inputs.py +5859 -127
- pulumi_snowflake/account.py +28 -50
- pulumi_snowflake/account_parameter.py +0 -28
- pulumi_snowflake/account_password_policy_attachment.py +2 -30
- pulumi_snowflake/account_role.py +41 -36
- pulumi_snowflake/alert.py +28 -40
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +35 -15
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +35 -15
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +35 -15
- pulumi_snowflake/api_integration.py +28 -54
- pulumi_snowflake/cortex_search_service.py +28 -76
- pulumi_snowflake/database.py +82 -15
- pulumi_snowflake/database_old.py +0 -72
- pulumi_snowflake/database_role.py +76 -42
- pulumi_snowflake/dynamic_table.py +28 -38
- pulumi_snowflake/email_notification_integration.py +28 -26
- pulumi_snowflake/external_function.py +28 -52
- pulumi_snowflake/external_oauth_integration.py +35 -15
- pulumi_snowflake/external_table.py +28 -48
- pulumi_snowflake/failover_group.py +28 -72
- pulumi_snowflake/file_format.py +28 -26
- pulumi_snowflake/function.py +28 -4
- pulumi_snowflake/get_database_roles.py +61 -38
- pulumi_snowflake/get_users.py +96 -33
- pulumi_snowflake/get_views.py +92 -53
- pulumi_snowflake/grant_account_role.py +0 -4
- pulumi_snowflake/grant_application_role.py +0 -4
- pulumi_snowflake/grant_database_role.py +0 -4
- pulumi_snowflake/grant_privileges_to_account_role.py +4 -4
- pulumi_snowflake/grant_privileges_to_database_role.py +6 -2
- pulumi_snowflake/grant_privileges_to_share.py +49 -2
- pulumi_snowflake/managed_account.py +28 -4
- pulumi_snowflake/masking_policy.py +28 -84
- pulumi_snowflake/materialized_view.py +28 -34
- pulumi_snowflake/network_policy.py +35 -15
- pulumi_snowflake/network_policy_attachment.py +0 -30
- pulumi_snowflake/network_rule.py +28 -66
- pulumi_snowflake/notification_integration.py +28 -34
- pulumi_snowflake/oauth_integration.py +0 -34
- pulumi_snowflake/oauth_integration_for_custom_clients.py +35 -101
- pulumi_snowflake/oauth_integration_for_partner_applications.py +35 -15
- pulumi_snowflake/object_parameter.py +0 -98
- pulumi_snowflake/outputs.py +11648 -3842
- pulumi_snowflake/password_policy.py +28 -28
- pulumi_snowflake/pipe.py +28 -4
- pulumi_snowflake/procedure.py +28 -4
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/resource_monitor.py +28 -48
- pulumi_snowflake/role.py +41 -36
- pulumi_snowflake/row_access_policy.py +28 -34
- pulumi_snowflake/saml2_integration.py +35 -15
- pulumi_snowflake/saml_integration.py +0 -34
- pulumi_snowflake/schema.py +39 -19
- pulumi_snowflake/scim_integration.py +35 -15
- pulumi_snowflake/secondary_database.py +35 -19
- pulumi_snowflake/sequence.py +4 -36
- pulumi_snowflake/session_parameter.py +0 -32
- pulumi_snowflake/share.py +28 -28
- pulumi_snowflake/shared_database.py +35 -15
- pulumi_snowflake/stage.py +28 -28
- pulumi_snowflake/storage_integration.py +28 -4
- pulumi_snowflake/stream.py +28 -4
- pulumi_snowflake/streamlit.py +36 -16
- pulumi_snowflake/table.py +28 -32
- pulumi_snowflake/table_column_masking_policy_application.py +2 -14
- pulumi_snowflake/table_constraint.py +0 -152
- pulumi_snowflake/tag.py +28 -40
- pulumi_snowflake/tag_association.py +0 -120
- pulumi_snowflake/tag_masking_policy_association.py +0 -4
- pulumi_snowflake/task.py +28 -92
- pulumi_snowflake/unsafe_execute.py +2 -20
- pulumi_snowflake/user.py +3341 -368
- pulumi_snowflake/user_password_policy_attachment.py +0 -46
- pulumi_snowflake/view.py +465 -185
- pulumi_snowflake/warehouse.py +35 -39
- {pulumi_snowflake-0.58.0a1726035035.dist-info → pulumi_snowflake-0.58.0a1726066221.dist-info}/METADATA +1 -1
- pulumi_snowflake-0.58.0a1726066221.dist-info/RECORD +129 -0
- pulumi_snowflake-0.58.0a1726035035.dist-info/RECORD +0 -129
- {pulumi_snowflake-0.58.0a1726035035.dist-info → pulumi_snowflake-0.58.0a1726066221.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-0.58.0a1726035035.dist-info → pulumi_snowflake-0.58.0a1726066221.dist-info}/top_level.txt +0 -0
pulumi_snowflake/warehouse.py
CHANGED
|
@@ -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.
|
|
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: `|`, `.`, `(`, `)`, `"`
|
|
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.
|
|
187
|
+
Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
188
188
|
"""
|
|
189
189
|
return pulumi.get(self, "name")
|
|
190
190
|
|
|
@@ -284,6 +284,7 @@ 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,
|
|
287
288
|
initially_suspended: Optional[pulumi.Input[bool]] = None,
|
|
288
289
|
max_cluster_count: Optional[pulumi.Input[int]] = None,
|
|
289
290
|
max_concurrency_level: Optional[pulumi.Input[int]] = None,
|
|
@@ -304,11 +305,12 @@ class _WarehouseState:
|
|
|
304
305
|
:param pulumi.Input[int] auto_suspend: Specifies the number of seconds of inactivity after which a warehouse is automatically suspended.
|
|
305
306
|
:param pulumi.Input[str] comment: Specifies a comment for the warehouse.
|
|
306
307
|
: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).
|
|
307
309
|
:param pulumi.Input[bool] initially_suspended: Specifies whether the warehouse is created initially in the ‘Suspended’ state.
|
|
308
310
|
:param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
|
|
309
311
|
: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.
|
|
310
312
|
:param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
|
|
311
|
-
:param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account.
|
|
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: `|`, `.`, `(`, `)`, `"`
|
|
312
314
|
:param pulumi.Input[Sequence[pulumi.Input['WarehouseParameterArgs']]] parameters: Outputs the result of `SHOW PARAMETERS IN WAREHOUSE` for the given warehouse.
|
|
313
315
|
: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.
|
|
314
316
|
:param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
|
|
@@ -327,6 +329,8 @@ class _WarehouseState:
|
|
|
327
329
|
pulumi.set(__self__, "comment", comment)
|
|
328
330
|
if enable_query_acceleration is not None:
|
|
329
331
|
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)
|
|
330
334
|
if initially_suspended is not None:
|
|
331
335
|
pulumi.set(__self__, "initially_suspended", initially_suspended)
|
|
332
336
|
if max_cluster_count is not None:
|
|
@@ -404,6 +408,18 @@ class _WarehouseState:
|
|
|
404
408
|
def enable_query_acceleration(self, value: Optional[pulumi.Input[str]]):
|
|
405
409
|
pulumi.set(self, "enable_query_acceleration", value)
|
|
406
410
|
|
|
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
|
+
|
|
407
423
|
@property
|
|
408
424
|
@pulumi.getter(name="initiallySuspended")
|
|
409
425
|
def initially_suspended(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -456,7 +472,7 @@ class _WarehouseState:
|
|
|
456
472
|
@pulumi.getter
|
|
457
473
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
458
474
|
"""
|
|
459
|
-
Identifier for the virtual warehouse; must be unique for your account.
|
|
475
|
+
Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
460
476
|
"""
|
|
461
477
|
return pulumi.get(self, "name")
|
|
462
478
|
|
|
@@ -596,22 +612,6 @@ class Warehouse(pulumi.CustomResource):
|
|
|
596
612
|
warehouse_type: Optional[pulumi.Input[str]] = None,
|
|
597
613
|
__props__=None):
|
|
598
614
|
"""
|
|
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.
|
|
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: `|`, `.`, `(`, `)`, `"`
|
|
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,22 +644,6 @@ 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
|
-
|
|
663
647
|
## Import
|
|
664
648
|
|
|
665
649
|
```sh
|
|
@@ -722,6 +706,7 @@ class Warehouse(pulumi.CustomResource):
|
|
|
722
706
|
__props__.__dict__["statement_timeout_in_seconds"] = statement_timeout_in_seconds
|
|
723
707
|
__props__.__dict__["warehouse_size"] = warehouse_size
|
|
724
708
|
__props__.__dict__["warehouse_type"] = warehouse_type
|
|
709
|
+
__props__.__dict__["fully_qualified_name"] = None
|
|
725
710
|
__props__.__dict__["parameters"] = None
|
|
726
711
|
__props__.__dict__["show_outputs"] = None
|
|
727
712
|
super(Warehouse, __self__).__init__(
|
|
@@ -738,6 +723,7 @@ class Warehouse(pulumi.CustomResource):
|
|
|
738
723
|
auto_suspend: Optional[pulumi.Input[int]] = None,
|
|
739
724
|
comment: Optional[pulumi.Input[str]] = None,
|
|
740
725
|
enable_query_acceleration: Optional[pulumi.Input[str]] = None,
|
|
726
|
+
fully_qualified_name: Optional[pulumi.Input[str]] = None,
|
|
741
727
|
initially_suspended: Optional[pulumi.Input[bool]] = None,
|
|
742
728
|
max_cluster_count: Optional[pulumi.Input[int]] = None,
|
|
743
729
|
max_concurrency_level: Optional[pulumi.Input[int]] = None,
|
|
@@ -763,11 +749,12 @@ class Warehouse(pulumi.CustomResource):
|
|
|
763
749
|
:param pulumi.Input[int] auto_suspend: Specifies the number of seconds of inactivity after which a warehouse is automatically suspended.
|
|
764
750
|
:param pulumi.Input[str] comment: Specifies a comment for the warehouse.
|
|
765
751
|
: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).
|
|
766
753
|
:param pulumi.Input[bool] initially_suspended: Specifies whether the warehouse is created initially in the ‘Suspended’ state.
|
|
767
754
|
:param pulumi.Input[int] max_cluster_count: Specifies the maximum number of server clusters for the warehouse.
|
|
768
755
|
: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.
|
|
769
756
|
:param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
|
|
770
|
-
:param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account.
|
|
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: `|`, `.`, `(`, `)`, `"`
|
|
771
758
|
:param pulumi.Input[Sequence[pulumi.Input[Union['WarehouseParameterArgs', 'WarehouseParameterArgsDict']]]] parameters: Outputs the result of `SHOW PARAMETERS IN WAREHOUSE` for the given warehouse.
|
|
772
759
|
: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.
|
|
773
760
|
:param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
|
|
@@ -786,6 +773,7 @@ class Warehouse(pulumi.CustomResource):
|
|
|
786
773
|
__props__.__dict__["auto_suspend"] = auto_suspend
|
|
787
774
|
__props__.__dict__["comment"] = comment
|
|
788
775
|
__props__.__dict__["enable_query_acceleration"] = enable_query_acceleration
|
|
776
|
+
__props__.__dict__["fully_qualified_name"] = fully_qualified_name
|
|
789
777
|
__props__.__dict__["initially_suspended"] = initially_suspended
|
|
790
778
|
__props__.__dict__["max_cluster_count"] = max_cluster_count
|
|
791
779
|
__props__.__dict__["max_concurrency_level"] = max_concurrency_level
|
|
@@ -834,6 +822,14 @@ class Warehouse(pulumi.CustomResource):
|
|
|
834
822
|
"""
|
|
835
823
|
return pulumi.get(self, "enable_query_acceleration")
|
|
836
824
|
|
|
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
|
+
|
|
837
833
|
@property
|
|
838
834
|
@pulumi.getter(name="initiallySuspended")
|
|
839
835
|
def initially_suspended(self) -> pulumi.Output[Optional[bool]]:
|
|
@@ -870,7 +866,7 @@ class Warehouse(pulumi.CustomResource):
|
|
|
870
866
|
@pulumi.getter
|
|
871
867
|
def name(self) -> pulumi.Output[str]:
|
|
872
868
|
"""
|
|
873
|
-
Identifier for the virtual warehouse; must be unique for your account.
|
|
869
|
+
Identifier for the virtual warehouse; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
874
870
|
"""
|
|
875
871
|
return pulumi.get(self, "name")
|
|
876
872
|
|
|
@@ -0,0 +1,129 @@
|
|
|
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=NjZWc4KO0ILawDj25L-e5wvupgRTw7zC6k_e6eMzuCU,86
|
|
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.0a1726066221.dist-info/METADATA,sha256=IqOW1iEaP9kT2OQmRfYDNyPrG2MesuiKerUSkAfusRY,4981
|
|
127
|
+
pulumi_snowflake-0.58.0a1726066221.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
128
|
+
pulumi_snowflake-0.58.0a1726066221.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
129
|
+
pulumi_snowflake-0.58.0a1726066221.dist-info/RECORD,,
|
|
@@ -1,129 +0,0 @@
|
|
|
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=MFbeqG8u9kDGKvdMJkzpmD-3hAOVTl4I0NLlt3WWUDM,10063
|
|
8
|
-
pulumi_snowflake/alert.py,sha256=6aGVndHHqcNvWbq1-jgf8-ItwzPECJalB5gxvjzdWDk,23315
|
|
9
|
-
pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=SOTLNWcMCxWGAfMInrIl19unCHx_2EY1oUiujXOMchI,41946
|
|
10
|
-
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=BudYRXgPiX0823qSKniQW6zQMw-797AuFXL459x0Mk4,38670
|
|
11
|
-
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=bH07uUjMxKKfZm4N6i4M525ZB0Moj0cYUNapriqXHBo,39390
|
|
12
|
-
pulumi_snowflake/api_integration.py,sha256=KRwKhCyjlTuoM-IHtkgTD31uIJlGv340s78VBsEf7Qg,40947
|
|
13
|
-
pulumi_snowflake/cortex_search_service.py,sha256=1EodM_CBGytc1WSuJnHFkO-5pz2iK-r7IdnYqPc6lEc,26386
|
|
14
|
-
pulumi_snowflake/database.py,sha256=vf8iXWKXCjfUVIPHsgqAmn-CbgfSKszQNHBRw4PUcRI,82097
|
|
15
|
-
pulumi_snowflake/database_old.py,sha256=NuOSDINJlWsTjHBYBRR3gqDWN03ucK2BdAP2iCkw58k,30477
|
|
16
|
-
pulumi_snowflake/database_role.py,sha256=3jo3f547ySt5GuNBCKlUx7WyboeSjxZ2oUgbgpWi6cI,9831
|
|
17
|
-
pulumi_snowflake/dynamic_table.py,sha256=87Kb5ztwnmHY_SyriPx9ssAkanImT5HhEIzbw7TfgSY,40698
|
|
18
|
-
pulumi_snowflake/email_notification_integration.py,sha256=Vf2-KL9Ec6KVb2-ijUV7YAzOsYwst5BKypwDHhWkjJs,11731
|
|
19
|
-
pulumi_snowflake/external_function.py,sha256=CybOeBuEXyrd_dqIDr2uFknur45glyqkzXNpiLaIO3Y,49018
|
|
20
|
-
pulumi_snowflake/external_oauth_integration.py,sha256=Xs_owkPBx6Doo2uC80En0BTAAcI-rxMyrkJ4Yd6pZqc,65209
|
|
21
|
-
pulumi_snowflake/external_table.py,sha256=06tZ_NmjI2PmTrClBSwAvyDiHV3rU8udqXqd-cZXWw4,40951
|
|
22
|
-
pulumi_snowflake/failover_group.py,sha256=M0SODGQv2_33ioRM6TcaPXI_uo0RGJ2o4Nk_7tKf5sU,38958
|
|
23
|
-
pulumi_snowflake/file_format.py,sha256=02NrI5_S1O2Xt6fHn_hKN2WoH3jhyJLBdYDHGJ9AoOU,91876
|
|
24
|
-
pulumi_snowflake/function.py,sha256=ptM696WvATzcwyP5gE7xD07GI-q1PV1Dog3G5j8SXSk,40438
|
|
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=phyvBWznKjhUlGomFhsB2McEmdY6FSRAqy6Ux4qt22w,3656
|
|
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=7oj99U-ynVSDwVarsWQZsUOwxMjoPOWwRRHeVwcX7Ko,3637
|
|
66
|
-
pulumi_snowflake/get_views.py,sha256=FkSkOYf7GwUf2yeD3mEmgsu9uzVvnVnxxY5sUUORqsg,4053
|
|
67
|
-
pulumi_snowflake/get_warehouses.py,sha256=6KFeQL76lEbl-Oyutye0JlES_IkNCpjCt5d7Oryq2hU,7371
|
|
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=BI6V1NDGeXAZLLXtgKG54J_o0tHhHGzLQOEBE-ZIlpY,18104
|
|
72
|
-
pulumi_snowflake/grant_privileges_to_account_role.py,sha256=V-i89D0onJVq3x8_4K414aL3mkOsouGCLbaWaluMxag,31643
|
|
73
|
-
pulumi_snowflake/grant_privileges_to_database_role.py,sha256=bltu4BZ7X0GxjvfkCyH_gaFrl-Mr93gbUgP7MfyjRZw,28328
|
|
74
|
-
pulumi_snowflake/grant_privileges_to_share.py,sha256=E16DL7F8Hj_MguBbX5v6prHfx_SB8ETZY5LYZCVtVI4,22559
|
|
75
|
-
pulumi_snowflake/managed_account.py,sha256=IsRioua9GLxB93e8v4mSS88bYkHJ3DyOo64ao3cp_BY,20526
|
|
76
|
-
pulumi_snowflake/masking_policy.py,sha256=pwvfxY7TIqcHDLC_W9Y97RpF_QvWDaah2yqP9aX3Jm0,29299
|
|
77
|
-
pulumi_snowflake/materialized_view.py,sha256=xz3AjNFFiXnbh9u6Jrcx6jtKEYz1T52ixWykpQGwhd4,23478
|
|
78
|
-
pulumi_snowflake/network_policy.py,sha256=Jm7Ose_1P0NislAEbIrRrEFwKWOQrpER56EVgTuQ0aE,26243
|
|
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=xWuPcO9DNtQlyAbK5xE8xrsQI7J2lTeCK8Q7HlqbQ5Y,57732
|
|
84
|
-
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=ltBrAlderVzPZ9fnGkJ0vg3qS98SWt1x_TU2qqFRH4o,35262
|
|
85
|
-
pulumi_snowflake/object_parameter.py,sha256=AfE0sG95uf5szEAZiJToghSpGkilJupj4mS2hu89RX0,21523
|
|
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=P3wp4OZuREodDeACB_RvC1bvnokQqUfOxvoCXdNgEyk,24949
|
|
89
|
-
pulumi_snowflake/procedure.py,sha256=0nva22pYj6_ACv_n2_RdQFtyjuXUTzWgITa2ZXdqHas,43968
|
|
90
|
-
pulumi_snowflake/provider.py,sha256=PEyKukbl3zEttQSVtkbM_RY9u8Ro14hPbNYCTwCvOaw,85280
|
|
91
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=onUTxh3hq1JiJHL70qKh8O2ucWZjojRoYUwsWupNz_A,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=5v0RofHsIQTL-ec1BQbdRJa5fNxn18tq6g8iM1ExboY,9328
|
|
95
|
-
pulumi_snowflake/row_access_policy.py,sha256=z9GSTCGxTvHtZUxh0cQu35yitocJ8lUR90XcWqIC58c,20109
|
|
96
|
-
pulumi_snowflake/saml2_integration.py,sha256=FYu6T9dk2KtgmOonW36rR3f_ueD8U7uof5LCUvRMuU4,75264
|
|
97
|
-
pulumi_snowflake/saml_integration.py,sha256=bVQPrrXXKTym0w3usppuiJERA6cg7rjQcOc5zGO6cMo,65285
|
|
98
|
-
pulumi_snowflake/schema.py,sha256=OyHZ6b0f92lZje-4-O1UBz7lDovrnneMEe4WBbKXsHQ,91629
|
|
99
|
-
pulumi_snowflake/scim_integration.py,sha256=FK7yHgCkp0ulKu_4YCQxKm1whHMQMI57RzinfeoGpDo,27315
|
|
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=CKXyjEiOQEj86rz60y8waEZu-1wg5_X5W9SYoeBCAHA,35656
|
|
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=M7YhvhKUxwNXCwkShfcWs4xygEr4tGPIjkopMHgzYS0,30217
|
|
109
|
-
pulumi_snowflake/table.py,sha256=D94q41d7VFCf7J2LN_r47EoKwWbB7O42wwZWkfgXp8c,32435
|
|
110
|
-
pulumi_snowflake/table_column_masking_policy_application.py,sha256=gM5EZc64cM86Pd2r_QaPyJc5wTtiuNfjMMbmV2ko6gc,11641
|
|
111
|
-
pulumi_snowflake/table_constraint.py,sha256=0QaAahKCgSWuNaO6EChb79c-hDejwhs_ysWExNEV0S8,35600
|
|
112
|
-
pulumi_snowflake/tag.py,sha256=arbK3yapCB2mFgxb2UhkbwZWl5dCTaANgd9eA9CTLBA,14591
|
|
113
|
-
pulumi_snowflake/tag_association.py,sha256=WKvXztBK4RzNwAw2rjh1Iywt7c3IKYqvGwCGJpIJ3Vw,25911
|
|
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=H4wuOHLAC4N_NhVu79vP0oLHaFJ4aYeBz8LIxv-UWCM,13690
|
|
117
|
-
pulumi_snowflake/user.py,sha256=rl5DfPWWUUnoea9muzD3JRpym_fvFLaPPCHawBD5N-8,43432
|
|
118
|
-
pulumi_snowflake/user_password_policy_attachment.py,sha256=cZF1IzU6NBpbVWYc2DxeQuR6sLnsIs00lBVj9r1gK7s,10334
|
|
119
|
-
pulumi_snowflake/user_public_keys.py,sha256=Z8QaNFXe8bGM0pzxRwM3bPSlGvqXVOxejQLDbhQm5Ck,11278
|
|
120
|
-
pulumi_snowflake/view.py,sha256=HTfwb3AAh8kgHuE40rnt96Q0HVrTmQoiQj72xynBZ3w,24700
|
|
121
|
-
pulumi_snowflake/warehouse.py,sha256=Wgh2KfF_1wWf1RO4PpzLUIsUR_9tHj3ujvWA_22725U,57548
|
|
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.0a1726035035.dist-info/METADATA,sha256=PEbSc2G-7KUhU7AGw2dMtMhL_J0jaMk72FHq1yiNhpo,4981
|
|
127
|
-
pulumi_snowflake-0.58.0a1726035035.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
128
|
-
pulumi_snowflake-0.58.0a1726035035.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
129
|
-
pulumi_snowflake-0.58.0a1726035035.dist-info/RECORD,,
|
{pulumi_snowflake-0.58.0a1726035035.dist-info → pulumi_snowflake-0.58.0a1726066221.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|