pulumi-snowflake 0.50.3a1710160126__py3-none-any.whl → 1.2.0a1736849992__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (182) hide show
  1. pulumi_snowflake/__init__.py +224 -172
  2. pulumi_snowflake/_inputs.py +52857 -1665
  3. pulumi_snowflake/_utilities.py +41 -5
  4. pulumi_snowflake/account.py +188 -218
  5. pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
  6. pulumi_snowflake/account_parameter.py +21 -48
  7. pulumi_snowflake/account_password_policy_attachment.py +7 -32
  8. pulumi_snowflake/account_role.py +250 -0
  9. pulumi_snowflake/alert.py +38 -47
  10. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +704 -0
  11. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +657 -0
  12. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +692 -0
  13. pulumi_snowflake/api_integration.py +33 -52
  14. pulumi_snowflake/authentication_policy.py +622 -0
  15. pulumi_snowflake/config/__init__.pyi +76 -99
  16. pulumi_snowflake/config/outputs.py +5 -0
  17. pulumi_snowflake/config/vars.py +93 -124
  18. pulumi_snowflake/cortex_search_service.py +596 -0
  19. pulumi_snowflake/database.py +819 -213
  20. pulumi_snowflake/database_role.py +81 -44
  21. pulumi_snowflake/dynamic_table.py +42 -49
  22. pulumi_snowflake/email_notification_integration.py +33 -28
  23. pulumi_snowflake/{unsafe_execute.py → execute.py} +36 -39
  24. pulumi_snowflake/external_function.py +54 -75
  25. pulumi_snowflake/external_oauth_integration.py +593 -542
  26. pulumi_snowflake/external_table.py +67 -90
  27. pulumi_snowflake/external_volume.py +382 -0
  28. pulumi_snowflake/failover_group.py +57 -98
  29. pulumi_snowflake/file_format.py +33 -28
  30. pulumi_snowflake/function_java.py +1211 -0
  31. pulumi_snowflake/function_javascript.py +882 -0
  32. pulumi_snowflake/function_python.py +1212 -0
  33. pulumi_snowflake/function_scala.py +1212 -0
  34. pulumi_snowflake/function_sql.py +835 -0
  35. pulumi_snowflake/get_account_roles.py +129 -0
  36. pulumi_snowflake/get_accounts.py +53 -22
  37. pulumi_snowflake/get_alerts.py +22 -9
  38. pulumi_snowflake/get_connections.py +109 -0
  39. pulumi_snowflake/get_cortex_search_services.py +216 -0
  40. pulumi_snowflake/get_current_account.py +24 -13
  41. pulumi_snowflake/get_current_role.py +14 -7
  42. pulumi_snowflake/get_database.py +25 -9
  43. pulumi_snowflake/get_database_role.py +162 -0
  44. pulumi_snowflake/get_database_roles.py +79 -47
  45. pulumi_snowflake/get_databases.py +91 -73
  46. pulumi_snowflake/get_dynamic_tables.py +36 -19
  47. pulumi_snowflake/get_external_functions.py +28 -9
  48. pulumi_snowflake/get_external_tables.py +28 -9
  49. pulumi_snowflake/get_failover_groups.py +18 -7
  50. pulumi_snowflake/get_file_formats.py +28 -9
  51. pulumi_snowflake/get_functions.py +28 -9
  52. pulumi_snowflake/get_grants.py +207 -84
  53. pulumi_snowflake/get_masking_policies.py +91 -51
  54. pulumi_snowflake/get_materialized_views.py +28 -9
  55. pulumi_snowflake/get_network_policies.py +129 -0
  56. pulumi_snowflake/get_parameters.py +38 -15
  57. pulumi_snowflake/get_pipes.py +28 -9
  58. pulumi_snowflake/get_procedures.py +28 -9
  59. pulumi_snowflake/get_resource_monitors.py +37 -24
  60. pulumi_snowflake/get_row_access_policies.py +91 -51
  61. pulumi_snowflake/get_schemas.py +145 -41
  62. pulumi_snowflake/get_secrets.py +200 -0
  63. pulumi_snowflake/get_security_integrations.py +129 -0
  64. pulumi_snowflake/get_sequences.py +28 -9
  65. pulumi_snowflake/get_shares.py +18 -9
  66. pulumi_snowflake/get_stages.py +28 -9
  67. pulumi_snowflake/get_storage_integrations.py +16 -9
  68. pulumi_snowflake/get_streamlits.py +170 -0
  69. pulumi_snowflake/get_streams.py +114 -54
  70. pulumi_snowflake/get_system_generate_scim_access_token.py +18 -9
  71. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +32 -7
  72. pulumi_snowflake/get_system_get_private_link_config.py +120 -5
  73. pulumi_snowflake/get_system_get_snowflake_platform_info.py +15 -7
  74. pulumi_snowflake/get_tables.py +28 -9
  75. pulumi_snowflake/get_tags.py +130 -0
  76. pulumi_snowflake/get_tasks.py +134 -54
  77. pulumi_snowflake/get_users.py +116 -44
  78. pulumi_snowflake/get_views.py +114 -54
  79. pulumi_snowflake/get_warehouses.py +79 -26
  80. pulumi_snowflake/grant_account_role.py +28 -75
  81. pulumi_snowflake/grant_application_role.py +257 -0
  82. pulumi_snowflake/grant_database_role.py +35 -94
  83. pulumi_snowflake/grant_ownership.py +382 -0
  84. pulumi_snowflake/grant_privileges_to_account_role.py +42 -78
  85. pulumi_snowflake/grant_privileges_to_database_role.py +37 -383
  86. pulumi_snowflake/grant_privileges_to_share.py +96 -44
  87. pulumi_snowflake/legacy_service_user.py +3670 -0
  88. pulumi_snowflake/managed_account.py +40 -11
  89. pulumi_snowflake/masking_policy.py +213 -310
  90. pulumi_snowflake/materialized_view.py +62 -71
  91. pulumi_snowflake/network_policy.py +217 -61
  92. pulumi_snowflake/network_policy_attachment.py +5 -34
  93. pulumi_snowflake/network_rule.py +473 -0
  94. pulumi_snowflake/notification_integration.py +49 -84
  95. pulumi_snowflake/oauth_integration_for_custom_clients.py +906 -0
  96. pulumi_snowflake/{oauth_integration.py → oauth_integration_for_partner_applications.py} +191 -192
  97. pulumi_snowflake/object_parameter.py +10 -101
  98. pulumi_snowflake/outputs.py +49200 -2928
  99. pulumi_snowflake/password_policy.py +41 -28
  100. pulumi_snowflake/pipe.py +33 -4
  101. pulumi_snowflake/primary_connection.py +330 -0
  102. pulumi_snowflake/procedure_java.py +1273 -0
  103. pulumi_snowflake/procedure_javascript.py +895 -0
  104. pulumi_snowflake/procedure_python.py +1226 -0
  105. pulumi_snowflake/procedure_scala.py +1273 -0
  106. pulumi_snowflake/procedure_sql.py +895 -0
  107. pulumi_snowflake/provider.py +378 -613
  108. pulumi_snowflake/pulumi-plugin.json +2 -1
  109. pulumi_snowflake/resource_monitor.py +118 -327
  110. pulumi_snowflake/row_access_policy.py +200 -149
  111. pulumi_snowflake/{saml_integration.py → saml2_integration.py} +356 -299
  112. pulumi_snowflake/schema.py +949 -178
  113. pulumi_snowflake/scim_integration.py +286 -109
  114. pulumi_snowflake/secondary_connection.py +339 -0
  115. pulumi_snowflake/secondary_database.py +1080 -0
  116. pulumi_snowflake/secret_with_authorization_code_grant.py +548 -0
  117. pulumi_snowflake/secret_with_basic_authentication.py +500 -0
  118. pulumi_snowflake/secret_with_client_credentials.py +511 -0
  119. pulumi_snowflake/secret_with_generic_string.py +452 -0
  120. pulumi_snowflake/sequence.py +9 -34
  121. pulumi_snowflake/service_user.py +3585 -0
  122. pulumi_snowflake/share.py +33 -28
  123. pulumi_snowflake/shared_database.py +939 -0
  124. pulumi_snowflake/stage.py +95 -84
  125. pulumi_snowflake/storage_integration.py +46 -4
  126. pulumi_snowflake/stream_on_directory_table.py +517 -0
  127. pulumi_snowflake/stream_on_external_table.py +632 -0
  128. pulumi_snowflake/stream_on_table.py +666 -0
  129. pulumi_snowflake/stream_on_view.py +666 -0
  130. pulumi_snowflake/streamlit.py +671 -0
  131. pulumi_snowflake/table.py +86 -97
  132. pulumi_snowflake/table_column_masking_policy_application.py +7 -14
  133. pulumi_snowflake/table_constraint.py +29 -172
  134. pulumi_snowflake/tag.py +142 -74
  135. pulumi_snowflake/tag_association.py +40 -215
  136. pulumi_snowflake/task.py +3048 -418
  137. pulumi_snowflake/user.py +3351 -384
  138. pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
  139. pulumi_snowflake/user_password_policy_attachment.py +5 -4
  140. pulumi_snowflake/user_public_keys.py +5 -0
  141. pulumi_snowflake/view.py +466 -215
  142. pulumi_snowflake/warehouse.py +184 -168
  143. {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736849992.dist-info}/METADATA +7 -6
  144. pulumi_snowflake-1.2.0a1736849992.dist-info/RECORD +148 -0
  145. {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736849992.dist-info}/WHEEL +1 -1
  146. pulumi_snowflake/account_grant.py +0 -343
  147. pulumi_snowflake/database_grant.py +0 -495
  148. pulumi_snowflake/external_table_grant.py +0 -690
  149. pulumi_snowflake/failover_group_grant.py +0 -388
  150. pulumi_snowflake/file_format_grant.py +0 -635
  151. pulumi_snowflake/function.py +0 -872
  152. pulumi_snowflake/function_grant.py +0 -745
  153. pulumi_snowflake/get_role.py +0 -121
  154. pulumi_snowflake/get_roles.py +0 -120
  155. pulumi_snowflake/grant_privileges_to_role.py +0 -825
  156. pulumi_snowflake/integration_grant.py +0 -440
  157. pulumi_snowflake/masking_policy_grant.py +0 -542
  158. pulumi_snowflake/materialized_view_grant.py +0 -689
  159. pulumi_snowflake/pipe_grant.py +0 -587
  160. pulumi_snowflake/procedure.py +0 -887
  161. pulumi_snowflake/procedure_grant.py +0 -745
  162. pulumi_snowflake/resource_monitor_grant.py +0 -387
  163. pulumi_snowflake/role.py +0 -273
  164. pulumi_snowflake/role_grants.py +0 -352
  165. pulumi_snowflake/role_ownership_grant.py +0 -338
  166. pulumi_snowflake/row_access_policy_grant.py +0 -540
  167. pulumi_snowflake/schema_grant.py +0 -647
  168. pulumi_snowflake/sequence_grant.py +0 -635
  169. pulumi_snowflake/session_parameter.py +0 -332
  170. pulumi_snowflake/stage_grant.py +0 -635
  171. pulumi_snowflake/stream.py +0 -614
  172. pulumi_snowflake/stream_grant.py +0 -635
  173. pulumi_snowflake/table_grant.py +0 -677
  174. pulumi_snowflake/tag_grant.py +0 -532
  175. pulumi_snowflake/tag_masking_policy_association.py +0 -210
  176. pulumi_snowflake/task_grant.py +0 -635
  177. pulumi_snowflake/user_grant.py +0 -394
  178. pulumi_snowflake/user_ownership_grant.py +0 -286
  179. pulumi_snowflake/view_grant.py +0 -705
  180. pulumi_snowflake/warehouse_grant.py +0 -440
  181. pulumi_snowflake-0.50.3a1710160126.dist-info/RECORD +0 -136
  182. {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736849992.dist-info}/top_level.txt +0 -0
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
  from . import outputs
12
17
 
@@ -85,9 +90,10 @@ def get_procedures(database: Optional[str] = None,
85
90
  schema: Optional[str] = None,
86
91
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProceduresResult:
87
92
  """
93
+ !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled field` in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
94
+
88
95
  ## Example Usage
89
96
 
90
- <!--Start PulumiCodeChooser -->
91
97
  ```python
92
98
  import pulumi
93
99
  import pulumi_snowflake as snowflake
@@ -95,7 +101,10 @@ def get_procedures(database: Optional[str] = None,
95
101
  current = snowflake.get_procedures(database="MYDB",
96
102
  schema="MYSCHEMA")
97
103
  ```
98
- <!--End PulumiCodeChooser -->
104
+
105
+
106
+ :param str database: The database from which to return the schemas from.
107
+ :param str schema: The schema from which to return the procedures from.
99
108
  """
100
109
  __args__ = dict()
101
110
  __args__['database'] = database
@@ -108,16 +117,14 @@ def get_procedures(database: Optional[str] = None,
108
117
  id=pulumi.get(__ret__, 'id'),
109
118
  procedures=pulumi.get(__ret__, 'procedures'),
110
119
  schema=pulumi.get(__ret__, 'schema'))
111
-
112
-
113
- @_utilities.lift_output_func(get_procedures)
114
120
  def get_procedures_output(database: Optional[pulumi.Input[str]] = None,
115
121
  schema: Optional[pulumi.Input[str]] = None,
116
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetProceduresResult]:
122
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetProceduresResult]:
117
123
  """
124
+ !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled field` in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
125
+
118
126
  ## Example Usage
119
127
 
120
- <!--Start PulumiCodeChooser -->
121
128
  ```python
122
129
  import pulumi
123
130
  import pulumi_snowflake as snowflake
@@ -125,6 +132,18 @@ def get_procedures_output(database: Optional[pulumi.Input[str]] = None,
125
132
  current = snowflake.get_procedures(database="MYDB",
126
133
  schema="MYSCHEMA")
127
134
  ```
128
- <!--End PulumiCodeChooser -->
135
+
136
+
137
+ :param str database: The database from which to return the schemas from.
138
+ :param str schema: The schema from which to return the procedures from.
129
139
  """
130
- ...
140
+ __args__ = dict()
141
+ __args__['database'] = database
142
+ __args__['schema'] = schema
143
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
144
+ __ret__ = pulumi.runtime.invoke_output('snowflake:index/getProcedures:getProcedures', __args__, opts=opts, typ=GetProceduresResult)
145
+ return __ret__.apply(lambda __response__: GetProceduresResult(
146
+ database=pulumi.get(__response__, 'database'),
147
+ id=pulumi.get(__response__, 'id'),
148
+ procedures=pulumi.get(__response__, 'procedures'),
149
+ schema=pulumi.get(__response__, 'schema')))
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
  from . import outputs
12
17
 
@@ -22,10 +27,13 @@ class GetResourceMonitorsResult:
22
27
  """
23
28
  A collection of values returned by getResourceMonitors.
24
29
  """
25
- def __init__(__self__, id=None, resource_monitors=None):
30
+ def __init__(__self__, id=None, like=None, resource_monitors=None):
26
31
  if id and not isinstance(id, str):
27
32
  raise TypeError("Expected argument 'id' to be a str")
28
33
  pulumi.set(__self__, "id", id)
34
+ if like and not isinstance(like, str):
35
+ raise TypeError("Expected argument 'like' to be a str")
36
+ pulumi.set(__self__, "like", like)
29
37
  if resource_monitors and not isinstance(resource_monitors, list):
30
38
  raise TypeError("Expected argument 'resource_monitors' to be a list")
31
39
  pulumi.set(__self__, "resource_monitors", resource_monitors)
@@ -38,11 +46,19 @@ class GetResourceMonitorsResult:
38
46
  """
39
47
  return pulumi.get(self, "id")
40
48
 
49
+ @property
50
+ @pulumi.getter
51
+ def like(self) -> Optional[str]:
52
+ """
53
+ Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
54
+ """
55
+ return pulumi.get(self, "like")
56
+
41
57
  @property
42
58
  @pulumi.getter(name="resourceMonitors")
43
59
  def resource_monitors(self) -> Sequence['outputs.GetResourceMonitorsResourceMonitorResult']:
44
60
  """
45
- The resource monitors in the database
61
+ Holds the aggregated output of all resource monitor details queries.
46
62
  """
47
63
  return pulumi.get(self, "resource_monitors")
48
64
 
@@ -54,43 +70,40 @@ class AwaitableGetResourceMonitorsResult(GetResourceMonitorsResult):
54
70
  yield self
55
71
  return GetResourceMonitorsResult(
56
72
  id=self.id,
73
+ like=self.like,
57
74
  resource_monitors=self.resource_monitors)
58
75
 
59
76
 
60
- def get_resource_monitors(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetResourceMonitorsResult:
77
+ def get_resource_monitors(like: Optional[str] = None,
78
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetResourceMonitorsResult:
61
79
  """
62
- ## Example Usage
80
+ Data source used to get details of filtered resource monitors. Filtering is aligned with the current possibilities for [SHOW RESOURCE MONITORS](https://docs.snowflake.com/en/sql-reference/sql/show-resource-monitors) query (`like` is supported). The results of SHOW is encapsulated in show_output collection.
63
81
 
64
- <!--Start PulumiCodeChooser -->
65
- ```python
66
- import pulumi
67
- import pulumi_snowflake as snowflake
68
82
 
69
- current = snowflake.get_resource_monitors()
70
- ```
71
- <!--End PulumiCodeChooser -->
83
+ :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
72
84
  """
73
85
  __args__ = dict()
86
+ __args__['like'] = like
74
87
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
75
88
  __ret__ = pulumi.runtime.invoke('snowflake:index/getResourceMonitors:getResourceMonitors', __args__, opts=opts, typ=GetResourceMonitorsResult).value
76
89
 
77
90
  return AwaitableGetResourceMonitorsResult(
78
91
  id=pulumi.get(__ret__, 'id'),
92
+ like=pulumi.get(__ret__, 'like'),
79
93
  resource_monitors=pulumi.get(__ret__, 'resource_monitors'))
80
-
81
-
82
- @_utilities.lift_output_func(get_resource_monitors)
83
- def get_resource_monitors_output(opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetResourceMonitorsResult]:
94
+ def get_resource_monitors_output(like: Optional[pulumi.Input[Optional[str]]] = None,
95
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetResourceMonitorsResult]:
84
96
  """
85
- ## Example Usage
97
+ Data source used to get details of filtered resource monitors. Filtering is aligned with the current possibilities for [SHOW RESOURCE MONITORS](https://docs.snowflake.com/en/sql-reference/sql/show-resource-monitors) query (`like` is supported). The results of SHOW is encapsulated in show_output collection.
86
98
 
87
- <!--Start PulumiCodeChooser -->
88
- ```python
89
- import pulumi
90
- import pulumi_snowflake as snowflake
91
99
 
92
- current = snowflake.get_resource_monitors()
93
- ```
94
- <!--End PulumiCodeChooser -->
100
+ :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
95
101
  """
96
- ...
102
+ __args__ = dict()
103
+ __args__['like'] = like
104
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
105
+ __ret__ = pulumi.runtime.invoke_output('snowflake:index/getResourceMonitors:getResourceMonitors', __args__, opts=opts, typ=GetResourceMonitorsResult)
106
+ return __ret__.apply(lambda __response__: GetResourceMonitorsResult(
107
+ id=pulumi.get(__response__, 'id'),
108
+ like=pulumi.get(__response__, 'like'),
109
+ resource_monitors=pulumi.get(__response__, 'resource_monitors')))
@@ -4,11 +4,17 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
  from . import outputs
17
+ from ._inputs import *
12
18
 
13
19
  __all__ = [
14
20
  'GetRowAccessPoliciesResult',
@@ -22,51 +28,73 @@ class GetRowAccessPoliciesResult:
22
28
  """
23
29
  A collection of values returned by getRowAccessPolicies.
24
30
  """
25
- def __init__(__self__, database=None, id=None, row_access_policies=None, schema=None):
26
- if database and not isinstance(database, str):
27
- raise TypeError("Expected argument 'database' to be a str")
28
- pulumi.set(__self__, "database", database)
31
+ def __init__(__self__, id=None, in_=None, like=None, limit=None, row_access_policies=None, with_describe=None):
29
32
  if id and not isinstance(id, str):
30
33
  raise TypeError("Expected argument 'id' to be a str")
31
34
  pulumi.set(__self__, "id", id)
35
+ if in_ and not isinstance(in_, dict):
36
+ raise TypeError("Expected argument 'in_' to be a dict")
37
+ pulumi.set(__self__, "in_", in_)
38
+ if like and not isinstance(like, str):
39
+ raise TypeError("Expected argument 'like' to be a str")
40
+ pulumi.set(__self__, "like", like)
41
+ if limit and not isinstance(limit, dict):
42
+ raise TypeError("Expected argument 'limit' to be a dict")
43
+ pulumi.set(__self__, "limit", limit)
32
44
  if row_access_policies and not isinstance(row_access_policies, list):
33
45
  raise TypeError("Expected argument 'row_access_policies' to be a list")
34
46
  pulumi.set(__self__, "row_access_policies", row_access_policies)
35
- if schema and not isinstance(schema, str):
36
- raise TypeError("Expected argument 'schema' to be a str")
37
- pulumi.set(__self__, "schema", schema)
47
+ if with_describe and not isinstance(with_describe, bool):
48
+ raise TypeError("Expected argument 'with_describe' to be a bool")
49
+ pulumi.set(__self__, "with_describe", with_describe)
38
50
 
39
51
  @property
40
52
  @pulumi.getter
41
- def database(self) -> str:
53
+ def id(self) -> str:
54
+ """
55
+ The provider-assigned unique ID for this managed resource.
56
+ """
57
+ return pulumi.get(self, "id")
58
+
59
+ @property
60
+ @pulumi.getter(name="in")
61
+ def in_(self) -> Optional['outputs.GetRowAccessPoliciesInResult']:
42
62
  """
43
- The database from which to return the schemas from.
63
+ IN clause to filter the list of row access policies
44
64
  """
45
- return pulumi.get(self, "database")
65
+ return pulumi.get(self, "in_")
46
66
 
47
67
  @property
48
68
  @pulumi.getter
49
- def id(self) -> str:
69
+ def like(self) -> Optional[str]:
50
70
  """
51
- The provider-assigned unique ID for this managed resource.
71
+ Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
52
72
  """
53
- return pulumi.get(self, "id")
73
+ return pulumi.get(self, "like")
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def limit(self) -> Optional['outputs.GetRowAccessPoliciesLimitResult']:
78
+ """
79
+ Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
80
+ """
81
+ return pulumi.get(self, "limit")
54
82
 
55
83
  @property
56
84
  @pulumi.getter(name="rowAccessPolicies")
57
85
  def row_access_policies(self) -> Sequence['outputs.GetRowAccessPoliciesRowAccessPolicyResult']:
58
86
  """
59
- The row access policy in the schema
87
+ Holds the aggregated output of all views details queries.
60
88
  """
61
89
  return pulumi.get(self, "row_access_policies")
62
90
 
63
91
  @property
64
- @pulumi.getter
65
- def schema(self) -> str:
92
+ @pulumi.getter(name="withDescribe")
93
+ def with_describe(self) -> Optional[bool]:
66
94
  """
67
- The schema from which to return the row access policy from.
95
+ Runs DESC ROW ACCESS POLICY for each row access policy returned by SHOW ROW ACCESS POLICIES. The output of describe is saved to the description field. By default this value is set to true.
68
96
  """
69
- return pulumi.get(self, "schema")
97
+ return pulumi.get(self, "with_describe")
70
98
 
71
99
 
72
100
  class AwaitableGetRowAccessPoliciesResult(GetRowAccessPoliciesResult):
@@ -75,56 +103,68 @@ class AwaitableGetRowAccessPoliciesResult(GetRowAccessPoliciesResult):
75
103
  if False:
76
104
  yield self
77
105
  return GetRowAccessPoliciesResult(
78
- database=self.database,
79
106
  id=self.id,
107
+ in_=self.in_,
108
+ like=self.like,
109
+ limit=self.limit,
80
110
  row_access_policies=self.row_access_policies,
81
- schema=self.schema)
111
+ with_describe=self.with_describe)
82
112
 
83
113
 
84
- def get_row_access_policies(database: Optional[str] = None,
85
- schema: Optional[str] = None,
114
+ def get_row_access_policies(in_: Optional[Union['GetRowAccessPoliciesInArgs', 'GetRowAccessPoliciesInArgsDict']] = None,
115
+ like: Optional[str] = None,
116
+ limit: Optional[Union['GetRowAccessPoliciesLimitArgs', 'GetRowAccessPoliciesLimitArgsDict']] = None,
117
+ with_describe: Optional[bool] = None,
86
118
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRowAccessPoliciesResult:
87
119
  """
88
- ## Example Usage
120
+ Data source used to get details of filtered row access policies. Filtering is aligned with the current possibilities for [SHOW ROW ACCESS POLICIES](https://docs.snowflake.com/en/sql-reference/sql/show-row-access-policies) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `row_access_policies`.
89
121
 
90
- <!--Start PulumiCodeChooser -->
91
- ```python
92
- import pulumi
93
- import pulumi_snowflake as snowflake
94
122
 
95
- current = snowflake.get_row_access_policies(database="MYDB",
96
- schema="MYSCHEMA")
97
- ```
98
- <!--End PulumiCodeChooser -->
123
+ :param Union['GetRowAccessPoliciesInArgs', 'GetRowAccessPoliciesInArgsDict'] in_: IN clause to filter the list of row access policies
124
+ :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
125
+ :param Union['GetRowAccessPoliciesLimitArgs', 'GetRowAccessPoliciesLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
126
+ :param bool with_describe: Runs DESC ROW ACCESS POLICY for each row access policy returned by SHOW ROW ACCESS POLICIES. The output of describe is saved to the description field. By default this value is set to true.
99
127
  """
100
128
  __args__ = dict()
101
- __args__['database'] = database
102
- __args__['schema'] = schema
129
+ __args__['in'] = in_
130
+ __args__['like'] = like
131
+ __args__['limit'] = limit
132
+ __args__['withDescribe'] = with_describe
103
133
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
104
134
  __ret__ = pulumi.runtime.invoke('snowflake:index/getRowAccessPolicies:getRowAccessPolicies', __args__, opts=opts, typ=GetRowAccessPoliciesResult).value
105
135
 
106
136
  return AwaitableGetRowAccessPoliciesResult(
107
- database=pulumi.get(__ret__, 'database'),
108
137
  id=pulumi.get(__ret__, 'id'),
138
+ in_=pulumi.get(__ret__, 'in_'),
139
+ like=pulumi.get(__ret__, 'like'),
140
+ limit=pulumi.get(__ret__, 'limit'),
109
141
  row_access_policies=pulumi.get(__ret__, 'row_access_policies'),
110
- schema=pulumi.get(__ret__, 'schema'))
111
-
112
-
113
- @_utilities.lift_output_func(get_row_access_policies)
114
- def get_row_access_policies_output(database: Optional[pulumi.Input[str]] = None,
115
- schema: Optional[pulumi.Input[str]] = None,
116
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetRowAccessPoliciesResult]:
142
+ with_describe=pulumi.get(__ret__, 'with_describe'))
143
+ def get_row_access_policies_output(in_: Optional[pulumi.Input[Optional[Union['GetRowAccessPoliciesInArgs', 'GetRowAccessPoliciesInArgsDict']]]] = None,
144
+ like: Optional[pulumi.Input[Optional[str]]] = None,
145
+ limit: Optional[pulumi.Input[Optional[Union['GetRowAccessPoliciesLimitArgs', 'GetRowAccessPoliciesLimitArgsDict']]]] = None,
146
+ with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
147
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRowAccessPoliciesResult]:
117
148
  """
118
- ## Example Usage
149
+ Data source used to get details of filtered row access policies. Filtering is aligned with the current possibilities for [SHOW ROW ACCESS POLICIES](https://docs.snowflake.com/en/sql-reference/sql/show-row-access-policies) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `row_access_policies`.
119
150
 
120
- <!--Start PulumiCodeChooser -->
121
- ```python
122
- import pulumi
123
- import pulumi_snowflake as snowflake
124
151
 
125
- current = snowflake.get_row_access_policies(database="MYDB",
126
- schema="MYSCHEMA")
127
- ```
128
- <!--End PulumiCodeChooser -->
152
+ :param Union['GetRowAccessPoliciesInArgs', 'GetRowAccessPoliciesInArgsDict'] in_: IN clause to filter the list of row access policies
153
+ :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
154
+ :param Union['GetRowAccessPoliciesLimitArgs', 'GetRowAccessPoliciesLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
155
+ :param bool with_describe: Runs DESC ROW ACCESS POLICY for each row access policy returned by SHOW ROW ACCESS POLICIES. The output of describe is saved to the description field. By default this value is set to true.
129
156
  """
130
- ...
157
+ __args__ = dict()
158
+ __args__['in'] = in_
159
+ __args__['like'] = like
160
+ __args__['limit'] = limit
161
+ __args__['withDescribe'] = with_describe
162
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
163
+ __ret__ = pulumi.runtime.invoke_output('snowflake:index/getRowAccessPolicies:getRowAccessPolicies', __args__, opts=opts, typ=GetRowAccessPoliciesResult)
164
+ return __ret__.apply(lambda __response__: GetRowAccessPoliciesResult(
165
+ id=pulumi.get(__response__, 'id'),
166
+ in_=pulumi.get(__response__, 'in_'),
167
+ like=pulumi.get(__response__, 'like'),
168
+ limit=pulumi.get(__response__, 'limit'),
169
+ row_access_policies=pulumi.get(__response__, 'row_access_policies'),
170
+ with_describe=pulumi.get(__response__, 'with_describe')))
@@ -4,11 +4,17 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
  from . import outputs
17
+ from ._inputs import *
12
18
 
13
19
  __all__ = [
14
20
  'GetSchemasResult',
@@ -22,41 +28,96 @@ class GetSchemasResult:
22
28
  """
23
29
  A collection of values returned by getSchemas.
24
30
  """
25
- def __init__(__self__, database=None, id=None, schemas=None):
26
- if database and not isinstance(database, str):
27
- raise TypeError("Expected argument 'database' to be a str")
28
- pulumi.set(__self__, "database", database)
31
+ def __init__(__self__, id=None, in_=None, like=None, limit=None, schemas=None, starts_with=None, with_describe=None, with_parameters=None):
29
32
  if id and not isinstance(id, str):
30
33
  raise TypeError("Expected argument 'id' to be a str")
31
34
  pulumi.set(__self__, "id", id)
35
+ if in_ and not isinstance(in_, dict):
36
+ raise TypeError("Expected argument 'in_' to be a dict")
37
+ pulumi.set(__self__, "in_", in_)
38
+ if like and not isinstance(like, str):
39
+ raise TypeError("Expected argument 'like' to be a str")
40
+ pulumi.set(__self__, "like", like)
41
+ if limit and not isinstance(limit, dict):
42
+ raise TypeError("Expected argument 'limit' to be a dict")
43
+ pulumi.set(__self__, "limit", limit)
32
44
  if schemas and not isinstance(schemas, list):
33
45
  raise TypeError("Expected argument 'schemas' to be a list")
34
46
  pulumi.set(__self__, "schemas", schemas)
47
+ if starts_with and not isinstance(starts_with, str):
48
+ raise TypeError("Expected argument 'starts_with' to be a str")
49
+ pulumi.set(__self__, "starts_with", starts_with)
50
+ if with_describe and not isinstance(with_describe, bool):
51
+ raise TypeError("Expected argument 'with_describe' to be a bool")
52
+ pulumi.set(__self__, "with_describe", with_describe)
53
+ if with_parameters and not isinstance(with_parameters, bool):
54
+ raise TypeError("Expected argument 'with_parameters' to be a bool")
55
+ pulumi.set(__self__, "with_parameters", with_parameters)
35
56
 
36
57
  @property
37
58
  @pulumi.getter
38
- def database(self) -> str:
59
+ def id(self) -> str:
39
60
  """
40
- The database from which to return the schemas from.
61
+ The provider-assigned unique ID for this managed resource.
41
62
  """
42
- return pulumi.get(self, "database")
63
+ return pulumi.get(self, "id")
64
+
65
+ @property
66
+ @pulumi.getter(name="in")
67
+ def in_(self) -> Optional['outputs.GetSchemasInResult']:
68
+ """
69
+ IN clause to filter the list of streamlits
70
+ """
71
+ return pulumi.get(self, "in_")
43
72
 
44
73
  @property
45
74
  @pulumi.getter
46
- def id(self) -> str:
75
+ def like(self) -> Optional[str]:
47
76
  """
48
- The provider-assigned unique ID for this managed resource.
77
+ Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
49
78
  """
50
- return pulumi.get(self, "id")
79
+ return pulumi.get(self, "like")
80
+
81
+ @property
82
+ @pulumi.getter
83
+ def limit(self) -> Optional['outputs.GetSchemasLimitResult']:
84
+ """
85
+ Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
86
+ """
87
+ return pulumi.get(self, "limit")
51
88
 
52
89
  @property
53
90
  @pulumi.getter
54
91
  def schemas(self) -> Sequence['outputs.GetSchemasSchemaResult']:
55
92
  """
56
- The schemas in the database
93
+ Holds the aggregated output of all SCHEMA details queries.
57
94
  """
58
95
  return pulumi.get(self, "schemas")
59
96
 
97
+ @property
98
+ @pulumi.getter(name="startsWith")
99
+ def starts_with(self) -> Optional[str]:
100
+ """
101
+ Filters the output with **case-sensitive** characters indicating the beginning of the object name.
102
+ """
103
+ return pulumi.get(self, "starts_with")
104
+
105
+ @property
106
+ @pulumi.getter(name="withDescribe")
107
+ def with_describe(self) -> Optional[bool]:
108
+ """
109
+ Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
110
+ """
111
+ return pulumi.get(self, "with_describe")
112
+
113
+ @property
114
+ @pulumi.getter(name="withParameters")
115
+ def with_parameters(self) -> Optional[bool]:
116
+ """
117
+ Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
118
+ """
119
+ return pulumi.get(self, "with_parameters")
120
+
60
121
 
61
122
  class AwaitableGetSchemasResult(GetSchemasResult):
62
123
  # pylint: disable=using-constant-test
@@ -64,49 +125,92 @@ class AwaitableGetSchemasResult(GetSchemasResult):
64
125
  if False:
65
126
  yield self
66
127
  return GetSchemasResult(
67
- database=self.database,
68
128
  id=self.id,
69
- schemas=self.schemas)
70
-
71
-
72
- def get_schemas(database: Optional[str] = None,
129
+ in_=self.in_,
130
+ like=self.like,
131
+ limit=self.limit,
132
+ schemas=self.schemas,
133
+ starts_with=self.starts_with,
134
+ with_describe=self.with_describe,
135
+ with_parameters=self.with_parameters)
136
+
137
+
138
+ def get_schemas(in_: Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']] = None,
139
+ like: Optional[str] = None,
140
+ limit: Optional[Union['GetSchemasLimitArgs', 'GetSchemasLimitArgsDict']] = None,
141
+ starts_with: Optional[str] = None,
142
+ with_describe: Optional[bool] = None,
143
+ with_parameters: Optional[bool] = None,
73
144
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchemasResult:
74
145
  """
75
- ## Example Usage
146
+ <!-- TODO(SNOW-1844996): Remove this note.-->
147
+ > **Note** Field `WITH PRIVILEGES` is currently missing. It will be added in the future.
148
+
149
+ Data source used to get details of filtered schemas. Filtering is aligned with the current possibilities for [SHOW SCHEMAS](https://docs.snowflake.com/en/sql-reference/sql/show-schemas) query. The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
76
150
 
77
- <!--Start PulumiCodeChooser -->
78
- ```python
79
- import pulumi
80
- import pulumi_snowflake as snowflake
81
151
 
82
- current = snowflake.get_schemas(database="MYDB")
83
- ```
84
- <!--End PulumiCodeChooser -->
152
+ :param Union['GetSchemasInArgs', 'GetSchemasInArgsDict'] in_: IN clause to filter the list of streamlits
153
+ :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
154
+ :param Union['GetSchemasLimitArgs', 'GetSchemasLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
155
+ :param str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
156
+ :param bool with_describe: Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
157
+ :param bool with_parameters: Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
85
158
  """
86
159
  __args__ = dict()
87
- __args__['database'] = database
160
+ __args__['in'] = in_
161
+ __args__['like'] = like
162
+ __args__['limit'] = limit
163
+ __args__['startsWith'] = starts_with
164
+ __args__['withDescribe'] = with_describe
165
+ __args__['withParameters'] = with_parameters
88
166
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
89
167
  __ret__ = pulumi.runtime.invoke('snowflake:index/getSchemas:getSchemas', __args__, opts=opts, typ=GetSchemasResult).value
90
168
 
91
169
  return AwaitableGetSchemasResult(
92
- database=pulumi.get(__ret__, 'database'),
93
170
  id=pulumi.get(__ret__, 'id'),
94
- schemas=pulumi.get(__ret__, 'schemas'))
95
-
96
-
97
- @_utilities.lift_output_func(get_schemas)
98
- def get_schemas_output(database: Optional[pulumi.Input[str]] = None,
99
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSchemasResult]:
171
+ in_=pulumi.get(__ret__, 'in_'),
172
+ like=pulumi.get(__ret__, 'like'),
173
+ limit=pulumi.get(__ret__, 'limit'),
174
+ schemas=pulumi.get(__ret__, 'schemas'),
175
+ starts_with=pulumi.get(__ret__, 'starts_with'),
176
+ with_describe=pulumi.get(__ret__, 'with_describe'),
177
+ with_parameters=pulumi.get(__ret__, 'with_parameters'))
178
+ def get_schemas_output(in_: Optional[pulumi.Input[Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']]]] = None,
179
+ like: Optional[pulumi.Input[Optional[str]]] = None,
180
+ limit: Optional[pulumi.Input[Optional[Union['GetSchemasLimitArgs', 'GetSchemasLimitArgsDict']]]] = None,
181
+ starts_with: Optional[pulumi.Input[Optional[str]]] = None,
182
+ with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
183
+ with_parameters: Optional[pulumi.Input[Optional[bool]]] = None,
184
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSchemasResult]:
100
185
  """
101
- ## Example Usage
186
+ <!-- TODO(SNOW-1844996): Remove this note.-->
187
+ > **Note** Field `WITH PRIVILEGES` is currently missing. It will be added in the future.
102
188
 
103
- <!--Start PulumiCodeChooser -->
104
- ```python
105
- import pulumi
106
- import pulumi_snowflake as snowflake
189
+ Data source used to get details of filtered schemas. Filtering is aligned with the current possibilities for [SHOW SCHEMAS](https://docs.snowflake.com/en/sql-reference/sql/show-schemas) query. The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
107
190
 
108
- current = snowflake.get_schemas(database="MYDB")
109
- ```
110
- <!--End PulumiCodeChooser -->
191
+
192
+ :param Union['GetSchemasInArgs', 'GetSchemasInArgsDict'] in_: IN clause to filter the list of streamlits
193
+ :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
194
+ :param Union['GetSchemasLimitArgs', 'GetSchemasLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
195
+ :param str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
196
+ :param bool with_describe: Runs DESC SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the description field. By default this value is set to true.
197
+ :param bool with_parameters: Runs SHOW PARAMETERS FOR SCHEMA for each schema returned by SHOW SCHEMAS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
111
198
  """
112
- ...
199
+ __args__ = dict()
200
+ __args__['in'] = in_
201
+ __args__['like'] = like
202
+ __args__['limit'] = limit
203
+ __args__['startsWith'] = starts_with
204
+ __args__['withDescribe'] = with_describe
205
+ __args__['withParameters'] = with_parameters
206
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
207
+ __ret__ = pulumi.runtime.invoke_output('snowflake:index/getSchemas:getSchemas', __args__, opts=opts, typ=GetSchemasResult)
208
+ return __ret__.apply(lambda __response__: GetSchemasResult(
209
+ id=pulumi.get(__response__, 'id'),
210
+ in_=pulumi.get(__response__, 'in_'),
211
+ like=pulumi.get(__response__, 'like'),
212
+ limit=pulumi.get(__response__, 'limit'),
213
+ schemas=pulumi.get(__response__, 'schemas'),
214
+ starts_with=pulumi.get(__response__, 'starts_with'),
215
+ with_describe=pulumi.get(__response__, 'with_describe'),
216
+ with_parameters=pulumi.get(__response__, 'with_parameters')))