pulumi-snowflake 0.63.0a1734439451__py3-none-any.whl → 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-snowflake might be problematic. Click here for more details.

Files changed (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.0.dist-info}/METADATA +1 -1
  113. pulumi_snowflake-1.0.0.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.0.dist-info}/WHEEL +0 -0
  127. {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0.dist-info}/top_level.txt +0 -0
@@ -130,9 +130,7 @@ def get_views(in_: Optional[Union['GetViewsInArgs', 'GetViewsInArgsDict']] = Non
130
130
  with_describe: Optional[bool] = None,
131
131
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetViewsResult:
132
132
  """
133
- !> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
134
-
135
- Datasource used to get details of filtered views. Filtering is aligned with the current possibilities for [SHOW VIEWS](https://docs.snowflake.com/en/sql-reference/sql/show-views) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `views`.
133
+ Data source used to get details of filtered views. Filtering is aligned with the current possibilities for [SHOW VIEWS](https://docs.snowflake.com/en/sql-reference/sql/show-views) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `views`.
136
134
 
137
135
 
138
136
  :param Union['GetViewsInArgs', 'GetViewsInArgsDict'] in_: IN clause to filter the list of views
@@ -165,9 +163,7 @@ def get_views_output(in_: Optional[pulumi.Input[Optional[Union['GetViewsInArgs',
165
163
  with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
166
164
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetViewsResult]:
167
165
  """
168
- !> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
169
-
170
- Datasource used to get details of filtered views. Filtering is aligned with the current possibilities for [SHOW VIEWS](https://docs.snowflake.com/en/sql-reference/sql/show-views) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `views`.
166
+ Data source used to get details of filtered views. Filtering is aligned with the current possibilities for [SHOW VIEWS](https://docs.snowflake.com/en/sql-reference/sql/show-views) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `views`.
171
167
 
172
168
 
173
169
  :param Union['GetViewsInArgs', 'GetViewsInArgsDict'] in_: IN clause to filter the list of views
@@ -103,9 +103,7 @@ def get_warehouses(like: Optional[str] = None,
103
103
  with_parameters: Optional[bool] = None,
104
104
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWarehousesResult:
105
105
  """
106
- !> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
107
-
108
- Datasource used to get details of filtered warehouses. Filtering is aligned with the current possibilities for [SHOW WAREHOUSES](https://docs.snowflake.com/en/sql-reference/sql/show-warehouses) query (only `like` is supported). The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
106
+ Data source used to get details of filtered warehouses. Filtering is aligned with the current possibilities for [SHOW WAREHOUSES](https://docs.snowflake.com/en/sql-reference/sql/show-warehouses) query (only `like` is supported). The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
109
107
 
110
108
 
111
109
  :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
@@ -130,9 +128,7 @@ def get_warehouses_output(like: Optional[pulumi.Input[Optional[str]]] = None,
130
128
  with_parameters: Optional[pulumi.Input[Optional[bool]]] = None,
131
129
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWarehousesResult]:
132
130
  """
133
- !> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
134
-
135
- Datasource used to get details of filtered warehouses. Filtering is aligned with the current possibilities for [SHOW WAREHOUSES](https://docs.snowflake.com/en/sql-reference/sql/show-warehouses) query (only `like` is supported). The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
131
+ Data source used to get details of filtered warehouses. Filtering is aligned with the current possibilities for [SHOW WAREHOUSES](https://docs.snowflake.com/en/sql-reference/sql/show-warehouses) query (only `like` is supported). The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
136
132
 
137
133
 
138
134
  :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
@@ -24,9 +24,9 @@ class GrantAccountRoleArgs:
24
24
  user_name: Optional[pulumi.Input[str]] = None):
25
25
  """
26
26
  The set of arguments for constructing a GrantAccountRole resource.
27
- :param pulumi.Input[str] role_name: The fully qualified name of the role which will be granted to the user or parent role.
28
- :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent role which will create a parent-child relationship between the roles.
29
- :param pulumi.Input[str] user_name: The fully qualified name of the user on which specified role will be granted.
27
+ :param pulumi.Input[str] role_name: The fully qualified name of the role which will be granted to the user or parent role. For more information about this resource, see docs.
28
+ :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
29
+ :param pulumi.Input[str] user_name: The fully qualified name of the user on which specified role will be granted. For more information about this resource, see docs.
30
30
  """
31
31
  pulumi.set(__self__, "role_name", role_name)
32
32
  if parent_role_name is not None:
@@ -38,7 +38,7 @@ class GrantAccountRoleArgs:
38
38
  @pulumi.getter(name="roleName")
39
39
  def role_name(self) -> pulumi.Input[str]:
40
40
  """
41
- The fully qualified name of the role which will be granted to the user or parent role.
41
+ The fully qualified name of the role which will be granted to the user or parent role. For more information about this resource, see docs.
42
42
  """
43
43
  return pulumi.get(self, "role_name")
44
44
 
@@ -50,7 +50,7 @@ class GrantAccountRoleArgs:
50
50
  @pulumi.getter(name="parentRoleName")
51
51
  def parent_role_name(self) -> Optional[pulumi.Input[str]]:
52
52
  """
53
- The fully qualified name of the parent role which will create a parent-child relationship between the roles.
53
+ The fully qualified name of the parent role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
54
54
  """
55
55
  return pulumi.get(self, "parent_role_name")
56
56
 
@@ -62,7 +62,7 @@ class GrantAccountRoleArgs:
62
62
  @pulumi.getter(name="userName")
63
63
  def user_name(self) -> Optional[pulumi.Input[str]]:
64
64
  """
65
- The fully qualified name of the user on which specified role will be granted.
65
+ The fully qualified name of the user on which specified role will be granted. For more information about this resource, see docs.
66
66
  """
67
67
  return pulumi.get(self, "user_name")
68
68
 
@@ -79,9 +79,9 @@ class _GrantAccountRoleState:
79
79
  user_name: Optional[pulumi.Input[str]] = None):
80
80
  """
81
81
  Input properties used for looking up and filtering GrantAccountRole resources.
82
- :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent role which will create a parent-child relationship between the roles.
83
- :param pulumi.Input[str] role_name: The fully qualified name of the role which will be granted to the user or parent role.
84
- :param pulumi.Input[str] user_name: The fully qualified name of the user on which specified role will be granted.
82
+ :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
83
+ :param pulumi.Input[str] role_name: The fully qualified name of the role which will be granted to the user or parent role. For more information about this resource, see docs.
84
+ :param pulumi.Input[str] user_name: The fully qualified name of the user on which specified role will be granted. For more information about this resource, see docs.
85
85
  """
86
86
  if parent_role_name is not None:
87
87
  pulumi.set(__self__, "parent_role_name", parent_role_name)
@@ -94,7 +94,7 @@ class _GrantAccountRoleState:
94
94
  @pulumi.getter(name="parentRoleName")
95
95
  def parent_role_name(self) -> Optional[pulumi.Input[str]]:
96
96
  """
97
- The fully qualified name of the parent role which will create a parent-child relationship between the roles.
97
+ The fully qualified name of the parent role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
98
98
  """
99
99
  return pulumi.get(self, "parent_role_name")
100
100
 
@@ -106,7 +106,7 @@ class _GrantAccountRoleState:
106
106
  @pulumi.getter(name="roleName")
107
107
  def role_name(self) -> Optional[pulumi.Input[str]]:
108
108
  """
109
- The fully qualified name of the role which will be granted to the user or parent role.
109
+ The fully qualified name of the role which will be granted to the user or parent role. For more information about this resource, see docs.
110
110
  """
111
111
  return pulumi.get(self, "role_name")
112
112
 
@@ -118,7 +118,7 @@ class _GrantAccountRoleState:
118
118
  @pulumi.getter(name="userName")
119
119
  def user_name(self) -> Optional[pulumi.Input[str]]:
120
120
  """
121
- The fully qualified name of the user on which specified role will be granted.
121
+ The fully qualified name of the user on which specified role will be granted. For more information about this resource, see docs.
122
122
  """
123
123
  return pulumi.get(self, "user_name")
124
124
 
@@ -147,9 +147,9 @@ class GrantAccountRole(pulumi.CustomResource):
147
147
 
148
148
  :param str resource_name: The name of the resource.
149
149
  :param pulumi.ResourceOptions opts: Options for the resource.
150
- :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent role which will create a parent-child relationship between the roles.
151
- :param pulumi.Input[str] role_name: The fully qualified name of the role which will be granted to the user or parent role.
152
- :param pulumi.Input[str] user_name: The fully qualified name of the user on which specified role will be granted.
150
+ :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
151
+ :param pulumi.Input[str] role_name: The fully qualified name of the role which will be granted to the user or parent role. For more information about this resource, see docs.
152
+ :param pulumi.Input[str] user_name: The fully qualified name of the user on which specified role will be granted. For more information about this resource, see docs.
153
153
  """
154
154
  ...
155
155
  @overload
@@ -218,9 +218,9 @@ class GrantAccountRole(pulumi.CustomResource):
218
218
  :param str resource_name: The unique name of the resulting resource.
219
219
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
220
220
  :param pulumi.ResourceOptions opts: Options for the resource.
221
- :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent role which will create a parent-child relationship between the roles.
222
- :param pulumi.Input[str] role_name: The fully qualified name of the role which will be granted to the user or parent role.
223
- :param pulumi.Input[str] user_name: The fully qualified name of the user on which specified role will be granted.
221
+ :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
222
+ :param pulumi.Input[str] role_name: The fully qualified name of the role which will be granted to the user or parent role. For more information about this resource, see docs.
223
+ :param pulumi.Input[str] user_name: The fully qualified name of the user on which specified role will be granted. For more information about this resource, see docs.
224
224
  """
225
225
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
226
226
 
@@ -235,7 +235,7 @@ class GrantAccountRole(pulumi.CustomResource):
235
235
  @pulumi.getter(name="parentRoleName")
236
236
  def parent_role_name(self) -> pulumi.Output[Optional[str]]:
237
237
  """
238
- The fully qualified name of the parent role which will create a parent-child relationship between the roles.
238
+ The fully qualified name of the parent role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
239
239
  """
240
240
  return pulumi.get(self, "parent_role_name")
241
241
 
@@ -243,7 +243,7 @@ class GrantAccountRole(pulumi.CustomResource):
243
243
  @pulumi.getter(name="roleName")
244
244
  def role_name(self) -> pulumi.Output[str]:
245
245
  """
246
- The fully qualified name of the role which will be granted to the user or parent role.
246
+ The fully qualified name of the role which will be granted to the user or parent role. For more information about this resource, see docs.
247
247
  """
248
248
  return pulumi.get(self, "role_name")
249
249
 
@@ -251,7 +251,7 @@ class GrantAccountRole(pulumi.CustomResource):
251
251
  @pulumi.getter(name="userName")
252
252
  def user_name(self) -> pulumi.Output[Optional[str]]:
253
253
  """
254
- The fully qualified name of the user on which specified role will be granted.
254
+ The fully qualified name of the user on which specified role will be granted. For more information about this resource, see docs.
255
255
  """
256
256
  return pulumi.get(self, "user_name")
257
257
 
@@ -26,7 +26,7 @@ class GrantApplicationRoleArgs:
26
26
  The set of arguments for constructing a GrantApplicationRole resource.
27
27
  :param pulumi.Input[str] application_role_name: Specifies the identifier for the application role to grant.
28
28
  :param pulumi.Input[str] application_name: The fully qualified name of the application on which application role will be granted.
29
- :param pulumi.Input[str] parent_account_role_name: The fully qualified name of the account role on which application role will be granted.
29
+ :param pulumi.Input[str] parent_account_role_name: The fully qualified name of the account role on which application role will be granted. For more information about this resource, see docs.
30
30
  """
31
31
  pulumi.set(__self__, "application_role_name", application_role_name)
32
32
  if application_name is not None:
@@ -62,7 +62,7 @@ class GrantApplicationRoleArgs:
62
62
  @pulumi.getter(name="parentAccountRoleName")
63
63
  def parent_account_role_name(self) -> Optional[pulumi.Input[str]]:
64
64
  """
65
- The fully qualified name of the account role on which application role will be granted.
65
+ The fully qualified name of the account role on which application role will be granted. For more information about this resource, see docs.
66
66
  """
67
67
  return pulumi.get(self, "parent_account_role_name")
68
68
 
@@ -81,7 +81,7 @@ class _GrantApplicationRoleState:
81
81
  Input properties used for looking up and filtering GrantApplicationRole resources.
82
82
  :param pulumi.Input[str] application_name: The fully qualified name of the application on which application role will be granted.
83
83
  :param pulumi.Input[str] application_role_name: Specifies the identifier for the application role to grant.
84
- :param pulumi.Input[str] parent_account_role_name: The fully qualified name of the account role on which application role will be granted.
84
+ :param pulumi.Input[str] parent_account_role_name: The fully qualified name of the account role on which application role will be granted. For more information about this resource, see docs.
85
85
  """
86
86
  if application_name is not None:
87
87
  pulumi.set(__self__, "application_name", application_name)
@@ -118,7 +118,7 @@ class _GrantApplicationRoleState:
118
118
  @pulumi.getter(name="parentAccountRoleName")
119
119
  def parent_account_role_name(self) -> Optional[pulumi.Input[str]]:
120
120
  """
121
- The fully qualified name of the account role on which application role will be granted.
121
+ The fully qualified name of the account role on which application role will be granted. For more information about this resource, see docs.
122
122
  """
123
123
  return pulumi.get(self, "parent_account_role_name")
124
124
 
@@ -149,7 +149,7 @@ class GrantApplicationRole(pulumi.CustomResource):
149
149
  :param pulumi.ResourceOptions opts: Options for the resource.
150
150
  :param pulumi.Input[str] application_name: The fully qualified name of the application on which application role will be granted.
151
151
  :param pulumi.Input[str] application_role_name: Specifies the identifier for the application role to grant.
152
- :param pulumi.Input[str] parent_account_role_name: The fully qualified name of the account role on which application role will be granted.
152
+ :param pulumi.Input[str] parent_account_role_name: The fully qualified name of the account role on which application role will be granted. For more information about this resource, see docs.
153
153
  """
154
154
  ...
155
155
  @overload
@@ -220,7 +220,7 @@ class GrantApplicationRole(pulumi.CustomResource):
220
220
  :param pulumi.ResourceOptions opts: Options for the resource.
221
221
  :param pulumi.Input[str] application_name: The fully qualified name of the application on which application role will be granted.
222
222
  :param pulumi.Input[str] application_role_name: Specifies the identifier for the application role to grant.
223
- :param pulumi.Input[str] parent_account_role_name: The fully qualified name of the account role on which application role will be granted.
223
+ :param pulumi.Input[str] parent_account_role_name: The fully qualified name of the account role on which application role will be granted. For more information about this resource, see docs.
224
224
  """
225
225
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
226
226
 
@@ -251,7 +251,7 @@ class GrantApplicationRole(pulumi.CustomResource):
251
251
  @pulumi.getter(name="parentAccountRoleName")
252
252
  def parent_account_role_name(self) -> pulumi.Output[Optional[str]]:
253
253
  """
254
- The fully qualified name of the account role on which application role will be granted.
254
+ The fully qualified name of the account role on which application role will be granted. For more information about this resource, see docs.
255
255
  """
256
256
  return pulumi.get(self, "parent_account_role_name")
257
257
 
@@ -25,10 +25,10 @@ class GrantDatabaseRoleArgs:
25
25
  share_name: Optional[pulumi.Input[str]] = None):
26
26
  """
27
27
  The set of arguments for constructing a GrantDatabaseRole resource.
28
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role which will be granted to share or parent role.
29
- :param pulumi.Input[str] parent_database_role_name: The fully qualified name of the parent database role which will create a parent-child relationship between the roles.
30
- :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent account role which will create a parent-child relationship between the roles.
31
- :param pulumi.Input[str] share_name: The fully qualified name of the share on which privileges will be granted.
28
+ :param pulumi.Input[str] database_role_name: The fully qualified name of the database role which will be granted to share or parent role. For more information about this resource, see docs.
29
+ :param pulumi.Input[str] parent_database_role_name: The fully qualified name of the parent database role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
30
+ :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent account role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
31
+ :param pulumi.Input[str] share_name: The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
32
32
  """
33
33
  pulumi.set(__self__, "database_role_name", database_role_name)
34
34
  if parent_database_role_name is not None:
@@ -42,7 +42,7 @@ class GrantDatabaseRoleArgs:
42
42
  @pulumi.getter(name="databaseRoleName")
43
43
  def database_role_name(self) -> pulumi.Input[str]:
44
44
  """
45
- The fully qualified name of the database role which will be granted to share or parent role.
45
+ The fully qualified name of the database role which will be granted to share or parent role. For more information about this resource, see docs.
46
46
  """
47
47
  return pulumi.get(self, "database_role_name")
48
48
 
@@ -54,7 +54,7 @@ class GrantDatabaseRoleArgs:
54
54
  @pulumi.getter(name="parentDatabaseRoleName")
55
55
  def parent_database_role_name(self) -> Optional[pulumi.Input[str]]:
56
56
  """
57
- The fully qualified name of the parent database role which will create a parent-child relationship between the roles.
57
+ The fully qualified name of the parent database role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
58
58
  """
59
59
  return pulumi.get(self, "parent_database_role_name")
60
60
 
@@ -66,7 +66,7 @@ class GrantDatabaseRoleArgs:
66
66
  @pulumi.getter(name="parentRoleName")
67
67
  def parent_role_name(self) -> Optional[pulumi.Input[str]]:
68
68
  """
69
- The fully qualified name of the parent account role which will create a parent-child relationship between the roles.
69
+ The fully qualified name of the parent account role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
70
70
  """
71
71
  return pulumi.get(self, "parent_role_name")
72
72
 
@@ -78,7 +78,7 @@ class GrantDatabaseRoleArgs:
78
78
  @pulumi.getter(name="shareName")
79
79
  def share_name(self) -> Optional[pulumi.Input[str]]:
80
80
  """
81
- The fully qualified name of the share on which privileges will be granted.
81
+ The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
82
82
  """
83
83
  return pulumi.get(self, "share_name")
84
84
 
@@ -96,10 +96,10 @@ class _GrantDatabaseRoleState:
96
96
  share_name: Optional[pulumi.Input[str]] = None):
97
97
  """
98
98
  Input properties used for looking up and filtering GrantDatabaseRole resources.
99
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role which will be granted to share or parent role.
100
- :param pulumi.Input[str] parent_database_role_name: The fully qualified name of the parent database role which will create a parent-child relationship between the roles.
101
- :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent account role which will create a parent-child relationship between the roles.
102
- :param pulumi.Input[str] share_name: The fully qualified name of the share on which privileges will be granted.
99
+ :param pulumi.Input[str] database_role_name: The fully qualified name of the database role which will be granted to share or parent role. For more information about this resource, see docs.
100
+ :param pulumi.Input[str] parent_database_role_name: The fully qualified name of the parent database role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
101
+ :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent account role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
102
+ :param pulumi.Input[str] share_name: The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
103
103
  """
104
104
  if database_role_name is not None:
105
105
  pulumi.set(__self__, "database_role_name", database_role_name)
@@ -114,7 +114,7 @@ class _GrantDatabaseRoleState:
114
114
  @pulumi.getter(name="databaseRoleName")
115
115
  def database_role_name(self) -> Optional[pulumi.Input[str]]:
116
116
  """
117
- The fully qualified name of the database role which will be granted to share or parent role.
117
+ The fully qualified name of the database role which will be granted to share or parent role. For more information about this resource, see docs.
118
118
  """
119
119
  return pulumi.get(self, "database_role_name")
120
120
 
@@ -126,7 +126,7 @@ class _GrantDatabaseRoleState:
126
126
  @pulumi.getter(name="parentDatabaseRoleName")
127
127
  def parent_database_role_name(self) -> Optional[pulumi.Input[str]]:
128
128
  """
129
- The fully qualified name of the parent database role which will create a parent-child relationship between the roles.
129
+ The fully qualified name of the parent database role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
130
130
  """
131
131
  return pulumi.get(self, "parent_database_role_name")
132
132
 
@@ -138,7 +138,7 @@ class _GrantDatabaseRoleState:
138
138
  @pulumi.getter(name="parentRoleName")
139
139
  def parent_role_name(self) -> Optional[pulumi.Input[str]]:
140
140
  """
141
- The fully qualified name of the parent account role which will create a parent-child relationship between the roles.
141
+ The fully qualified name of the parent account role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
142
142
  """
143
143
  return pulumi.get(self, "parent_role_name")
144
144
 
@@ -150,7 +150,7 @@ class _GrantDatabaseRoleState:
150
150
  @pulumi.getter(name="shareName")
151
151
  def share_name(self) -> Optional[pulumi.Input[str]]:
152
152
  """
153
- The fully qualified name of the share on which privileges will be granted.
153
+ The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
154
154
  """
155
155
  return pulumi.get(self, "share_name")
156
156
 
@@ -180,10 +180,10 @@ class GrantDatabaseRole(pulumi.CustomResource):
180
180
 
181
181
  :param str resource_name: The name of the resource.
182
182
  :param pulumi.ResourceOptions opts: Options for the resource.
183
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role which will be granted to share or parent role.
184
- :param pulumi.Input[str] parent_database_role_name: The fully qualified name of the parent database role which will create a parent-child relationship between the roles.
185
- :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent account role which will create a parent-child relationship between the roles.
186
- :param pulumi.Input[str] share_name: The fully qualified name of the share on which privileges will be granted.
183
+ :param pulumi.Input[str] database_role_name: The fully qualified name of the database role which will be granted to share or parent role. For more information about this resource, see docs.
184
+ :param pulumi.Input[str] parent_database_role_name: The fully qualified name of the parent database role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
185
+ :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent account role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
186
+ :param pulumi.Input[str] share_name: The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
187
187
  """
188
188
  ...
189
189
  @overload
@@ -255,10 +255,10 @@ class GrantDatabaseRole(pulumi.CustomResource):
255
255
  :param str resource_name: The unique name of the resulting resource.
256
256
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
257
257
  :param pulumi.ResourceOptions opts: Options for the resource.
258
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role which will be granted to share or parent role.
259
- :param pulumi.Input[str] parent_database_role_name: The fully qualified name of the parent database role which will create a parent-child relationship between the roles.
260
- :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent account role which will create a parent-child relationship between the roles.
261
- :param pulumi.Input[str] share_name: The fully qualified name of the share on which privileges will be granted.
258
+ :param pulumi.Input[str] database_role_name: The fully qualified name of the database role which will be granted to share or parent role. For more information about this resource, see docs.
259
+ :param pulumi.Input[str] parent_database_role_name: The fully qualified name of the parent database role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
260
+ :param pulumi.Input[str] parent_role_name: The fully qualified name of the parent account role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
261
+ :param pulumi.Input[str] share_name: The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
262
262
  """
263
263
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
264
264
 
@@ -274,7 +274,7 @@ class GrantDatabaseRole(pulumi.CustomResource):
274
274
  @pulumi.getter(name="databaseRoleName")
275
275
  def database_role_name(self) -> pulumi.Output[str]:
276
276
  """
277
- The fully qualified name of the database role which will be granted to share or parent role.
277
+ The fully qualified name of the database role which will be granted to share or parent role. For more information about this resource, see docs.
278
278
  """
279
279
  return pulumi.get(self, "database_role_name")
280
280
 
@@ -282,7 +282,7 @@ class GrantDatabaseRole(pulumi.CustomResource):
282
282
  @pulumi.getter(name="parentDatabaseRoleName")
283
283
  def parent_database_role_name(self) -> pulumi.Output[Optional[str]]:
284
284
  """
285
- The fully qualified name of the parent database role which will create a parent-child relationship between the roles.
285
+ The fully qualified name of the parent database role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
286
286
  """
287
287
  return pulumi.get(self, "parent_database_role_name")
288
288
 
@@ -290,7 +290,7 @@ class GrantDatabaseRole(pulumi.CustomResource):
290
290
  @pulumi.getter(name="parentRoleName")
291
291
  def parent_role_name(self) -> pulumi.Output[Optional[str]]:
292
292
  """
293
- The fully qualified name of the parent account role which will create a parent-child relationship between the roles.
293
+ The fully qualified name of the parent account role which will create a parent-child relationship between the roles. For more information about this resource, see docs.
294
294
  """
295
295
  return pulumi.get(self, "parent_role_name")
296
296
 
@@ -298,7 +298,7 @@ class GrantDatabaseRole(pulumi.CustomResource):
298
298
  @pulumi.getter(name="shareName")
299
299
  def share_name(self) -> pulumi.Output[Optional[str]]:
300
300
  """
301
- The fully qualified name of the share on which privileges will be granted.
301
+ The fully qualified name of the share on which privileges will be granted. For more information about this resource, see docs.
302
302
  """
303
303
  return pulumi.get(self, "share_name")
304
304
 
@@ -28,8 +28,8 @@ class GrantOwnershipArgs:
28
28
  """
29
29
  The set of arguments for constructing a GrantOwnership resource.
30
30
  :param pulumi.Input['GrantOwnershipOnArgs'] on: Configures which object(s) should transfer their ownership to the specified role.
31
- :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted.
32
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted.
31
+ :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.
32
+ :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.
33
33
  :param pulumi.Input[str] outbound_privileges: Specifies whether to remove or transfer all existing outbound privileges on the object when ownership is transferred to a new role. Available options are: REVOKE for removing existing privileges and COPY to transfer them with ownership. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#optional-parameters).
34
34
  """
35
35
  pulumi.set(__self__, "on", on)
@@ -56,7 +56,7 @@ class GrantOwnershipArgs:
56
56
  @pulumi.getter(name="accountRoleName")
57
57
  def account_role_name(self) -> Optional[pulumi.Input[str]]:
58
58
  """
59
- The fully qualified name of the account role to which privileges will be granted.
59
+ The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
60
60
  """
61
61
  return pulumi.get(self, "account_role_name")
62
62
 
@@ -68,7 +68,7 @@ class GrantOwnershipArgs:
68
68
  @pulumi.getter(name="databaseRoleName")
69
69
  def database_role_name(self) -> Optional[pulumi.Input[str]]:
70
70
  """
71
- The fully qualified name of the database role to which privileges will be granted.
71
+ The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
72
72
  """
73
73
  return pulumi.get(self, "database_role_name")
74
74
 
@@ -98,8 +98,8 @@ class _GrantOwnershipState:
98
98
  outbound_privileges: Optional[pulumi.Input[str]] = None):
99
99
  """
100
100
  Input properties used for looking up and filtering GrantOwnership resources.
101
- :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted.
102
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted.
101
+ :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.
102
+ :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.
103
103
  :param pulumi.Input['GrantOwnershipOnArgs'] on: Configures which object(s) should transfer their ownership to the specified role.
104
104
  :param pulumi.Input[str] outbound_privileges: Specifies whether to remove or transfer all existing outbound privileges on the object when ownership is transferred to a new role. Available options are: REVOKE for removing existing privileges and COPY to transfer them with ownership. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#optional-parameters).
105
105
  """
@@ -116,7 +116,7 @@ class _GrantOwnershipState:
116
116
  @pulumi.getter(name="accountRoleName")
117
117
  def account_role_name(self) -> Optional[pulumi.Input[str]]:
118
118
  """
119
- The fully qualified name of the account role to which privileges will be granted.
119
+ The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
120
120
  """
121
121
  return pulumi.get(self, "account_role_name")
122
122
 
@@ -128,7 +128,7 @@ class _GrantOwnershipState:
128
128
  @pulumi.getter(name="databaseRoleName")
129
129
  def database_role_name(self) -> Optional[pulumi.Input[str]]:
130
130
  """
131
- The fully qualified name of the database role to which privileges will be granted.
131
+ The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
132
132
  """
133
133
  return pulumi.get(self, "database_role_name")
134
134
 
@@ -220,8 +220,8 @@ class GrantOwnership(pulumi.CustomResource):
220
220
 
221
221
  :param str resource_name: The name of the resource.
222
222
  :param pulumi.ResourceOptions opts: Options for the resource.
223
- :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted.
224
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted.
223
+ :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.
224
+ :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.
225
225
  :param pulumi.Input[Union['GrantOwnershipOnArgs', 'GrantOwnershipOnArgsDict']] on: Configures which object(s) should transfer their ownership to the specified role.
226
226
  :param pulumi.Input[str] outbound_privileges: Specifies whether to remove or transfer all existing outbound privileges on the object when ownership is transferred to a new role. Available options are: REVOKE for removing existing privileges and COPY to transfer them with ownership. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#optional-parameters).
227
227
  """
@@ -333,8 +333,8 @@ class GrantOwnership(pulumi.CustomResource):
333
333
  :param str resource_name: The unique name of the resulting resource.
334
334
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
335
335
  :param pulumi.ResourceOptions opts: Options for the resource.
336
- :param pulumi.Input[str] account_role_name: The fully qualified name of the account role to which privileges will be granted.
337
- :param pulumi.Input[str] database_role_name: The fully qualified name of the database role to which privileges will be granted.
336
+ :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.
337
+ :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.
338
338
  :param pulumi.Input[Union['GrantOwnershipOnArgs', 'GrantOwnershipOnArgsDict']] on: Configures which object(s) should transfer their ownership to the specified role.
339
339
  :param pulumi.Input[str] outbound_privileges: Specifies whether to remove or transfer all existing outbound privileges on the object when ownership is transferred to a new role. Available options are: REVOKE for removing existing privileges and COPY to transfer them with ownership. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#optional-parameters).
340
340
  """
@@ -352,7 +352,7 @@ class GrantOwnership(pulumi.CustomResource):
352
352
  @pulumi.getter(name="accountRoleName")
353
353
  def account_role_name(self) -> pulumi.Output[Optional[str]]:
354
354
  """
355
- The fully qualified name of the account role to which privileges will be granted.
355
+ The fully qualified name of the account role to which privileges will be granted. For more information about this resource, see docs.
356
356
  """
357
357
  return pulumi.get(self, "account_role_name")
358
358
 
@@ -360,7 +360,7 @@ class GrantOwnership(pulumi.CustomResource):
360
360
  @pulumi.getter(name="databaseRoleName")
361
361
  def database_role_name(self) -> pulumi.Output[Optional[str]]:
362
362
  """
363
- The fully qualified name of the database role to which privileges will be granted.
363
+ The fully qualified name of the database role to which privileges will be granted. For more information about this resource, see docs.
364
364
  """
365
365
  return pulumi.get(self, "database_role_name")
366
366