pulumi-snowflake 0.57.2__py3-none-any.whl → 0.58.0a1722527984__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/account_role.py +18 -32
- pulumi_snowflake/alert.py +11 -11
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +4 -4
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +4 -4
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +4 -4
- pulumi_snowflake/cortex_search_service.py +0 -76
- pulumi_snowflake/database.py +133 -15
- pulumi_snowflake/database_old.py +13 -13
- pulumi_snowflake/dynamic_table.py +11 -11
- pulumi_snowflake/external_function.py +26 -26
- pulumi_snowflake/external_oauth_integration.py +6 -6
- pulumi_snowflake/external_table.py +26 -26
- pulumi_snowflake/failover_group.py +32 -32
- pulumi_snowflake/function.py +5 -5
- pulumi_snowflake/get_cortex_search_services.py +16 -16
- pulumi_snowflake/get_databases.py +6 -6
- pulumi_snowflake/get_dynamic_tables.py +12 -12
- pulumi_snowflake/get_grants.py +138 -138
- pulumi_snowflake/get_network_policies.py +2 -2
- pulumi_snowflake/get_roles.py +2 -2
- pulumi_snowflake/get_schemas.py +8 -12
- pulumi_snowflake/get_security_integrations.py +2 -2
- pulumi_snowflake/get_streamlits.py +10 -10
- pulumi_snowflake/get_warehouses.py +2 -2
- pulumi_snowflake/grant_ownership.py +5 -5
- pulumi_snowflake/grant_privileges_to_account_role.py +19 -19
- pulumi_snowflake/grant_privileges_to_database_role.py +10 -10
- pulumi_snowflake/grant_privileges_to_share.py +2 -2
- pulumi_snowflake/masking_policy.py +17 -17
- pulumi_snowflake/materialized_view.py +5 -5
- pulumi_snowflake/network_policy.py +34 -12
- pulumi_snowflake/oauth_integration_for_custom_clients.py +4 -4
- pulumi_snowflake/oauth_integration_for_partner_applications.py +4 -4
- pulumi_snowflake/object_parameter.py +37 -37
- pulumi_snowflake/procedure.py +5 -5
- pulumi_snowflake/provider.py +2 -2
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/role.py +18 -32
- pulumi_snowflake/saml2_integration.py +4 -4
- pulumi_snowflake/schema.py +13 -17
- pulumi_snowflake/scim_integration.py +4 -4
- pulumi_snowflake/stage.py +5 -5
- pulumi_snowflake/streamlit.py +4 -4
- pulumi_snowflake/table.py +15 -15
- pulumi_snowflake/table_constraint.py +67 -67
- pulumi_snowflake/tag_association.py +47 -47
- pulumi_snowflake/view.py +5 -5
- pulumi_snowflake/warehouse.py +4 -4
- {pulumi_snowflake-0.57.2.dist-info → pulumi_snowflake-0.58.0a1722527984.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.57.2.dist-info → pulumi_snowflake-0.58.0a1722527984.dist-info}/RECORD +52 -52
- {pulumi_snowflake-0.57.2.dist-info → pulumi_snowflake-0.58.0a1722527984.dist-info}/WHEEL +1 -1
- {pulumi_snowflake-0.57.2.dist-info → pulumi_snowflake-0.58.0a1722527984.dist-info}/top_level.txt +0 -0
pulumi_snowflake/warehouse.py
CHANGED
|
@@ -743,11 +743,11 @@ class Warehouse(pulumi.CustomResource):
|
|
|
743
743
|
max_concurrency_level: Optional[pulumi.Input[int]] = None,
|
|
744
744
|
min_cluster_count: Optional[pulumi.Input[int]] = None,
|
|
745
745
|
name: Optional[pulumi.Input[str]] = None,
|
|
746
|
-
parameters: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
746
|
+
parameters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WarehouseParameterArgs']]]]] = None,
|
|
747
747
|
query_acceleration_max_scale_factor: Optional[pulumi.Input[int]] = None,
|
|
748
748
|
resource_monitor: Optional[pulumi.Input[str]] = None,
|
|
749
749
|
scaling_policy: Optional[pulumi.Input[str]] = None,
|
|
750
|
-
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
750
|
+
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WarehouseShowOutputArgs']]]]] = None,
|
|
751
751
|
statement_queued_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
|
|
752
752
|
statement_timeout_in_seconds: Optional[pulumi.Input[int]] = None,
|
|
753
753
|
warehouse_size: Optional[pulumi.Input[str]] = None,
|
|
@@ -768,11 +768,11 @@ class Warehouse(pulumi.CustomResource):
|
|
|
768
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.
|
|
769
769
|
:param pulumi.Input[int] min_cluster_count: Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).
|
|
770
770
|
:param pulumi.Input[str] name: Identifier for the virtual warehouse; must be unique for your account.
|
|
771
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
771
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WarehouseParameterArgs']]]] parameters: Outputs the result of `SHOW PARAMETERS IN WAREHOUSE` for the given warehouse.
|
|
772
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.
|
|
773
773
|
:param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
|
|
774
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`.
|
|
775
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
775
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WarehouseShowOutputArgs']]]] show_outputs: Outputs the result of `SHOW WAREHOUSE` for the given warehouse.
|
|
776
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.
|
|
777
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
|
|
778
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.
|
|
@@ -4,57 +4,57 @@ pulumi_snowflake/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95
|
|
|
4
4
|
pulumi_snowflake/account.py,sha256=vJUJAc9rMC1XkVlj_q4AwDu6kO0DAvGFOqc89XTTGUs,47120
|
|
5
5
|
pulumi_snowflake/account_parameter.py,sha256=tQwfHgeDP9BHYfvXuhSl1vTub0UvMw52KGJNNy-n_ds,9445
|
|
6
6
|
pulumi_snowflake/account_password_policy_attachment.py,sha256=-JsZcmX9NHY2KQS1devUCXoqEZFKTUSZaOd_jl97S_k,7628
|
|
7
|
-
pulumi_snowflake/account_role.py,sha256=
|
|
8
|
-
pulumi_snowflake/alert.py,sha256=
|
|
9
|
-
pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=
|
|
10
|
-
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=
|
|
11
|
-
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=
|
|
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
12
|
pulumi_snowflake/api_integration.py,sha256=KRwKhCyjlTuoM-IHtkgTD31uIJlGv340s78VBsEf7Qg,40947
|
|
13
|
-
pulumi_snowflake/cortex_search_service.py,sha256=
|
|
14
|
-
pulumi_snowflake/database.py,sha256=
|
|
15
|
-
pulumi_snowflake/database_old.py,sha256=
|
|
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
16
|
pulumi_snowflake/database_role.py,sha256=3jo3f547ySt5GuNBCKlUx7WyboeSjxZ2oUgbgpWi6cI,9831
|
|
17
|
-
pulumi_snowflake/dynamic_table.py,sha256=
|
|
17
|
+
pulumi_snowflake/dynamic_table.py,sha256=TT7bi_TFwNEsi9wSwvFr5TB3WGXAs89jYMhnY02felk,40652
|
|
18
18
|
pulumi_snowflake/email_notification_integration.py,sha256=Vf2-KL9Ec6KVb2-ijUV7YAzOsYwst5BKypwDHhWkjJs,11731
|
|
19
|
-
pulumi_snowflake/external_function.py,sha256=
|
|
20
|
-
pulumi_snowflake/external_oauth_integration.py,sha256=
|
|
21
|
-
pulumi_snowflake/external_table.py,sha256=
|
|
22
|
-
pulumi_snowflake/failover_group.py,sha256=
|
|
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
23
|
pulumi_snowflake/file_format.py,sha256=02NrI5_S1O2Xt6fHn_hKN2WoH3jhyJLBdYDHGJ9AoOU,91876
|
|
24
|
-
pulumi_snowflake/function.py,sha256=
|
|
24
|
+
pulumi_snowflake/function.py,sha256=Y2BmKRWeq3FItyZ7sHNNMItMj3hfqSFj3vhvBzXlPlw,40353
|
|
25
25
|
pulumi_snowflake/get_accounts.py,sha256=1XaZzHCyz4veYUDjZ-urRSFR0WCEPCGpAneC8B_F7gk,3423
|
|
26
26
|
pulumi_snowflake/get_alerts.py,sha256=IOYjHzz6mofcwCs9US7STsx9kKz1pleAer2IR1iQEbg,4948
|
|
27
|
-
pulumi_snowflake/get_cortex_search_services.py,sha256=
|
|
27
|
+
pulumi_snowflake/get_cortex_search_services.py,sha256=dc8s7Z6ynmWIuhxPMpApZnjfAB_P8GVAmz_HmOLdM0U,9171
|
|
28
28
|
pulumi_snowflake/get_current_account.py,sha256=ekQYpY3r7i7TXxCTtMo8B9MdLVQEfgURVxt0zs7glC4,3848
|
|
29
29
|
pulumi_snowflake/get_current_role.py,sha256=8qctYLhiMpij40a-sTPUpxno0OBzyTpp4pp1v0Dm3OM,2532
|
|
30
30
|
pulumi_snowflake/get_database.py,sha256=-OCZl50Fyaz8OSDes2wLsaf9dsk927UHIlFuut5ACSw,6025
|
|
31
31
|
pulumi_snowflake/get_database_role.py,sha256=VgJGlvm4SNuYWpoaClTLlyIS8dszGaX2WZgUpASbdFE,4493
|
|
32
32
|
pulumi_snowflake/get_database_roles.py,sha256=phyvBWznKjhUlGomFhsB2McEmdY6FSRAqy6Ux4qt22w,3656
|
|
33
|
-
pulumi_snowflake/get_databases.py,sha256=
|
|
34
|
-
pulumi_snowflake/get_dynamic_tables.py,sha256=
|
|
33
|
+
pulumi_snowflake/get_databases.py,sha256=Gd4cXd1D8XIhO2n8SNeaxB8GSgWpYQXSNMXJkpUyiL8,10125
|
|
34
|
+
pulumi_snowflake/get_dynamic_tables.py,sha256=QIh9_v7aq2ena2BkGLdhYHKMa_tj6qN1ezdTKw5bCNc,7140
|
|
35
35
|
pulumi_snowflake/get_external_functions.py,sha256=-UoeIjSURHaxT-3F70gfowF1Xmy8TkbaKLNFpxYdEYo,4650
|
|
36
36
|
pulumi_snowflake/get_external_tables.py,sha256=MeoscZ7LbpY-Fj9zaQoXz-4VsQBSxhpyPiMiAn201hg,4481
|
|
37
37
|
pulumi_snowflake/get_failover_groups.py,sha256=3_2DcfbgcxQ3vPE-2uE18f_41j1p3nYruuB11nmrVIw,3531
|
|
38
38
|
pulumi_snowflake/get_file_formats.py,sha256=nM16keOSoW2kFh4te0gpAE-xIc3VwyzrW2tx76jDukI,4352
|
|
39
39
|
pulumi_snowflake/get_functions.py,sha256=A8jzOryl_PloHXf8EIKEt1NCIP3oQSyAV8XMdVIwKKY,4221
|
|
40
|
-
pulumi_snowflake/get_grants.py,sha256=
|
|
40
|
+
pulumi_snowflake/get_grants.py,sha256=hHqQkfXr9y9UJCTAG8jpf36HL3BqHUxyza6LbnzZLCE,14707
|
|
41
41
|
pulumi_snowflake/get_masking_policies.py,sha256=ra6_KaY7vxq4o3xztRQF7qJT4j8sQHmQRvxIA_MaxGs,4519
|
|
42
42
|
pulumi_snowflake/get_materialized_views.py,sha256=SzrOyytKFC1L1Bxtf_k8PI0wXfP_zkvrAfRHdYJIovQ,4558
|
|
43
|
-
pulumi_snowflake/get_network_policies.py,sha256=
|
|
43
|
+
pulumi_snowflake/get_network_policies.py,sha256=QFQLzEvCNuFWh7ZXdfh5Qk_1NF34Fmq322_ci5MG1kY,6251
|
|
44
44
|
pulumi_snowflake/get_parameters.py,sha256=sziM3-TIrQKQutCRQddpm6ql82SaE5lie55lm1dNAOw,9700
|
|
45
45
|
pulumi_snowflake/get_pipes.py,sha256=S8EURVcZJze6r7br5sdFFEcxmf358EK3ept7Sft5CFE,4053
|
|
46
46
|
pulumi_snowflake/get_procedures.py,sha256=1DZvj-MhgKOW3BGB6EQVtofsGAha8Rg7Sh2P1jsDars,4263
|
|
47
47
|
pulumi_snowflake/get_resource_monitors.py,sha256=ou1SwZvtDDpkFmFYvYZpmS_KeI_Zy51OW4Rk9EEDAGw,2895
|
|
48
48
|
pulumi_snowflake/get_role.py,sha256=BvCk_WCi6C8GvQc9q4nlWprYwVt9pI1pHUYieW_2JRs,3392
|
|
49
|
-
pulumi_snowflake/get_roles.py,sha256=
|
|
49
|
+
pulumi_snowflake/get_roles.py,sha256=KqVrYYO78IOiBWwN0AD4nB_tRG148MSk4lfiUk1xHGQ,5279
|
|
50
50
|
pulumi_snowflake/get_row_access_policies.py,sha256=U6dOdDDR5IN60wvnJmZ2vNr7JE6HrHzJ5Js9WHCBncs,4628
|
|
51
|
-
pulumi_snowflake/get_schemas.py,sha256=
|
|
52
|
-
pulumi_snowflake/get_security_integrations.py,sha256=
|
|
51
|
+
pulumi_snowflake/get_schemas.py,sha256=yJikfoEkxSpWPVsRmmJFnhwlBmZyVmwwGSllVsp3bTY,9942
|
|
52
|
+
pulumi_snowflake/get_security_integrations.py,sha256=n-n8vPw4xGAX2fMOt3DT-CCVG6BUM0mR2iTSPSOuDqc,6563
|
|
53
53
|
pulumi_snowflake/get_sequences.py,sha256=xp_duxQQTXk5R6MW7bhoqX9dEk7bATY1fk5F8vcuOoM,4221
|
|
54
54
|
pulumi_snowflake/get_shares.py,sha256=xOrMChS5bTQ8vIETDAtJt1Ar7VDjSo3fpqQldXyfRLU,3365
|
|
55
55
|
pulumi_snowflake/get_stages.py,sha256=0aDVuqtlisNUHBA1z81PgpUrYSNmfIUp3CrNTPG9vt0,4095
|
|
56
56
|
pulumi_snowflake/get_storage_integrations.py,sha256=B96Ikapf8A8FcFYRivOwOooBjbyj7wsZnul0C7kHJK4,3003
|
|
57
|
-
pulumi_snowflake/get_streamlits.py,sha256=
|
|
57
|
+
pulumi_snowflake/get_streamlits.py,sha256=s9bF0f9OI3hpRRWuZBY2zDQXYz2I8bsJ29cSa3gAnUg,8615
|
|
58
58
|
pulumi_snowflake/get_streams.py,sha256=lKhjr5ZI0ImQjl-zJPjVwzZNwPJDmZws4znbyQYynY8,4137
|
|
59
59
|
pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=qDnAfUXWuNeg4CkP0Rt8SZliQsE9kAyMYlB8U3cikvg,3986
|
|
60
60
|
pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=fm4NJGPdm5RehwqL0glf-HfiAf_71JxLNmNJaXQSNrI,4269
|
|
@@ -64,66 +64,66 @@ pulumi_snowflake/get_tables.py,sha256=AG1baNGUWbRj4ow9g7OY6dGqkL-eUvgDtCOydrHvN9
|
|
|
64
64
|
pulumi_snowflake/get_tasks.py,sha256=lzEuSYuJHfOeGhkVeFH2MdR612BWq5Ywc14P6tawsjo,4053
|
|
65
65
|
pulumi_snowflake/get_users.py,sha256=7oj99U-ynVSDwVarsWQZsUOwxMjoPOWwRRHeVwcX7Ko,3637
|
|
66
66
|
pulumi_snowflake/get_views.py,sha256=FkSkOYf7GwUf2yeD3mEmgsu9uzVvnVnxxY5sUUORqsg,4053
|
|
67
|
-
pulumi_snowflake/get_warehouses.py,sha256=
|
|
67
|
+
pulumi_snowflake/get_warehouses.py,sha256=C1_jnJa1PIkIjf5kFiTO3Ta-HzsfVhQqc_JvdPnNWog,7353
|
|
68
68
|
pulumi_snowflake/grant_account_role.py,sha256=qo-o4zRtA9_NaCTrK-WMtn7lfN5bsuaAmYHLnzKtJyc,11240
|
|
69
69
|
pulumi_snowflake/grant_application_role.py,sha256=XOWw4Ag836RenWYFPV0hKNXT6v_gMqd3PqGxxsQJXlI,12023
|
|
70
70
|
pulumi_snowflake/grant_database_role.py,sha256=MZy5M4neHp2ON2fH4L26Rt4dLP_MT3ShDcrUe407qLI,14679
|
|
71
|
-
pulumi_snowflake/grant_ownership.py,sha256=
|
|
72
|
-
pulumi_snowflake/grant_privileges_to_account_role.py,sha256=
|
|
73
|
-
pulumi_snowflake/grant_privileges_to_database_role.py,sha256=
|
|
74
|
-
pulumi_snowflake/grant_privileges_to_share.py,sha256=
|
|
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
75
|
pulumi_snowflake/managed_account.py,sha256=IsRioua9GLxB93e8v4mSS88bYkHJ3DyOo64ao3cp_BY,20526
|
|
76
|
-
pulumi_snowflake/masking_policy.py,sha256=
|
|
77
|
-
pulumi_snowflake/materialized_view.py,sha256=
|
|
78
|
-
pulumi_snowflake/network_policy.py,sha256=
|
|
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
79
|
pulumi_snowflake/network_policy_attachment.py,sha256=EXOob_OuzWvFFMr_KffaX3TDs9Z2toWZXdFdsWxpGQ4,15886
|
|
80
80
|
pulumi_snowflake/network_rule.py,sha256=3ZfVe2h9JjvKuWhQ9umrvLHoQsTu9X5jD98kH7uDsQs,24105
|
|
81
81
|
pulumi_snowflake/notification_integration.py,sha256=mtEOKUNubXTaZFln3Z5iIXjIU9acipZyNBKRwo_oaEA,48506
|
|
82
82
|
pulumi_snowflake/oauth_integration.py,sha256=z6m4d7mxQ5C7UTIFBMr1262WlizqfRbW169RMm2UiJo,32685
|
|
83
|
-
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=
|
|
84
|
-
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=
|
|
85
|
-
pulumi_snowflake/object_parameter.py,sha256=
|
|
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
86
|
pulumi_snowflake/outputs.py,sha256=thd-a75ay8x9sNLi0iYGh_flOnkFcV3TeGoowCQFf58,645812
|
|
87
87
|
pulumi_snowflake/password_policy.py,sha256=KbUVIr4fMYuwYf1HEfKxTjf6jSuJbarcTDZh17laQGY,53191
|
|
88
88
|
pulumi_snowflake/pipe.py,sha256=N_U9gy0MMoCRTOxDyOtEherFeG_QCu7aT-TsaH1MhcA,24843
|
|
89
|
-
pulumi_snowflake/procedure.py,sha256=
|
|
90
|
-
pulumi_snowflake/provider.py,sha256=
|
|
91
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=
|
|
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=povbSaEXENVJmZkXpiemmMdM9b8azEQ6V-_LCXwyKLE,86
|
|
92
92
|
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
93
|
pulumi_snowflake/resource_monitor.py,sha256=V2bJR2jvWbO4yZYUF8lp8qzBIgM85mP878FzuLAdCcU,38970
|
|
94
|
-
pulumi_snowflake/role.py,sha256=
|
|
94
|
+
pulumi_snowflake/role.py,sha256=FxM6f4zF4QmBhDY5gkkQtHmPrahnXAwljrbhzaaFOkQ,8864
|
|
95
95
|
pulumi_snowflake/row_access_policy.py,sha256=z9GSTCGxTvHtZUxh0cQu35yitocJ8lUR90XcWqIC58c,20109
|
|
96
|
-
pulumi_snowflake/saml2_integration.py,sha256=
|
|
96
|
+
pulumi_snowflake/saml2_integration.py,sha256=otCBBv9ApaRXpfzRrPO69hfKW_gLvU2iJwDoXLbUFrM,75148
|
|
97
97
|
pulumi_snowflake/saml_integration.py,sha256=bVQPrrXXKTym0w3usppuiJERA6cg7rjQcOc5zGO6cMo,65285
|
|
98
|
-
pulumi_snowflake/schema.py,sha256=
|
|
99
|
-
pulumi_snowflake/scim_integration.py,sha256=
|
|
98
|
+
pulumi_snowflake/schema.py,sha256=5qPA9qsJQpJfpwbxC9QeGjNcauqrO6SEfuR3au1mPZc,89571
|
|
99
|
+
pulumi_snowflake/scim_integration.py,sha256=gVqjop-w8NACJEPN79nMqKugQsVczLSI6ExB5jy2Nfc,27203
|
|
100
100
|
pulumi_snowflake/secondary_database.py,sha256=ROih4_eNLTCIe2axTTeGnfQp89_LHmTt-nHnlegZxUg,82073
|
|
101
101
|
pulumi_snowflake/sequence.py,sha256=WCrhrUSIeSS4aRAg_q8CknVjsswpDB9ksZaCp_uJybg,18596
|
|
102
102
|
pulumi_snowflake/session_parameter.py,sha256=3MITgbXMi6B3-XGLI7iebq2pRHgG6-pBPGMNs-I4Jyk,13557
|
|
103
103
|
pulumi_snowflake/share.py,sha256=WvO2tfeyPs5s0q7myV6TyEMXeazsZpI3gsTcl5ssdzM,11207
|
|
104
104
|
pulumi_snowflake/shared_database.py,sha256=28h8Rtu1x2lKxunODmOVXlZnGFFxms6zjWsu4d2kzIs,64356
|
|
105
|
-
pulumi_snowflake/stage.py,sha256=
|
|
105
|
+
pulumi_snowflake/stage.py,sha256=MSpWrW_FWlwMEAXUb1vxp806Cg5v5MIjX-jz2dg6lOo,35611
|
|
106
106
|
pulumi_snowflake/storage_integration.py,sha256=usRmBXSV_0UBL9PZiF51T5w6Dxfsj4MnhJPdxqytcBk,31315
|
|
107
107
|
pulumi_snowflake/stream.py,sha256=WgZ87qdjc4_meR5x2JNd8lsrdfn1y1gWalVs2u_CIZ4,24999
|
|
108
|
-
pulumi_snowflake/streamlit.py,sha256=
|
|
109
|
-
pulumi_snowflake/table.py,sha256=
|
|
108
|
+
pulumi_snowflake/streamlit.py,sha256=M5Ur33AIJrzkZH9kMxUsBjm0A3CCytQNq0rECtnVYKY,30129
|
|
109
|
+
pulumi_snowflake/table.py,sha256=N3XFJBDXbBniEhBI4FZJpdtmFgAHEOOHCTLWbgkl_r4,32250
|
|
110
110
|
pulumi_snowflake/table_column_masking_policy_application.py,sha256=gM5EZc64cM86Pd2r_QaPyJc5wTtiuNfjMMbmV2ko6gc,11641
|
|
111
|
-
pulumi_snowflake/table_constraint.py,sha256=
|
|
111
|
+
pulumi_snowflake/table_constraint.py,sha256=LrMNV6xetwgtU8AvaC0iJT9_H6uQCaSYOoXBlbkuxn4,35778
|
|
112
112
|
pulumi_snowflake/tag.py,sha256=arbK3yapCB2mFgxb2UhkbwZWl5dCTaANgd9eA9CTLBA,14591
|
|
113
|
-
pulumi_snowflake/tag_association.py,sha256=
|
|
113
|
+
pulumi_snowflake/tag_association.py,sha256=oR2jKBmCvnIHkvAodWmeHkyZTpowJhgwsq1Y3tvsJIM,26054
|
|
114
114
|
pulumi_snowflake/tag_masking_policy_association.py,sha256=peiS_9g69yO976ZTIz53DCRky90xcP44G4telKz6eFc,10129
|
|
115
115
|
pulumi_snowflake/task.py,sha256=H2cdntrFuWNcGpJl5Ywbls5P5GAfzIHboGUkShKsQ4Y,48980
|
|
116
116
|
pulumi_snowflake/unsafe_execute.py,sha256=s3djFyuRkbM_RE_qxX4k861H3Btf7t3bHQnpSd2LjWw,13480
|
|
117
117
|
pulumi_snowflake/user.py,sha256=rl5DfPWWUUnoea9muzD3JRpym_fvFLaPPCHawBD5N-8,43432
|
|
118
118
|
pulumi_snowflake/user_password_policy_attachment.py,sha256=KlKgy4vWuR9gQ-J5NMjrBsh3XUtltstBMbBL0KGEYBY,10050
|
|
119
119
|
pulumi_snowflake/user_public_keys.py,sha256=Z8QaNFXe8bGM0pzxRwM3bPSlGvqXVOxejQLDbhQm5Ck,11278
|
|
120
|
-
pulumi_snowflake/view.py,sha256=
|
|
121
|
-
pulumi_snowflake/warehouse.py,sha256=
|
|
120
|
+
pulumi_snowflake/view.py,sha256=d2SmLn2QyX13cxkxEKIb9mXtq6snpygNUt2tlLDLO5Y,24660
|
|
121
|
+
pulumi_snowflake/warehouse.py,sha256=DEtOsHWi17reBD1i_XFiJwO9l0IHFy4Mn8dGco21Bt4,57470
|
|
122
122
|
pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
123
123
|
pulumi_snowflake/config/__init__.pyi,sha256=wA0KR9Mzb7OhcEV0M_FSljX8L_jCHB4hMilHnLcVwTo,9868
|
|
124
124
|
pulumi_snowflake/config/outputs.py,sha256=zm82Qv8RbeJ_iKb90mfdQeQBHOwjYRC8zHHII-DHiNs,3867
|
|
125
125
|
pulumi_snowflake/config/vars.py,sha256=D3v_7m-rX66OwF6n2t32KU1cRLebk5_u6vSbTuL9o-Y,15762
|
|
126
|
-
pulumi_snowflake-0.
|
|
127
|
-
pulumi_snowflake-0.
|
|
128
|
-
pulumi_snowflake-0.
|
|
129
|
-
pulumi_snowflake-0.
|
|
126
|
+
pulumi_snowflake-0.58.0a1722527984.dist-info/METADATA,sha256=AIrtvkp0pGSFgMMzY3a553TIpJs57_7k_o8zo7LpmWw,4981
|
|
127
|
+
pulumi_snowflake-0.58.0a1722527984.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
128
|
+
pulumi_snowflake-0.58.0a1722527984.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
129
|
+
pulumi_snowflake-0.58.0a1722527984.dist-info/RECORD,,
|
{pulumi_snowflake-0.57.2.dist-info → pulumi_snowflake-0.58.0a1722527984.dist-info}/top_level.txt
RENAMED
|
File without changes
|