pulumi-snowflake 1.1.4a1742960027__py3-none-any.whl → 1.2.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.

Files changed (147) hide show
  1. pulumi_snowflake/__init__.py +1 -0
  2. pulumi_snowflake/_inputs.py +12306 -12305
  3. pulumi_snowflake/account.py +189 -188
  4. pulumi_snowflake/account_authentication_policy_attachment.py +15 -14
  5. pulumi_snowflake/account_parameter.py +29 -28
  6. pulumi_snowflake/account_password_policy_attachment.py +15 -14
  7. pulumi_snowflake/account_role.py +32 -31
  8. pulumi_snowflake/alert.py +123 -122
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +161 -160
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +147 -146
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +157 -156
  12. pulumi_snowflake/api_integration.py +218 -217
  13. pulumi_snowflake/authentication_policy.py +137 -136
  14. pulumi_snowflake/config/__init__.py +1 -0
  15. pulumi_snowflake/config/__init__.pyi +1 -0
  16. pulumi_snowflake/config/outputs.py +16 -15
  17. pulumi_snowflake/config/vars.py +1 -0
  18. pulumi_snowflake/cortex_search_service.py +141 -140
  19. pulumi_snowflake/database.py +288 -287
  20. pulumi_snowflake/database_role.py +50 -49
  21. pulumi_snowflake/dynamic_table.py +227 -226
  22. pulumi_snowflake/email_notification_integration.py +56 -55
  23. pulumi_snowflake/execute.py +50 -49
  24. pulumi_snowflake/external_function.py +237 -236
  25. pulumi_snowflake/external_oauth_integration.py +232 -231
  26. pulumi_snowflake/external_table.py +206 -205
  27. pulumi_snowflake/external_volume.py +59 -54
  28. pulumi_snowflake/failover_group.py +109 -108
  29. pulumi_snowflake/file_format.py +512 -511
  30. pulumi_snowflake/function_java.py +255 -254
  31. pulumi_snowflake/function_javascript.py +199 -198
  32. pulumi_snowflake/function_python.py +272 -271
  33. pulumi_snowflake/function_scala.py +255 -254
  34. pulumi_snowflake/function_sql.py +185 -184
  35. pulumi_snowflake/get_account_roles.py +12 -11
  36. pulumi_snowflake/get_accounts.py +12 -11
  37. pulumi_snowflake/get_alerts.py +23 -18
  38. pulumi_snowflake/get_connections.py +7 -6
  39. pulumi_snowflake/get_cortex_search_services.py +18 -13
  40. pulumi_snowflake/get_current_account.py +11 -6
  41. pulumi_snowflake/get_current_role.py +9 -4
  42. pulumi_snowflake/get_database.py +21 -16
  43. pulumi_snowflake/get_database_role.py +20 -15
  44. pulumi_snowflake/get_database_roles.py +12 -11
  45. pulumi_snowflake/get_databases.py +24 -23
  46. pulumi_snowflake/get_dynamic_tables.py +13 -8
  47. pulumi_snowflake/get_external_functions.py +18 -13
  48. pulumi_snowflake/get_external_tables.py +18 -13
  49. pulumi_snowflake/get_failover_groups.py +13 -8
  50. pulumi_snowflake/get_file_formats.py +18 -13
  51. pulumi_snowflake/get_functions.py +18 -13
  52. pulumi_snowflake/get_grants.py +6 -1
  53. pulumi_snowflake/get_masking_policies.py +13 -12
  54. pulumi_snowflake/get_materialized_views.py +18 -13
  55. pulumi_snowflake/get_network_policies.py +13 -12
  56. pulumi_snowflake/get_parameters.py +34 -29
  57. pulumi_snowflake/get_pipes.py +18 -13
  58. pulumi_snowflake/get_procedures.py +18 -13
  59. pulumi_snowflake/get_resource_monitors.py +7 -6
  60. pulumi_snowflake/get_row_access_policies.py +13 -12
  61. pulumi_snowflake/get_schemas.py +24 -23
  62. pulumi_snowflake/get_secrets.py +17 -12
  63. pulumi_snowflake/get_security_integrations.py +13 -12
  64. pulumi_snowflake/get_sequences.py +18 -13
  65. pulumi_snowflake/get_shares.py +13 -8
  66. pulumi_snowflake/get_stages.py +18 -13
  67. pulumi_snowflake/get_storage_integrations.py +8 -3
  68. pulumi_snowflake/get_streamlits.py +13 -12
  69. pulumi_snowflake/get_streams.py +18 -17
  70. pulumi_snowflake/get_system_generate_scim_access_token.py +14 -9
  71. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +12 -7
  72. pulumi_snowflake/get_system_get_private_link_config.py +17 -12
  73. pulumi_snowflake/get_system_get_snowflake_platform_info.py +10 -5
  74. pulumi_snowflake/get_tables.py +18 -13
  75. pulumi_snowflake/get_tags.py +7 -6
  76. pulumi_snowflake/get_tasks.py +23 -22
  77. pulumi_snowflake/get_users.py +24 -23
  78. pulumi_snowflake/get_views.py +18 -17
  79. pulumi_snowflake/get_warehouses.py +19 -18
  80. pulumi_snowflake/grant_account_role.py +43 -42
  81. pulumi_snowflake/grant_application_role.py +43 -42
  82. pulumi_snowflake/grant_database_role.py +57 -56
  83. pulumi_snowflake/grant_ownership.py +43 -42
  84. pulumi_snowflake/grant_privileges_to_account_role.py +107 -106
  85. pulumi_snowflake/grant_privileges_to_database_role.py +104 -103
  86. pulumi_snowflake/grant_privileges_to_share.py +127 -126
  87. pulumi_snowflake/legacy_service_user.py +1048 -1047
  88. pulumi_snowflake/managed_account.py +116 -115
  89. pulumi_snowflake/masking_policy.py +109 -108
  90. pulumi_snowflake/materialized_view.py +126 -125
  91. pulumi_snowflake/network_policy.py +92 -91
  92. pulumi_snowflake/network_policy_attachment.py +46 -45
  93. pulumi_snowflake/network_rule.py +106 -105
  94. pulumi_snowflake/notification_integration.py +254 -240
  95. pulumi_snowflake/oauth_integration_for_custom_clients.py +225 -224
  96. pulumi_snowflake/oauth_integration_for_partner_applications.py +143 -142
  97. pulumi_snowflake/object_parameter.py +60 -59
  98. pulumi_snowflake/outputs.py +9282 -9281
  99. pulumi_snowflake/password_policy.py +291 -286
  100. pulumi_snowflake/pipe.py +151 -150
  101. pulumi_snowflake/primary_connection.py +55 -54
  102. pulumi_snowflake/procedure_java.py +273 -272
  103. pulumi_snowflake/procedure_javascript.py +203 -202
  104. pulumi_snowflake/procedure_python.py +273 -272
  105. pulumi_snowflake/procedure_scala.py +273 -272
  106. pulumi_snowflake/procedure_sql.py +203 -202
  107. pulumi_snowflake/provider.py +303 -302
  108. pulumi_snowflake/pulumi-plugin.json +1 -1
  109. pulumi_snowflake/resource_monitor.py +134 -133
  110. pulumi_snowflake/row_access_policy.py +78 -77
  111. pulumi_snowflake/saml2_integration.py +258 -257
  112. pulumi_snowflake/schema.py +322 -321
  113. pulumi_snowflake/scim_integration.py +109 -108
  114. pulumi_snowflake/secondary_connection.py +57 -56
  115. pulumi_snowflake/secondary_database.py +288 -287
  116. pulumi_snowflake/secret_with_authorization_code_grant.py +109 -108
  117. pulumi_snowflake/secret_with_basic_authentication.py +95 -94
  118. pulumi_snowflake/secret_with_client_credentials.py +99 -98
  119. pulumi_snowflake/secret_with_generic_string.py +81 -80
  120. pulumi_snowflake/sequence.py +108 -107
  121. pulumi_snowflake/service_user.py +1021 -1020
  122. pulumi_snowflake/share.py +50 -49
  123. pulumi_snowflake/shared_database.py +246 -245
  124. pulumi_snowflake/stage.py +190 -189
  125. pulumi_snowflake/storage_integration.py +231 -165
  126. pulumi_snowflake/stream_on_directory_table.py +100 -99
  127. pulumi_snowflake/stream_on_external_table.py +117 -116
  128. pulumi_snowflake/stream_on_table.py +127 -126
  129. pulumi_snowflake/stream_on_view.py +127 -126
  130. pulumi_snowflake/streamlit.py +148 -147
  131. pulumi_snowflake/table.py +119 -118
  132. pulumi_snowflake/table_column_masking_policy_application.py +43 -42
  133. pulumi_snowflake/table_constraint.py +173 -172
  134. pulumi_snowflake/tag.py +92 -91
  135. pulumi_snowflake/tag_association.py +74 -73
  136. pulumi_snowflake/task.py +1005 -1004
  137. pulumi_snowflake/user.py +1110 -1109
  138. pulumi_snowflake/user_authentication_policy_attachment.py +29 -28
  139. pulumi_snowflake/user_password_policy_attachment.py +29 -28
  140. pulumi_snowflake/user_public_keys.py +43 -42
  141. pulumi_snowflake/view.py +142 -141
  142. pulumi_snowflake/warehouse.py +244 -243
  143. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/METADATA +1 -1
  144. pulumi_snowflake-1.2.0.dist-info/RECORD +148 -0
  145. pulumi_snowflake-1.1.4a1742960027.dist-info/RECORD +0 -148
  146. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/WHEEL +0 -0
  147. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_snowflake
3
- Version: 1.1.4a1742960027
3
+ Version: 1.2.0
4
4
  Summary: A Pulumi package for creating and managing snowflake cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,148 @@
1
+ pulumi_snowflake/__init__.py,sha256=0Lm7YUQbSCEnRf_2N6P8-DbjVikvrc3assC-latFDUQ,22205
2
+ pulumi_snowflake/_inputs.py,sha256=oCjOr02H5AC7QKRvyPeuJZ6ZOmpvmRrSEwwx_Tet3-M,2247864
3
+ pulumi_snowflake/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
+ pulumi_snowflake/account.py,sha256=h6W3OYr0fQmRU-e85_LcAA2HMSmoDiuXb3rokgal54w,45895
5
+ pulumi_snowflake/account_authentication_policy_attachment.py,sha256=GeXBg7-ffJMRdeDVa3nOEalzgzhbKWc0p70IEw4qLUg,7470
6
+ pulumi_snowflake/account_parameter.py,sha256=yV2yAuVvPncRyQ-_vqlbUbY4lGnNQQ-AcLwSZxfkC8E,31900
7
+ pulumi_snowflake/account_password_policy_attachment.py,sha256=Xk4tO84qKWW6YrUA99HUNTDOgCOtUZBG19pwpy6KBNg,7086
8
+ pulumi_snowflake/account_role.py,sha256=AZN7aAhRw-kwZSevo6mXe-7WDUb8F0v34uyMdNDgWeE,11388
9
+ pulumi_snowflake/alert.py,sha256=RypKKmJ2l18WRrz8TVMuuNK_aG__rjNv4ZGf0-VAVd4,25417
10
+ pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=7RmeStkC86n29N55AkBMo5T1wuCMMbmfkM18bg43M0Y,43879
11
+ pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=8_qEmx51VyVbB6b88d8BTl-3THEQtjBkutAtnJZywe8,40489
12
+ pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=8cQXq37hVtXeFjovUYHaPpEZBFRnIh4rpI2Hv51OKlQ,41315
13
+ pulumi_snowflake/api_integration.py,sha256=wm2XThJIMjdxWYU-5bfTsZHwOVA2sOM2-3NOp5QASUY,42881
14
+ pulumi_snowflake/authentication_policy.py,sha256=aziBvoH53HPXgivyHMCwpHKgh-l85bBoopIeJ9RClhg,43536
15
+ pulumi_snowflake/cortex_search_service.py,sha256=z9xYwcRRdJKz9Jg5n1BE11Zk-RTQhvYYrN1pfyD5iTU,27050
16
+ pulumi_snowflake/database.py,sha256=vIyZhdI9yyvfWVPcajho3YmVG_2-bkF5eFqE5glrHDw,89478
17
+ pulumi_snowflake/database_role.py,sha256=4z_eYH69PwMGiDs5Yuaw73S__s17E1H9-gK5sTmFUNQ,15084
18
+ pulumi_snowflake/dynamic_table.py,sha256=8QLjw_FHEdoEIh3PAnAYJXn__F-VihjXtcoAEoroTuQ,43753
19
+ pulumi_snowflake/email_notification_integration.py,sha256=-ruBbjgAnHNOLL4NZr0H8iTFljqxj-uOS9q7v9ov3T4,13396
20
+ pulumi_snowflake/execute.py,sha256=8Bqig65Jgz9YQlZ4TMLO9QqTlGBPGQ84pqy8NyVvGrc,12416
21
+ pulumi_snowflake/external_function.py,sha256=6mpIeHMoOQ82niHx1NyB6cUw0DRH-mP6RGfHALdmY3U,52083
22
+ pulumi_snowflake/external_oauth_integration.py,sha256=tvZa1EUa8wawElOWu9uahrJAxy8aknRm8cxik0UhkTk,69380
23
+ pulumi_snowflake/external_table.py,sha256=DXGIjB9adKq2EwpYDqBgngHdGUXqNIjPxdQy_YKYQWo,44743
24
+ pulumi_snowflake/external_volume.py,sha256=IuZBoRlqweBF-_IuIUZlSJBTcgdGooFd7iLpaYyw1h4,26899
25
+ pulumi_snowflake/failover_group.py,sha256=i0b3x4ZACsuAI0o2f1nZggJ2xS5BqkRAh_xg4zO36xE,39576
26
+ pulumi_snowflake/file_format.py,sha256=GasToD8JdCqhC0lpOle-8HI_DiAfrBWVIbr7n5Y9TBU,97685
27
+ pulumi_snowflake/function_java.py,sha256=yCOCzI-l-4NDEvfPI3rrmlzIDoGWDaI10vLcNUQBrD8,91649
28
+ pulumi_snowflake/function_javascript.py,sha256=DY0QV3Wt24OfhbTLhiz-m85fVFV6uvL95UG9yaHK4kE,58627
29
+ pulumi_snowflake/function_python.py,sha256=-Qku5JiSWN7KZ13O6fQC7BoEHYQPysqH0m_kpRKuFg8,92305
30
+ pulumi_snowflake/function_scala.py,sha256=gJIn7bflQKwU1A87VqDqrl2ZiU4vWmSt-svVLjfpR0s,90293
31
+ pulumi_snowflake/function_sql.py,sha256=E1FnHmMoq5x4ynqI3KYpnIy8y0hGAm6cOenkkdDU8EQ,54822
32
+ pulumi_snowflake/get_account_roles.py,sha256=5hNuor3QmkFSU3UqiSahIB1BJXrDb5eBInIlpUFoZz8,5681
33
+ pulumi_snowflake/get_accounts.py,sha256=loy4fPHm8Of1UjR-rgbiTWmvmvwQfbnSWN3mP6LgbIw,5545
34
+ pulumi_snowflake/get_alerts.py,sha256=NRX-720HEJgpOk3OFPMgnJYcsWV48YTF_t-4Q6P4rS8,7242
35
+ pulumi_snowflake/get_connections.py,sha256=BkjG66sCzMTKfDYcPNsjVj8Iwu0jwXtc_CrBAjlnA0U,4619
36
+ pulumi_snowflake/get_cortex_search_services.py,sha256=WTptFEbamshQCgYyEBk_DPzfCVOhzCLKnogPbYncRsU,11705
37
+ pulumi_snowflake/get_current_account.py,sha256=6jGbfUvaGcsJ3mU55rQsUwxGkH9vbGYi4EavmMVwrbE,5894
38
+ pulumi_snowflake/get_current_role.py,sha256=CTFBreAyauywjEtkjMxV0nWnQSuqlMItpdO_yqG1z5s,4297
39
+ pulumi_snowflake/get_database.py,sha256=JLpMXDe7C4H2aY15g-ubJ6BXDc2kubBshhattMVeriU,8520
40
+ pulumi_snowflake/get_database_role.py,sha256=BdUjTv5rAfnNDJvWv8FAY3GUB-UHYZJkBLyz7AN3bWQ,6733
41
+ pulumi_snowflake/get_database_roles.py,sha256=7iHpNaLMindC0grWaLjJ_7J1OwdPB7kIpfeylXeeXAY,7796
42
+ pulumi_snowflake/get_databases.py,sha256=2Okc2oFHok2gWi9mz4w2A_lL-2VzJePXZt5rVfENyZg,10782
43
+ pulumi_snowflake/get_dynamic_tables.py,sha256=_EfHLBhKGbWYjwNDVIyRAhDf4QZ0XDLBKA0ADlBAmEc,9529
44
+ pulumi_snowflake/get_external_functions.py,sha256=fu48QbJ_QKkkwHQrMUbO3V-iNdn_7c42QDCNuXu7sk0,6868
45
+ pulumi_snowflake/get_external_tables.py,sha256=cTuEiTKgWyw-jniumzKIPewq9sknaLjfNxd9VLUiq7o,6684
46
+ pulumi_snowflake/get_failover_groups.py,sha256=eQ9wYvmJEvU8uxNiCXsdkrx_2QhMue3NXj6tv1mv8h0,5463
47
+ pulumi_snowflake/get_file_formats.py,sha256=tTweMVC5_zAU4bPFqnLN76vyW3MI-MfFErl16K3nCJ0,6540
48
+ pulumi_snowflake/get_functions.py,sha256=IzXRKEKWMNTJIMDf2pJY3OD_1gWwz7r7IQ18Ak_yTxo,6398
49
+ pulumi_snowflake/get_grants.py,sha256=hopzNyDq3aAht1u1Dqc6khflxdkslMlBRyNjREyEDyo,15295
50
+ pulumi_snowflake/get_masking_policies.py,sha256=m0cKVhgD_0_JJUj_uKqnR0tHhKspDDjaNYhSCMGQnEc,9470
51
+ pulumi_snowflake/get_materialized_views.py,sha256=X7-je_AaJkdT553Tx6eXdLHr6vcoBBZao79brhzboF4,6776
52
+ pulumi_snowflake/get_network_policies.py,sha256=hTDyahM_YHYu2teBYqQkLNKg9dEJLdsXAClSK5f2JmE,6424
53
+ pulumi_snowflake/get_parameters.py,sha256=AxNqvM8zVY7N9caE7lrtLwoZharzCGZ6wRa8UGHC1kk,12386
54
+ pulumi_snowflake/get_pipes.py,sha256=mum-FScI-uJwVsD9YwUAML50wULfHocyYlUk2rrFDTg,6210
55
+ pulumi_snowflake/get_procedures.py,sha256=-l0pajG3rW_SBNNOLCV41TQgwVvbut5natYTsT2WWKg,6445
56
+ pulumi_snowflake/get_resource_monitors.py,sha256=ilgNINdsfhd1cOvgqLW9DLx5XdaAuwn_fwRi7_8MB3E,4918
57
+ pulumi_snowflake/get_row_access_policies.py,sha256=T09zDIMbiHRLkIAS8gHEScMlBGwxZ5PG_65Yrv6BkhY,9684
58
+ pulumi_snowflake/get_schemas.py,sha256=Ans-lKweDd330yergEv7iqSEZW3Gh6XkMSVdLiVXexA,11771
59
+ pulumi_snowflake/get_secrets.py,sha256=VhD26VyNbsG0Tly-DNddWVLzlMPct7C6k-hFSZv1pak,8738
60
+ pulumi_snowflake/get_security_integrations.py,sha256=x-UTyOIVEPWDDu8P8njJRBO26q45WDDsnXkAmaOQOpo,6761
61
+ pulumi_snowflake/get_sequences.py,sha256=OWlUL07zTB-InXMcqD-8qVSDbfmP0-6Q1Lpbw9-l5wA,6398
62
+ pulumi_snowflake/get_shares.py,sha256=c6-De-vOuV-Jq9uQlt3iOL-Kwf9oTuTU9LgtMCdP1Ms,5395
63
+ pulumi_snowflake/get_stages.py,sha256=PrAip_Z3Q1YdKD-ohtQgkLX7caOCqR9pB2pAENVD9aw,6257
64
+ pulumi_snowflake/get_storage_integrations.py,sha256=njOTR2jh-k6AUpAoLEs-AvVqCvn7ttR9pTDSHpKGPvo,4967
65
+ pulumi_snowflake/get_streamlits.py,sha256=NS7dyscsgioN4MuKzUhCq5CCqNAIsEQ9EcnBr67ZH4Q,9051
66
+ pulumi_snowflake/get_streams.py,sha256=GA5LzouBhR_Fjo0GhT1hIMsPDBugnKRAlXCb4rNSBQE,9898
67
+ pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=CbeiHK6EnND2I3VnfSnkIxUE2eqNMF24e_HPOf25-ec,6137
68
+ pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=OylIIvrt2VIQTdaveekvj-DlAMQWX6mZXLRcx4XQtDA,5294
69
+ pulumi_snowflake/get_system_get_private_link_config.py,sha256=cnABOGSSUdG2_nFOV1goetczr1HRGhlCqnHig_sy1bw,13800
70
+ pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=4KROm8oqx94vtY3_qCRB2vPveLJKD58kVMB67w-z5Ss,5443
71
+ pulumi_snowflake/get_tables.py,sha256=YkzdTm5YeJP2aUiPmhDyCyFgwgUA8J0uXFnlGWuvcWc,6257
72
+ pulumi_snowflake/get_tags.py,sha256=6Mmr0ME9Gi5j_6O-SfXuAFiDSumqrm-FfeV6rKvLSRU,5239
73
+ pulumi_snowflake/get_tasks.py,sha256=DTdKh96tWq0udpYSUI0X_heC8aFHThYmNZ0nM2T6vaE,10901
74
+ pulumi_snowflake/get_users.py,sha256=bWhgzOJtDyz1XqFXofkGKdIwNI-C6XKRSkBz90a2984,11134
75
+ pulumi_snowflake/get_views.py,sha256=5C3eVTjEcFXW1LcH4mbZceDMW-fgXANb7Hh60uYWyHY,9786
76
+ pulumi_snowflake/get_warehouses.py,sha256=3sONTv26smeZ5PFKLu9fsm8ESYAxORShbwmNF9WfgHU,7717
77
+ pulumi_snowflake/grant_account_role.py,sha256=yr_hmsz2aWOKra95isIY_svDwP4XS0Ec5jY3tOL1dA8,12848
78
+ pulumi_snowflake/grant_application_role.py,sha256=d9O7RowS2bADqi-YObPsRyDWbS2OQ9__eoUxVNKh8Z8,12939
79
+ pulumi_snowflake/grant_database_role.py,sha256=N7aSB5IiigKQUF-WuArJzZXQuRSBAwMagjo6Jb7gw34,16791
80
+ pulumi_snowflake/grant_ownership.py,sha256=a69eXMlcVUgrsmTCCWSFDGZLLdablrdYzP_gwrb8F10,20200
81
+ pulumi_snowflake/grant_privileges_to_account_role.py,sha256=QWslOgf-hQO-4rw7bXz2Gw94uNpZBa_9poHb9SBDUOc,34395
82
+ pulumi_snowflake/grant_privileges_to_database_role.py,sha256=ntDymedHfRHNAC5eY7OqXTknLThxMhESFL27oQJNv40,30486
83
+ pulumi_snowflake/grant_privileges_to_share.py,sha256=_W8WW9f4BoC-IupbWGjcubl7yD7qfFfEHWqPRp7SwYE,28403
84
+ pulumi_snowflake/legacy_service_user.py,sha256=ABuh_lzElenemSygeNsGRS6vDqrumAD3YXOkNpfNXCw,339078
85
+ pulumi_snowflake/managed_account.py,sha256=PyH8vCZN4Xc3mXXgq3FddwmwTggoqlDwKPOGk60lscI,23516
86
+ pulumi_snowflake/masking_policy.py,sha256=iuHWB04DH0hF2-ngrsAiuk_U8d70t8QLDHJFqaDLmxw,37272
87
+ pulumi_snowflake/materialized_view.py,sha256=GQ61kpwar0EW1bNUUyU7SuzmEl2vtQlX7DxbPYfwCOc,25853
88
+ pulumi_snowflake/network_policy.py,sha256=5PXrsZFnB7kiV8_wphGJ9pVH03XyiOSQ530sE5K_9_E,29210
89
+ pulumi_snowflake/network_policy_attachment.py,sha256=S9Sa7ShB7UeDsWAlya6_EjR0IkadjUozRzi-JtMhs90,15891
90
+ pulumi_snowflake/network_rule.py,sha256=R4_y6EqKl_xQXT4w8NlUOiVkprdeiZjAomqrMnFPGrU,24890
91
+ pulumi_snowflake/notification_integration.py,sha256=FyRqCGfRSRj4nkadrAnkRzEzRy4NtQ5LlqfWHWLWfrI,52078
92
+ pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=q9g11bx3c6aBHMWBaEZZt_0RMEmCpS66ReIUSvlXTYY,66804
93
+ pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=HM2BONX9VzNUXrdvMUmhxrm5b9FVuvKyx-VSkCy7LwQ,46069
94
+ pulumi_snowflake/object_parameter.py,sha256=7x3qVeoKvfbKFPYA-i146QQxdoDCVDoEoXYSUOncLho,19348
95
+ pulumi_snowflake/outputs.py,sha256=e2tVxoRJnbgd9y5HWJiNA86M_ZNBbCbPvb_ULFhGrj8,1873962
96
+ pulumi_snowflake/password_policy.py,sha256=4nZorwcyf0IK83G660UsKWVBae46FiqcSZv-41d1ges,59735
97
+ pulumi_snowflake/pipe.py,sha256=BAtqS0MIykjuVBok7-tBbbHF2qn47sK_2Ft8R5iwdE4,27885
98
+ pulumi_snowflake/primary_connection.py,sha256=_z74PNvzaOkMVh5lF-TKgP99kxTa_ZdGXzJes--6s9w,19670
99
+ pulumi_snowflake/procedure_java.py,sha256=ph0p5pwLeJxFyx-qNKC5GXGQG_BI0Fr81FW8lpiIfXo,106337
100
+ pulumi_snowflake/procedure_javascript.py,sha256=zPtQdnKtFSNr7VEq-_NSEIwQk5zQAolnjjLOxo8mmII,68804
101
+ pulumi_snowflake/procedure_python.py,sha256=hZaDCGAtyqhMBzqXiFVbDyGijPYZiElfBcrXyz8n43A,102477
102
+ pulumi_snowflake/procedure_scala.py,sha256=oz5YnVm9be1WlJ6jt4qWGZ-XM_Arnr89SULO_iH1MvI,106490
103
+ pulumi_snowflake/procedure_sql.py,sha256=UWO-n7ikODC02uPu7bb154lskmAl38eskffpb359W0Y,67509
104
+ pulumi_snowflake/provider.py,sha256=Y4OUc5vMvdqnzjEe-kmFGU9YsnsteElDkYsnVMzU7TE,76732
105
+ pulumi_snowflake/pulumi-plugin.json,sha256=30QLw4olatiPkXuHb894tAxSUKdTuEshmfodRiffC5Q,68
106
+ pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ pulumi_snowflake/resource_monitor.py,sha256=gk5bXXZj6j3lE0gwxBcux5bvUz-FfiA9i-xsN_YhwQ8,43537
108
+ pulumi_snowflake/row_access_policy.py,sha256=33F5dKigwhKfW2rvEJLnePbYGGLBpxA8-SilfvP_hBE,28615
109
+ pulumi_snowflake/saml2_integration.py,sha256=KVYYDuExyklPlxWDFq05h8CuLWzAAhXjDwGa145Nw0s,82313
110
+ pulumi_snowflake/schema.py,sha256=JCHmH9OYzsJbNYndVxG4WQW76zpSoIGSg2qFfrnaJbU,98367
111
+ pulumi_snowflake/scim_integration.py,sha256=-3yikaerKtnSEKMvSgaz7nx5PWazeJh-T97370PBH0g,30889
112
+ pulumi_snowflake/secondary_connection.py,sha256=cco1nyriOkbZINyetzVTtDOdlHBy4gIu-1mW5JzNuLw,18277
113
+ pulumi_snowflake/secondary_database.py,sha256=9hOx-9XTGgfreAiQzKy8sBpMbyRQppBVbWxzNxlkzVs,85492
114
+ pulumi_snowflake/secret_with_authorization_code_grant.py,sha256=lBsShfJu7BntntK3Ifu2eFTeZ2M2Od0DoIgLLkh4fos,30545
115
+ pulumi_snowflake/secret_with_basic_authentication.py,sha256=b_toDo4guhZe1TJuJQgwKHePuh1qKrHzACxc7Pkp-PM,25173
116
+ pulumi_snowflake/secret_with_client_credentials.py,sha256=rw7i2HKEeMYHJVDke2v6qBBMQYnBUQkVR9cVkatvB2g,27927
117
+ pulumi_snowflake/secret_with_generic_string.py,sha256=V7ac4hg8ZHhQtDscEaGlhmUNoACQvOfVLJNgTzLleZU,23024
118
+ pulumi_snowflake/sequence.py,sha256=OBiC9-uW5O_UBAa1yiWtfr2S8r5MtlX3wYeUeqxHc_I,19524
119
+ pulumi_snowflake/service_user.py,sha256=S7CK-LjUpqdhCE4QdlFNpHJJh8w1Nkr97O4kJ1yboA8,332001
120
+ pulumi_snowflake/share.py,sha256=8dQMSSO0abx96bkpIzmUhM5c51EJVr8YjFqFqStIHbc,12732
121
+ pulumi_snowflake/shared_database.py,sha256=WHDM4Ax14YJ38qACIxjBjOOloUtfa2VEohKWZuipYTk,68265
122
+ pulumi_snowflake/stage.py,sha256=S2c4JdEREhNepOTPzXXsjqxA7iQeoUhXAB_W3Q1snzU,42378
123
+ pulumi_snowflake/storage_integration.py,sha256=ATnc6_flO4KM9CFT6RhasAhrNAiAFUxIhpDnxOTSwW0,37946
124
+ pulumi_snowflake/stream_on_directory_table.py,sha256=1J-dQCa0JSC7ULp7zsEfaDBLU0pAMPYKHRxl_6xLA7Q,28301
125
+ pulumi_snowflake/stream_on_external_table.py,sha256=ybCyqxfmbVl9QWZENK7v23u9yUwhqqjBHgvJHN_BIDQ,34360
126
+ pulumi_snowflake/stream_on_table.py,sha256=wsBSieIacIcHY1AAQArR53sai12L7sArdWGyT_pWRxQ,35046
127
+ pulumi_snowflake/stream_on_view.py,sha256=3Kfo4abk7Gbdu04x4IOjBXxInIzhafBfVsf17S3g4CY,34939
128
+ pulumi_snowflake/streamlit.py,sha256=PzNJNAQwFA7fHoQm_SgjkEa2gVFJNtoOxDdpGia7geQ,35720
129
+ pulumi_snowflake/table.py,sha256=D1EqvyTEj872z_9g4pLaFlTlRMTeN1CrUasT3QxEKRY,35140
130
+ pulumi_snowflake/table_column_masking_policy_application.py,sha256=yOFe9ZIM_iYe8m437zrjlkW5Q9oVvcuw5bYDgwCi_8E,11111
131
+ pulumi_snowflake/table_constraint.py,sha256=4A_l9Wa7wn7HosPA-xl67GlVzQtS0t62vyCMDf89tt0,33366
132
+ pulumi_snowflake/tag.py,sha256=wJ6WpZ3B-lomupCs4zZA6_j_gnt30gVSD4-HknEaLZE,23757
133
+ pulumi_snowflake/tag_association.py,sha256=PK9tLpnY_qDY_KVyBtKsujc5jMpA6Rh-S2vvlZR2mlY,19369
134
+ pulumi_snowflake/task.py,sha256=It2QJbfZtEiY7KUVrdQLLZvaDA4AanAhrTt87keK2iA,331131
135
+ pulumi_snowflake/user.py,sha256=3ptDrNEWV0OfQLf_A6Qn3EGyD3Ua7q4oUYxXcF18y4Y,347637
136
+ pulumi_snowflake/user_authentication_policy_attachment.py,sha256=myiNLCbaUIYqcNncLZNkKl_OoLHyEs5wwOVrXDWVtbs,9410
137
+ pulumi_snowflake/user_password_policy_attachment.py,sha256=2h7ZyQVWikU_MzBpa0wD5dl9NuunqA4vyX_q5A_Smkk,9192
138
+ pulumi_snowflake/user_public_keys.py,sha256=ZJUAXvAcHeXKKhJz2qBM0pCbILRsjPfnQkpnQGxiJzg,11846
139
+ pulumi_snowflake/view.py,sha256=eCsQGLm0fnJAAaqPX5jZXC1z0AuDiIraObo6dLE7_MQ,52293
140
+ pulumi_snowflake/warehouse.py,sha256=oK2-DFnC4tZ10i4CFNobrAPo5mHX098HicNrV4xwWKM,64315
141
+ pulumi_snowflake/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
142
+ pulumi_snowflake/config/__init__.pyi,sha256=YM5ykWbtn8K4outPvDwlB2U8-M8QUT3cWsFHFhScqno,9308
143
+ pulumi_snowflake/config/outputs.py,sha256=7jKpqZonjKN6VGHNoHB3iZ9xLIOaViwUF2YiesjyTAo,4192
144
+ pulumi_snowflake/config/vars.py,sha256=sy5eI0uBSPQaxkScue6EfnL8Ya-Ti8f-3Fsr-ZJJut8,14339
145
+ pulumi_snowflake-1.2.0.dist-info/METADATA,sha256=j5Nulkr_7mIL5NmA99jjpnVChg0VlmHR--WOs-kMqBc,5032
146
+ pulumi_snowflake-1.2.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
147
+ pulumi_snowflake-1.2.0.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
148
+ pulumi_snowflake-1.2.0.dist-info/RECORD,,
@@ -1,148 +0,0 @@
1
- pulumi_snowflake/__init__.py,sha256=CLT38stahhh1qTT1V5DgZ0F0XgJXmZeWEm5QHXdHGI4,22189
2
- pulumi_snowflake/_inputs.py,sha256=iMdlfn7zODjBYglNL7NIScrScZXjsjeiEzjDGUbTHDk,2136821
3
- pulumi_snowflake/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
- pulumi_snowflake/account.py,sha256=FqzamgXiIfgOh1ujQuefu5h8anUcfpFSt6xc2hZnRWM,43353
5
- pulumi_snowflake/account_authentication_policy_attachment.py,sha256=nz_c1DMOysRj5nW24oAXDRHL5JvEKXhfAXB8uanqr24,7328
6
- pulumi_snowflake/account_parameter.py,sha256=_j8dEqP7nXHMDWx0GKjNbisP6ZWZiU8cRz5CwUZJ8IM,31632
7
- pulumi_snowflake/account_password_policy_attachment.py,sha256=BsKxVE6d_37Gpxh_fMa6mI5TClxnMQpnfL9J4uAnozY,6944
8
- pulumi_snowflake/account_role.py,sha256=82zrfbJQ-5E1Tn50GcRq8D571Ajn-_q98E1zYkMFjJI,11093
9
- pulumi_snowflake/alert.py,sha256=dFZYIlKC1QHPwA--O80IVbFPwKXuMvq6cpbMJpO1x2o,24197
10
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=reqAfEumWhivql-TqlPhg6n25jy6LLUY-lZlRxU4n9A,41624
11
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=CE_Y1zUJ0-jd-nLM6eTF07hAeYExB_88O6TUXh0bx3A,38360
12
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=AwdULp0n0y71bcf7PT6UTA6ayNZkUmLSTZgA3KVdIOs,39096
13
- pulumi_snowflake/api_integration.py,sha256=l1PvCrilGDnnLDi78fUs3PFmkaX_3LSbhLI88oWkAFY,40529
14
- pulumi_snowflake/authentication_policy.py,sha256=tDqq8V64pXf4lt9C5D9f_gxgKk6yuQ6lo4t7N-FHY7A,42169
15
- pulumi_snowflake/cortex_search_service.py,sha256=cQ3JFgokDMlP22Pmaqmb0UZGyItjicFOHERwcae-Zx4,25774
16
- pulumi_snowflake/database.py,sha256=DVPgAKT6fy4Y0hfTWyJgsbSeOOfaPwUSVbDI1OtOifQ,86879
17
- pulumi_snowflake/database_role.py,sha256=2SnGDflb6_FzoLEYALsid-LvPH3UNbubo_oGSxYqa3Q,14627
18
- pulumi_snowflake/dynamic_table.py,sha256=_0zfkh5Qr6T42WfzsN1EO0p4HtXQ9HCvrITmgblwj8s,41364
19
- pulumi_snowflake/email_notification_integration.py,sha256=QnwfXgKmW01TYNbKayN2cvX0NfCIhittJ4YgIJ7DViM,12885
20
- pulumi_snowflake/execute.py,sha256=78A0kDGw9WDzm1Z-1OUwqXalXUGJNcxxYXhi24H_yZc,11959
21
- pulumi_snowflake/external_function.py,sha256=PLM-30_f0LtAN6BYc7KjWih0nFZtn1v-OdVD2ofon7E,49316
22
- pulumi_snowflake/external_oauth_integration.py,sha256=i_992TA8dc2yVk_HlVzmXwHeqYsUgEZ1Dneiu89MKjg,67285
23
- pulumi_snowflake/external_table.py,sha256=5PEwxrpQYkVcnhpdug3x6xrZBebpbBm60TGZDlXp9tY,42578
24
- pulumi_snowflake/external_volume.py,sha256=oOgdHJol-kFlpoFkwcJYw_m4JMoCldDNHH-QQaWSLcQ,25389
25
- pulumi_snowflake/failover_group.py,sha256=eKqBhUUIlzocvBDnfUm1KAG0zPUklmcD5Bx_-V6oou0,38482
26
- pulumi_snowflake/file_format.py,sha256=lHZNvtfWdJ4qUgqj5qSR_K-XUqueG2znQcT-NnHIYq0,93070
27
- pulumi_snowflake/function_java.py,sha256=cI0GU_mmR9ATgHaKKWqlTDyeR2Pu91ptBUHXDk5KF6A,89149
28
- pulumi_snowflake/function_javascript.py,sha256=FGUv8KL9wQyEdyTvcOVi4BtBkzbSEJ0ALuIMq0sJCLE,56631
29
- pulumi_snowflake/function_python.py,sha256=oROdsayksQXA89De9K2aCxUfHbYVZo6SlPOJN-CzdcA,88818
30
- pulumi_snowflake/function_scala.py,sha256=OM-d-Gw83cOYC_06ywwAo-EWhNShmENlyz1kcVX4W0o,87793
31
- pulumi_snowflake/function_sql.py,sha256=BvopndP-iUfdN4YH3Xocbta97OFDnqcZW11TEdGIWkc,52952
32
- pulumi_snowflake/get_account_roles.py,sha256=HGn_g-t0z25pdWZE6m6q5Rl52lCMBT98fKmwrAj9sZA,5566
33
- pulumi_snowflake/get_accounts.py,sha256=oCMscMrIr33qd3D_5OcCwP_THosK7YlLLjXckHvtl6s,5430
34
- pulumi_snowflake/get_alerts.py,sha256=IIZAtmyoJGAzFO46Uj2mPr_DxAHJolODjX2xY2DOEcE,6898
35
- pulumi_snowflake/get_connections.py,sha256=Q9CPJJK4FnpUM3Mvh4Je9zcckFvJ8dv0_5nIFkOWuNM,4549
36
- pulumi_snowflake/get_cortex_search_services.py,sha256=YYsCQzN5Ve3c3PGotDdjeuHFyYseIex1rkEzM_NZ3Zs,11406
37
- pulumi_snowflake/get_current_account.py,sha256=Q8y_n68RqsJcTxBpqBOHgLrkbiexmZORJJ4H3TM2nKw,5658
38
- pulumi_snowflake/get_current_role.py,sha256=GVVmFrMSco7EKKtSGE2bH1ANXUngyNKT_FXtw6Cw09k,4079
39
- pulumi_snowflake/get_database.py,sha256=eUFcemdmgccp2G4EO4Cy2TbI37btfyND2GAlRNZytSU,8194
40
- pulumi_snowflake/get_database_role.py,sha256=H23P8TnGAnmblWoDENcIoP08wKpvyARpq4ywUiMR-hQ,6416
41
- pulumi_snowflake/get_database_roles.py,sha256=2nBtN7YWGZ_-qUmHV7vs-n2yQAfM74WzjPllkG0aJgk,7681
42
- pulumi_snowflake/get_databases.py,sha256=22h1oAOTCZigA2lgeENlEEhqZAcZQJfzH1ING1eQe2c,10469
43
- pulumi_snowflake/get_dynamic_tables.py,sha256=Fjmpqn30fQ2u4xACds56JOs-MmlcFVIDQHi_iWZBtYs,9275
44
- pulumi_snowflake/get_external_functions.py,sha256=VDjKoGR7-tmU7daxNUzg-ZBGyjmb8Qczv704H6a8S7I,6569
45
- pulumi_snowflake/get_external_tables.py,sha256=odsVxeO4i89aqh6pak6Zw3eiF9rM_Hkx5dQ74kSVsUY,6385
46
- pulumi_snowflake/get_failover_groups.py,sha256=zbNjs3H0HjNe18HiEtjUhbBdeGFIX7kLpQoUMhcNTiE,5209
47
- pulumi_snowflake/get_file_formats.py,sha256=TnDZVImdu9J0X2vZh0X1GFKLLwmbxutB9BIuDNwp9Wk,6241
48
- pulumi_snowflake/get_functions.py,sha256=xLqHm3gZ-lIB0ii2NiwL-Vb8uSJ2AqH9Qbk71S5ezhg,6099
49
- pulumi_snowflake/get_grants.py,sha256=Rfm_Db-HVQ6o2Z3I6DcwT2DGnsNDIEmtsOlYy8BzTqI,15086
50
- pulumi_snowflake/get_masking_policies.py,sha256=GvSsac8MLzGduUgNpriHV1XMcFEmJdsHtvUZ4UMpBAs,9301
51
- pulumi_snowflake/get_materialized_views.py,sha256=v13j-sNOVJOvyu9nMXLttS7wCaXiKD97pbZ99GTHCiY,6477
52
- pulumi_snowflake/get_network_policies.py,sha256=pPHQyZ7n4VsNJADJreZ3OWoxZ1E8v4nvOL0HjUBaW-0,6255
53
- pulumi_snowflake/get_parameters.py,sha256=9qDDbxrpZ2TNyv7OYhCPp0Vpmc81AVNEdvRXSbBA1ig,11889
54
- pulumi_snowflake/get_pipes.py,sha256=EKThFIi2Dsd2Sax6or_Vixz87yTrP0a102CN-Su7Zac,5911
55
- pulumi_snowflake/get_procedures.py,sha256=IgtHTAx-6qUK2QnXDY9d-5qcdDWAGPVU_PZ-jQBlBho,6146
56
- pulumi_snowflake/get_resource_monitors.py,sha256=jnhiJi5FenOuP6KSntfTESYVy97qheb1hgKCeZAJKWc,4848
57
- pulumi_snowflake/get_row_access_policies.py,sha256=rmdEZcrFrtovproKZfijydQQqXU9O1LsHH_Bwfu0HzE,9515
58
- pulumi_snowflake/get_schemas.py,sha256=iYCFHdfgSU-MoDjMhpxWBajKq5GGRqWxnLzxt9lDheY,11458
59
- pulumi_snowflake/get_secrets.py,sha256=_v4M_ho-RCNUHoPl9OtuAweALiUIuRvKS44bqSCuGk0,8385
60
- pulumi_snowflake/get_security_integrations.py,sha256=J2_SH21gQaoyhppDXYYezz5Pt9wz2cUvU6Z9I9X3Ixg,6592
61
- pulumi_snowflake/get_sequences.py,sha256=finndpPuq3U4krJ1qVXdbsxI9PiZCmHGL0tY9Hcn1PM,6099
62
- pulumi_snowflake/get_shares.py,sha256=ELDwykn5xGHsIoCOSnyUXMBq0f1jw_2r5y5ra5kMqNo,5141
63
- pulumi_snowflake/get_stages.py,sha256=wlTV5WdQLeI6-D1fpl60_kMahBoDtAL3ImFPRjmZnLE,5958
64
- pulumi_snowflake/get_storage_integrations.py,sha256=m7j6O4D-tYYgwnbcfrvkGzpA76izy8CNxZfSBt9n9Xs,4758
65
- pulumi_snowflake/get_streamlits.py,sha256=FX3dMBBciNZ-gz573gz4dIQhZY2iUHzFV3cflV55s00,8882
66
- pulumi_snowflake/get_streams.py,sha256=hourviY2yqu4ndS4NjgBhDNoilF_DMK5FSQPNqW_ivE,9684
67
- pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=v2RzzZHvkjHSnBOrUdcK3nTGIsKrQCVle71LeRhf3xE,5874
68
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=AVY3srUbhXY81xlSrriOCAK4bPFv8Q63VpqBcJ_NMT0,5031
69
- pulumi_snowflake/get_system_get_private_link_config.py,sha256=j-7-R_W4Er-SFDgIhFkqb5zwAawLDTU4Rf_e54nBy28,13510
70
- pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=fiPHCJrC_KH67_LuofsYKBnw9N7-XnoYWLn3-o3R8x4,5216
71
- pulumi_snowflake/get_tables.py,sha256=xUlPlMQKhFMF7PHDWcf1GP9anakktIMaQt1gT8Yy-uw,5958
72
- pulumi_snowflake/get_tags.py,sha256=uZZlMMF8n2YsUsZMIVNqmfvOpPeVf3D-55G4CSZS474,5169
73
- pulumi_snowflake/get_tasks.py,sha256=4PT7JEWBlLcBmbmK6YCFeDifILlN_3DLso0KmXMZndw,10642
74
- pulumi_snowflake/get_users.py,sha256=mgkxinJRuiY5tTJzM87hffinMnhYGh_KamuCDENw5J0,10821
75
- pulumi_snowflake/get_views.py,sha256=X6o3swmn-fTqbu3iBok6_DdvKlrzHdMwAkfjgzdKK3I,9572
76
- pulumi_snowflake/get_warehouses.py,sha256=h6PlO3jSKsxFncG6q_AlUH7iK6QigNajteJI_GKZeXU,7449
77
- pulumi_snowflake/grant_account_role.py,sha256=yFDdClOq_OUjyVVpHBG2fRCn05KpjwUm0yJ55BraFf4,12454
78
- pulumi_snowflake/grant_application_role.py,sha256=mUXF_cilQfe3_UbJxfdK8Ox_oGvniRaDfFxEE2nOp2g,12545
79
- pulumi_snowflake/grant_database_role.py,sha256=FProINGTeUpdXo0y6B69OxVUXp_Pr4rXUDPUM6PUQ98,16271
80
- pulumi_snowflake/grant_ownership.py,sha256=btRHNyAgDE-ArKJZ8HXE1itWjBRbETI3qt350pT4Bog,19806
81
- pulumi_snowflake/grant_privileges_to_account_role.py,sha256=6sDRlL8zBkx0VsuiX6j2vE0MZz5tcf_w5KigL3y9GBg,32217
82
- pulumi_snowflake/grant_privileges_to_database_role.py,sha256=uApEQrIoS7DDvUWdX0nrvXZoad8-NhGOSxy1Q6v7ywk,29260
83
- pulumi_snowflake/grant_privileges_to_share.py,sha256=tBpOWq90WXtdBqKSVsE5EPHokEtkfKyfYEqGkjKN2cE,27253
84
- pulumi_snowflake/legacy_service_user.py,sha256=9qdyLmy_bJEiFCbDbqWuVHpTwdXbhPa7vcrtW-dB0sQ,327851
85
- pulumi_snowflake/managed_account.py,sha256=kIqqXm5nYCw-AgaXM1jhEL4wUQVfadzYoc4m3VaEPb4,22352
86
- pulumi_snowflake/masking_policy.py,sha256=v5-c3F79EjRftcYXTboKLQKJnGy18CIpHHzo0Yp5PuU,35450
87
- pulumi_snowflake/materialized_view.py,sha256=y1TFBXlXVVMBeSIcgileuptX3oX9VgS-hfkCCellnPE,24500
88
- pulumi_snowflake/network_policy.py,sha256=tp2bp1qOVgeRdp9u-C8shRyO13e33S7Ht5OuRkvz7mI,28375
89
- pulumi_snowflake/network_policy_attachment.py,sha256=4JQY3WsgKwIC_9k9izZX60In-dniPmu0P6N7WAe2fbg,15364
90
- pulumi_snowflake/network_rule.py,sha256=bvyfGis-UjvH2oMMP-96k_ABWTU9Jd7AB_Mm81nPN-A,23929
91
- pulumi_snowflake/notification_integration.py,sha256=onf6ayHu0Ns6Ibmlr7BoQ__2Clc-EMnSIAXokecVgbs,49366
92
- pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=PfcfyEQ3a14XogTHLZQnrJPjI2Vx1PnFoPc9xztOQqE,60637
93
- pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=QABxjd0Q_Ph1y_GhNcKFoXw-xdAsqOoEFsRmMTNsnhw,42308
94
- pulumi_snowflake/object_parameter.py,sha256=7KvwoqZ8ArzRYwqhPH-YPOew_rcmVZy_mLETXRtKwAw,18695
95
- pulumi_snowflake/outputs.py,sha256=EIhp93Kce9dE6v97lwE8G0KWKlKI6QVSbh8TmBaKTlU,1790235
96
- pulumi_snowflake/password_policy.py,sha256=by7_qGV04LBJ1bGs2D2MQMXwtjYSZ67T-LGBVgulAL8,55873
97
- pulumi_snowflake/pipe.py,sha256=TUydVIVUwkIuDeCxpwVziLj5nOCsqcIejZ-JybN94qg,26413
98
- pulumi_snowflake/primary_connection.py,sha256=hMOITczd5LybKBi8f_ez3vhx_ZglHBOsiP3wi4bNTvk,19168
99
- pulumi_snowflake/procedure_java.py,sha256=pnoif2RueFFhdx76ZrNTyU2DdFtuo4sQDOSIOMMYnfQ,102814
100
- pulumi_snowflake/procedure_javascript.py,sha256=_J-0ynmgH1kU3IwSiBl3_9l_pm5TThmlFkA3CCe_4C4,65911
101
- pulumi_snowflake/procedure_python.py,sha256=YRLEHDcXBuLQAIwk8PqX_Aobl_vBKqqe2xyTO-Myq4w,98954
102
- pulumi_snowflake/procedure_scala.py,sha256=0e8meEAnjrG3fqIBbINAYz6ikeHpOSplFdZDLPlVAY4,102967
103
- pulumi_snowflake/procedure_sql.py,sha256=bwwBZYcQaWertwaGim0HXP1Ijyz-iNPP0GAe2_FRmQ8,64616
104
- pulumi_snowflake/provider.py,sha256=vTWpqLgrnV7wwMEKbnURqzpf4guQLFQxvkii9JGhIPo,73998
105
- pulumi_snowflake/pulumi-plugin.json,sha256=zn-vBOxcZpEFG7NT_tv7qY4XjKX6OB9A1NtxSEC821A,85
106
- pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
- pulumi_snowflake/resource_monitor.py,sha256=WOENtMQ4hC9sy8GVvPVNOkW0DBLwkHKdo8QqqV7K_30,42324
108
- pulumi_snowflake/row_access_policy.py,sha256=Zn6f9xH9Z6peuvNcYfuJgDVL_kbqqPJYWF9Sxk9WAEc,27906
109
- pulumi_snowflake/saml2_integration.py,sha256=6Q0-U8NY2rSWRgW4h05Cy0fs2VY7ocGU6AT23e0-95Q,76648
110
- pulumi_snowflake/schema.py,sha256=6HjNGky_jkUTLSc9N6gQf4HuBIagWpeHoaiJdBw7dlE,93794
111
- pulumi_snowflake/scim_integration.py,sha256=q5FUFzge8QGAaSIZmpMzkWBRXHEX4tLtgHnusznvDHo,29067
112
- pulumi_snowflake/secondary_connection.py,sha256=xXdm9AU8ru3DbftdwyELWpbgYbHCAgd3qstq4n5_-OQ,17757
113
- pulumi_snowflake/secondary_database.py,sha256=9pDTKsNmP1wllsiHwVH0pr5UqvcZB5aT5tZZ_tDmtOA,82893
114
- pulumi_snowflake/secret_with_authorization_code_grant.py,sha256=Qvfh1qPksrYXGBHGZjidD3v8uiHw4AVdvR2aFzEiF9Y,29557
115
- pulumi_snowflake/secret_with_basic_authentication.py,sha256=TcUyDadGZ_bxpdPvoWTNOKTIuvjKQX6EGfgR9Ba50nA,24311
116
- pulumi_snowflake/secret_with_client_credentials.py,sha256=GGo8ga84mBtoh8el_b9YU-NK8cfUgIM-eWqHwHDPe9c,27029
117
- pulumi_snowflake/secret_with_generic_string.py,sha256=0rpnfOHJS7QJ-WDty_mOOHrdUMZoYzODMeRkhECD6Wg,22288
118
- pulumi_snowflake/sequence.py,sha256=3uch8fN22pyburdAvyvHjktLgiVoFqqw0pXX1sD4q1Q,18290
119
- pulumi_snowflake/service_user.py,sha256=eb2Ug4FVLVk4ajtE3fuTCmWzJ8wgsMRLmtxhEvZOwvM,321851
120
- pulumi_snowflake/share.py,sha256=PmUfEZZuLv_Ls6o8cH3qwA7TkJXYYmsEggqgF22VLGM,12275
121
- pulumi_snowflake/shared_database.py,sha256=NF6CEg3cZBl9-LiNchlpRtzAKXSgi8KCbJLYAAfES6E,66044
122
- pulumi_snowflake/stage.py,sha256=aAvipfbmlj-l-lCfMERynuwbMvhTNy4YPM0J9q1hkpI,40661
123
- pulumi_snowflake/storage_integration.py,sha256=RxVJndz3CQPmS6d8ozo-_CIlrY2J5Y-tpObd8xIWDtg,34253
124
- pulumi_snowflake/stream_on_directory_table.py,sha256=IVawVvW1Rnu0kVBs6rmS4lfC3-plML5YAfQlUApfQr8,27394
125
- pulumi_snowflake/stream_on_external_table.py,sha256=e8MBJ99Bp0qnlhRHso2FKhioZstoRh1qHZijDdxHhHU,32466
126
- pulumi_snowflake/stream_on_table.py,sha256=Lyk0nV8lNKIGVwEys9yHH3e4b_bAPGFK5Rw3sRTkj9s,33062
127
- pulumi_snowflake/stream_on_view.py,sha256=fnkkSYwCdUGxraNd2TkZvzVZ7PecfMt1CWW2e45V5po,32955
128
- pulumi_snowflake/streamlit.py,sha256=TLsgblPUfTrwShJc1j8t54J9AloeTxIcLg0uM9ihGwo,34381
129
- pulumi_snowflake/table.py,sha256=ytScReoDsOfI3X2JR1rm2FtLPxnGDAzqj-T9EHAzxsc,33157
130
- pulumi_snowflake/table_column_masking_policy_application.py,sha256=He2six0YqZ5AHAb3lnHIpDNn3QhdNIPPzl82tK29Dhk,10717
131
- pulumi_snowflake/table_constraint.py,sha256=clloXd2bSwHxVuSRj3DPl44Yj3B5qaMYV5JcYEuG7H4,31166
132
- pulumi_snowflake/tag.py,sha256=duQWeKdPYMq5SfYyrtgrgJJ2DpS65tKtwpK-oqvLfRc,22922
133
- pulumi_snowflake/tag_association.py,sha256=a-XAUH6l7FzQOcxewBM3Yg3-X5Ecqs9-tiKnoY2SU6Y,18597
134
- pulumi_snowflake/task.py,sha256=zYmNlLyNA1KN0MFWEI4notYfcDyjRsARfWr1JAmCzJs,321245
135
- pulumi_snowflake/user.py,sha256=cFURUIptGYP7zkwTvHdNLE4Kj-oOBwFpquDAwROjT_k,335852
136
- pulumi_snowflake/user_authentication_policy_attachment.py,sha256=oZ-xdgGbkChufZp1OsGfp4tEDN3OWIRezUG-xzjhDQ0,9142
137
- pulumi_snowflake/user_password_policy_attachment.py,sha256=FwvBU8U-_KdpgbplKi3Q3s_Pulh1paOfOvqUvyhB5oQ,8924
138
- pulumi_snowflake/user_public_keys.py,sha256=hsyt78EP4kHs5SK7rLCPsWIHXI64N0D-KUdGUnO_sxY,11452
139
- pulumi_snowflake/view.py,sha256=OeqQggZ7hdCzewSJ5XIKhKrAF4bhTKEN1yzKOSR4dM8,49340
140
- pulumi_snowflake/warehouse.py,sha256=nmfQ7k51Y9bWYczoyXMFw0zjk_5l0TvpwEQLLuoxjv0,58846
141
- pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
142
- pulumi_snowflake/config/__init__.pyi,sha256=FXnUYs84wNBLYoDC8bEy6Y8JFI9vaNouLQhD81wPys0,9292
143
- pulumi_snowflake/config/outputs.py,sha256=iAJ-lzy_gkkdNr_znbdiKbAphOhXY3G9NGJHcHMk8rU,4041
144
- pulumi_snowflake/config/vars.py,sha256=3eCGt5OM-EyiW_OUirKhnKNsqyxPoaVJbX-iOd2vGt0,14323
145
- pulumi_snowflake-1.1.4a1742960027.dist-info/METADATA,sha256=YRBgqHlOi7TMddN4et01l3hSoq0oEXW97jYCqQezoPI,5043
146
- pulumi_snowflake-1.1.4a1742960027.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
147
- pulumi_snowflake-1.1.4a1742960027.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
148
- pulumi_snowflake-1.1.4a1742960027.dist-info/RECORD,,