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
@@ -33,14 +33,14 @@ class GrantPrivilegesToAccountRoleArgs:
33
33
  with_grant_option: Optional[pulumi.Input[bool]] = None):
34
34
  """
35
35
  The set of arguments for constructing a GrantPrivilegesToAccountRole resource.
36
- :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted.
36
+ :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
37
37
  :param pulumi.Input[bool] all_privileges: Grant all privileges on the account role.
38
38
  :param pulumi.Input[str] always_apply_trigger: This is a helper field and should not be set. Its main purpose is to help to achieve the functionality described by the always_apply field.
39
39
  :param pulumi.Input[bool] on_account: If true, the privileges will be granted on the account.
40
40
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs'] on_account_object: Specifies the account object on which privileges will be granted
41
41
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs'] on_schema: Specifies the schema on which privileges will be granted.
42
42
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs'] on_schema_object: Specifies the schema object on which privileges will be granted.
43
- :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the account role.
43
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
44
44
  :param pulumi.Input[bool] with_grant_option: Specifies whether the grantee can grant the privileges to other users.
45
45
  """
46
46
  pulumi.set(__self__, "account_role_name", account_role_name)
@@ -67,7 +67,7 @@ class GrantPrivilegesToAccountRoleArgs:
67
67
  @pulumi.getter(name="accountRoleName")
68
68
  def account_role_name(self) -> pulumi.Input[str]:
69
69
  """
70
- The fully qualified name of the account role to which privileges will be granted.
70
+ The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
71
71
  """
72
72
  return pulumi.get(self, "account_role_name")
73
73
 
@@ -160,7 +160,7 @@ class GrantPrivilegesToAccountRoleArgs:
160
160
  @pulumi.getter
161
161
  def privileges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
162
162
  """
163
- The privileges to grant on the account role.
163
+ The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
164
164
  """
165
165
  return pulumi.get(self, "privileges")
166
166
 
@@ -196,14 +196,14 @@ class _GrantPrivilegesToAccountRoleState:
196
196
  with_grant_option: Optional[pulumi.Input[bool]] = None):
197
197
  """
198
198
  Input properties used for looking up and filtering GrantPrivilegesToAccountRole resources.
199
- :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted.
199
+ :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
200
200
  :param pulumi.Input[bool] all_privileges: Grant all privileges on the account role.
201
201
  :param pulumi.Input[str] always_apply_trigger: This is a helper field and should not be set. Its main purpose is to help to achieve the functionality described by the always_apply field.
202
202
  :param pulumi.Input[bool] on_account: If true, the privileges will be granted on the account.
203
203
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs'] on_account_object: Specifies the account object on which privileges will be granted
204
204
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs'] on_schema: Specifies the schema on which privileges will be granted.
205
205
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs'] on_schema_object: Specifies the schema object on which privileges will be granted.
206
- :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the account role.
206
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
207
207
  :param pulumi.Input[bool] with_grant_option: Specifies whether the grantee can grant the privileges to other users.
208
208
  """
209
209
  if account_role_name is not None:
@@ -231,7 +231,7 @@ class _GrantPrivilegesToAccountRoleState:
231
231
  @pulumi.getter(name="accountRoleName")
232
232
  def account_role_name(self) -> Optional[pulumi.Input[str]]:
233
233
  """
234
- The fully qualified name of the account role to which privileges will be granted.
234
+ The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
235
235
  """
236
236
  return pulumi.get(self, "account_role_name")
237
237
 
@@ -324,7 +324,7 @@ class _GrantPrivilegesToAccountRoleState:
324
324
  @pulumi.getter
325
325
  def privileges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
326
326
  """
327
- The privileges to grant on the account role.
327
+ The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
328
328
  """
329
329
  return pulumi.get(self, "privileges")
330
330
 
@@ -392,14 +392,14 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
392
392
 
393
393
  :param str resource_name: The name of the resource.
394
394
  :param pulumi.ResourceOptions opts: Options for the resource.
395
- :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted.
395
+ :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
396
396
  :param pulumi.Input[bool] all_privileges: Grant all privileges on the account role.
397
397
  :param pulumi.Input[str] always_apply_trigger: This is a helper field and should not be set. Its main purpose is to help to achieve the functionality described by the always_apply field.
398
398
  :param pulumi.Input[bool] on_account: If true, the privileges will be granted on the account.
399
399
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnAccountObjectArgs', 'GrantPrivilegesToAccountRoleOnAccountObjectArgsDict']] on_account_object: Specifies the account object on which privileges will be granted
400
400
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaArgs', 'GrantPrivilegesToAccountRoleOnSchemaArgsDict']] on_schema: Specifies the schema on which privileges will be granted.
401
401
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaObjectArgs', 'GrantPrivilegesToAccountRoleOnSchemaObjectArgsDict']] on_schema_object: Specifies the schema object on which privileges will be granted.
402
- :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the account role.
402
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
403
403
  :param pulumi.Input[bool] with_grant_option: Specifies whether the grantee can grant the privileges to other users.
404
404
  """
405
405
  ...
@@ -510,14 +510,14 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
510
510
  :param str resource_name: The unique name of the resulting resource.
511
511
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
512
512
  :param pulumi.ResourceOptions opts: Options for the resource.
513
- :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted.
513
+ :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
514
514
  :param pulumi.Input[bool] all_privileges: Grant all privileges on the account role.
515
515
  :param pulumi.Input[str] always_apply_trigger: This is a helper field and should not be set. Its main purpose is to help to achieve the functionality described by the always_apply field.
516
516
  :param pulumi.Input[bool] on_account: If true, the privileges will be granted on the account.
517
517
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnAccountObjectArgs', 'GrantPrivilegesToAccountRoleOnAccountObjectArgsDict']] on_account_object: Specifies the account object on which privileges will be granted
518
518
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaArgs', 'GrantPrivilegesToAccountRoleOnSchemaArgsDict']] on_schema: Specifies the schema on which privileges will be granted.
519
519
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaObjectArgs', 'GrantPrivilegesToAccountRoleOnSchemaObjectArgsDict']] on_schema_object: Specifies the schema object on which privileges will be granted.
520
- :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the account role.
520
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
521
521
  :param pulumi.Input[bool] with_grant_option: Specifies whether the grantee can grant the privileges to other users.
522
522
  """
523
523
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -540,7 +540,7 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
540
540
  @pulumi.getter(name="accountRoleName")
541
541
  def account_role_name(self) -> pulumi.Output[str]:
542
542
  """
543
- The fully qualified name of the account role to which privileges will be granted.
543
+ The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
544
544
  """
545
545
  return pulumi.get(self, "account_role_name")
546
546
 
@@ -601,7 +601,7 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
601
601
  @pulumi.getter
602
602
  def privileges(self) -> pulumi.Output[Optional[Sequence[str]]]:
603
603
  """
604
- The privileges to grant on the account role.
604
+ The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
605
605
  """
606
606
  return pulumi.get(self, "privileges")
607
607
 
@@ -32,10 +32,10 @@ class GrantPrivilegesToDatabaseRoleArgs:
32
32
  with_grant_option: Optional[pulumi.Input[bool]] = None):
33
33
  """
34
34
  The set of arguments for constructing a GrantPrivilegesToDatabaseRole resource.
35
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted.
35
+ :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
36
36
  :param pulumi.Input[bool] all_privileges: Grant all privileges on the database role.
37
37
  :param pulumi.Input[str] always_apply_trigger: This is a helper field and should not be set. Its main purpose is to help to achieve the functionality described by the always_apply field.
38
- :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted.
38
+ :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
39
39
  :param pulumi.Input['GrantPrivilegesToDatabaseRoleOnSchemaArgs'] on_schema: Specifies the schema on which privileges will be granted.
40
40
  :param pulumi.Input['GrantPrivilegesToDatabaseRoleOnSchemaObjectArgs'] on_schema_object: Specifies the schema object on which privileges will be granted.
41
41
  :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the database role.
@@ -63,7 +63,7 @@ class GrantPrivilegesToDatabaseRoleArgs:
63
63
  @pulumi.getter(name="databaseRoleName")
64
64
  def database_role_name(self) -> pulumi.Input[str]:
65
65
  """
66
- The fully qualified name of the database role to which privileges will be granted.
66
+ The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
67
67
  """
68
68
  return pulumi.get(self, "database_role_name")
69
69
 
@@ -108,7 +108,7 @@ class GrantPrivilegesToDatabaseRoleArgs:
108
108
  @pulumi.getter(name="onDatabase")
109
109
  def on_database(self) -> Optional[pulumi.Input[str]]:
110
110
  """
111
- The fully qualified name of the database on which privileges will be granted.
111
+ The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
112
112
  """
113
113
  return pulumi.get(self, "on_database")
114
114
 
@@ -181,8 +181,8 @@ class _GrantPrivilegesToDatabaseRoleState:
181
181
  Input properties used for looking up and filtering GrantPrivilegesToDatabaseRole resources.
182
182
  :param pulumi.Input[bool] all_privileges: Grant all privileges on the database role.
183
183
  :param pulumi.Input[str] always_apply_trigger: This is a helper field and should not be set. Its main purpose is to help to achieve the functionality described by the always_apply field.
184
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted.
185
- :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted.
184
+ :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
185
+ :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
186
186
  :param pulumi.Input['GrantPrivilegesToDatabaseRoleOnSchemaArgs'] on_schema: Specifies the schema on which privileges will be granted.
187
187
  :param pulumi.Input['GrantPrivilegesToDatabaseRoleOnSchemaObjectArgs'] on_schema_object: Specifies the schema object on which privileges will be granted.
188
188
  :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the database role.
@@ -244,7 +244,7 @@ class _GrantPrivilegesToDatabaseRoleState:
244
244
  @pulumi.getter(name="databaseRoleName")
245
245
  def database_role_name(self) -> Optional[pulumi.Input[str]]:
246
246
  """
247
- The fully qualified name of the database role to which privileges will be granted.
247
+ The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
248
248
  """
249
249
  return pulumi.get(self, "database_role_name")
250
250
 
@@ -256,7 +256,7 @@ class _GrantPrivilegesToDatabaseRoleState:
256
256
  @pulumi.getter(name="onDatabase")
257
257
  def on_database(self) -> Optional[pulumi.Input[str]]:
258
258
  """
259
- The fully qualified name of the database on which privileges will be granted.
259
+ The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
260
260
  """
261
261
  return pulumi.get(self, "on_database")
262
262
 
@@ -361,8 +361,8 @@ class GrantPrivilegesToDatabaseRole(pulumi.CustomResource):
361
361
  :param pulumi.ResourceOptions opts: Options for the resource.
362
362
  :param pulumi.Input[bool] all_privileges: Grant all privileges on the database role.
363
363
  :param pulumi.Input[str] always_apply_trigger: This is a helper field and should not be set. Its main purpose is to help to achieve the functionality described by the always_apply field.
364
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted.
365
- :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted.
364
+ :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
365
+ :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
366
366
  :param pulumi.Input[Union['GrantPrivilegesToDatabaseRoleOnSchemaArgs', 'GrantPrivilegesToDatabaseRoleOnSchemaArgsDict']] on_schema: Specifies the schema on which privileges will be granted.
367
367
  :param pulumi.Input[Union['GrantPrivilegesToDatabaseRoleOnSchemaObjectArgs', 'GrantPrivilegesToDatabaseRoleOnSchemaObjectArgsDict']] on_schema_object: Specifies the schema object on which privileges will be granted.
368
368
  :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the database role.
@@ -475,8 +475,8 @@ class GrantPrivilegesToDatabaseRole(pulumi.CustomResource):
475
475
  :param pulumi.ResourceOptions opts: Options for the resource.
476
476
  :param pulumi.Input[bool] all_privileges: Grant all privileges on the database role.
477
477
  :param pulumi.Input[str] always_apply_trigger: This is a helper field and should not be set. Its main purpose is to help to achieve the functionality described by the always_apply field.
478
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted.
479
- :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted.
478
+ :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
479
+ :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
480
480
  :param pulumi.Input[Union['GrantPrivilegesToDatabaseRoleOnSchemaArgs', 'GrantPrivilegesToDatabaseRoleOnSchemaArgsDict']] on_schema: Specifies the schema on which privileges will be granted.
481
481
  :param pulumi.Input[Union['GrantPrivilegesToDatabaseRoleOnSchemaObjectArgs', 'GrantPrivilegesToDatabaseRoleOnSchemaObjectArgsDict']] on_schema_object: Specifies the schema object on which privileges will be granted.
482
482
  :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the database role.
@@ -522,7 +522,7 @@ class GrantPrivilegesToDatabaseRole(pulumi.CustomResource):
522
522
  @pulumi.getter(name="databaseRoleName")
523
523
  def database_role_name(self) -> pulumi.Output[str]:
524
524
  """
525
- The fully qualified name of the database role to which privileges will be granted.
525
+ The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
526
526
  """
527
527
  return pulumi.get(self, "database_role_name")
528
528
 
@@ -530,7 +530,7 @@ class GrantPrivilegesToDatabaseRole(pulumi.CustomResource):
530
530
  @pulumi.getter(name="onDatabase")
531
531
  def on_database(self) -> pulumi.Output[Optional[str]]:
532
532
  """
533
- The fully qualified name of the database on which privileges will be granted.
533
+ The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
534
534
  """
535
535
  return pulumi.get(self, "on_database")
536
536
 
@@ -31,14 +31,14 @@ class GrantPrivilegesToShareArgs:
31
31
  """
32
32
  The set of arguments for constructing a GrantPrivilegesToShare resource.
33
33
  :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the share. See available list of privileges: https://docs.snowflake.com/en/sql-reference/sql/grant-privilege-share#syntax
34
- :param pulumi.Input[str] to_share: The fully qualified name of the share on which privileges will be granted.
34
+ :param pulumi.Input[str] to_share: The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
35
35
  :param pulumi.Input[str] on_all_tables_in_schema: The fully qualified identifier for the schema for which the specified privilege will be granted for all tables.
36
- :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted.
36
+ :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
37
37
  :param pulumi.Input[str] on_function: The fully qualified name of the function on which privileges will be granted.
38
- :param pulumi.Input[str] on_schema: The fully qualified name of the schema on which privileges will be granted.
39
- :param pulumi.Input[str] on_table: The fully qualified name of the table on which privileges will be granted.
40
- :param pulumi.Input[str] on_tag: The fully qualified name of the tag on which privileges will be granted.
41
- :param pulumi.Input[str] on_view: The fully qualified name of the view on which privileges will be granted.
38
+ :param pulumi.Input[str] on_schema: The fully qualified name of the schema on which privileges will be granted. For more information about this resource, see docs.
39
+ :param pulumi.Input[str] on_table: The fully qualified name of the table on which privileges will be granted. For more information about this resource, see docs.
40
+ :param pulumi.Input[str] on_tag: The fully qualified name of the tag on which privileges will be granted. For more information about this resource, see docs.
41
+ :param pulumi.Input[str] on_view: The fully qualified name of the view on which privileges will be granted. For more information about this resource, see docs.
42
42
  """
43
43
  pulumi.set(__self__, "privileges", privileges)
44
44
  pulumi.set(__self__, "to_share", to_share)
@@ -73,7 +73,7 @@ class GrantPrivilegesToShareArgs:
73
73
  @pulumi.getter(name="toShare")
74
74
  def to_share(self) -> pulumi.Input[str]:
75
75
  """
76
- The fully qualified name of the share on which privileges will be granted.
76
+ The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
77
77
  """
78
78
  return pulumi.get(self, "to_share")
79
79
 
@@ -97,7 +97,7 @@ class GrantPrivilegesToShareArgs:
97
97
  @pulumi.getter(name="onDatabase")
98
98
  def on_database(self) -> Optional[pulumi.Input[str]]:
99
99
  """
100
- The fully qualified name of the database on which privileges will be granted.
100
+ The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
101
101
  """
102
102
  return pulumi.get(self, "on_database")
103
103
 
@@ -121,7 +121,7 @@ class GrantPrivilegesToShareArgs:
121
121
  @pulumi.getter(name="onSchema")
122
122
  def on_schema(self) -> Optional[pulumi.Input[str]]:
123
123
  """
124
- The fully qualified name of the schema on which privileges will be granted.
124
+ The fully qualified name of the schema on which privileges will be granted. For more information about this resource, see docs.
125
125
  """
126
126
  return pulumi.get(self, "on_schema")
127
127
 
@@ -133,7 +133,7 @@ class GrantPrivilegesToShareArgs:
133
133
  @pulumi.getter(name="onTable")
134
134
  def on_table(self) -> Optional[pulumi.Input[str]]:
135
135
  """
136
- The fully qualified name of the table on which privileges will be granted.
136
+ The fully qualified name of the table on which privileges will be granted. For more information about this resource, see docs.
137
137
  """
138
138
  return pulumi.get(self, "on_table")
139
139
 
@@ -145,7 +145,7 @@ class GrantPrivilegesToShareArgs:
145
145
  @pulumi.getter(name="onTag")
146
146
  def on_tag(self) -> Optional[pulumi.Input[str]]:
147
147
  """
148
- The fully qualified name of the tag on which privileges will be granted.
148
+ The fully qualified name of the tag on which privileges will be granted. For more information about this resource, see docs.
149
149
  """
150
150
  return pulumi.get(self, "on_tag")
151
151
 
@@ -157,7 +157,7 @@ class GrantPrivilegesToShareArgs:
157
157
  @pulumi.getter(name="onView")
158
158
  def on_view(self) -> Optional[pulumi.Input[str]]:
159
159
  """
160
- The fully qualified name of the view on which privileges will be granted.
160
+ The fully qualified name of the view on which privileges will be granted. For more information about this resource, see docs.
161
161
  """
162
162
  return pulumi.get(self, "on_view")
163
163
 
@@ -181,14 +181,14 @@ class _GrantPrivilegesToShareState:
181
181
  """
182
182
  Input properties used for looking up and filtering GrantPrivilegesToShare resources.
183
183
  :param pulumi.Input[str] on_all_tables_in_schema: The fully qualified identifier for the schema for which the specified privilege will be granted for all tables.
184
- :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted.
184
+ :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
185
185
  :param pulumi.Input[str] on_function: The fully qualified name of the function on which privileges will be granted.
186
- :param pulumi.Input[str] on_schema: The fully qualified name of the schema on which privileges will be granted.
187
- :param pulumi.Input[str] on_table: The fully qualified name of the table on which privileges will be granted.
188
- :param pulumi.Input[str] on_tag: The fully qualified name of the tag on which privileges will be granted.
189
- :param pulumi.Input[str] on_view: The fully qualified name of the view on which privileges will be granted.
186
+ :param pulumi.Input[str] on_schema: The fully qualified name of the schema on which privileges will be granted. For more information about this resource, see docs.
187
+ :param pulumi.Input[str] on_table: The fully qualified name of the table on which privileges will be granted. For more information about this resource, see docs.
188
+ :param pulumi.Input[str] on_tag: The fully qualified name of the tag on which privileges will be granted. For more information about this resource, see docs.
189
+ :param pulumi.Input[str] on_view: The fully qualified name of the view on which privileges will be granted. For more information about this resource, see docs.
190
190
  :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the share. See available list of privileges: https://docs.snowflake.com/en/sql-reference/sql/grant-privilege-share#syntax
191
- :param pulumi.Input[str] to_share: The fully qualified name of the share on which privileges will be granted.
191
+ :param pulumi.Input[str] to_share: The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
192
192
  """
193
193
  if on_all_tables_in_schema is not None:
194
194
  pulumi.set(__self__, "on_all_tables_in_schema", on_all_tables_in_schema)
@@ -225,7 +225,7 @@ class _GrantPrivilegesToShareState:
225
225
  @pulumi.getter(name="onDatabase")
226
226
  def on_database(self) -> Optional[pulumi.Input[str]]:
227
227
  """
228
- The fully qualified name of the database on which privileges will be granted.
228
+ The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
229
229
  """
230
230
  return pulumi.get(self, "on_database")
231
231
 
@@ -249,7 +249,7 @@ class _GrantPrivilegesToShareState:
249
249
  @pulumi.getter(name="onSchema")
250
250
  def on_schema(self) -> Optional[pulumi.Input[str]]:
251
251
  """
252
- The fully qualified name of the schema on which privileges will be granted.
252
+ The fully qualified name of the schema on which privileges will be granted. For more information about this resource, see docs.
253
253
  """
254
254
  return pulumi.get(self, "on_schema")
255
255
 
@@ -261,7 +261,7 @@ class _GrantPrivilegesToShareState:
261
261
  @pulumi.getter(name="onTable")
262
262
  def on_table(self) -> Optional[pulumi.Input[str]]:
263
263
  """
264
- The fully qualified name of the table on which privileges will be granted.
264
+ The fully qualified name of the table on which privileges will be granted. For more information about this resource, see docs.
265
265
  """
266
266
  return pulumi.get(self, "on_table")
267
267
 
@@ -273,7 +273,7 @@ class _GrantPrivilegesToShareState:
273
273
  @pulumi.getter(name="onTag")
274
274
  def on_tag(self) -> Optional[pulumi.Input[str]]:
275
275
  """
276
- The fully qualified name of the tag on which privileges will be granted.
276
+ The fully qualified name of the tag on which privileges will be granted. For more information about this resource, see docs.
277
277
  """
278
278
  return pulumi.get(self, "on_tag")
279
279
 
@@ -285,7 +285,7 @@ class _GrantPrivilegesToShareState:
285
285
  @pulumi.getter(name="onView")
286
286
  def on_view(self) -> Optional[pulumi.Input[str]]:
287
287
  """
288
- The fully qualified name of the view on which privileges will be granted.
288
+ The fully qualified name of the view on which privileges will be granted. For more information about this resource, see docs.
289
289
  """
290
290
  return pulumi.get(self, "on_view")
291
291
 
@@ -309,7 +309,7 @@ class _GrantPrivilegesToShareState:
309
309
  @pulumi.getter(name="toShare")
310
310
  def to_share(self) -> Optional[pulumi.Input[str]]:
311
311
  """
312
- The fully qualified name of the share on which privileges will be granted.
312
+ The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
313
313
  """
314
314
  return pulumi.get(self, "to_share")
315
315
 
@@ -345,14 +345,14 @@ class GrantPrivilegesToShare(pulumi.CustomResource):
345
345
  :param str resource_name: The name of the resource.
346
346
  :param pulumi.ResourceOptions opts: Options for the resource.
347
347
  :param pulumi.Input[str] on_all_tables_in_schema: The fully qualified identifier for the schema for which the specified privilege will be granted for all tables.
348
- :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted.
348
+ :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
349
349
  :param pulumi.Input[str] on_function: The fully qualified name of the function on which privileges will be granted.
350
- :param pulumi.Input[str] on_schema: The fully qualified name of the schema on which privileges will be granted.
351
- :param pulumi.Input[str] on_table: The fully qualified name of the table on which privileges will be granted.
352
- :param pulumi.Input[str] on_tag: The fully qualified name of the tag on which privileges will be granted.
353
- :param pulumi.Input[str] on_view: The fully qualified name of the view on which privileges will be granted.
350
+ :param pulumi.Input[str] on_schema: The fully qualified name of the schema on which privileges will be granted. For more information about this resource, see docs.
351
+ :param pulumi.Input[str] on_table: The fully qualified name of the table on which privileges will be granted. For more information about this resource, see docs.
352
+ :param pulumi.Input[str] on_tag: The fully qualified name of the tag on which privileges will be granted. For more information about this resource, see docs.
353
+ :param pulumi.Input[str] on_view: The fully qualified name of the view on which privileges will be granted. For more information about this resource, see docs.
354
354
  :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the share. See available list of privileges: https://docs.snowflake.com/en/sql-reference/sql/grant-privilege-share#syntax
355
- :param pulumi.Input[str] to_share: The fully qualified name of the share on which privileges will be granted.
355
+ :param pulumi.Input[str] to_share: The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
356
356
  """
357
357
  ...
358
358
  @overload
@@ -442,14 +442,14 @@ class GrantPrivilegesToShare(pulumi.CustomResource):
442
442
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
443
443
  :param pulumi.ResourceOptions opts: Options for the resource.
444
444
  :param pulumi.Input[str] on_all_tables_in_schema: The fully qualified identifier for the schema for which the specified privilege will be granted for all tables.
445
- :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted.
445
+ :param pulumi.Input[str] on_database: The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
446
446
  :param pulumi.Input[str] on_function: The fully qualified name of the function on which privileges will be granted.
447
- :param pulumi.Input[str] on_schema: The fully qualified name of the schema on which privileges will be granted.
448
- :param pulumi.Input[str] on_table: The fully qualified name of the table on which privileges will be granted.
449
- :param pulumi.Input[str] on_tag: The fully qualified name of the tag on which privileges will be granted.
450
- :param pulumi.Input[str] on_view: The fully qualified name of the view on which privileges will be granted.
447
+ :param pulumi.Input[str] on_schema: The fully qualified name of the schema on which privileges will be granted. For more information about this resource, see docs.
448
+ :param pulumi.Input[str] on_table: The fully qualified name of the table on which privileges will be granted. For more information about this resource, see docs.
449
+ :param pulumi.Input[str] on_tag: The fully qualified name of the tag on which privileges will be granted. For more information about this resource, see docs.
450
+ :param pulumi.Input[str] on_view: The fully qualified name of the view on which privileges will be granted. For more information about this resource, see docs.
451
451
  :param pulumi.Input[Sequence[pulumi.Input[str]]] privileges: The privileges to grant on the share. See available list of privileges: https://docs.snowflake.com/en/sql-reference/sql/grant-privilege-share#syntax
452
- :param pulumi.Input[str] to_share: The fully qualified name of the share on which privileges will be granted.
452
+ :param pulumi.Input[str] to_share: The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
453
453
  """
454
454
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
455
455
 
@@ -478,7 +478,7 @@ class GrantPrivilegesToShare(pulumi.CustomResource):
478
478
  @pulumi.getter(name="onDatabase")
479
479
  def on_database(self) -> pulumi.Output[Optional[str]]:
480
480
  """
481
- The fully qualified name of the database on which privileges will be granted.
481
+ The fully qualified name of the database on which privileges will be granted. For more information about this resource, see docs.
482
482
  """
483
483
  return pulumi.get(self, "on_database")
484
484
 
@@ -494,7 +494,7 @@ class GrantPrivilegesToShare(pulumi.CustomResource):
494
494
  @pulumi.getter(name="onSchema")
495
495
  def on_schema(self) -> pulumi.Output[Optional[str]]:
496
496
  """
497
- The fully qualified name of the schema on which privileges will be granted.
497
+ The fully qualified name of the schema on which privileges will be granted. For more information about this resource, see docs.
498
498
  """
499
499
  return pulumi.get(self, "on_schema")
500
500
 
@@ -502,7 +502,7 @@ class GrantPrivilegesToShare(pulumi.CustomResource):
502
502
  @pulumi.getter(name="onTable")
503
503
  def on_table(self) -> pulumi.Output[Optional[str]]:
504
504
  """
505
- The fully qualified name of the table on which privileges will be granted.
505
+ The fully qualified name of the table on which privileges will be granted. For more information about this resource, see docs.
506
506
  """
507
507
  return pulumi.get(self, "on_table")
508
508
 
@@ -510,7 +510,7 @@ class GrantPrivilegesToShare(pulumi.CustomResource):
510
510
  @pulumi.getter(name="onTag")
511
511
  def on_tag(self) -> pulumi.Output[Optional[str]]:
512
512
  """
513
- The fully qualified name of the tag on which privileges will be granted.
513
+ The fully qualified name of the tag on which privileges will be granted. For more information about this resource, see docs.
514
514
  """
515
515
  return pulumi.get(self, "on_tag")
516
516
 
@@ -518,7 +518,7 @@ class GrantPrivilegesToShare(pulumi.CustomResource):
518
518
  @pulumi.getter(name="onView")
519
519
  def on_view(self) -> pulumi.Output[Optional[str]]:
520
520
  """
521
- The fully qualified name of the view on which privileges will be granted.
521
+ The fully qualified name of the view on which privileges will be granted. For more information about this resource, see docs.
522
522
  """
523
523
  return pulumi.get(self, "on_view")
524
524
 
@@ -534,7 +534,7 @@ class GrantPrivilegesToShare(pulumi.CustomResource):
534
534
  @pulumi.getter(name="toShare")
535
535
  def to_share(self) -> pulumi.Output[str]:
536
536
  """
537
- The fully qualified name of the share on which privileges will be granted.
537
+ The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
538
538
  """
539
539
  return pulumi.get(self, "to_share")
540
540