pulumi-snowflake 0.63.0a1734439451__py3-none-any.whl → 1.0.0a1734440141__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 (127) hide show
  1. pulumi_snowflake/__init__.py +82 -74
  2. pulumi_snowflake/_inputs.py +12705 -4876
  3. pulumi_snowflake/account.py +156 -163
  4. pulumi_snowflake/account_parameter.py +16 -16
  5. pulumi_snowflake/account_role.py +9 -9
  6. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +9 -22
  7. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +9 -22
  8. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +9 -22
  9. pulumi_snowflake/authentication_policy.py +21 -21
  10. pulumi_snowflake/config/__init__.pyi +8 -86
  11. pulumi_snowflake/config/vars.py +10 -110
  12. pulumi_snowflake/database.py +9 -9
  13. pulumi_snowflake/database_role.py +14 -14
  14. pulumi_snowflake/{unsafe_execute.py → execute.py} +35 -25
  15. pulumi_snowflake/external_oauth_integration.py +27 -27
  16. pulumi_snowflake/external_volume.py +11 -7
  17. pulumi_snowflake/function_java.py +1211 -0
  18. pulumi_snowflake/function_javascript.py +882 -0
  19. pulumi_snowflake/function_python.py +1212 -0
  20. pulumi_snowflake/function_scala.py +1212 -0
  21. pulumi_snowflake/function_sql.py +835 -0
  22. pulumi_snowflake/get_account_roles.py +129 -0
  23. pulumi_snowflake/get_accounts.py +41 -19
  24. pulumi_snowflake/get_alerts.py +4 -0
  25. pulumi_snowflake/get_connections.py +2 -40
  26. pulumi_snowflake/get_cortex_search_services.py +4 -0
  27. pulumi_snowflake/get_current_account.py +4 -0
  28. pulumi_snowflake/get_current_role.py +2 -2
  29. pulumi_snowflake/get_database.py +4 -0
  30. pulumi_snowflake/get_database_role.py +4 -0
  31. pulumi_snowflake/get_database_roles.py +2 -6
  32. pulumi_snowflake/get_databases.py +2 -6
  33. pulumi_snowflake/get_dynamic_tables.py +4 -2
  34. pulumi_snowflake/get_external_functions.py +4 -0
  35. pulumi_snowflake/get_external_tables.py +4 -0
  36. pulumi_snowflake/get_failover_groups.py +4 -2
  37. pulumi_snowflake/get_file_formats.py +4 -0
  38. pulumi_snowflake/get_functions.py +4 -0
  39. pulumi_snowflake/get_grants.py +0 -4
  40. pulumi_snowflake/get_masking_policies.py +2 -6
  41. pulumi_snowflake/get_materialized_views.py +4 -0
  42. pulumi_snowflake/get_network_policies.py +2 -6
  43. pulumi_snowflake/get_parameters.py +4 -0
  44. pulumi_snowflake/get_pipes.py +4 -0
  45. pulumi_snowflake/get_procedures.py +4 -0
  46. pulumi_snowflake/get_resource_monitors.py +2 -6
  47. pulumi_snowflake/get_row_access_policies.py +2 -6
  48. pulumi_snowflake/get_schemas.py +6 -4
  49. pulumi_snowflake/get_secrets.py +2 -6
  50. pulumi_snowflake/get_security_integrations.py +2 -6
  51. pulumi_snowflake/get_sequences.py +4 -0
  52. pulumi_snowflake/get_shares.py +4 -0
  53. pulumi_snowflake/get_stages.py +4 -0
  54. pulumi_snowflake/get_storage_integrations.py +4 -0
  55. pulumi_snowflake/get_streamlits.py +2 -6
  56. pulumi_snowflake/get_streams.py +2 -6
  57. pulumi_snowflake/get_system_generate_scim_access_token.py +4 -0
  58. pulumi_snowflake/get_system_get_private_link_config.py +4 -0
  59. pulumi_snowflake/get_system_get_snowflake_platform_info.py +2 -2
  60. pulumi_snowflake/get_tables.py +4 -0
  61. pulumi_snowflake/get_tags.py +2 -6
  62. pulumi_snowflake/get_tasks.py +0 -4
  63. pulumi_snowflake/get_users.py +2 -6
  64. pulumi_snowflake/get_views.py +2 -6
  65. pulumi_snowflake/get_warehouses.py +2 -6
  66. pulumi_snowflake/grant_account_role.py +21 -21
  67. pulumi_snowflake/grant_application_role.py +7 -7
  68. pulumi_snowflake/grant_database_role.py +28 -28
  69. pulumi_snowflake/grant_ownership.py +14 -14
  70. pulumi_snowflake/grant_privileges_to_account_role.py +14 -14
  71. pulumi_snowflake/grant_privileges_to_database_role.py +14 -14
  72. pulumi_snowflake/grant_privileges_to_share.py +42 -42
  73. pulumi_snowflake/legacy_service_user.py +21 -21
  74. pulumi_snowflake/masking_policy.py +21 -21
  75. pulumi_snowflake/network_policy.py +23 -23
  76. pulumi_snowflake/oauth_integration_for_custom_clients.py +73 -46
  77. pulumi_snowflake/oauth_integration_for_partner_applications.py +57 -30
  78. pulumi_snowflake/outputs.py +10029 -4056
  79. pulumi_snowflake/password_policy.py +12 -2
  80. pulumi_snowflake/primary_connection.py +16 -16
  81. pulumi_snowflake/procedure_java.py +1273 -0
  82. pulumi_snowflake/procedure_javascript.py +895 -0
  83. pulumi_snowflake/procedure_python.py +1226 -0
  84. pulumi_snowflake/procedure_scala.py +1273 -0
  85. pulumi_snowflake/procedure_sql.py +895 -0
  86. pulumi_snowflake/provider.py +40 -527
  87. pulumi_snowflake/pulumi-plugin.json +1 -1
  88. pulumi_snowflake/resource_monitor.py +16 -20
  89. pulumi_snowflake/row_access_policy.py +21 -21
  90. pulumi_snowflake/saml2_integration.py +9 -9
  91. pulumi_snowflake/schema.py +14 -18
  92. pulumi_snowflake/scim_integration.py +16 -16
  93. pulumi_snowflake/secondary_connection.py +16 -16
  94. pulumi_snowflake/secondary_database.py +16 -16
  95. pulumi_snowflake/secret_with_authorization_code_grant.py +28 -28
  96. pulumi_snowflake/secret_with_basic_authentication.py +21 -21
  97. pulumi_snowflake/secret_with_client_credentials.py +28 -28
  98. pulumi_snowflake/secret_with_generic_string.py +21 -21
  99. pulumi_snowflake/service_user.py +21 -21
  100. pulumi_snowflake/shared_database.py +16 -16
  101. pulumi_snowflake/stream_on_directory_table.py +28 -41
  102. pulumi_snowflake/stream_on_external_table.py +28 -41
  103. pulumi_snowflake/stream_on_table.py +28 -41
  104. pulumi_snowflake/stream_on_view.py +28 -41
  105. pulumi_snowflake/streamlit.py +42 -46
  106. pulumi_snowflake/tag.py +28 -28
  107. pulumi_snowflake/tag_association.py +28 -86
  108. pulumi_snowflake/task.py +58 -62
  109. pulumi_snowflake/user.py +21 -21
  110. pulumi_snowflake/view.py +28 -41
  111. pulumi_snowflake/warehouse.py +16 -16
  112. {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0a1734440141.dist-info}/METADATA +1 -1
  113. pulumi_snowflake-1.0.0a1734440141.dist-info/RECORD +148 -0
  114. pulumi_snowflake/database_old.py +0 -489
  115. pulumi_snowflake/function.py +0 -901
  116. pulumi_snowflake/get_role.py +0 -126
  117. pulumi_snowflake/get_roles.py +0 -133
  118. pulumi_snowflake/oauth_integration.py +0 -610
  119. pulumi_snowflake/procedure.py +0 -910
  120. pulumi_snowflake/role.py +0 -250
  121. pulumi_snowflake/saml_integration.py +0 -916
  122. pulumi_snowflake/session_parameter.py +0 -301
  123. pulumi_snowflake/stream.py +0 -643
  124. pulumi_snowflake/tag_masking_policy_association.py +0 -211
  125. pulumi_snowflake-0.63.0a1734439451.dist-info/RECORD +0 -148
  126. {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0a1734440141.dist-info}/WHEEL +0 -0
  127. {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0a1734440141.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,148 @@
1
+ pulumi_snowflake/__init__.py,sha256=CLT38stahhh1qTT1V5DgZ0F0XgJXmZeWEm5QHXdHGI4,22189
2
+ pulumi_snowflake/_inputs.py,sha256=uaf2KwuSmTyYC9WWpvYPMdffak6iP-wm4jYwayyDp70,2132729
3
+ pulumi_snowflake/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
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=M_mfnwEzEai4N7zmhZKlvUL83ThoD3qhjvN-ozp15Yg,28902
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=a_vd4m-gwKoJI6As6az_wlAYdBCJro_EmP_MdZ-3eSs,41563
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=ueHukrWJjyKmace5klJenJXXlh1DQ1eFXebrCkwijJs,10713
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=71WkO_Zx4ZKouKMwAl8MKZZPQ2PqFQ8iE4SLfteKcOg,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=lGn_Xt9sbNIZW2XqFlcIcZYkBSpAmY6vjyp-rMqAMOs,40523
94
+ pulumi_snowflake/object_parameter.py,sha256=KiQuEvG6NrH-NFmAg_FnmmX5ZBBD6lVB7v6sCJUrXiA,18715
95
+ pulumi_snowflake/outputs.py,sha256=hgXtWCagTek_8aOdyAry3-wj02sjHtDLJGFYKE8mGcg,1787507
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=6pnpFT4sQ26Db_0Mh3VqSGwkxesfzBL1Mke6m7ccZ64,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=qqgTM1zNLyhoBc_JdDGg1qffddW34n9f64MyNlFn6Qs,71470
105
+ pulumi_snowflake/pulumi-plugin.json,sha256=l7jSBK-VDoPrQfotbHVDZtDHane2UKGXWM2mt-dLQb4,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=2g2c7lKe1W7c1qnY1I-SACBAfaozuXQ0wWoOMj1du14,93794
111
+ pulumi_snowflake/scim_integration.py,sha256=q5FUFzge8QGAaSIZmpMzkWBRXHEX4tLtgHnusznvDHo,29067
112
+ pulumi_snowflake/secondary_connection.py,sha256=gKx_DfGyOL2G_24EpIYL-7Yxi8Bb0de8xWZqT4nyr3U,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=vbGPND3vgFK81mOs_C894EmzrPbDj_CtX7w02bpPan4,38015
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=ibY3y40v7ull-M-ZyXVweWvUD3Z3eIIe4OAIQ4eEMTE,8866
143
+ pulumi_snowflake/config/outputs.py,sha256=iAJ-lzy_gkkdNr_znbdiKbAphOhXY3G9NGJHcHMk8rU,4041
144
+ pulumi_snowflake/config/vars.py,sha256=1TjUPEz7l6fO8VhrFCAH0COPRg3ewZrpJALgLBryrRM,13742
145
+ pulumi_snowflake-1.0.0a1734440141.dist-info/METADATA,sha256=aj4yY2B7dwp9iq1EcxQfZrBoqFRFMhgj3Vt5Nd9Rsb4,5043
146
+ pulumi_snowflake-1.0.0a1734440141.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
147
+ pulumi_snowflake-1.0.0a1734440141.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
148
+ pulumi_snowflake-1.0.0a1734440141.dist-info/RECORD,,
@@ -1,489 +0,0 @@
1
- # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
- # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
-
5
- import copy
6
- import warnings
7
- import sys
8
- import pulumi
9
- import pulumi.runtime
10
- from typing import Any, Mapping, Optional, Sequence, Union, overload
11
- if sys.version_info >= (3, 11):
12
- from typing import NotRequired, TypedDict, TypeAlias
13
- else:
14
- from typing_extensions import NotRequired, TypedDict, TypeAlias
15
- from . import _utilities
16
- from . import outputs
17
- from ._inputs import *
18
-
19
- __all__ = ['DatabaseOldArgs', 'DatabaseOld']
20
-
21
- @pulumi.input_type
22
- class DatabaseOldArgs:
23
- def __init__(__self__, *,
24
- comment: Optional[pulumi.Input[str]] = None,
25
- data_retention_time_in_days: Optional[pulumi.Input[int]] = None,
26
- from_database: Optional[pulumi.Input[str]] = None,
27
- from_replica: Optional[pulumi.Input[str]] = None,
28
- from_share: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
29
- is_transient: Optional[pulumi.Input[bool]] = None,
30
- name: Optional[pulumi.Input[str]] = None,
31
- replication_configuration: Optional[pulumi.Input['DatabaseOldReplicationConfigurationArgs']] = None):
32
- """
33
- The set of arguments for constructing a DatabaseOld resource.
34
- :param pulumi.Input[str] comment: Specifies a comment for the database.
35
- :param pulumi.Input[int] data_retention_time_in_days: Number of days for which Snowflake retains historical data for performing Time Travel actions (SELECT, CLONE, UNDROP) on the object. A value of 0 effectively disables Time Travel for the specified database. Default value for this field is set to -1, which is a fallback to use Snowflake default. For more information, see [Understanding & Using Time Travel](https://docs.snowflake.com/en/user-guide/data-time-travel).
36
- :param pulumi.Input[str] from_database: Specify a database to create a clone from.
37
- :param pulumi.Input[str] from_replica: Specify a fully-qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<db_name>"`. An example would be: `"myorg1"."account1"."db1"`
38
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] from_share: Specify a provider and a share in this map to create a database from a share. As of version 0.87.0, the provider field is the account locator.
39
- :param pulumi.Input[bool] is_transient: Specifies a database as transient. Transient databases do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss.
40
- :param pulumi.Input[str] name: Specifies the identifier for the database; must be unique for your account.
41
- :param pulumi.Input['DatabaseOldReplicationConfigurationArgs'] replication_configuration: When set, specifies the configurations for database replication.
42
- """
43
- if comment is not None:
44
- pulumi.set(__self__, "comment", comment)
45
- if data_retention_time_in_days is not None:
46
- pulumi.set(__self__, "data_retention_time_in_days", data_retention_time_in_days)
47
- if from_database is not None:
48
- pulumi.set(__self__, "from_database", from_database)
49
- if from_replica is not None:
50
- pulumi.set(__self__, "from_replica", from_replica)
51
- if from_share is not None:
52
- pulumi.set(__self__, "from_share", from_share)
53
- if is_transient is not None:
54
- pulumi.set(__self__, "is_transient", is_transient)
55
- if name is not None:
56
- pulumi.set(__self__, "name", name)
57
- if replication_configuration is not None:
58
- pulumi.set(__self__, "replication_configuration", replication_configuration)
59
-
60
- @property
61
- @pulumi.getter
62
- def comment(self) -> Optional[pulumi.Input[str]]:
63
- """
64
- Specifies a comment for the database.
65
- """
66
- return pulumi.get(self, "comment")
67
-
68
- @comment.setter
69
- def comment(self, value: Optional[pulumi.Input[str]]):
70
- pulumi.set(self, "comment", value)
71
-
72
- @property
73
- @pulumi.getter(name="dataRetentionTimeInDays")
74
- def data_retention_time_in_days(self) -> Optional[pulumi.Input[int]]:
75
- """
76
- Number of days for which Snowflake retains historical data for performing Time Travel actions (SELECT, CLONE, UNDROP) on the object. A value of 0 effectively disables Time Travel for the specified database. Default value for this field is set to -1, which is a fallback to use Snowflake default. For more information, see [Understanding & Using Time Travel](https://docs.snowflake.com/en/user-guide/data-time-travel).
77
- """
78
- return pulumi.get(self, "data_retention_time_in_days")
79
-
80
- @data_retention_time_in_days.setter
81
- def data_retention_time_in_days(self, value: Optional[pulumi.Input[int]]):
82
- pulumi.set(self, "data_retention_time_in_days", value)
83
-
84
- @property
85
- @pulumi.getter(name="fromDatabase")
86
- def from_database(self) -> Optional[pulumi.Input[str]]:
87
- """
88
- Specify a database to create a clone from.
89
- """
90
- return pulumi.get(self, "from_database")
91
-
92
- @from_database.setter
93
- def from_database(self, value: Optional[pulumi.Input[str]]):
94
- pulumi.set(self, "from_database", value)
95
-
96
- @property
97
- @pulumi.getter(name="fromReplica")
98
- def from_replica(self) -> Optional[pulumi.Input[str]]:
99
- """
100
- Specify a fully-qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<db_name>"`. An example would be: `"myorg1"."account1"."db1"`
101
- """
102
- return pulumi.get(self, "from_replica")
103
-
104
- @from_replica.setter
105
- def from_replica(self, value: Optional[pulumi.Input[str]]):
106
- pulumi.set(self, "from_replica", value)
107
-
108
- @property
109
- @pulumi.getter(name="fromShare")
110
- def from_share(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
111
- """
112
- Specify a provider and a share in this map to create a database from a share. As of version 0.87.0, the provider field is the account locator.
113
- """
114
- return pulumi.get(self, "from_share")
115
-
116
- @from_share.setter
117
- def from_share(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
118
- pulumi.set(self, "from_share", value)
119
-
120
- @property
121
- @pulumi.getter(name="isTransient")
122
- def is_transient(self) -> Optional[pulumi.Input[bool]]:
123
- """
124
- Specifies a database as transient. Transient databases do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss.
125
- """
126
- return pulumi.get(self, "is_transient")
127
-
128
- @is_transient.setter
129
- def is_transient(self, value: Optional[pulumi.Input[bool]]):
130
- pulumi.set(self, "is_transient", value)
131
-
132
- @property
133
- @pulumi.getter
134
- def name(self) -> Optional[pulumi.Input[str]]:
135
- """
136
- Specifies the identifier for the database; must be unique for your account.
137
- """
138
- return pulumi.get(self, "name")
139
-
140
- @name.setter
141
- def name(self, value: Optional[pulumi.Input[str]]):
142
- pulumi.set(self, "name", value)
143
-
144
- @property
145
- @pulumi.getter(name="replicationConfiguration")
146
- def replication_configuration(self) -> Optional[pulumi.Input['DatabaseOldReplicationConfigurationArgs']]:
147
- """
148
- When set, specifies the configurations for database replication.
149
- """
150
- return pulumi.get(self, "replication_configuration")
151
-
152
- @replication_configuration.setter
153
- def replication_configuration(self, value: Optional[pulumi.Input['DatabaseOldReplicationConfigurationArgs']]):
154
- pulumi.set(self, "replication_configuration", value)
155
-
156
-
157
- @pulumi.input_type
158
- class _DatabaseOldState:
159
- def __init__(__self__, *,
160
- comment: Optional[pulumi.Input[str]] = None,
161
- data_retention_time_in_days: Optional[pulumi.Input[int]] = None,
162
- from_database: Optional[pulumi.Input[str]] = None,
163
- from_replica: Optional[pulumi.Input[str]] = None,
164
- from_share: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
165
- is_transient: Optional[pulumi.Input[bool]] = None,
166
- name: Optional[pulumi.Input[str]] = None,
167
- replication_configuration: Optional[pulumi.Input['DatabaseOldReplicationConfigurationArgs']] = None):
168
- """
169
- Input properties used for looking up and filtering DatabaseOld resources.
170
- :param pulumi.Input[str] comment: Specifies a comment for the database.
171
- :param pulumi.Input[int] data_retention_time_in_days: Number of days for which Snowflake retains historical data for performing Time Travel actions (SELECT, CLONE, UNDROP) on the object. A value of 0 effectively disables Time Travel for the specified database. Default value for this field is set to -1, which is a fallback to use Snowflake default. For more information, see [Understanding & Using Time Travel](https://docs.snowflake.com/en/user-guide/data-time-travel).
172
- :param pulumi.Input[str] from_database: Specify a database to create a clone from.
173
- :param pulumi.Input[str] from_replica: Specify a fully-qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<db_name>"`. An example would be: `"myorg1"."account1"."db1"`
174
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] from_share: Specify a provider and a share in this map to create a database from a share. As of version 0.87.0, the provider field is the account locator.
175
- :param pulumi.Input[bool] is_transient: Specifies a database as transient. Transient databases do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss.
176
- :param pulumi.Input[str] name: Specifies the identifier for the database; must be unique for your account.
177
- :param pulumi.Input['DatabaseOldReplicationConfigurationArgs'] replication_configuration: When set, specifies the configurations for database replication.
178
- """
179
- if comment is not None:
180
- pulumi.set(__self__, "comment", comment)
181
- if data_retention_time_in_days is not None:
182
- pulumi.set(__self__, "data_retention_time_in_days", data_retention_time_in_days)
183
- if from_database is not None:
184
- pulumi.set(__self__, "from_database", from_database)
185
- if from_replica is not None:
186
- pulumi.set(__self__, "from_replica", from_replica)
187
- if from_share is not None:
188
- pulumi.set(__self__, "from_share", from_share)
189
- if is_transient is not None:
190
- pulumi.set(__self__, "is_transient", is_transient)
191
- if name is not None:
192
- pulumi.set(__self__, "name", name)
193
- if replication_configuration is not None:
194
- pulumi.set(__self__, "replication_configuration", replication_configuration)
195
-
196
- @property
197
- @pulumi.getter
198
- def comment(self) -> Optional[pulumi.Input[str]]:
199
- """
200
- Specifies a comment for the database.
201
- """
202
- return pulumi.get(self, "comment")
203
-
204
- @comment.setter
205
- def comment(self, value: Optional[pulumi.Input[str]]):
206
- pulumi.set(self, "comment", value)
207
-
208
- @property
209
- @pulumi.getter(name="dataRetentionTimeInDays")
210
- def data_retention_time_in_days(self) -> Optional[pulumi.Input[int]]:
211
- """
212
- Number of days for which Snowflake retains historical data for performing Time Travel actions (SELECT, CLONE, UNDROP) on the object. A value of 0 effectively disables Time Travel for the specified database. Default value for this field is set to -1, which is a fallback to use Snowflake default. For more information, see [Understanding & Using Time Travel](https://docs.snowflake.com/en/user-guide/data-time-travel).
213
- """
214
- return pulumi.get(self, "data_retention_time_in_days")
215
-
216
- @data_retention_time_in_days.setter
217
- def data_retention_time_in_days(self, value: Optional[pulumi.Input[int]]):
218
- pulumi.set(self, "data_retention_time_in_days", value)
219
-
220
- @property
221
- @pulumi.getter(name="fromDatabase")
222
- def from_database(self) -> Optional[pulumi.Input[str]]:
223
- """
224
- Specify a database to create a clone from.
225
- """
226
- return pulumi.get(self, "from_database")
227
-
228
- @from_database.setter
229
- def from_database(self, value: Optional[pulumi.Input[str]]):
230
- pulumi.set(self, "from_database", value)
231
-
232
- @property
233
- @pulumi.getter(name="fromReplica")
234
- def from_replica(self) -> Optional[pulumi.Input[str]]:
235
- """
236
- Specify a fully-qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<db_name>"`. An example would be: `"myorg1"."account1"."db1"`
237
- """
238
- return pulumi.get(self, "from_replica")
239
-
240
- @from_replica.setter
241
- def from_replica(self, value: Optional[pulumi.Input[str]]):
242
- pulumi.set(self, "from_replica", value)
243
-
244
- @property
245
- @pulumi.getter(name="fromShare")
246
- def from_share(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
247
- """
248
- Specify a provider and a share in this map to create a database from a share. As of version 0.87.0, the provider field is the account locator.
249
- """
250
- return pulumi.get(self, "from_share")
251
-
252
- @from_share.setter
253
- def from_share(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
254
- pulumi.set(self, "from_share", value)
255
-
256
- @property
257
- @pulumi.getter(name="isTransient")
258
- def is_transient(self) -> Optional[pulumi.Input[bool]]:
259
- """
260
- Specifies a database as transient. Transient databases do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss.
261
- """
262
- return pulumi.get(self, "is_transient")
263
-
264
- @is_transient.setter
265
- def is_transient(self, value: Optional[pulumi.Input[bool]]):
266
- pulumi.set(self, "is_transient", value)
267
-
268
- @property
269
- @pulumi.getter
270
- def name(self) -> Optional[pulumi.Input[str]]:
271
- """
272
- Specifies the identifier for the database; must be unique for your account.
273
- """
274
- return pulumi.get(self, "name")
275
-
276
- @name.setter
277
- def name(self, value: Optional[pulumi.Input[str]]):
278
- pulumi.set(self, "name", value)
279
-
280
- @property
281
- @pulumi.getter(name="replicationConfiguration")
282
- def replication_configuration(self) -> Optional[pulumi.Input['DatabaseOldReplicationConfigurationArgs']]:
283
- """
284
- When set, specifies the configurations for database replication.
285
- """
286
- return pulumi.get(self, "replication_configuration")
287
-
288
- @replication_configuration.setter
289
- def replication_configuration(self, value: Optional[pulumi.Input['DatabaseOldReplicationConfigurationArgs']]):
290
- pulumi.set(self, "replication_configuration", value)
291
-
292
-
293
- class DatabaseOld(pulumi.CustomResource):
294
- @overload
295
- def __init__(__self__,
296
- resource_name: str,
297
- opts: Optional[pulumi.ResourceOptions] = None,
298
- comment: Optional[pulumi.Input[str]] = None,
299
- data_retention_time_in_days: Optional[pulumi.Input[int]] = None,
300
- from_database: Optional[pulumi.Input[str]] = None,
301
- from_replica: Optional[pulumi.Input[str]] = None,
302
- from_share: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
303
- is_transient: Optional[pulumi.Input[bool]] = None,
304
- name: Optional[pulumi.Input[str]] = None,
305
- replication_configuration: Optional[pulumi.Input[Union['DatabaseOldReplicationConfigurationArgs', 'DatabaseOldReplicationConfigurationArgsDict']]] = None,
306
- __props__=None):
307
- """
308
- ## Import
309
-
310
- ```sh
311
- $ pulumi import snowflake:index/databaseOld:DatabaseOld example 'database_name'
312
- ```
313
-
314
- :param str resource_name: The name of the resource.
315
- :param pulumi.ResourceOptions opts: Options for the resource.
316
- :param pulumi.Input[str] comment: Specifies a comment for the database.
317
- :param pulumi.Input[int] data_retention_time_in_days: Number of days for which Snowflake retains historical data for performing Time Travel actions (SELECT, CLONE, UNDROP) on the object. A value of 0 effectively disables Time Travel for the specified database. Default value for this field is set to -1, which is a fallback to use Snowflake default. For more information, see [Understanding & Using Time Travel](https://docs.snowflake.com/en/user-guide/data-time-travel).
318
- :param pulumi.Input[str] from_database: Specify a database to create a clone from.
319
- :param pulumi.Input[str] from_replica: Specify a fully-qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<db_name>"`. An example would be: `"myorg1"."account1"."db1"`
320
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] from_share: Specify a provider and a share in this map to create a database from a share. As of version 0.87.0, the provider field is the account locator.
321
- :param pulumi.Input[bool] is_transient: Specifies a database as transient. Transient databases do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss.
322
- :param pulumi.Input[str] name: Specifies the identifier for the database; must be unique for your account.
323
- :param pulumi.Input[Union['DatabaseOldReplicationConfigurationArgs', 'DatabaseOldReplicationConfigurationArgsDict']] replication_configuration: When set, specifies the configurations for database replication.
324
- """
325
- ...
326
- @overload
327
- def __init__(__self__,
328
- resource_name: str,
329
- args: Optional[DatabaseOldArgs] = None,
330
- opts: Optional[pulumi.ResourceOptions] = None):
331
- """
332
- ## Import
333
-
334
- ```sh
335
- $ pulumi import snowflake:index/databaseOld:DatabaseOld example 'database_name'
336
- ```
337
-
338
- :param str resource_name: The name of the resource.
339
- :param DatabaseOldArgs args: The arguments to use to populate this resource's properties.
340
- :param pulumi.ResourceOptions opts: Options for the resource.
341
- """
342
- ...
343
- def __init__(__self__, resource_name: str, *args, **kwargs):
344
- resource_args, opts = _utilities.get_resource_args_opts(DatabaseOldArgs, pulumi.ResourceOptions, *args, **kwargs)
345
- if resource_args is not None:
346
- __self__._internal_init(resource_name, opts, **resource_args.__dict__)
347
- else:
348
- __self__._internal_init(resource_name, *args, **kwargs)
349
-
350
- def _internal_init(__self__,
351
- resource_name: str,
352
- opts: Optional[pulumi.ResourceOptions] = None,
353
- comment: Optional[pulumi.Input[str]] = None,
354
- data_retention_time_in_days: Optional[pulumi.Input[int]] = None,
355
- from_database: Optional[pulumi.Input[str]] = None,
356
- from_replica: Optional[pulumi.Input[str]] = None,
357
- from_share: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
358
- is_transient: Optional[pulumi.Input[bool]] = None,
359
- name: Optional[pulumi.Input[str]] = None,
360
- replication_configuration: Optional[pulumi.Input[Union['DatabaseOldReplicationConfigurationArgs', 'DatabaseOldReplicationConfigurationArgsDict']]] = None,
361
- __props__=None):
362
- opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
363
- if not isinstance(opts, pulumi.ResourceOptions):
364
- raise TypeError('Expected resource options to be a ResourceOptions instance')
365
- if opts.id is None:
366
- if __props__ is not None:
367
- raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
368
- __props__ = DatabaseOldArgs.__new__(DatabaseOldArgs)
369
-
370
- __props__.__dict__["comment"] = comment
371
- __props__.__dict__["data_retention_time_in_days"] = data_retention_time_in_days
372
- __props__.__dict__["from_database"] = from_database
373
- __props__.__dict__["from_replica"] = from_replica
374
- __props__.__dict__["from_share"] = from_share
375
- __props__.__dict__["is_transient"] = is_transient
376
- __props__.__dict__["name"] = name
377
- __props__.__dict__["replication_configuration"] = replication_configuration
378
- super(DatabaseOld, __self__).__init__(
379
- 'snowflake:index/databaseOld:DatabaseOld',
380
- resource_name,
381
- __props__,
382
- opts)
383
-
384
- @staticmethod
385
- def get(resource_name: str,
386
- id: pulumi.Input[str],
387
- opts: Optional[pulumi.ResourceOptions] = None,
388
- comment: Optional[pulumi.Input[str]] = None,
389
- data_retention_time_in_days: Optional[pulumi.Input[int]] = None,
390
- from_database: Optional[pulumi.Input[str]] = None,
391
- from_replica: Optional[pulumi.Input[str]] = None,
392
- from_share: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
393
- is_transient: Optional[pulumi.Input[bool]] = None,
394
- name: Optional[pulumi.Input[str]] = None,
395
- replication_configuration: Optional[pulumi.Input[Union['DatabaseOldReplicationConfigurationArgs', 'DatabaseOldReplicationConfigurationArgsDict']]] = None) -> 'DatabaseOld':
396
- """
397
- Get an existing DatabaseOld resource's state with the given name, id, and optional extra
398
- properties used to qualify the lookup.
399
-
400
- :param str resource_name: The unique name of the resulting resource.
401
- :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
402
- :param pulumi.ResourceOptions opts: Options for the resource.
403
- :param pulumi.Input[str] comment: Specifies a comment for the database.
404
- :param pulumi.Input[int] data_retention_time_in_days: Number of days for which Snowflake retains historical data for performing Time Travel actions (SELECT, CLONE, UNDROP) on the object. A value of 0 effectively disables Time Travel for the specified database. Default value for this field is set to -1, which is a fallback to use Snowflake default. For more information, see [Understanding & Using Time Travel](https://docs.snowflake.com/en/user-guide/data-time-travel).
405
- :param pulumi.Input[str] from_database: Specify a database to create a clone from.
406
- :param pulumi.Input[str] from_replica: Specify a fully-qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<db_name>"`. An example would be: `"myorg1"."account1"."db1"`
407
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] from_share: Specify a provider and a share in this map to create a database from a share. As of version 0.87.0, the provider field is the account locator.
408
- :param pulumi.Input[bool] is_transient: Specifies a database as transient. Transient databases do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss.
409
- :param pulumi.Input[str] name: Specifies the identifier for the database; must be unique for your account.
410
- :param pulumi.Input[Union['DatabaseOldReplicationConfigurationArgs', 'DatabaseOldReplicationConfigurationArgsDict']] replication_configuration: When set, specifies the configurations for database replication.
411
- """
412
- opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
413
-
414
- __props__ = _DatabaseOldState.__new__(_DatabaseOldState)
415
-
416
- __props__.__dict__["comment"] = comment
417
- __props__.__dict__["data_retention_time_in_days"] = data_retention_time_in_days
418
- __props__.__dict__["from_database"] = from_database
419
- __props__.__dict__["from_replica"] = from_replica
420
- __props__.__dict__["from_share"] = from_share
421
- __props__.__dict__["is_transient"] = is_transient
422
- __props__.__dict__["name"] = name
423
- __props__.__dict__["replication_configuration"] = replication_configuration
424
- return DatabaseOld(resource_name, opts=opts, __props__=__props__)
425
-
426
- @property
427
- @pulumi.getter
428
- def comment(self) -> pulumi.Output[Optional[str]]:
429
- """
430
- Specifies a comment for the database.
431
- """
432
- return pulumi.get(self, "comment")
433
-
434
- @property
435
- @pulumi.getter(name="dataRetentionTimeInDays")
436
- def data_retention_time_in_days(self) -> pulumi.Output[Optional[int]]:
437
- """
438
- Number of days for which Snowflake retains historical data for performing Time Travel actions (SELECT, CLONE, UNDROP) on the object. A value of 0 effectively disables Time Travel for the specified database. Default value for this field is set to -1, which is a fallback to use Snowflake default. For more information, see [Understanding & Using Time Travel](https://docs.snowflake.com/en/user-guide/data-time-travel).
439
- """
440
- return pulumi.get(self, "data_retention_time_in_days")
441
-
442
- @property
443
- @pulumi.getter(name="fromDatabase")
444
- def from_database(self) -> pulumi.Output[Optional[str]]:
445
- """
446
- Specify a database to create a clone from.
447
- """
448
- return pulumi.get(self, "from_database")
449
-
450
- @property
451
- @pulumi.getter(name="fromReplica")
452
- def from_replica(self) -> pulumi.Output[Optional[str]]:
453
- """
454
- Specify a fully-qualified path to a database to create a replica from. A fully qualified path follows the format of `"<organization_name>"."<account_name>"."<db_name>"`. An example would be: `"myorg1"."account1"."db1"`
455
- """
456
- return pulumi.get(self, "from_replica")
457
-
458
- @property
459
- @pulumi.getter(name="fromShare")
460
- def from_share(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
461
- """
462
- Specify a provider and a share in this map to create a database from a share. As of version 0.87.0, the provider field is the account locator.
463
- """
464
- return pulumi.get(self, "from_share")
465
-
466
- @property
467
- @pulumi.getter(name="isTransient")
468
- def is_transient(self) -> pulumi.Output[Optional[bool]]:
469
- """
470
- Specifies a database as transient. Transient databases do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss.
471
- """
472
- return pulumi.get(self, "is_transient")
473
-
474
- @property
475
- @pulumi.getter
476
- def name(self) -> pulumi.Output[str]:
477
- """
478
- Specifies the identifier for the database; must be unique for your account.
479
- """
480
- return pulumi.get(self, "name")
481
-
482
- @property
483
- @pulumi.getter(name="replicationConfiguration")
484
- def replication_configuration(self) -> pulumi.Output[Optional['outputs.DatabaseOldReplicationConfiguration']]:
485
- """
486
- When set, specifies the configurations for database replication.
487
- """
488
- return pulumi.get(self, "replication_configuration")
489
-