pulumi-snowflake 0.50.2a1709892015__py3-none-any.whl → 1.2.0a1736835738__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 (182) hide show
  1. pulumi_snowflake/__init__.py +224 -172
  2. pulumi_snowflake/_inputs.py +52854 -1662
  3. pulumi_snowflake/_utilities.py +41 -5
  4. pulumi_snowflake/account.py +188 -214
  5. pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
  6. pulumi_snowflake/account_parameter.py +21 -44
  7. pulumi_snowflake/account_password_policy_attachment.py +7 -28
  8. pulumi_snowflake/account_role.py +250 -0
  9. pulumi_snowflake/alert.py +38 -43
  10. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +704 -0
  11. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +657 -0
  12. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +692 -0
  13. pulumi_snowflake/api_integration.py +35 -50
  14. pulumi_snowflake/authentication_policy.py +622 -0
  15. pulumi_snowflake/config/__init__.pyi +76 -99
  16. pulumi_snowflake/config/outputs.py +5 -0
  17. pulumi_snowflake/config/vars.py +93 -124
  18. pulumi_snowflake/cortex_search_service.py +596 -0
  19. pulumi_snowflake/database.py +819 -209
  20. pulumi_snowflake/database_role.py +81 -40
  21. pulumi_snowflake/dynamic_table.py +44 -47
  22. pulumi_snowflake/email_notification_integration.py +35 -26
  23. pulumi_snowflake/{unsafe_execute.py → execute.py} +36 -139
  24. pulumi_snowflake/external_function.py +54 -71
  25. pulumi_snowflake/external_oauth_integration.py +593 -538
  26. pulumi_snowflake/external_table.py +67 -86
  27. pulumi_snowflake/external_volume.py +382 -0
  28. pulumi_snowflake/failover_group.py +59 -96
  29. pulumi_snowflake/file_format.py +33 -24
  30. pulumi_snowflake/function_java.py +1211 -0
  31. pulumi_snowflake/function_javascript.py +882 -0
  32. pulumi_snowflake/function_python.py +1212 -0
  33. pulumi_snowflake/function_scala.py +1212 -0
  34. pulumi_snowflake/function_sql.py +835 -0
  35. pulumi_snowflake/get_account_roles.py +129 -0
  36. pulumi_snowflake/get_accounts.py +53 -22
  37. pulumi_snowflake/get_alerts.py +22 -5
  38. pulumi_snowflake/get_connections.py +109 -0
  39. pulumi_snowflake/get_cortex_search_services.py +216 -0
  40. pulumi_snowflake/get_current_account.py +24 -9
  41. pulumi_snowflake/get_current_role.py +14 -7
  42. pulumi_snowflake/get_database.py +25 -5
  43. pulumi_snowflake/get_database_role.py +162 -0
  44. pulumi_snowflake/get_database_roles.py +79 -43
  45. pulumi_snowflake/get_databases.py +91 -69
  46. pulumi_snowflake/get_dynamic_tables.py +36 -19
  47. pulumi_snowflake/get_external_functions.py +28 -5
  48. pulumi_snowflake/get_external_tables.py +28 -5
  49. pulumi_snowflake/get_failover_groups.py +18 -7
  50. pulumi_snowflake/get_file_formats.py +28 -5
  51. pulumi_snowflake/get_functions.py +28 -5
  52. pulumi_snowflake/get_grants.py +207 -80
  53. pulumi_snowflake/get_masking_policies.py +91 -47
  54. pulumi_snowflake/get_materialized_views.py +28 -5
  55. pulumi_snowflake/get_network_policies.py +129 -0
  56. pulumi_snowflake/get_parameters.py +38 -11
  57. pulumi_snowflake/get_pipes.py +28 -5
  58. pulumi_snowflake/get_procedures.py +28 -5
  59. pulumi_snowflake/get_resource_monitors.py +37 -20
  60. pulumi_snowflake/get_row_access_policies.py +91 -47
  61. pulumi_snowflake/get_schemas.py +145 -37
  62. pulumi_snowflake/get_secrets.py +200 -0
  63. pulumi_snowflake/get_security_integrations.py +129 -0
  64. pulumi_snowflake/get_sequences.py +28 -5
  65. pulumi_snowflake/get_shares.py +18 -5
  66. pulumi_snowflake/get_stages.py +28 -5
  67. pulumi_snowflake/get_storage_integrations.py +16 -5
  68. pulumi_snowflake/get_streamlits.py +170 -0
  69. pulumi_snowflake/get_streams.py +114 -50
  70. pulumi_snowflake/get_system_generate_scim_access_token.py +18 -5
  71. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +32 -7
  72. pulumi_snowflake/get_system_get_private_link_config.py +121 -6
  73. pulumi_snowflake/get_system_get_snowflake_platform_info.py +15 -7
  74. pulumi_snowflake/get_tables.py +28 -5
  75. pulumi_snowflake/get_tags.py +130 -0
  76. pulumi_snowflake/get_tasks.py +134 -50
  77. pulumi_snowflake/get_users.py +116 -40
  78. pulumi_snowflake/get_views.py +114 -50
  79. pulumi_snowflake/get_warehouses.py +79 -22
  80. pulumi_snowflake/grant_account_role.py +28 -61
  81. pulumi_snowflake/grant_application_role.py +257 -0
  82. pulumi_snowflake/grant_database_role.py +35 -108
  83. pulumi_snowflake/grant_ownership.py +382 -0
  84. pulumi_snowflake/grant_privileges_to_account_role.py +42 -78
  85. pulumi_snowflake/grant_privileges_to_database_role.py +37 -223
  86. pulumi_snowflake/grant_privileges_to_share.py +96 -44
  87. pulumi_snowflake/legacy_service_user.py +3670 -0
  88. pulumi_snowflake/managed_account.py +42 -9
  89. pulumi_snowflake/masking_policy.py +213 -306
  90. pulumi_snowflake/materialized_view.py +62 -67
  91. pulumi_snowflake/network_policy.py +217 -57
  92. pulumi_snowflake/network_policy_attachment.py +7 -32
  93. pulumi_snowflake/network_rule.py +473 -0
  94. pulumi_snowflake/notification_integration.py +51 -82
  95. pulumi_snowflake/oauth_integration_for_custom_clients.py +906 -0
  96. pulumi_snowflake/{oauth_integration.py → oauth_integration_for_partner_applications.py} +191 -188
  97. pulumi_snowflake/object_parameter.py +12 -99
  98. pulumi_snowflake/outputs.py +49200 -2928
  99. pulumi_snowflake/password_policy.py +41 -28
  100. pulumi_snowflake/pipe.py +33 -0
  101. pulumi_snowflake/primary_connection.py +330 -0
  102. pulumi_snowflake/procedure_java.py +1273 -0
  103. pulumi_snowflake/procedure_javascript.py +895 -0
  104. pulumi_snowflake/procedure_python.py +1226 -0
  105. pulumi_snowflake/procedure_scala.py +1273 -0
  106. pulumi_snowflake/procedure_sql.py +895 -0
  107. pulumi_snowflake/provider.py +378 -613
  108. pulumi_snowflake/pulumi-plugin.json +2 -1
  109. pulumi_snowflake/resource_monitor.py +118 -323
  110. pulumi_snowflake/row_access_policy.py +200 -145
  111. pulumi_snowflake/{saml_integration.py → saml2_integration.py} +356 -295
  112. pulumi_snowflake/schema.py +949 -174
  113. pulumi_snowflake/scim_integration.py +286 -105
  114. pulumi_snowflake/secondary_connection.py +339 -0
  115. pulumi_snowflake/secondary_database.py +1080 -0
  116. pulumi_snowflake/secret_with_authorization_code_grant.py +548 -0
  117. pulumi_snowflake/secret_with_basic_authentication.py +500 -0
  118. pulumi_snowflake/secret_with_client_credentials.py +511 -0
  119. pulumi_snowflake/secret_with_generic_string.py +452 -0
  120. pulumi_snowflake/sequence.py +9 -30
  121. pulumi_snowflake/service_user.py +3585 -0
  122. pulumi_snowflake/share.py +35 -26
  123. pulumi_snowflake/shared_database.py +939 -0
  124. pulumi_snowflake/stage.py +95 -80
  125. pulumi_snowflake/storage_integration.py +48 -2
  126. pulumi_snowflake/stream_on_directory_table.py +517 -0
  127. pulumi_snowflake/stream_on_external_table.py +632 -0
  128. pulumi_snowflake/stream_on_table.py +666 -0
  129. pulumi_snowflake/stream_on_view.py +666 -0
  130. pulumi_snowflake/streamlit.py +671 -0
  131. pulumi_snowflake/table.py +86 -93
  132. pulumi_snowflake/table_column_masking_policy_application.py +7 -14
  133. pulumi_snowflake/table_constraint.py +29 -168
  134. pulumi_snowflake/tag.py +142 -70
  135. pulumi_snowflake/tag_association.py +40 -211
  136. pulumi_snowflake/task.py +3048 -414
  137. pulumi_snowflake/user.py +3351 -380
  138. pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
  139. pulumi_snowflake/user_password_policy_attachment.py +7 -6
  140. pulumi_snowflake/user_public_keys.py +5 -0
  141. pulumi_snowflake/view.py +466 -211
  142. pulumi_snowflake/warehouse.py +184 -164
  143. {pulumi_snowflake-0.50.2a1709892015.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/METADATA +7 -6
  144. pulumi_snowflake-1.2.0a1736835738.dist-info/RECORD +148 -0
  145. {pulumi_snowflake-0.50.2a1709892015.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/WHEEL +1 -1
  146. pulumi_snowflake/account_grant.py +0 -339
  147. pulumi_snowflake/database_grant.py +0 -491
  148. pulumi_snowflake/external_table_grant.py +0 -686
  149. pulumi_snowflake/failover_group_grant.py +0 -388
  150. pulumi_snowflake/file_format_grant.py +0 -631
  151. pulumi_snowflake/function.py +0 -868
  152. pulumi_snowflake/function_grant.py +0 -741
  153. pulumi_snowflake/get_role.py +0 -117
  154. pulumi_snowflake/get_roles.py +0 -116
  155. pulumi_snowflake/grant_privileges_to_role.py +0 -667
  156. pulumi_snowflake/integration_grant.py +0 -436
  157. pulumi_snowflake/masking_policy_grant.py +0 -538
  158. pulumi_snowflake/materialized_view_grant.py +0 -685
  159. pulumi_snowflake/pipe_grant.py +0 -583
  160. pulumi_snowflake/procedure.py +0 -883
  161. pulumi_snowflake/procedure_grant.py +0 -741
  162. pulumi_snowflake/resource_monitor_grant.py +0 -383
  163. pulumi_snowflake/role.py +0 -269
  164. pulumi_snowflake/role_grants.py +0 -348
  165. pulumi_snowflake/role_ownership_grant.py +0 -334
  166. pulumi_snowflake/row_access_policy_grant.py +0 -536
  167. pulumi_snowflake/schema_grant.py +0 -643
  168. pulumi_snowflake/sequence_grant.py +0 -631
  169. pulumi_snowflake/session_parameter.py +0 -328
  170. pulumi_snowflake/stage_grant.py +0 -631
  171. pulumi_snowflake/stream.py +0 -610
  172. pulumi_snowflake/stream_grant.py +0 -631
  173. pulumi_snowflake/table_grant.py +0 -673
  174. pulumi_snowflake/tag_grant.py +0 -528
  175. pulumi_snowflake/tag_masking_policy_association.py +0 -210
  176. pulumi_snowflake/task_grant.py +0 -631
  177. pulumi_snowflake/user_grant.py +0 -390
  178. pulumi_snowflake/user_ownership_grant.py +0 -286
  179. pulumi_snowflake/view_grant.py +0 -701
  180. pulumi_snowflake/warehouse_grant.py +0 -436
  181. pulumi_snowflake-0.50.2a1709892015.dist-info/RECORD +0 -136
  182. {pulumi_snowflake-0.50.2a1709892015.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/top_level.txt +0 -0
@@ -1,685 +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 pulumi
8
- import pulumi.runtime
9
- from typing import Any, Mapping, Optional, Sequence, Union, overload
10
- from . import _utilities
11
-
12
- __all__ = ['MaterializedViewGrantArgs', 'MaterializedViewGrant']
13
-
14
- @pulumi.input_type
15
- class MaterializedViewGrantArgs:
16
- def __init__(__self__, *,
17
- database_name: pulumi.Input[str],
18
- enable_multiple_grants: Optional[pulumi.Input[bool]] = None,
19
- materialized_view_name: Optional[pulumi.Input[str]] = None,
20
- on_all: Optional[pulumi.Input[bool]] = None,
21
- on_future: Optional[pulumi.Input[bool]] = None,
22
- privilege: Optional[pulumi.Input[str]] = None,
23
- revert_ownership_to_role_name: Optional[pulumi.Input[str]] = None,
24
- roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
25
- schema_name: Optional[pulumi.Input[str]] = None,
26
- shares: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
27
- with_grant_option: Optional[pulumi.Input[bool]] = None):
28
- """
29
- The set of arguments for constructing a MaterializedViewGrant resource.
30
- :param pulumi.Input[str] database_name: The name of the database containing the current or future materialized views on which to grant privileges.
31
- :param pulumi.Input[bool] enable_multiple_grants: When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
32
- grants applied to roles and objects outside Terraform.
33
- :param pulumi.Input[str] materialized_view_name: The name of the materialized view on which to grant privileges immediately (only valid if on*future and on*all are false).
34
- :param pulumi.Input[bool] on_all: When this is set to true and a schema*name is provided, apply this grant on all materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*all. Cannot be used together with on*future.
35
- :param pulumi.Input[bool] on_future: When this is set to true and a schema*name is provided, apply this grant on all future materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all future materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*future. Cannot be used together with on*all.
36
- :param pulumi.Input[str] privilege: The privilege to grant on the current or future materialized view. To grant all privileges, use the value `ALL PRIVILEGES`
37
- :param pulumi.Input[str] revert_ownership_to_role_name: The name of the role to revert ownership to on destroy. Has no effect unless `privilege` is set to `OWNERSHIP`
38
- :param pulumi.Input[Sequence[pulumi.Input[str]]] roles: Grants privilege to these roles.
39
- :param pulumi.Input[str] schema_name: The name of the schema containing the current or future materialized views on which to grant privileges.
40
- :param pulumi.Input[Sequence[pulumi.Input[str]]] shares: Grants privilege to these shares (only valid if on*future and on*all are false).
41
- :param pulumi.Input[bool] with_grant_option: When this is set to true, allows the recipient role to grant the privileges to other roles.
42
- """
43
- pulumi.set(__self__, "database_name", database_name)
44
- if enable_multiple_grants is not None:
45
- pulumi.set(__self__, "enable_multiple_grants", enable_multiple_grants)
46
- if materialized_view_name is not None:
47
- pulumi.set(__self__, "materialized_view_name", materialized_view_name)
48
- if on_all is not None:
49
- pulumi.set(__self__, "on_all", on_all)
50
- if on_future is not None:
51
- pulumi.set(__self__, "on_future", on_future)
52
- if privilege is not None:
53
- pulumi.set(__self__, "privilege", privilege)
54
- if revert_ownership_to_role_name is not None:
55
- pulumi.set(__self__, "revert_ownership_to_role_name", revert_ownership_to_role_name)
56
- if roles is not None:
57
- pulumi.set(__self__, "roles", roles)
58
- if schema_name is not None:
59
- pulumi.set(__self__, "schema_name", schema_name)
60
- if shares is not None:
61
- pulumi.set(__self__, "shares", shares)
62
- if with_grant_option is not None:
63
- pulumi.set(__self__, "with_grant_option", with_grant_option)
64
-
65
- @property
66
- @pulumi.getter(name="databaseName")
67
- def database_name(self) -> pulumi.Input[str]:
68
- """
69
- The name of the database containing the current or future materialized views on which to grant privileges.
70
- """
71
- return pulumi.get(self, "database_name")
72
-
73
- @database_name.setter
74
- def database_name(self, value: pulumi.Input[str]):
75
- pulumi.set(self, "database_name", value)
76
-
77
- @property
78
- @pulumi.getter(name="enableMultipleGrants")
79
- def enable_multiple_grants(self) -> Optional[pulumi.Input[bool]]:
80
- """
81
- When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
82
- grants applied to roles and objects outside Terraform.
83
- """
84
- return pulumi.get(self, "enable_multiple_grants")
85
-
86
- @enable_multiple_grants.setter
87
- def enable_multiple_grants(self, value: Optional[pulumi.Input[bool]]):
88
- pulumi.set(self, "enable_multiple_grants", value)
89
-
90
- @property
91
- @pulumi.getter(name="materializedViewName")
92
- def materialized_view_name(self) -> Optional[pulumi.Input[str]]:
93
- """
94
- The name of the materialized view on which to grant privileges immediately (only valid if on*future and on*all are false).
95
- """
96
- return pulumi.get(self, "materialized_view_name")
97
-
98
- @materialized_view_name.setter
99
- def materialized_view_name(self, value: Optional[pulumi.Input[str]]):
100
- pulumi.set(self, "materialized_view_name", value)
101
-
102
- @property
103
- @pulumi.getter(name="onAll")
104
- def on_all(self) -> Optional[pulumi.Input[bool]]:
105
- """
106
- When this is set to true and a schema*name is provided, apply this grant on all materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*all. Cannot be used together with on*future.
107
- """
108
- return pulumi.get(self, "on_all")
109
-
110
- @on_all.setter
111
- def on_all(self, value: Optional[pulumi.Input[bool]]):
112
- pulumi.set(self, "on_all", value)
113
-
114
- @property
115
- @pulumi.getter(name="onFuture")
116
- def on_future(self) -> Optional[pulumi.Input[bool]]:
117
- """
118
- When this is set to true and a schema*name is provided, apply this grant on all future materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all future materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*future. Cannot be used together with on*all.
119
- """
120
- return pulumi.get(self, "on_future")
121
-
122
- @on_future.setter
123
- def on_future(self, value: Optional[pulumi.Input[bool]]):
124
- pulumi.set(self, "on_future", value)
125
-
126
- @property
127
- @pulumi.getter
128
- def privilege(self) -> Optional[pulumi.Input[str]]:
129
- """
130
- The privilege to grant on the current or future materialized view. To grant all privileges, use the value `ALL PRIVILEGES`
131
- """
132
- return pulumi.get(self, "privilege")
133
-
134
- @privilege.setter
135
- def privilege(self, value: Optional[pulumi.Input[str]]):
136
- pulumi.set(self, "privilege", value)
137
-
138
- @property
139
- @pulumi.getter(name="revertOwnershipToRoleName")
140
- def revert_ownership_to_role_name(self) -> Optional[pulumi.Input[str]]:
141
- """
142
- The name of the role to revert ownership to on destroy. Has no effect unless `privilege` is set to `OWNERSHIP`
143
- """
144
- return pulumi.get(self, "revert_ownership_to_role_name")
145
-
146
- @revert_ownership_to_role_name.setter
147
- def revert_ownership_to_role_name(self, value: Optional[pulumi.Input[str]]):
148
- pulumi.set(self, "revert_ownership_to_role_name", value)
149
-
150
- @property
151
- @pulumi.getter
152
- def roles(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
153
- """
154
- Grants privilege to these roles.
155
- """
156
- return pulumi.get(self, "roles")
157
-
158
- @roles.setter
159
- def roles(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
160
- pulumi.set(self, "roles", value)
161
-
162
- @property
163
- @pulumi.getter(name="schemaName")
164
- def schema_name(self) -> Optional[pulumi.Input[str]]:
165
- """
166
- The name of the schema containing the current or future materialized views on which to grant privileges.
167
- """
168
- return pulumi.get(self, "schema_name")
169
-
170
- @schema_name.setter
171
- def schema_name(self, value: Optional[pulumi.Input[str]]):
172
- pulumi.set(self, "schema_name", value)
173
-
174
- @property
175
- @pulumi.getter
176
- def shares(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
177
- """
178
- Grants privilege to these shares (only valid if on*future and on*all are false).
179
- """
180
- return pulumi.get(self, "shares")
181
-
182
- @shares.setter
183
- def shares(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
184
- pulumi.set(self, "shares", value)
185
-
186
- @property
187
- @pulumi.getter(name="withGrantOption")
188
- def with_grant_option(self) -> Optional[pulumi.Input[bool]]:
189
- """
190
- When this is set to true, allows the recipient role to grant the privileges to other roles.
191
- """
192
- return pulumi.get(self, "with_grant_option")
193
-
194
- @with_grant_option.setter
195
- def with_grant_option(self, value: Optional[pulumi.Input[bool]]):
196
- pulumi.set(self, "with_grant_option", value)
197
-
198
-
199
- @pulumi.input_type
200
- class _MaterializedViewGrantState:
201
- def __init__(__self__, *,
202
- database_name: Optional[pulumi.Input[str]] = None,
203
- enable_multiple_grants: Optional[pulumi.Input[bool]] = None,
204
- materialized_view_name: Optional[pulumi.Input[str]] = None,
205
- on_all: Optional[pulumi.Input[bool]] = None,
206
- on_future: Optional[pulumi.Input[bool]] = None,
207
- privilege: Optional[pulumi.Input[str]] = None,
208
- revert_ownership_to_role_name: Optional[pulumi.Input[str]] = None,
209
- roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
210
- schema_name: Optional[pulumi.Input[str]] = None,
211
- shares: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
212
- with_grant_option: Optional[pulumi.Input[bool]] = None):
213
- """
214
- Input properties used for looking up and filtering MaterializedViewGrant resources.
215
- :param pulumi.Input[str] database_name: The name of the database containing the current or future materialized views on which to grant privileges.
216
- :param pulumi.Input[bool] enable_multiple_grants: When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
217
- grants applied to roles and objects outside Terraform.
218
- :param pulumi.Input[str] materialized_view_name: The name of the materialized view on which to grant privileges immediately (only valid if on*future and on*all are false).
219
- :param pulumi.Input[bool] on_all: When this is set to true and a schema*name is provided, apply this grant on all materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*all. Cannot be used together with on*future.
220
- :param pulumi.Input[bool] on_future: When this is set to true and a schema*name is provided, apply this grant on all future materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all future materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*future. Cannot be used together with on*all.
221
- :param pulumi.Input[str] privilege: The privilege to grant on the current or future materialized view. To grant all privileges, use the value `ALL PRIVILEGES`
222
- :param pulumi.Input[str] revert_ownership_to_role_name: The name of the role to revert ownership to on destroy. Has no effect unless `privilege` is set to `OWNERSHIP`
223
- :param pulumi.Input[Sequence[pulumi.Input[str]]] roles: Grants privilege to these roles.
224
- :param pulumi.Input[str] schema_name: The name of the schema containing the current or future materialized views on which to grant privileges.
225
- :param pulumi.Input[Sequence[pulumi.Input[str]]] shares: Grants privilege to these shares (only valid if on*future and on*all are false).
226
- :param pulumi.Input[bool] with_grant_option: When this is set to true, allows the recipient role to grant the privileges to other roles.
227
- """
228
- if database_name is not None:
229
- pulumi.set(__self__, "database_name", database_name)
230
- if enable_multiple_grants is not None:
231
- pulumi.set(__self__, "enable_multiple_grants", enable_multiple_grants)
232
- if materialized_view_name is not None:
233
- pulumi.set(__self__, "materialized_view_name", materialized_view_name)
234
- if on_all is not None:
235
- pulumi.set(__self__, "on_all", on_all)
236
- if on_future is not None:
237
- pulumi.set(__self__, "on_future", on_future)
238
- if privilege is not None:
239
- pulumi.set(__self__, "privilege", privilege)
240
- if revert_ownership_to_role_name is not None:
241
- pulumi.set(__self__, "revert_ownership_to_role_name", revert_ownership_to_role_name)
242
- if roles is not None:
243
- pulumi.set(__self__, "roles", roles)
244
- if schema_name is not None:
245
- pulumi.set(__self__, "schema_name", schema_name)
246
- if shares is not None:
247
- pulumi.set(__self__, "shares", shares)
248
- if with_grant_option is not None:
249
- pulumi.set(__self__, "with_grant_option", with_grant_option)
250
-
251
- @property
252
- @pulumi.getter(name="databaseName")
253
- def database_name(self) -> Optional[pulumi.Input[str]]:
254
- """
255
- The name of the database containing the current or future materialized views on which to grant privileges.
256
- """
257
- return pulumi.get(self, "database_name")
258
-
259
- @database_name.setter
260
- def database_name(self, value: Optional[pulumi.Input[str]]):
261
- pulumi.set(self, "database_name", value)
262
-
263
- @property
264
- @pulumi.getter(name="enableMultipleGrants")
265
- def enable_multiple_grants(self) -> Optional[pulumi.Input[bool]]:
266
- """
267
- When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
268
- grants applied to roles and objects outside Terraform.
269
- """
270
- return pulumi.get(self, "enable_multiple_grants")
271
-
272
- @enable_multiple_grants.setter
273
- def enable_multiple_grants(self, value: Optional[pulumi.Input[bool]]):
274
- pulumi.set(self, "enable_multiple_grants", value)
275
-
276
- @property
277
- @pulumi.getter(name="materializedViewName")
278
- def materialized_view_name(self) -> Optional[pulumi.Input[str]]:
279
- """
280
- The name of the materialized view on which to grant privileges immediately (only valid if on*future and on*all are false).
281
- """
282
- return pulumi.get(self, "materialized_view_name")
283
-
284
- @materialized_view_name.setter
285
- def materialized_view_name(self, value: Optional[pulumi.Input[str]]):
286
- pulumi.set(self, "materialized_view_name", value)
287
-
288
- @property
289
- @pulumi.getter(name="onAll")
290
- def on_all(self) -> Optional[pulumi.Input[bool]]:
291
- """
292
- When this is set to true and a schema*name is provided, apply this grant on all materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*all. Cannot be used together with on*future.
293
- """
294
- return pulumi.get(self, "on_all")
295
-
296
- @on_all.setter
297
- def on_all(self, value: Optional[pulumi.Input[bool]]):
298
- pulumi.set(self, "on_all", value)
299
-
300
- @property
301
- @pulumi.getter(name="onFuture")
302
- def on_future(self) -> Optional[pulumi.Input[bool]]:
303
- """
304
- When this is set to true and a schema*name is provided, apply this grant on all future materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all future materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*future. Cannot be used together with on*all.
305
- """
306
- return pulumi.get(self, "on_future")
307
-
308
- @on_future.setter
309
- def on_future(self, value: Optional[pulumi.Input[bool]]):
310
- pulumi.set(self, "on_future", value)
311
-
312
- @property
313
- @pulumi.getter
314
- def privilege(self) -> Optional[pulumi.Input[str]]:
315
- """
316
- The privilege to grant on the current or future materialized view. To grant all privileges, use the value `ALL PRIVILEGES`
317
- """
318
- return pulumi.get(self, "privilege")
319
-
320
- @privilege.setter
321
- def privilege(self, value: Optional[pulumi.Input[str]]):
322
- pulumi.set(self, "privilege", value)
323
-
324
- @property
325
- @pulumi.getter(name="revertOwnershipToRoleName")
326
- def revert_ownership_to_role_name(self) -> Optional[pulumi.Input[str]]:
327
- """
328
- The name of the role to revert ownership to on destroy. Has no effect unless `privilege` is set to `OWNERSHIP`
329
- """
330
- return pulumi.get(self, "revert_ownership_to_role_name")
331
-
332
- @revert_ownership_to_role_name.setter
333
- def revert_ownership_to_role_name(self, value: Optional[pulumi.Input[str]]):
334
- pulumi.set(self, "revert_ownership_to_role_name", value)
335
-
336
- @property
337
- @pulumi.getter
338
- def roles(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
339
- """
340
- Grants privilege to these roles.
341
- """
342
- return pulumi.get(self, "roles")
343
-
344
- @roles.setter
345
- def roles(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
346
- pulumi.set(self, "roles", value)
347
-
348
- @property
349
- @pulumi.getter(name="schemaName")
350
- def schema_name(self) -> Optional[pulumi.Input[str]]:
351
- """
352
- The name of the schema containing the current or future materialized views on which to grant privileges.
353
- """
354
- return pulumi.get(self, "schema_name")
355
-
356
- @schema_name.setter
357
- def schema_name(self, value: Optional[pulumi.Input[str]]):
358
- pulumi.set(self, "schema_name", value)
359
-
360
- @property
361
- @pulumi.getter
362
- def shares(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
363
- """
364
- Grants privilege to these shares (only valid if on*future and on*all are false).
365
- """
366
- return pulumi.get(self, "shares")
367
-
368
- @shares.setter
369
- def shares(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
370
- pulumi.set(self, "shares", value)
371
-
372
- @property
373
- @pulumi.getter(name="withGrantOption")
374
- def with_grant_option(self) -> Optional[pulumi.Input[bool]]:
375
- """
376
- When this is set to true, allows the recipient role to grant the privileges to other roles.
377
- """
378
- return pulumi.get(self, "with_grant_option")
379
-
380
- @with_grant_option.setter
381
- def with_grant_option(self, value: Optional[pulumi.Input[bool]]):
382
- pulumi.set(self, "with_grant_option", value)
383
-
384
-
385
- class MaterializedViewGrant(pulumi.CustomResource):
386
- @overload
387
- def __init__(__self__,
388
- resource_name: str,
389
- opts: Optional[pulumi.ResourceOptions] = None,
390
- database_name: Optional[pulumi.Input[str]] = None,
391
- enable_multiple_grants: Optional[pulumi.Input[bool]] = None,
392
- materialized_view_name: Optional[pulumi.Input[str]] = None,
393
- on_all: Optional[pulumi.Input[bool]] = None,
394
- on_future: Optional[pulumi.Input[bool]] = None,
395
- privilege: Optional[pulumi.Input[str]] = None,
396
- revert_ownership_to_role_name: Optional[pulumi.Input[str]] = None,
397
- roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
398
- schema_name: Optional[pulumi.Input[str]] = None,
399
- shares: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
400
- with_grant_option: Optional[pulumi.Input[bool]] = None,
401
- __props__=None):
402
- """
403
- > **Deprecation** This resource is deprecated and will be removed in a future major version release. Please use GrantPrivilegesToAccountRole instead. <deprecation>
404
-
405
- ## Example Usage
406
-
407
- ```python
408
- import pulumi
409
- import pulumi_snowflake as snowflake
410
-
411
- grant = snowflake.MaterializedViewGrant("grant",
412
- database_name="database",
413
- materialized_view_name="materialized_view",
414
- on_future=False,
415
- privilege="SELECT",
416
- roles=[
417
- "role1",
418
- "role2",
419
- ],
420
- schema_name="schema",
421
- shares=[
422
- "share1",
423
- "share2",
424
- ],
425
- with_grant_option=False)
426
- ```
427
-
428
- ## Import
429
-
430
- format is database_name|schema_name|materialized_view_name|privilege|with_grant_option|on_future|on_all|roles|shares
431
-
432
- ```sh
433
- $ pulumi import snowflake:index/materializedViewGrant:MaterializedViewGrant example "MY_DATABASE|MY_SCHEMA|MY_MV_NAME|SELECT|false|false|role1,role2|share1,share2"
434
- ```
435
-
436
- :param str resource_name: The name of the resource.
437
- :param pulumi.ResourceOptions opts: Options for the resource.
438
- :param pulumi.Input[str] database_name: The name of the database containing the current or future materialized views on which to grant privileges.
439
- :param pulumi.Input[bool] enable_multiple_grants: When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
440
- grants applied to roles and objects outside Terraform.
441
- :param pulumi.Input[str] materialized_view_name: The name of the materialized view on which to grant privileges immediately (only valid if on*future and on*all are false).
442
- :param pulumi.Input[bool] on_all: When this is set to true and a schema*name is provided, apply this grant on all materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*all. Cannot be used together with on*future.
443
- :param pulumi.Input[bool] on_future: When this is set to true and a schema*name is provided, apply this grant on all future materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all future materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*future. Cannot be used together with on*all.
444
- :param pulumi.Input[str] privilege: The privilege to grant on the current or future materialized view. To grant all privileges, use the value `ALL PRIVILEGES`
445
- :param pulumi.Input[str] revert_ownership_to_role_name: The name of the role to revert ownership to on destroy. Has no effect unless `privilege` is set to `OWNERSHIP`
446
- :param pulumi.Input[Sequence[pulumi.Input[str]]] roles: Grants privilege to these roles.
447
- :param pulumi.Input[str] schema_name: The name of the schema containing the current or future materialized views on which to grant privileges.
448
- :param pulumi.Input[Sequence[pulumi.Input[str]]] shares: Grants privilege to these shares (only valid if on*future and on*all are false).
449
- :param pulumi.Input[bool] with_grant_option: When this is set to true, allows the recipient role to grant the privileges to other roles.
450
- """
451
- ...
452
- @overload
453
- def __init__(__self__,
454
- resource_name: str,
455
- args: MaterializedViewGrantArgs,
456
- opts: Optional[pulumi.ResourceOptions] = None):
457
- """
458
- > **Deprecation** This resource is deprecated and will be removed in a future major version release. Please use GrantPrivilegesToAccountRole instead. <deprecation>
459
-
460
- ## Example Usage
461
-
462
- ```python
463
- import pulumi
464
- import pulumi_snowflake as snowflake
465
-
466
- grant = snowflake.MaterializedViewGrant("grant",
467
- database_name="database",
468
- materialized_view_name="materialized_view",
469
- on_future=False,
470
- privilege="SELECT",
471
- roles=[
472
- "role1",
473
- "role2",
474
- ],
475
- schema_name="schema",
476
- shares=[
477
- "share1",
478
- "share2",
479
- ],
480
- with_grant_option=False)
481
- ```
482
-
483
- ## Import
484
-
485
- format is database_name|schema_name|materialized_view_name|privilege|with_grant_option|on_future|on_all|roles|shares
486
-
487
- ```sh
488
- $ pulumi import snowflake:index/materializedViewGrant:MaterializedViewGrant example "MY_DATABASE|MY_SCHEMA|MY_MV_NAME|SELECT|false|false|role1,role2|share1,share2"
489
- ```
490
-
491
- :param str resource_name: The name of the resource.
492
- :param MaterializedViewGrantArgs args: The arguments to use to populate this resource's properties.
493
- :param pulumi.ResourceOptions opts: Options for the resource.
494
- """
495
- ...
496
- def __init__(__self__, resource_name: str, *args, **kwargs):
497
- resource_args, opts = _utilities.get_resource_args_opts(MaterializedViewGrantArgs, pulumi.ResourceOptions, *args, **kwargs)
498
- if resource_args is not None:
499
- __self__._internal_init(resource_name, opts, **resource_args.__dict__)
500
- else:
501
- __self__._internal_init(resource_name, *args, **kwargs)
502
-
503
- def _internal_init(__self__,
504
- resource_name: str,
505
- opts: Optional[pulumi.ResourceOptions] = None,
506
- database_name: Optional[pulumi.Input[str]] = None,
507
- enable_multiple_grants: Optional[pulumi.Input[bool]] = None,
508
- materialized_view_name: Optional[pulumi.Input[str]] = None,
509
- on_all: Optional[pulumi.Input[bool]] = None,
510
- on_future: Optional[pulumi.Input[bool]] = None,
511
- privilege: Optional[pulumi.Input[str]] = None,
512
- revert_ownership_to_role_name: Optional[pulumi.Input[str]] = None,
513
- roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
514
- schema_name: Optional[pulumi.Input[str]] = None,
515
- shares: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
516
- with_grant_option: Optional[pulumi.Input[bool]] = None,
517
- __props__=None):
518
- opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
519
- if not isinstance(opts, pulumi.ResourceOptions):
520
- raise TypeError('Expected resource options to be a ResourceOptions instance')
521
- if opts.id is None:
522
- if __props__ is not None:
523
- raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
524
- __props__ = MaterializedViewGrantArgs.__new__(MaterializedViewGrantArgs)
525
-
526
- if database_name is None and not opts.urn:
527
- raise TypeError("Missing required property 'database_name'")
528
- __props__.__dict__["database_name"] = database_name
529
- __props__.__dict__["enable_multiple_grants"] = enable_multiple_grants
530
- __props__.__dict__["materialized_view_name"] = materialized_view_name
531
- __props__.__dict__["on_all"] = on_all
532
- __props__.__dict__["on_future"] = on_future
533
- __props__.__dict__["privilege"] = privilege
534
- __props__.__dict__["revert_ownership_to_role_name"] = revert_ownership_to_role_name
535
- __props__.__dict__["roles"] = roles
536
- __props__.__dict__["schema_name"] = schema_name
537
- __props__.__dict__["shares"] = shares
538
- __props__.__dict__["with_grant_option"] = with_grant_option
539
- super(MaterializedViewGrant, __self__).__init__(
540
- 'snowflake:index/materializedViewGrant:MaterializedViewGrant',
541
- resource_name,
542
- __props__,
543
- opts)
544
-
545
- @staticmethod
546
- def get(resource_name: str,
547
- id: pulumi.Input[str],
548
- opts: Optional[pulumi.ResourceOptions] = None,
549
- database_name: Optional[pulumi.Input[str]] = None,
550
- enable_multiple_grants: Optional[pulumi.Input[bool]] = None,
551
- materialized_view_name: Optional[pulumi.Input[str]] = None,
552
- on_all: Optional[pulumi.Input[bool]] = None,
553
- on_future: Optional[pulumi.Input[bool]] = None,
554
- privilege: Optional[pulumi.Input[str]] = None,
555
- revert_ownership_to_role_name: Optional[pulumi.Input[str]] = None,
556
- roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
557
- schema_name: Optional[pulumi.Input[str]] = None,
558
- shares: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
559
- with_grant_option: Optional[pulumi.Input[bool]] = None) -> 'MaterializedViewGrant':
560
- """
561
- Get an existing MaterializedViewGrant resource's state with the given name, id, and optional extra
562
- properties used to qualify the lookup.
563
-
564
- :param str resource_name: The unique name of the resulting resource.
565
- :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
566
- :param pulumi.ResourceOptions opts: Options for the resource.
567
- :param pulumi.Input[str] database_name: The name of the database containing the current or future materialized views on which to grant privileges.
568
- :param pulumi.Input[bool] enable_multiple_grants: When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
569
- grants applied to roles and objects outside Terraform.
570
- :param pulumi.Input[str] materialized_view_name: The name of the materialized view on which to grant privileges immediately (only valid if on*future and on*all are false).
571
- :param pulumi.Input[bool] on_all: When this is set to true and a schema*name is provided, apply this grant on all materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*all. Cannot be used together with on*future.
572
- :param pulumi.Input[bool] on_future: When this is set to true and a schema*name is provided, apply this grant on all future materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all future materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*future. Cannot be used together with on*all.
573
- :param pulumi.Input[str] privilege: The privilege to grant on the current or future materialized view. To grant all privileges, use the value `ALL PRIVILEGES`
574
- :param pulumi.Input[str] revert_ownership_to_role_name: The name of the role to revert ownership to on destroy. Has no effect unless `privilege` is set to `OWNERSHIP`
575
- :param pulumi.Input[Sequence[pulumi.Input[str]]] roles: Grants privilege to these roles.
576
- :param pulumi.Input[str] schema_name: The name of the schema containing the current or future materialized views on which to grant privileges.
577
- :param pulumi.Input[Sequence[pulumi.Input[str]]] shares: Grants privilege to these shares (only valid if on*future and on*all are false).
578
- :param pulumi.Input[bool] with_grant_option: When this is set to true, allows the recipient role to grant the privileges to other roles.
579
- """
580
- opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
581
-
582
- __props__ = _MaterializedViewGrantState.__new__(_MaterializedViewGrantState)
583
-
584
- __props__.__dict__["database_name"] = database_name
585
- __props__.__dict__["enable_multiple_grants"] = enable_multiple_grants
586
- __props__.__dict__["materialized_view_name"] = materialized_view_name
587
- __props__.__dict__["on_all"] = on_all
588
- __props__.__dict__["on_future"] = on_future
589
- __props__.__dict__["privilege"] = privilege
590
- __props__.__dict__["revert_ownership_to_role_name"] = revert_ownership_to_role_name
591
- __props__.__dict__["roles"] = roles
592
- __props__.__dict__["schema_name"] = schema_name
593
- __props__.__dict__["shares"] = shares
594
- __props__.__dict__["with_grant_option"] = with_grant_option
595
- return MaterializedViewGrant(resource_name, opts=opts, __props__=__props__)
596
-
597
- @property
598
- @pulumi.getter(name="databaseName")
599
- def database_name(self) -> pulumi.Output[str]:
600
- """
601
- The name of the database containing the current or future materialized views on which to grant privileges.
602
- """
603
- return pulumi.get(self, "database_name")
604
-
605
- @property
606
- @pulumi.getter(name="enableMultipleGrants")
607
- def enable_multiple_grants(self) -> pulumi.Output[Optional[bool]]:
608
- """
609
- When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke
610
- grants applied to roles and objects outside Terraform.
611
- """
612
- return pulumi.get(self, "enable_multiple_grants")
613
-
614
- @property
615
- @pulumi.getter(name="materializedViewName")
616
- def materialized_view_name(self) -> pulumi.Output[Optional[str]]:
617
- """
618
- The name of the materialized view on which to grant privileges immediately (only valid if on*future and on*all are false).
619
- """
620
- return pulumi.get(self, "materialized_view_name")
621
-
622
- @property
623
- @pulumi.getter(name="onAll")
624
- def on_all(self) -> pulumi.Output[Optional[bool]]:
625
- """
626
- When this is set to true and a schema*name is provided, apply this grant on all materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*all. Cannot be used together with on*future.
627
- """
628
- return pulumi.get(self, "on_all")
629
-
630
- @property
631
- @pulumi.getter(name="onFuture")
632
- def on_future(self) -> pulumi.Output[Optional[bool]]:
633
- """
634
- When this is set to true and a schema*name is provided, apply this grant on all future materialized views in the given schema. When this is true and no schema*name is provided apply this grant on all future materialized views in the given database. The materialized*view*name and shares fields must be unset in order to use on*future. Cannot be used together with on*all.
635
- """
636
- return pulumi.get(self, "on_future")
637
-
638
- @property
639
- @pulumi.getter
640
- def privilege(self) -> pulumi.Output[Optional[str]]:
641
- """
642
- The privilege to grant on the current or future materialized view. To grant all privileges, use the value `ALL PRIVILEGES`
643
- """
644
- return pulumi.get(self, "privilege")
645
-
646
- @property
647
- @pulumi.getter(name="revertOwnershipToRoleName")
648
- def revert_ownership_to_role_name(self) -> pulumi.Output[Optional[str]]:
649
- """
650
- The name of the role to revert ownership to on destroy. Has no effect unless `privilege` is set to `OWNERSHIP`
651
- """
652
- return pulumi.get(self, "revert_ownership_to_role_name")
653
-
654
- @property
655
- @pulumi.getter
656
- def roles(self) -> pulumi.Output[Optional[Sequence[str]]]:
657
- """
658
- Grants privilege to these roles.
659
- """
660
- return pulumi.get(self, "roles")
661
-
662
- @property
663
- @pulumi.getter(name="schemaName")
664
- def schema_name(self) -> pulumi.Output[Optional[str]]:
665
- """
666
- The name of the schema containing the current or future materialized views on which to grant privileges.
667
- """
668
- return pulumi.get(self, "schema_name")
669
-
670
- @property
671
- @pulumi.getter
672
- def shares(self) -> pulumi.Output[Optional[Sequence[str]]]:
673
- """
674
- Grants privilege to these shares (only valid if on*future and on*all are false).
675
- """
676
- return pulumi.get(self, "shares")
677
-
678
- @property
679
- @pulumi.getter(name="withGrantOption")
680
- def with_grant_option(self) -> pulumi.Output[Optional[bool]]:
681
- """
682
- When this is set to true, allows the recipient role to grant the privileges to other roles.
683
- """
684
- return pulumi.get(self, "with_grant_option")
685
-