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
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import sys
6
7
  from .vars import _ExportableConfig
7
8
 
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -21,17 +22,17 @@ __all__ = [
21
22
  @pulumi.output_type
22
23
  class TokenAccessor(dict):
23
24
  def __init__(__self__, *,
24
- client_id: str,
25
- client_secret: str,
26
- redirect_uri: str,
27
- refresh_token: str,
28
- token_endpoint: str):
25
+ client_id: builtins.str,
26
+ client_secret: builtins.str,
27
+ redirect_uri: builtins.str,
28
+ refresh_token: builtins.str,
29
+ token_endpoint: builtins.str):
29
30
  """
30
- :param str client_id: The client ID for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_CLIENT_ID` environment variable.
31
- :param str client_secret: The client secret for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_CLIENT_SECRET` environment variable.
32
- :param str redirect_uri: The redirect URI for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_REDIRECT_URI` environment variable.
33
- :param str refresh_token: The refresh token for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_REFRESH_TOKEN` environment variable.
34
- :param str token_endpoint: The token endpoint for the OAuth provider e.g. https://{yourDomain}/oauth/token when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_TOKEN_ENDPOINT` environment variable.
31
+ :param builtins.str client_id: The client ID for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_CLIENT_ID` environment variable.
32
+ :param builtins.str client_secret: The client secret for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_CLIENT_SECRET` environment variable.
33
+ :param builtins.str redirect_uri: The redirect URI for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_REDIRECT_URI` environment variable.
34
+ :param builtins.str refresh_token: The refresh token for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_REFRESH_TOKEN` environment variable.
35
+ :param builtins.str token_endpoint: The token endpoint for the OAuth provider e.g. https://{yourDomain}/oauth/token when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_TOKEN_ENDPOINT` environment variable.
35
36
  """
36
37
  pulumi.set(__self__, "client_id", client_id)
37
38
  pulumi.set(__self__, "client_secret", client_secret)
@@ -41,7 +42,7 @@ class TokenAccessor(dict):
41
42
 
42
43
  @property
43
44
  @pulumi.getter(name="clientId")
44
- def client_id(self) -> str:
45
+ def client_id(self) -> builtins.str:
45
46
  """
46
47
  The client ID for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_CLIENT_ID` environment variable.
47
48
  """
@@ -49,7 +50,7 @@ class TokenAccessor(dict):
49
50
 
50
51
  @property
51
52
  @pulumi.getter(name="clientSecret")
52
- def client_secret(self) -> str:
53
+ def client_secret(self) -> builtins.str:
53
54
  """
54
55
  The client secret for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_CLIENT_SECRET` environment variable.
55
56
  """
@@ -57,7 +58,7 @@ class TokenAccessor(dict):
57
58
 
58
59
  @property
59
60
  @pulumi.getter(name="redirectUri")
60
- def redirect_uri(self) -> str:
61
+ def redirect_uri(self) -> builtins.str:
61
62
  """
62
63
  The redirect URI for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_REDIRECT_URI` environment variable.
63
64
  """
@@ -65,7 +66,7 @@ class TokenAccessor(dict):
65
66
 
66
67
  @property
67
68
  @pulumi.getter(name="refreshToken")
68
- def refresh_token(self) -> str:
69
+ def refresh_token(self) -> builtins.str:
69
70
  """
70
71
  The refresh token for the OAuth provider when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_REFRESH_TOKEN` environment variable.
71
72
  """
@@ -73,7 +74,7 @@ class TokenAccessor(dict):
73
74
 
74
75
  @property
75
76
  @pulumi.getter(name="tokenEndpoint")
76
- def token_endpoint(self) -> str:
77
+ def token_endpoint(self) -> builtins.str:
77
78
  """
78
79
  The token endpoint for the OAuth provider e.g. https://{yourDomain}/oauth/token when using a refresh token to renew access token. Can also be sourced from the `SNOWFLAKE_TOKEN_ACCESSOR_TOKEN_ENDPOINT` environment variable.
79
80
  """
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys