pulumi-snowflake 2.3.0a1752907264__py3-none-any.whl → 2.3.0a1753398370__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 (157) hide show
  1. pulumi_snowflake/__init__.py +1 -1
  2. pulumi_snowflake/_inputs.py +16796 -16797
  3. pulumi_snowflake/account.py +252 -253
  4. pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
  5. pulumi_snowflake/account_parameter.py +35 -36
  6. pulumi_snowflake/account_password_policy_attachment.py +18 -19
  7. pulumi_snowflake/account_role.py +42 -43
  8. pulumi_snowflake/alert.py +149 -150
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
  12. pulumi_snowflake/api_integration.py +251 -252
  13. pulumi_snowflake/authentication_policy.py +167 -168
  14. pulumi_snowflake/compute_pool.py +167 -168
  15. pulumi_snowflake/config/__init__.py +1 -1
  16. pulumi_snowflake/config/__init__.pyi +1 -2
  17. pulumi_snowflake/config/outputs.py +21 -22
  18. pulumi_snowflake/config/vars.py +43 -44
  19. pulumi_snowflake/cortex_search_service.py +191 -192
  20. pulumi_snowflake/current_account.py +2088 -2089
  21. pulumi_snowflake/database.py +353 -354
  22. pulumi_snowflake/database_role.py +63 -64
  23. pulumi_snowflake/dynamic_table.py +274 -275
  24. pulumi_snowflake/email_notification_integration.py +70 -71
  25. pulumi_snowflake/execute.py +61 -62
  26. pulumi_snowflake/external_function.py +280 -281
  27. pulumi_snowflake/external_oauth_integration.py +288 -289
  28. pulumi_snowflake/external_table.py +246 -247
  29. pulumi_snowflake/external_volume.py +68 -69
  30. pulumi_snowflake/failover_group.py +135 -136
  31. pulumi_snowflake/file_format.py +622 -623
  32. pulumi_snowflake/function_java.py +320 -321
  33. pulumi_snowflake/function_javascript.py +243 -244
  34. pulumi_snowflake/function_python.py +334 -335
  35. pulumi_snowflake/function_scala.py +320 -321
  36. pulumi_snowflake/function_sql.py +226 -227
  37. pulumi_snowflake/get_account_roles.py +16 -17
  38. pulumi_snowflake/get_accounts.py +16 -17
  39. pulumi_snowflake/get_alerts.py +22 -23
  40. pulumi_snowflake/get_compute_pools.py +23 -24
  41. pulumi_snowflake/get_connections.py +10 -11
  42. pulumi_snowflake/get_cortex_search_services.py +18 -19
  43. pulumi_snowflake/get_current_account.py +9 -10
  44. pulumi_snowflake/get_current_role.py +5 -6
  45. pulumi_snowflake/get_database.py +25 -26
  46. pulumi_snowflake/get_database_role.py +19 -20
  47. pulumi_snowflake/get_database_roles.py +17 -18
  48. pulumi_snowflake/get_databases.py +29 -30
  49. pulumi_snowflake/get_dynamic_tables.py +13 -14
  50. pulumi_snowflake/get_external_functions.py +16 -17
  51. pulumi_snowflake/get_external_tables.py +16 -17
  52. pulumi_snowflake/get_failover_groups.py +10 -11
  53. pulumi_snowflake/get_file_formats.py +16 -17
  54. pulumi_snowflake/get_functions.py +16 -17
  55. pulumi_snowflake/get_git_repositories.py +18 -19
  56. pulumi_snowflake/get_grants.py +9 -10
  57. pulumi_snowflake/get_image_repositories.py +11 -12
  58. pulumi_snowflake/get_masking_policies.py +18 -19
  59. pulumi_snowflake/get_materialized_views.py +16 -17
  60. pulumi_snowflake/get_network_policies.py +16 -17
  61. pulumi_snowflake/get_parameters.py +34 -35
  62. pulumi_snowflake/get_pipes.py +16 -17
  63. pulumi_snowflake/get_procedures.py +16 -17
  64. pulumi_snowflake/get_resource_monitors.py +10 -11
  65. pulumi_snowflake/get_row_access_policies.py +18 -19
  66. pulumi_snowflake/get_schemas.py +30 -31
  67. pulumi_snowflake/get_secrets.py +17 -18
  68. pulumi_snowflake/get_security_integrations.py +16 -17
  69. pulumi_snowflake/get_sequences.py +16 -17
  70. pulumi_snowflake/get_services.py +30 -31
  71. pulumi_snowflake/get_shares.py +10 -11
  72. pulumi_snowflake/get_stages.py +16 -17
  73. pulumi_snowflake/get_storage_integrations.py +4 -5
  74. pulumi_snowflake/get_streamlits.py +18 -19
  75. pulumi_snowflake/get_streams.py +24 -25
  76. pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
  77. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
  78. pulumi_snowflake/get_system_get_private_link_config.py +21 -22
  79. pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
  80. pulumi_snowflake/get_tables.py +24 -25
  81. pulumi_snowflake/get_tags.py +11 -12
  82. pulumi_snowflake/get_tasks.py +30 -31
  83. pulumi_snowflake/get_users.py +29 -30
  84. pulumi_snowflake/get_views.py +24 -25
  85. pulumi_snowflake/get_warehouses.py +22 -23
  86. pulumi_snowflake/git_repository.py +133 -134
  87. pulumi_snowflake/grant_account_role.py +52 -53
  88. pulumi_snowflake/grant_application_role.py +52 -53
  89. pulumi_snowflake/grant_database_role.py +69 -70
  90. pulumi_snowflake/grant_ownership.py +55 -56
  91. pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
  92. pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
  93. pulumi_snowflake/grant_privileges_to_share.py +154 -155
  94. pulumi_snowflake/image_repository.py +80 -81
  95. pulumi_snowflake/job_service.py +148 -149
  96. pulumi_snowflake/legacy_service_user.py +1269 -1270
  97. pulumi_snowflake/managed_account.py +140 -141
  98. pulumi_snowflake/masking_policy.py +136 -137
  99. pulumi_snowflake/materialized_view.py +149 -150
  100. pulumi_snowflake/network_policy.py +116 -117
  101. pulumi_snowflake/network_policy_attachment.py +52 -53
  102. pulumi_snowflake/network_rule.py +129 -130
  103. pulumi_snowflake/notification_integration.py +298 -299
  104. pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
  105. pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
  106. pulumi_snowflake/object_parameter.py +72 -73
  107. pulumi_snowflake/outputs.py +15510 -15511
  108. pulumi_snowflake/password_policy.py +299 -300
  109. pulumi_snowflake/pipe.py +181 -182
  110. pulumi_snowflake/primary_connection.py +70 -71
  111. pulumi_snowflake/procedure_java.py +341 -342
  112. pulumi_snowflake/procedure_javascript.py +247 -248
  113. pulumi_snowflake/procedure_python.py +338 -339
  114. pulumi_snowflake/procedure_scala.py +341 -342
  115. pulumi_snowflake/procedure_sql.py +247 -248
  116. pulumi_snowflake/provider.py +377 -378
  117. pulumi_snowflake/pulumi-plugin.json +1 -1
  118. pulumi_snowflake/resource_monitor.py +165 -166
  119. pulumi_snowflake/row_access_policy.py +102 -103
  120. pulumi_snowflake/saml2_integration.py +303 -304
  121. pulumi_snowflake/schema.py +390 -391
  122. pulumi_snowflake/scim_integration.py +133 -134
  123. pulumi_snowflake/secondary_connection.py +72 -73
  124. pulumi_snowflake/secondary_database.py +350 -351
  125. pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
  126. pulumi_snowflake/secret_with_basic_authentication.py +121 -122
  127. pulumi_snowflake/secret_with_client_credentials.py +125 -126
  128. pulumi_snowflake/secret_with_generic_string.py +104 -105
  129. pulumi_snowflake/sequence.py +121 -122
  130. pulumi_snowflake/service.py +233 -234
  131. pulumi_snowflake/service_user.py +1239 -1240
  132. pulumi_snowflake/share.py +61 -62
  133. pulumi_snowflake/shared_database.py +299 -300
  134. pulumi_snowflake/stage.py +234 -235
  135. pulumi_snowflake/storage_integration.py +230 -231
  136. pulumi_snowflake/stream_on_directory_table.py +128 -129
  137. pulumi_snowflake/stream_on_external_table.py +151 -152
  138. pulumi_snowflake/stream_on_table.py +164 -165
  139. pulumi_snowflake/stream_on_view.py +164 -165
  140. pulumi_snowflake/streamlit.py +184 -185
  141. pulumi_snowflake/table.py +147 -148
  142. pulumi_snowflake/table_column_masking_policy_application.py +52 -53
  143. pulumi_snowflake/table_constraint.py +191 -192
  144. pulumi_snowflake/tag.py +114 -115
  145. pulumi_snowflake/tag_association.py +86 -87
  146. pulumi_snowflake/task.py +1224 -1225
  147. pulumi_snowflake/user.py +1346 -1347
  148. pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
  149. pulumi_snowflake/user_password_policy_attachment.py +35 -36
  150. pulumi_snowflake/user_public_keys.py +52 -53
  151. pulumi_snowflake/view.py +187 -188
  152. pulumi_snowflake/warehouse.py +286 -287
  153. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
  154. pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
  155. pulumi_snowflake-2.3.0a1752907264.dist-info/RECORD +0 -158
  156. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
  157. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -22,27 +21,27 @@ __all__ = ['GrantPrivilegesToAccountRoleArgs', 'GrantPrivilegesToAccountRole']
22
21
  @pulumi.input_type
23
22
  class GrantPrivilegesToAccountRoleArgs:
24
23
  def __init__(__self__, *,
25
- account_role_name: pulumi.Input[builtins.str],
26
- all_privileges: Optional[pulumi.Input[builtins.bool]] = None,
27
- always_apply: Optional[pulumi.Input[builtins.bool]] = None,
28
- always_apply_trigger: Optional[pulumi.Input[builtins.str]] = None,
29
- on_account: Optional[pulumi.Input[builtins.bool]] = None,
24
+ account_role_name: pulumi.Input[_builtins.str],
25
+ all_privileges: Optional[pulumi.Input[_builtins.bool]] = None,
26
+ always_apply: Optional[pulumi.Input[_builtins.bool]] = None,
27
+ always_apply_trigger: Optional[pulumi.Input[_builtins.str]] = None,
28
+ on_account: Optional[pulumi.Input[_builtins.bool]] = None,
30
29
  on_account_object: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs']] = None,
31
30
  on_schema: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs']] = None,
32
31
  on_schema_object: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs']] = None,
33
- privileges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
34
- with_grant_option: Optional[pulumi.Input[builtins.bool]] = None):
32
+ privileges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
33
+ with_grant_option: Optional[pulumi.Input[_builtins.bool]] = None):
35
34
  """
36
35
  The set of arguments for constructing a GrantPrivilegesToAccountRole resource.
37
- :param pulumi.Input[builtins.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.
38
- :param pulumi.Input[builtins.bool] all_privileges: (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
39
- :param pulumi.Input[builtins.str] always_apply_trigger: (Default: ``) 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.
40
- :param pulumi.Input[builtins.bool] on_account: (Default: `false`) If true, the privileges will be granted on the account.
36
+ :param pulumi.Input[_builtins.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
+ :param pulumi.Input[_builtins.bool] all_privileges: (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
38
+ :param pulumi.Input[_builtins.str] always_apply_trigger: (Default: ``) 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
+ :param pulumi.Input[_builtins.bool] on_account: (Default: `false`) If true, the privileges will be granted on the account.
41
40
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs'] on_account_object: Specifies the account object on which privileges will be granted
42
41
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs'] on_schema: Specifies the schema on which privileges will be granted.
43
42
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs'] on_schema_object: Specifies the schema object on which privileges will be granted.
44
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
45
- :param pulumi.Input[builtins.bool] with_grant_option: (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
43
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
44
+ :param pulumi.Input[_builtins.bool] with_grant_option: (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
46
45
  """
47
46
  pulumi.set(__self__, "account_role_name", account_role_name)
48
47
  if all_privileges is not None:
@@ -64,64 +63,64 @@ class GrantPrivilegesToAccountRoleArgs:
64
63
  if with_grant_option is not None:
65
64
  pulumi.set(__self__, "with_grant_option", with_grant_option)
66
65
 
67
- @property
66
+ @_builtins.property
68
67
  @pulumi.getter(name="accountRoleName")
69
- def account_role_name(self) -> pulumi.Input[builtins.str]:
68
+ def account_role_name(self) -> pulumi.Input[_builtins.str]:
70
69
  """
71
70
  The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
72
71
  """
73
72
  return pulumi.get(self, "account_role_name")
74
73
 
75
74
  @account_role_name.setter
76
- def account_role_name(self, value: pulumi.Input[builtins.str]):
75
+ def account_role_name(self, value: pulumi.Input[_builtins.str]):
77
76
  pulumi.set(self, "account_role_name", value)
78
77
 
79
- @property
78
+ @_builtins.property
80
79
  @pulumi.getter(name="allPrivileges")
81
- def all_privileges(self) -> Optional[pulumi.Input[builtins.bool]]:
80
+ def all_privileges(self) -> Optional[pulumi.Input[_builtins.bool]]:
82
81
  """
83
82
  (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
84
83
  """
85
84
  return pulumi.get(self, "all_privileges")
86
85
 
87
86
  @all_privileges.setter
88
- def all_privileges(self, value: Optional[pulumi.Input[builtins.bool]]):
87
+ def all_privileges(self, value: Optional[pulumi.Input[_builtins.bool]]):
89
88
  pulumi.set(self, "all_privileges", value)
90
89
 
91
- @property
90
+ @_builtins.property
92
91
  @pulumi.getter(name="alwaysApply")
93
- def always_apply(self) -> Optional[pulumi.Input[builtins.bool]]:
92
+ def always_apply(self) -> Optional[pulumi.Input[_builtins.bool]]:
94
93
  return pulumi.get(self, "always_apply")
95
94
 
96
95
  @always_apply.setter
97
- def always_apply(self, value: Optional[pulumi.Input[builtins.bool]]):
96
+ def always_apply(self, value: Optional[pulumi.Input[_builtins.bool]]):
98
97
  pulumi.set(self, "always_apply", value)
99
98
 
100
- @property
99
+ @_builtins.property
101
100
  @pulumi.getter(name="alwaysApplyTrigger")
102
- def always_apply_trigger(self) -> Optional[pulumi.Input[builtins.str]]:
101
+ def always_apply_trigger(self) -> Optional[pulumi.Input[_builtins.str]]:
103
102
  """
104
103
  (Default: ``) 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.
105
104
  """
106
105
  return pulumi.get(self, "always_apply_trigger")
107
106
 
108
107
  @always_apply_trigger.setter
109
- def always_apply_trigger(self, value: Optional[pulumi.Input[builtins.str]]):
108
+ def always_apply_trigger(self, value: Optional[pulumi.Input[_builtins.str]]):
110
109
  pulumi.set(self, "always_apply_trigger", value)
111
110
 
112
- @property
111
+ @_builtins.property
113
112
  @pulumi.getter(name="onAccount")
114
- def on_account(self) -> Optional[pulumi.Input[builtins.bool]]:
113
+ def on_account(self) -> Optional[pulumi.Input[_builtins.bool]]:
115
114
  """
116
115
  (Default: `false`) If true, the privileges will be granted on the account.
117
116
  """
118
117
  return pulumi.get(self, "on_account")
119
118
 
120
119
  @on_account.setter
121
- def on_account(self, value: Optional[pulumi.Input[builtins.bool]]):
120
+ def on_account(self, value: Optional[pulumi.Input[_builtins.bool]]):
122
121
  pulumi.set(self, "on_account", value)
123
122
 
124
- @property
123
+ @_builtins.property
125
124
  @pulumi.getter(name="onAccountObject")
126
125
  def on_account_object(self) -> Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs']]:
127
126
  """
@@ -133,7 +132,7 @@ class GrantPrivilegesToAccountRoleArgs:
133
132
  def on_account_object(self, value: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs']]):
134
133
  pulumi.set(self, "on_account_object", value)
135
134
 
136
- @property
135
+ @_builtins.property
137
136
  @pulumi.getter(name="onSchema")
138
137
  def on_schema(self) -> Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs']]:
139
138
  """
@@ -145,7 +144,7 @@ class GrantPrivilegesToAccountRoleArgs:
145
144
  def on_schema(self, value: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs']]):
146
145
  pulumi.set(self, "on_schema", value)
147
146
 
148
- @property
147
+ @_builtins.property
149
148
  @pulumi.getter(name="onSchemaObject")
150
149
  def on_schema_object(self) -> Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs']]:
151
150
  """
@@ -157,55 +156,55 @@ class GrantPrivilegesToAccountRoleArgs:
157
156
  def on_schema_object(self, value: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs']]):
158
157
  pulumi.set(self, "on_schema_object", value)
159
158
 
160
- @property
159
+ @_builtins.property
161
160
  @pulumi.getter
162
- def privileges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
161
+ def privileges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
163
162
  """
164
163
  The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
165
164
  """
166
165
  return pulumi.get(self, "privileges")
167
166
 
168
167
  @privileges.setter
169
- def privileges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
168
+ def privileges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
170
169
  pulumi.set(self, "privileges", value)
171
170
 
172
- @property
171
+ @_builtins.property
173
172
  @pulumi.getter(name="withGrantOption")
174
- def with_grant_option(self) -> Optional[pulumi.Input[builtins.bool]]:
173
+ def with_grant_option(self) -> Optional[pulumi.Input[_builtins.bool]]:
175
174
  """
176
175
  (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
177
176
  """
178
177
  return pulumi.get(self, "with_grant_option")
179
178
 
180
179
  @with_grant_option.setter
181
- def with_grant_option(self, value: Optional[pulumi.Input[builtins.bool]]):
180
+ def with_grant_option(self, value: Optional[pulumi.Input[_builtins.bool]]):
182
181
  pulumi.set(self, "with_grant_option", value)
183
182
 
184
183
 
185
184
  @pulumi.input_type
186
185
  class _GrantPrivilegesToAccountRoleState:
187
186
  def __init__(__self__, *,
188
- account_role_name: Optional[pulumi.Input[builtins.str]] = None,
189
- all_privileges: Optional[pulumi.Input[builtins.bool]] = None,
190
- always_apply: Optional[pulumi.Input[builtins.bool]] = None,
191
- always_apply_trigger: Optional[pulumi.Input[builtins.str]] = None,
192
- on_account: Optional[pulumi.Input[builtins.bool]] = None,
187
+ account_role_name: Optional[pulumi.Input[_builtins.str]] = None,
188
+ all_privileges: Optional[pulumi.Input[_builtins.bool]] = None,
189
+ always_apply: Optional[pulumi.Input[_builtins.bool]] = None,
190
+ always_apply_trigger: Optional[pulumi.Input[_builtins.str]] = None,
191
+ on_account: Optional[pulumi.Input[_builtins.bool]] = None,
193
192
  on_account_object: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs']] = None,
194
193
  on_schema: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs']] = None,
195
194
  on_schema_object: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs']] = None,
196
- privileges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
197
- with_grant_option: Optional[pulumi.Input[builtins.bool]] = None):
195
+ privileges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
196
+ with_grant_option: Optional[pulumi.Input[_builtins.bool]] = None):
198
197
  """
199
198
  Input properties used for looking up and filtering GrantPrivilegesToAccountRole resources.
200
- :param pulumi.Input[builtins.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.
201
- :param pulumi.Input[builtins.bool] all_privileges: (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
202
- :param pulumi.Input[builtins.str] always_apply_trigger: (Default: ``) 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.
203
- :param pulumi.Input[builtins.bool] on_account: (Default: `false`) If true, the privileges will be granted on the account.
199
+ :param pulumi.Input[_builtins.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
+ :param pulumi.Input[_builtins.bool] all_privileges: (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
201
+ :param pulumi.Input[_builtins.str] always_apply_trigger: (Default: ``) 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
+ :param pulumi.Input[_builtins.bool] on_account: (Default: `false`) If true, the privileges will be granted on the account.
204
203
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs'] on_account_object: Specifies the account object on which privileges will be granted
205
204
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs'] on_schema: Specifies the schema on which privileges will be granted.
206
205
  :param pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs'] on_schema_object: Specifies the schema object on which privileges will be granted.
207
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
208
- :param pulumi.Input[builtins.bool] with_grant_option: (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
206
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
207
+ :param pulumi.Input[_builtins.bool] with_grant_option: (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
209
208
  """
210
209
  if account_role_name is not None:
211
210
  pulumi.set(__self__, "account_role_name", account_role_name)
@@ -228,64 +227,64 @@ class _GrantPrivilegesToAccountRoleState:
228
227
  if with_grant_option is not None:
229
228
  pulumi.set(__self__, "with_grant_option", with_grant_option)
230
229
 
231
- @property
230
+ @_builtins.property
232
231
  @pulumi.getter(name="accountRoleName")
233
- def account_role_name(self) -> Optional[pulumi.Input[builtins.str]]:
232
+ def account_role_name(self) -> Optional[pulumi.Input[_builtins.str]]:
234
233
  """
235
234
  The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
236
235
  """
237
236
  return pulumi.get(self, "account_role_name")
238
237
 
239
238
  @account_role_name.setter
240
- def account_role_name(self, value: Optional[pulumi.Input[builtins.str]]):
239
+ def account_role_name(self, value: Optional[pulumi.Input[_builtins.str]]):
241
240
  pulumi.set(self, "account_role_name", value)
242
241
 
243
- @property
242
+ @_builtins.property
244
243
  @pulumi.getter(name="allPrivileges")
245
- def all_privileges(self) -> Optional[pulumi.Input[builtins.bool]]:
244
+ def all_privileges(self) -> Optional[pulumi.Input[_builtins.bool]]:
246
245
  """
247
246
  (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
248
247
  """
249
248
  return pulumi.get(self, "all_privileges")
250
249
 
251
250
  @all_privileges.setter
252
- def all_privileges(self, value: Optional[pulumi.Input[builtins.bool]]):
251
+ def all_privileges(self, value: Optional[pulumi.Input[_builtins.bool]]):
253
252
  pulumi.set(self, "all_privileges", value)
254
253
 
255
- @property
254
+ @_builtins.property
256
255
  @pulumi.getter(name="alwaysApply")
257
- def always_apply(self) -> Optional[pulumi.Input[builtins.bool]]:
256
+ def always_apply(self) -> Optional[pulumi.Input[_builtins.bool]]:
258
257
  return pulumi.get(self, "always_apply")
259
258
 
260
259
  @always_apply.setter
261
- def always_apply(self, value: Optional[pulumi.Input[builtins.bool]]):
260
+ def always_apply(self, value: Optional[pulumi.Input[_builtins.bool]]):
262
261
  pulumi.set(self, "always_apply", value)
263
262
 
264
- @property
263
+ @_builtins.property
265
264
  @pulumi.getter(name="alwaysApplyTrigger")
266
- def always_apply_trigger(self) -> Optional[pulumi.Input[builtins.str]]:
265
+ def always_apply_trigger(self) -> Optional[pulumi.Input[_builtins.str]]:
267
266
  """
268
267
  (Default: ``) 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.
269
268
  """
270
269
  return pulumi.get(self, "always_apply_trigger")
271
270
 
272
271
  @always_apply_trigger.setter
273
- def always_apply_trigger(self, value: Optional[pulumi.Input[builtins.str]]):
272
+ def always_apply_trigger(self, value: Optional[pulumi.Input[_builtins.str]]):
274
273
  pulumi.set(self, "always_apply_trigger", value)
275
274
 
276
- @property
275
+ @_builtins.property
277
276
  @pulumi.getter(name="onAccount")
278
- def on_account(self) -> Optional[pulumi.Input[builtins.bool]]:
277
+ def on_account(self) -> Optional[pulumi.Input[_builtins.bool]]:
279
278
  """
280
279
  (Default: `false`) If true, the privileges will be granted on the account.
281
280
  """
282
281
  return pulumi.get(self, "on_account")
283
282
 
284
283
  @on_account.setter
285
- def on_account(self, value: Optional[pulumi.Input[builtins.bool]]):
284
+ def on_account(self, value: Optional[pulumi.Input[_builtins.bool]]):
286
285
  pulumi.set(self, "on_account", value)
287
286
 
288
- @property
287
+ @_builtins.property
289
288
  @pulumi.getter(name="onAccountObject")
290
289
  def on_account_object(self) -> Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs']]:
291
290
  """
@@ -297,7 +296,7 @@ class _GrantPrivilegesToAccountRoleState:
297
296
  def on_account_object(self, value: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnAccountObjectArgs']]):
298
297
  pulumi.set(self, "on_account_object", value)
299
298
 
300
- @property
299
+ @_builtins.property
301
300
  @pulumi.getter(name="onSchema")
302
301
  def on_schema(self) -> Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs']]:
303
302
  """
@@ -309,7 +308,7 @@ class _GrantPrivilegesToAccountRoleState:
309
308
  def on_schema(self, value: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaArgs']]):
310
309
  pulumi.set(self, "on_schema", value)
311
310
 
312
- @property
311
+ @_builtins.property
313
312
  @pulumi.getter(name="onSchemaObject")
314
313
  def on_schema_object(self) -> Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs']]:
315
314
  """
@@ -321,28 +320,28 @@ class _GrantPrivilegesToAccountRoleState:
321
320
  def on_schema_object(self, value: Optional[pulumi.Input['GrantPrivilegesToAccountRoleOnSchemaObjectArgs']]):
322
321
  pulumi.set(self, "on_schema_object", value)
323
322
 
324
- @property
323
+ @_builtins.property
325
324
  @pulumi.getter
326
- def privileges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
325
+ def privileges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
327
326
  """
328
327
  The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
329
328
  """
330
329
  return pulumi.get(self, "privileges")
331
330
 
332
331
  @privileges.setter
333
- def privileges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
332
+ def privileges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
334
333
  pulumi.set(self, "privileges", value)
335
334
 
336
- @property
335
+ @_builtins.property
337
336
  @pulumi.getter(name="withGrantOption")
338
- def with_grant_option(self) -> Optional[pulumi.Input[builtins.bool]]:
337
+ def with_grant_option(self) -> Optional[pulumi.Input[_builtins.bool]]:
339
338
  """
340
339
  (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
341
340
  """
342
341
  return pulumi.get(self, "with_grant_option")
343
342
 
344
343
  @with_grant_option.setter
345
- def with_grant_option(self, value: Optional[pulumi.Input[builtins.bool]]):
344
+ def with_grant_option(self, value: Optional[pulumi.Input[_builtins.bool]]):
346
345
  pulumi.set(self, "with_grant_option", value)
347
346
 
348
347
 
@@ -352,16 +351,16 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
352
351
  def __init__(__self__,
353
352
  resource_name: str,
354
353
  opts: Optional[pulumi.ResourceOptions] = None,
355
- account_role_name: Optional[pulumi.Input[builtins.str]] = None,
356
- all_privileges: Optional[pulumi.Input[builtins.bool]] = None,
357
- always_apply: Optional[pulumi.Input[builtins.bool]] = None,
358
- always_apply_trigger: Optional[pulumi.Input[builtins.str]] = None,
359
- on_account: Optional[pulumi.Input[builtins.bool]] = None,
354
+ account_role_name: Optional[pulumi.Input[_builtins.str]] = None,
355
+ all_privileges: Optional[pulumi.Input[_builtins.bool]] = None,
356
+ always_apply: Optional[pulumi.Input[_builtins.bool]] = None,
357
+ always_apply_trigger: Optional[pulumi.Input[_builtins.str]] = None,
358
+ on_account: Optional[pulumi.Input[_builtins.bool]] = None,
360
359
  on_account_object: Optional[pulumi.Input[Union['GrantPrivilegesToAccountRoleOnAccountObjectArgs', 'GrantPrivilegesToAccountRoleOnAccountObjectArgsDict']]] = None,
361
360
  on_schema: Optional[pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaArgs', 'GrantPrivilegesToAccountRoleOnSchemaArgsDict']]] = None,
362
361
  on_schema_object: Optional[pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaObjectArgs', 'GrantPrivilegesToAccountRoleOnSchemaObjectArgsDict']]] = None,
363
- privileges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
364
- with_grant_option: Optional[pulumi.Input[builtins.bool]] = None,
362
+ privileges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
363
+ with_grant_option: Optional[pulumi.Input[_builtins.bool]] = None,
365
364
  __props__=None):
366
365
  """
367
366
  ## Import
@@ -394,15 +393,15 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
394
393
 
395
394
  :param str resource_name: The name of the resource.
396
395
  :param pulumi.ResourceOptions opts: Options for the resource.
397
- :param pulumi.Input[builtins.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.
398
- :param pulumi.Input[builtins.bool] all_privileges: (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
399
- :param pulumi.Input[builtins.str] always_apply_trigger: (Default: ``) 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.
400
- :param pulumi.Input[builtins.bool] on_account: (Default: `false`) If true, the privileges will be granted on the account.
396
+ :param pulumi.Input[_builtins.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.
397
+ :param pulumi.Input[_builtins.bool] all_privileges: (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
398
+ :param pulumi.Input[_builtins.str] always_apply_trigger: (Default: ``) 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.
399
+ :param pulumi.Input[_builtins.bool] on_account: (Default: `false`) If true, the privileges will be granted on the account.
401
400
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnAccountObjectArgs', 'GrantPrivilegesToAccountRoleOnAccountObjectArgsDict']] on_account_object: Specifies the account object on which privileges will be granted
402
401
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaArgs', 'GrantPrivilegesToAccountRoleOnSchemaArgsDict']] on_schema: Specifies the schema on which privileges will be granted.
403
402
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaObjectArgs', 'GrantPrivilegesToAccountRoleOnSchemaObjectArgsDict']] on_schema_object: Specifies the schema object on which privileges will be granted.
404
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
405
- :param pulumi.Input[builtins.bool] with_grant_option: (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
403
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
404
+ :param pulumi.Input[_builtins.bool] with_grant_option: (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
406
405
  """
407
406
  ...
408
407
  @overload
@@ -454,16 +453,16 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
454
453
  def _internal_init(__self__,
455
454
  resource_name: str,
456
455
  opts: Optional[pulumi.ResourceOptions] = None,
457
- account_role_name: Optional[pulumi.Input[builtins.str]] = None,
458
- all_privileges: Optional[pulumi.Input[builtins.bool]] = None,
459
- always_apply: Optional[pulumi.Input[builtins.bool]] = None,
460
- always_apply_trigger: Optional[pulumi.Input[builtins.str]] = None,
461
- on_account: Optional[pulumi.Input[builtins.bool]] = None,
456
+ account_role_name: Optional[pulumi.Input[_builtins.str]] = None,
457
+ all_privileges: Optional[pulumi.Input[_builtins.bool]] = None,
458
+ always_apply: Optional[pulumi.Input[_builtins.bool]] = None,
459
+ always_apply_trigger: Optional[pulumi.Input[_builtins.str]] = None,
460
+ on_account: Optional[pulumi.Input[_builtins.bool]] = None,
462
461
  on_account_object: Optional[pulumi.Input[Union['GrantPrivilegesToAccountRoleOnAccountObjectArgs', 'GrantPrivilegesToAccountRoleOnAccountObjectArgsDict']]] = None,
463
462
  on_schema: Optional[pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaArgs', 'GrantPrivilegesToAccountRoleOnSchemaArgsDict']]] = None,
464
463
  on_schema_object: Optional[pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaObjectArgs', 'GrantPrivilegesToAccountRoleOnSchemaObjectArgsDict']]] = None,
465
- privileges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
466
- with_grant_option: Optional[pulumi.Input[builtins.bool]] = None,
464
+ privileges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
465
+ with_grant_option: Optional[pulumi.Input[_builtins.bool]] = None,
467
466
  __props__=None):
468
467
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
469
468
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -495,16 +494,16 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
495
494
  def get(resource_name: str,
496
495
  id: pulumi.Input[str],
497
496
  opts: Optional[pulumi.ResourceOptions] = None,
498
- account_role_name: Optional[pulumi.Input[builtins.str]] = None,
499
- all_privileges: Optional[pulumi.Input[builtins.bool]] = None,
500
- always_apply: Optional[pulumi.Input[builtins.bool]] = None,
501
- always_apply_trigger: Optional[pulumi.Input[builtins.str]] = None,
502
- on_account: Optional[pulumi.Input[builtins.bool]] = None,
497
+ account_role_name: Optional[pulumi.Input[_builtins.str]] = None,
498
+ all_privileges: Optional[pulumi.Input[_builtins.bool]] = None,
499
+ always_apply: Optional[pulumi.Input[_builtins.bool]] = None,
500
+ always_apply_trigger: Optional[pulumi.Input[_builtins.str]] = None,
501
+ on_account: Optional[pulumi.Input[_builtins.bool]] = None,
503
502
  on_account_object: Optional[pulumi.Input[Union['GrantPrivilegesToAccountRoleOnAccountObjectArgs', 'GrantPrivilegesToAccountRoleOnAccountObjectArgsDict']]] = None,
504
503
  on_schema: Optional[pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaArgs', 'GrantPrivilegesToAccountRoleOnSchemaArgsDict']]] = None,
505
504
  on_schema_object: Optional[pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaObjectArgs', 'GrantPrivilegesToAccountRoleOnSchemaObjectArgsDict']]] = None,
506
- privileges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
507
- with_grant_option: Optional[pulumi.Input[builtins.bool]] = None) -> 'GrantPrivilegesToAccountRole':
505
+ privileges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
506
+ with_grant_option: Optional[pulumi.Input[_builtins.bool]] = None) -> 'GrantPrivilegesToAccountRole':
508
507
  """
509
508
  Get an existing GrantPrivilegesToAccountRole resource's state with the given name, id, and optional extra
510
509
  properties used to qualify the lookup.
@@ -512,15 +511,15 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
512
511
  :param str resource_name: The unique name of the resulting resource.
513
512
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
514
513
  :param pulumi.ResourceOptions opts: Options for the resource.
515
- :param pulumi.Input[builtins.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.
516
- :param pulumi.Input[builtins.bool] all_privileges: (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
517
- :param pulumi.Input[builtins.str] always_apply_trigger: (Default: ``) 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.
518
- :param pulumi.Input[builtins.bool] on_account: (Default: `false`) If true, the privileges will be granted on the account.
514
+ :param pulumi.Input[_builtins.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.
515
+ :param pulumi.Input[_builtins.bool] all_privileges: (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
516
+ :param pulumi.Input[_builtins.str] always_apply_trigger: (Default: ``) 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.
517
+ :param pulumi.Input[_builtins.bool] on_account: (Default: `false`) If true, the privileges will be granted on the account.
519
518
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnAccountObjectArgs', 'GrantPrivilegesToAccountRoleOnAccountObjectArgsDict']] on_account_object: Specifies the account object on which privileges will be granted
520
519
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaArgs', 'GrantPrivilegesToAccountRoleOnSchemaArgsDict']] on_schema: Specifies the schema on which privileges will be granted.
521
520
  :param pulumi.Input[Union['GrantPrivilegesToAccountRoleOnSchemaObjectArgs', 'GrantPrivilegesToAccountRoleOnSchemaObjectArgsDict']] on_schema_object: Specifies the schema object on which privileges will be granted.
522
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
523
- :param pulumi.Input[builtins.bool] with_grant_option: (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
521
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] privileges: The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
522
+ :param pulumi.Input[_builtins.bool] with_grant_option: (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
524
523
  """
525
524
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
526
525
 
@@ -538,44 +537,44 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
538
537
  __props__.__dict__["with_grant_option"] = with_grant_option
539
538
  return GrantPrivilegesToAccountRole(resource_name, opts=opts, __props__=__props__)
540
539
 
541
- @property
540
+ @_builtins.property
542
541
  @pulumi.getter(name="accountRoleName")
543
- def account_role_name(self) -> pulumi.Output[builtins.str]:
542
+ def account_role_name(self) -> pulumi.Output[_builtins.str]:
544
543
  """
545
544
  The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
546
545
  """
547
546
  return pulumi.get(self, "account_role_name")
548
547
 
549
- @property
548
+ @_builtins.property
550
549
  @pulumi.getter(name="allPrivileges")
551
- def all_privileges(self) -> pulumi.Output[Optional[builtins.bool]]:
550
+ def all_privileges(self) -> pulumi.Output[Optional[_builtins.bool]]:
552
551
  """
553
552
  (Default: `false`) Grant all privileges on the account role. When all privileges cannot be granted, the provider returns a warning, which is aligned with the Snowsight behavior.
554
553
  """
555
554
  return pulumi.get(self, "all_privileges")
556
555
 
557
- @property
556
+ @_builtins.property
558
557
  @pulumi.getter(name="alwaysApply")
559
- def always_apply(self) -> pulumi.Output[Optional[builtins.bool]]:
558
+ def always_apply(self) -> pulumi.Output[Optional[_builtins.bool]]:
560
559
  return pulumi.get(self, "always_apply")
561
560
 
562
- @property
561
+ @_builtins.property
563
562
  @pulumi.getter(name="alwaysApplyTrigger")
564
- def always_apply_trigger(self) -> pulumi.Output[Optional[builtins.str]]:
563
+ def always_apply_trigger(self) -> pulumi.Output[Optional[_builtins.str]]:
565
564
  """
566
565
  (Default: ``) 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.
567
566
  """
568
567
  return pulumi.get(self, "always_apply_trigger")
569
568
 
570
- @property
569
+ @_builtins.property
571
570
  @pulumi.getter(name="onAccount")
572
- def on_account(self) -> pulumi.Output[Optional[builtins.bool]]:
571
+ def on_account(self) -> pulumi.Output[Optional[_builtins.bool]]:
573
572
  """
574
573
  (Default: `false`) If true, the privileges will be granted on the account.
575
574
  """
576
575
  return pulumi.get(self, "on_account")
577
576
 
578
- @property
577
+ @_builtins.property
579
578
  @pulumi.getter(name="onAccountObject")
580
579
  def on_account_object(self) -> pulumi.Output[Optional['outputs.GrantPrivilegesToAccountRoleOnAccountObject']]:
581
580
  """
@@ -583,7 +582,7 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
583
582
  """
584
583
  return pulumi.get(self, "on_account_object")
585
584
 
586
- @property
585
+ @_builtins.property
587
586
  @pulumi.getter(name="onSchema")
588
587
  def on_schema(self) -> pulumi.Output[Optional['outputs.GrantPrivilegesToAccountRoleOnSchema']]:
589
588
  """
@@ -591,7 +590,7 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
591
590
  """
592
591
  return pulumi.get(self, "on_schema")
593
592
 
594
- @property
593
+ @_builtins.property
595
594
  @pulumi.getter(name="onSchemaObject")
596
595
  def on_schema_object(self) -> pulumi.Output[Optional['outputs.GrantPrivilegesToAccountRoleOnSchemaObject']]:
597
596
  """
@@ -599,17 +598,17 @@ class GrantPrivilegesToAccountRole(pulumi.CustomResource):
599
598
  """
600
599
  return pulumi.get(self, "on_schema_object")
601
600
 
602
- @property
601
+ @_builtins.property
603
602
  @pulumi.getter
604
- def privileges(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
603
+ def privileges(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
605
604
  """
606
605
  The privileges to grant on the account role. This field is case-sensitive; use only upper-case privileges.
607
606
  """
608
607
  return pulumi.get(self, "privileges")
609
608
 
610
- @property
609
+ @_builtins.property
611
610
  @pulumi.getter(name="withGrantOption")
612
- def with_grant_option(self) -> pulumi.Output[Optional[builtins.bool]]:
611
+ def with_grant_option(self) -> pulumi.Output[Optional[_builtins.bool]]:
613
612
  """
614
613
  (Default: `false`) Specifies whether the grantee can grant the privileges to other users.
615
614
  """