pulumi-snowflake 1.4.0a1747377918__py3-none-any.whl → 2.0.0__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 +32 -725
- pulumi_snowflake/account_parameter.py +7 -7
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +4 -2
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +4 -2
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +4 -2
- pulumi_snowflake/config/__init__.pyi +5 -5
- pulumi_snowflake/config/vars.py +5 -5
- pulumi_snowflake/get_masking_policies.py +4 -0
- pulumi_snowflake/get_row_access_policies.py +4 -0
- pulumi_snowflake/get_security_integrations.py +2 -2
- pulumi_snowflake/get_tasks.py +4 -0
- pulumi_snowflake/get_users.py +2 -2
- pulumi_snowflake/get_views.py +4 -0
- pulumi_snowflake/oauth_integration_for_custom_clients.py +3 -1
- pulumi_snowflake/oauth_integration_for_partner_applications.py +3 -1
- pulumi_snowflake/outputs.py +1 -604
- pulumi_snowflake/provider.py +17 -17
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/saml2_integration.py +3 -1
- pulumi_snowflake/storage_integration.py +2 -0
- {pulumi_snowflake-1.4.0a1747377918.dist-info → pulumi_snowflake-2.0.0.dist-info}/METADATA +1 -1
- {pulumi_snowflake-1.4.0a1747377918.dist-info → pulumi_snowflake-2.0.0.dist-info}/RECORD +24 -24
- {pulumi_snowflake-1.4.0a1747377918.dist-info → pulumi_snowflake-2.0.0.dist-info}/WHEEL +1 -1
- {pulumi_snowflake-1.4.0a1747377918.dist-info → pulumi_snowflake-2.0.0.dist-info}/top_level.txt +0 -0
pulumi_snowflake/provider.py
CHANGED
|
@@ -133,15 +133,15 @@ class ProviderArgs:
|
|
|
133
133
|
`SNOWFLAKE_REQUEST_TIMEOUT` environment variable.
|
|
134
134
|
:param pulumi.Input[builtins.str] role: Specifies the role to use by default for accessing Snowflake objects in the client session. Can also be sourced from the
|
|
135
135
|
`SNOWFLAKE_ROLE` environment variable.
|
|
136
|
-
:param pulumi.Input[builtins.bool] skip_toml_file_permission_verification:
|
|
137
|
-
the permissions are not checked on this platform.
|
|
138
|
-
- see the section below. Can also be sourced from the
|
|
139
|
-
variable.
|
|
136
|
+
:param pulumi.Input[builtins.bool] skip_toml_file_permission_verification: False by default. Skips TOML configuration file permission verification. This flag has no effect on Windows systems, as
|
|
137
|
+
the permissions are not checked on this platform. Instead of skipping the permissions verification, we recommend setting
|
|
138
|
+
the proper privileges - see the section below. Can also be sourced from the
|
|
139
|
+
`SNOWFLAKE_SKIP_TOML_FILE_PERMISSION_VERIFICATION` environment variable.
|
|
140
140
|
:param pulumi.Input[builtins.str] tmp_directory_path: Sets temporary directory used by the driver for operations like encrypting, compressing etc. Can also be sourced from
|
|
141
141
|
the `SNOWFLAKE_TMP_DIRECTORY_PATH` environment variable.
|
|
142
142
|
:param pulumi.Input[builtins.str] token: Token to use for OAuth and other forms of token based auth. Can also be sourced from the `SNOWFLAKE_TOKEN` environment
|
|
143
143
|
variable.
|
|
144
|
-
:param pulumi.Input[builtins.bool] use_legacy_toml_file:
|
|
144
|
+
:param pulumi.Input[builtins.bool] use_legacy_toml_file: False by default. When this is set to true, the provider expects the legacy TOML format. Otherwise, it expects the new
|
|
145
145
|
format. See more in the section below Can also be sourced from the `SNOWFLAKE_USE_LEGACY_TOML_FILE` environment
|
|
146
146
|
variable.
|
|
147
147
|
:param pulumi.Input[builtins.str] user: Username. Required unless using `profile`. Can also be sourced from the `SNOWFLAKE_USER` environment variable.
|
|
@@ -693,10 +693,10 @@ class ProviderArgs:
|
|
|
693
693
|
@pulumi.getter(name="skipTomlFilePermissionVerification")
|
|
694
694
|
def skip_toml_file_permission_verification(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
695
695
|
"""
|
|
696
|
-
|
|
697
|
-
the permissions are not checked on this platform.
|
|
698
|
-
- see the section below. Can also be sourced from the
|
|
699
|
-
variable.
|
|
696
|
+
False by default. Skips TOML configuration file permission verification. This flag has no effect on Windows systems, as
|
|
697
|
+
the permissions are not checked on this platform. Instead of skipping the permissions verification, we recommend setting
|
|
698
|
+
the proper privileges - see the section below. Can also be sourced from the
|
|
699
|
+
`SNOWFLAKE_SKIP_TOML_FILE_PERMISSION_VERIFICATION` environment variable.
|
|
700
700
|
"""
|
|
701
701
|
return pulumi.get(self, "skip_toml_file_permission_verification")
|
|
702
702
|
|
|
@@ -743,7 +743,7 @@ class ProviderArgs:
|
|
|
743
743
|
@pulumi.getter(name="useLegacyTomlFile")
|
|
744
744
|
def use_legacy_toml_file(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
745
745
|
"""
|
|
746
|
-
|
|
746
|
+
False by default. When this is set to true, the provider expects the legacy TOML format. Otherwise, it expects the new
|
|
747
747
|
format. See more in the section below Can also be sourced from the `SNOWFLAKE_USE_LEGACY_TOML_FILE` environment
|
|
748
748
|
variable.
|
|
749
749
|
"""
|
|
@@ -917,15 +917,15 @@ class Provider(pulumi.ProviderResource):
|
|
|
917
917
|
`SNOWFLAKE_REQUEST_TIMEOUT` environment variable.
|
|
918
918
|
:param pulumi.Input[builtins.str] role: Specifies the role to use by default for accessing Snowflake objects in the client session. Can also be sourced from the
|
|
919
919
|
`SNOWFLAKE_ROLE` environment variable.
|
|
920
|
-
:param pulumi.Input[builtins.bool] skip_toml_file_permission_verification:
|
|
921
|
-
the permissions are not checked on this platform.
|
|
922
|
-
- see the section below. Can also be sourced from the
|
|
923
|
-
variable.
|
|
920
|
+
:param pulumi.Input[builtins.bool] skip_toml_file_permission_verification: False by default. Skips TOML configuration file permission verification. This flag has no effect on Windows systems, as
|
|
921
|
+
the permissions are not checked on this platform. Instead of skipping the permissions verification, we recommend setting
|
|
922
|
+
the proper privileges - see the section below. Can also be sourced from the
|
|
923
|
+
`SNOWFLAKE_SKIP_TOML_FILE_PERMISSION_VERIFICATION` environment variable.
|
|
924
924
|
:param pulumi.Input[builtins.str] tmp_directory_path: Sets temporary directory used by the driver for operations like encrypting, compressing etc. Can also be sourced from
|
|
925
925
|
the `SNOWFLAKE_TMP_DIRECTORY_PATH` environment variable.
|
|
926
926
|
:param pulumi.Input[builtins.str] token: Token to use for OAuth and other forms of token based auth. Can also be sourced from the `SNOWFLAKE_TOKEN` environment
|
|
927
927
|
variable.
|
|
928
|
-
:param pulumi.Input[builtins.bool] use_legacy_toml_file:
|
|
928
|
+
:param pulumi.Input[builtins.bool] use_legacy_toml_file: False by default. When this is set to true, the provider expects the legacy TOML format. Otherwise, it expects the new
|
|
929
929
|
format. See more in the section below Can also be sourced from the `SNOWFLAKE_USE_LEGACY_TOML_FILE` environment
|
|
930
930
|
variable.
|
|
931
931
|
:param pulumi.Input[builtins.str] user: Username. Required unless using `profile`. Can also be sourced from the `SNOWFLAKE_USER` environment variable.
|
|
@@ -1037,7 +1037,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
1037
1037
|
__props__.__dict__["okta_url"] = okta_url
|
|
1038
1038
|
__props__.__dict__["organization_name"] = organization_name
|
|
1039
1039
|
__props__.__dict__["params"] = pulumi.Output.from_input(params).apply(pulumi.runtime.to_json) if params is not None else None
|
|
1040
|
-
__props__.__dict__["passcode"] = passcode
|
|
1040
|
+
__props__.__dict__["passcode"] = None if passcode is None else pulumi.Output.secret(passcode)
|
|
1041
1041
|
__props__.__dict__["passcode_in_password"] = pulumi.Output.from_input(passcode_in_password).apply(pulumi.runtime.to_json) if passcode_in_password is not None else None
|
|
1042
1042
|
if password is None:
|
|
1043
1043
|
password = _utilities.get_env('SNOWFLAKE_PASSWORD')
|
|
@@ -1068,7 +1068,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
1068
1068
|
if warehouse is None:
|
|
1069
1069
|
warehouse = _utilities.get_env('SNOWFLAKE_WAREHOUSE')
|
|
1070
1070
|
__props__.__dict__["warehouse"] = warehouse
|
|
1071
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["password", "privateKey", "privateKeyPassphrase", "token"])
|
|
1071
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["passcode", "password", "privateKey", "privateKeyPassphrase", "token"])
|
|
1072
1072
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
1073
1073
|
super(Provider, __self__).__init__(
|
|
1074
1074
|
'snowflake',
|
|
@@ -752,10 +752,12 @@ class Saml2Integration(pulumi.CustomResource):
|
|
|
752
752
|
__props__.__dict__["saml2_sso_url"] = saml2_sso_url
|
|
753
753
|
if saml2_x509_cert is None and not opts.urn:
|
|
754
754
|
raise TypeError("Missing required property 'saml2_x509_cert'")
|
|
755
|
-
__props__.__dict__["saml2_x509_cert"] = saml2_x509_cert
|
|
755
|
+
__props__.__dict__["saml2_x509_cert"] = None if saml2_x509_cert is None else pulumi.Output.secret(saml2_x509_cert)
|
|
756
756
|
__props__.__dict__["describe_outputs"] = None
|
|
757
757
|
__props__.__dict__["fully_qualified_name"] = None
|
|
758
758
|
__props__.__dict__["show_outputs"] = None
|
|
759
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["saml2X509Cert"])
|
|
760
|
+
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
759
761
|
super(Saml2Integration, __self__).__init__(
|
|
760
762
|
'snowflake:index/saml2Integration:Saml2Integration',
|
|
761
763
|
resource_name,
|
|
@@ -559,6 +559,8 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
559
559
|
__props__.__dict__["storage_aws_external_id"] = None
|
|
560
560
|
__props__.__dict__["storage_aws_iam_user_arn"] = None
|
|
561
561
|
__props__.__dict__["storage_gcp_service_account"] = None
|
|
562
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["azureConsentUrl"])
|
|
563
|
+
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
562
564
|
super(StorageIntegration, __self__).__init__(
|
|
563
565
|
'snowflake:index/storageIntegration:StorageIntegration',
|
|
564
566
|
resource_name,
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
pulumi_snowflake/__init__.py,sha256=0Lm7YUQbSCEnRf_2N6P8-DbjVikvrc3assC-latFDUQ,22205
|
|
2
|
-
pulumi_snowflake/_inputs.py,sha256=
|
|
2
|
+
pulumi_snowflake/_inputs.py,sha256=uumyrP4kDvRfpo_3GQClKjivDf_9kL53R42EH35h8g8,2218058
|
|
3
3
|
pulumi_snowflake/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
4
4
|
pulumi_snowflake/account.py,sha256=8xjnWrCXP4wv5ZiO3V8kLDMGsBXP3hIWl8YS43qUCVY,45949
|
|
5
5
|
pulumi_snowflake/account_authentication_policy_attachment.py,sha256=8xnSfXBIHAZ6c2EAM4yBJMlLQy9VH_2gaEoKwIwXntM,7584
|
|
6
|
-
pulumi_snowflake/account_parameter.py,sha256=
|
|
6
|
+
pulumi_snowflake/account_parameter.py,sha256=2APXKDb22KoY6wz8GtrKcXFFuR3OEpNme89sm6aunZ0,32210
|
|
7
7
|
pulumi_snowflake/account_password_policy_attachment.py,sha256=VkHfgGx-Ek1tDsRqb0n07G_9dR6w3JucXKoJyd8T-t4,7188
|
|
8
8
|
pulumi_snowflake/account_role.py,sha256=F3uH_MF5OUrRqA0kuT0fasmANI15QBC3tvQV1uTkFv0,11450
|
|
9
9
|
pulumi_snowflake/alert.py,sha256=vSZMyDZE9dS8XP45cpR6G4d4kElW4rWV95WSo_5r_T4,25467
|
|
10
|
-
pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=
|
|
11
|
-
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=
|
|
12
|
-
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=
|
|
10
|
+
pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=b277yqzap6n3AVWVcDlnFWgSnt4Mmm3LYUDKcv9B34I,44323
|
|
11
|
+
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=xyettGZliKyGzkFgnereRxD6lTlXJwp93kRdORk7fzw,40923
|
|
12
|
+
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=2PY26L_NzCv25S7yTt9TNWSDszDw7918vrlxF0BysWk,41733
|
|
13
13
|
pulumi_snowflake/api_integration.py,sha256=KbG8XzZgLoUK1A5eJd0zoO0CgTJOhr_Hgupt4dfAJJg,42949
|
|
14
14
|
pulumi_snowflake/authentication_policy.py,sha256=UlAjd7qcUG6A1_biTlYBzjN2_mqATybLV12NEe9gKgs,43616
|
|
15
15
|
pulumi_snowflake/cortex_search_service.py,sha256=W8bHK2RehcJIt_zhwY8zcAWoOstNIKzEhU9U3KGA8wE,27128
|
|
@@ -47,17 +47,17 @@ pulumi_snowflake/get_failover_groups.py,sha256=eQ9wYvmJEvU8uxNiCXsdkrx_2QhMue3NX
|
|
|
47
47
|
pulumi_snowflake/get_file_formats.py,sha256=tTweMVC5_zAU4bPFqnLN76vyW3MI-MfFErl16K3nCJ0,6540
|
|
48
48
|
pulumi_snowflake/get_functions.py,sha256=IzXRKEKWMNTJIMDf2pJY3OD_1gWwz7r7IQ18Ak_yTxo,6398
|
|
49
49
|
pulumi_snowflake/get_grants.py,sha256=hopzNyDq3aAht1u1Dqc6khflxdkslMlBRyNjREyEDyo,15295
|
|
50
|
-
pulumi_snowflake/get_masking_policies.py,sha256=
|
|
50
|
+
pulumi_snowflake/get_masking_policies.py,sha256=8QCcUWiw9QM-57MlWnI2Qfc01im5J_VMP6OXhfpAX_g,10524
|
|
51
51
|
pulumi_snowflake/get_materialized_views.py,sha256=X7-je_AaJkdT553Tx6eXdLHr6vcoBBZao79brhzboF4,6776
|
|
52
52
|
pulumi_snowflake/get_network_policies.py,sha256=hTDyahM_YHYu2teBYqQkLNKg9dEJLdsXAClSK5f2JmE,6424
|
|
53
53
|
pulumi_snowflake/get_parameters.py,sha256=AxNqvM8zVY7N9caE7lrtLwoZharzCGZ6wRa8UGHC1kk,12386
|
|
54
54
|
pulumi_snowflake/get_pipes.py,sha256=mum-FScI-uJwVsD9YwUAML50wULfHocyYlUk2rrFDTg,6210
|
|
55
55
|
pulumi_snowflake/get_procedures.py,sha256=-l0pajG3rW_SBNNOLCV41TQgwVvbut5natYTsT2WWKg,6445
|
|
56
56
|
pulumi_snowflake/get_resource_monitors.py,sha256=ilgNINdsfhd1cOvgqLW9DLx5XdaAuwn_fwRi7_8MB3E,4918
|
|
57
|
-
pulumi_snowflake/get_row_access_policies.py,sha256=
|
|
57
|
+
pulumi_snowflake/get_row_access_policies.py,sha256=ZXXtAu66JIe5umdlyNVOjPTK33KxV6GT1E_jDKSICjE,10738
|
|
58
58
|
pulumi_snowflake/get_schemas.py,sha256=Ans-lKweDd330yergEv7iqSEZW3Gh6XkMSVdLiVXexA,11771
|
|
59
59
|
pulumi_snowflake/get_secrets.py,sha256=VhD26VyNbsG0Tly-DNddWVLzlMPct7C6k-hFSZv1pak,8738
|
|
60
|
-
pulumi_snowflake/get_security_integrations.py,sha256=
|
|
60
|
+
pulumi_snowflake/get_security_integrations.py,sha256=8CsYFnxDyK1DHLKWVFuYJyDyJhzTDerjIFOioqvUZnI,6089
|
|
61
61
|
pulumi_snowflake/get_sequences.py,sha256=OWlUL07zTB-InXMcqD-8qVSDbfmP0-6Q1Lpbw9-l5wA,6398
|
|
62
62
|
pulumi_snowflake/get_shares.py,sha256=c6-De-vOuV-Jq9uQlt3iOL-Kwf9oTuTU9LgtMCdP1Ms,5395
|
|
63
63
|
pulumi_snowflake/get_stages.py,sha256=PrAip_Z3Q1YdKD-ohtQgkLX7caOCqR9pB2pAENVD9aw,6257
|
|
@@ -70,9 +70,9 @@ pulumi_snowflake/get_system_get_private_link_config.py,sha256=cnABOGSSUdG2_nFOV1
|
|
|
70
70
|
pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=4KROm8oqx94vtY3_qCRB2vPveLJKD58kVMB67w-z5Ss,5443
|
|
71
71
|
pulumi_snowflake/get_tables.py,sha256=YkzdTm5YeJP2aUiPmhDyCyFgwgUA8J0uXFnlGWuvcWc,6257
|
|
72
72
|
pulumi_snowflake/get_tags.py,sha256=6Mmr0ME9Gi5j_6O-SfXuAFiDSumqrm-FfeV6rKvLSRU,5239
|
|
73
|
-
pulumi_snowflake/get_tasks.py,sha256=
|
|
74
|
-
pulumi_snowflake/get_users.py,sha256=
|
|
75
|
-
pulumi_snowflake/get_views.py,sha256=
|
|
73
|
+
pulumi_snowflake/get_tasks.py,sha256=b96CcM2ePFKZSHsG3hxlPUkedNujBLSHtDwnaoEDr-s,11775
|
|
74
|
+
pulumi_snowflake/get_users.py,sha256=niHLFjWFaNzGVg7L0ciFw0n3HmKrHRraGPas772YALc,9814
|
|
75
|
+
pulumi_snowflake/get_views.py,sha256=TQylXgx0a2_4MIigSAkLpoP7tKZ8ktSo4kP0Xu3SD2I,10588
|
|
76
76
|
pulumi_snowflake/get_warehouses.py,sha256=3sONTv26smeZ5PFKLu9fsm8ESYAxORShbwmNF9WfgHU,7717
|
|
77
77
|
pulumi_snowflake/grant_account_role.py,sha256=GsxhJd1WiKMPvTt8LX-6jR_6_-HvT_UyA2Vp9bLxkEA,12920
|
|
78
78
|
pulumi_snowflake/grant_application_role.py,sha256=gbNawm6wBoT3iET0wh9_l6sxQOnCTYcHXkaorEZn4l8,13019
|
|
@@ -89,10 +89,10 @@ pulumi_snowflake/network_policy.py,sha256=aeyXXqOdUc094ZfQnSNL1KTh7R6YG5l_mzQnw7
|
|
|
89
89
|
pulumi_snowflake/network_policy_attachment.py,sha256=wLcoL3tf7ELCsHxe1srAM6uElwR-6RGVegy6iUe_iHE,15977
|
|
90
90
|
pulumi_snowflake/network_rule.py,sha256=9EanA-E-sUSvTHcN6XRZDz3DbZ2e7EHjuR05vBCz71o,24952
|
|
91
91
|
pulumi_snowflake/notification_integration.py,sha256=kqG84iAcRJHkHQG8qewyyOCRfwSdmo22jtpZlLb8zVs,52164
|
|
92
|
-
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=
|
|
93
|
-
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=
|
|
92
|
+
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=oPqcphaMzkH8y41gRjW6lmiW9XNfqI5OvuuOaC7JWUk,67126
|
|
93
|
+
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=beaAzhs72uz7b7ZpfHw3dw3qj-pTqdcYMkmSyo-CuQ8,46403
|
|
94
94
|
pulumi_snowflake/object_parameter.py,sha256=C079cSsVtlTC9HllOw3lEqfdEnY7qMkcZw-YBHsZzwc,19418
|
|
95
|
-
pulumi_snowflake/outputs.py,sha256=
|
|
95
|
+
pulumi_snowflake/outputs.py,sha256=HxY0rtPLB_tx0l8YdTMSGn2QW2ohd0h4xWCPlgfOvNU,1851614
|
|
96
96
|
pulumi_snowflake/password_policy.py,sha256=cBXHda0CirAdLWK8aoYOwvCwZC9RrF2r64FvLZHZb8c,59803
|
|
97
97
|
pulumi_snowflake/pipe.py,sha256=Yxbi89hyiyWTC0e2BcJnvGq99-m15tuDCB6iedQUcLc,27933
|
|
98
98
|
pulumi_snowflake/primary_connection.py,sha256=CYVosp9eMrO0inGdvzdtYAewCe924UQ8w9YdqmkgHP8,19744
|
|
@@ -101,12 +101,12 @@ pulumi_snowflake/procedure_javascript.py,sha256=UBxGt6I4igqClH22-d3m4aFWIRtxbyBw
|
|
|
101
101
|
pulumi_snowflake/procedure_python.py,sha256=IromQoDUIPMHtvSCUFsh3X5Ei4X2vPoKplR5WWCmPLI,102547
|
|
102
102
|
pulumi_snowflake/procedure_scala.py,sha256=GCSdlt1KzkX2xu-t3ijAIlA1HClm-O5KXOtqLTJSces,106558
|
|
103
103
|
pulumi_snowflake/procedure_sql.py,sha256=2vXn99iZQI5jWezMrf0NoziMdGTyOxxi-TPCnwnmpYY,67573
|
|
104
|
-
pulumi_snowflake/provider.py,sha256=
|
|
105
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=
|
|
104
|
+
pulumi_snowflake/provider.py,sha256=Ymla3U15RMRPOGA_iXwU059LTGO0haQp0INY1n1Wufs,79671
|
|
105
|
+
pulumi_snowflake/pulumi-plugin.json,sha256=LTjIC_O0613yC8C9dXkIEyhI080KZJ0VWj3LozPFzNk,68
|
|
106
106
|
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
107
|
pulumi_snowflake/resource_monitor.py,sha256=bnCbW4nlileQIL3WYwp4gxW3q_rEIQBUM5_OouBvMtg,43607
|
|
108
108
|
pulumi_snowflake/row_access_policy.py,sha256=kkPQeGo7XdiMEJeQj_xN91iaeyMbCh_McNoJ_sBwhOU,28685
|
|
109
|
-
pulumi_snowflake/saml2_integration.py,sha256=
|
|
109
|
+
pulumi_snowflake/saml2_integration.py,sha256=plEL4SsLs4s_BCkphcFkerPo8tNcGvs-ohfSpcZfS5Q,82597
|
|
110
110
|
pulumi_snowflake/schema.py,sha256=kRhRM_mvoF1CxaGXksdsZNkircNWnIPvUOm0bx4LVGk,98419
|
|
111
111
|
pulumi_snowflake/scim_integration.py,sha256=j40EbSbWRcOiEYLZs-JN35d0jG_Z9KhUV_Azq00xyfE,30959
|
|
112
112
|
pulumi_snowflake/secondary_connection.py,sha256=SI9ZvYjY6nsIHL-uJ2294njwTASKeuVkQF0AE7R4boI,18355
|
|
@@ -120,7 +120,7 @@ pulumi_snowflake/service_user.py,sha256=mGewzpymlCIS1XOspFuBqOEkpHkKjxtE60Mnkfn2
|
|
|
120
120
|
pulumi_snowflake/share.py,sha256=65gNNV-JQZA2MmdE_EymgrQcP_J0TkRnfG6eII34pGw,12782
|
|
121
121
|
pulumi_snowflake/shared_database.py,sha256=6yB2hJmNTzENodPm-4ik254PD-ZX7AXd-SoQm3zWEyM,68333
|
|
122
122
|
pulumi_snowflake/stage.py,sha256=OJlhW-Znd5fhl53VN1XiHfP3mdkAwg39zqjEzDL3uts,42428
|
|
123
|
-
pulumi_snowflake/storage_integration.py,sha256=
|
|
123
|
+
pulumi_snowflake/storage_integration.py,sha256=egX4t8l2TJWh-8O5dOjQxQLINqMy9WPiS3D8MTl7AhU,38177
|
|
124
124
|
pulumi_snowflake/stream_on_directory_table.py,sha256=mTPmB9m4ldwCmNQV4Un2Le9n7Wk-a64SI3vx1DAm-jY,28385
|
|
125
125
|
pulumi_snowflake/stream_on_external_table.py,sha256=_q-h2ObjpKsnZMayzvQtq4HINTyJ5UJToSIVNtScrzQ,34442
|
|
126
126
|
pulumi_snowflake/stream_on_table.py,sha256=nmDj5TH2wSI2MDAlQ3iEgtyYLmvZ_nzNeto4ZmBaziM,35112
|
|
@@ -139,10 +139,10 @@ pulumi_snowflake/user_public_keys.py,sha256=22Ro9_tQsOrW4j0RGPAHsuyZpncOnKOWIZAk
|
|
|
139
139
|
pulumi_snowflake/view.py,sha256=lJNAjSjw-pjz2OHgrq8uPh2YAvX4thWY7fGy_tMrxbk,52341
|
|
140
140
|
pulumi_snowflake/warehouse.py,sha256=fK_Uac9GgZzFjZAhUyI0edu6GK0fe9wMBM8MN-HYm4Q,64373
|
|
141
141
|
pulumi_snowflake/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
|
142
|
-
pulumi_snowflake/config/__init__.pyi,sha256=
|
|
142
|
+
pulumi_snowflake/config/__init__.pyi,sha256=S2PoZ7cnkgtWZiLfUcthoP2abSLIhYUEi19nqwtSe2Q,9615
|
|
143
143
|
pulumi_snowflake/config/outputs.py,sha256=7jKpqZonjKN6VGHNoHB3iZ9xLIOaViwUF2YiesjyTAo,4192
|
|
144
|
-
pulumi_snowflake/config/vars.py,sha256=
|
|
145
|
-
pulumi_snowflake-
|
|
146
|
-
pulumi_snowflake-
|
|
147
|
-
pulumi_snowflake-
|
|
148
|
-
pulumi_snowflake-
|
|
144
|
+
pulumi_snowflake/config/vars.py,sha256=pAyw2wfZ4n_n3UMV8yEFxritRMmeezKnvyc03aLVvT8,14776
|
|
145
|
+
pulumi_snowflake-2.0.0.dist-info/METADATA,sha256=BCKdwPs9x6THwFvrUjH4e0d7yom1tv8LMfrDZbPyTwY,5035
|
|
146
|
+
pulumi_snowflake-2.0.0.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
147
|
+
pulumi_snowflake-2.0.0.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
148
|
+
pulumi_snowflake-2.0.0.dist-info/RECORD,,
|
{pulumi_snowflake-1.4.0a1747377918.dist-info → pulumi_snowflake-2.0.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|