pulumi-snowflake 1.1.4a1742960027__py3-none-any.whl → 1.2.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 (147) hide show
  1. pulumi_snowflake/__init__.py +1 -0
  2. pulumi_snowflake/_inputs.py +12306 -12305
  3. pulumi_snowflake/account.py +189 -188
  4. pulumi_snowflake/account_authentication_policy_attachment.py +15 -14
  5. pulumi_snowflake/account_parameter.py +29 -28
  6. pulumi_snowflake/account_password_policy_attachment.py +15 -14
  7. pulumi_snowflake/account_role.py +32 -31
  8. pulumi_snowflake/alert.py +123 -122
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +161 -160
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +147 -146
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +157 -156
  12. pulumi_snowflake/api_integration.py +218 -217
  13. pulumi_snowflake/authentication_policy.py +137 -136
  14. pulumi_snowflake/config/__init__.py +1 -0
  15. pulumi_snowflake/config/__init__.pyi +1 -0
  16. pulumi_snowflake/config/outputs.py +16 -15
  17. pulumi_snowflake/config/vars.py +1 -0
  18. pulumi_snowflake/cortex_search_service.py +141 -140
  19. pulumi_snowflake/database.py +288 -287
  20. pulumi_snowflake/database_role.py +50 -49
  21. pulumi_snowflake/dynamic_table.py +227 -226
  22. pulumi_snowflake/email_notification_integration.py +56 -55
  23. pulumi_snowflake/execute.py +50 -49
  24. pulumi_snowflake/external_function.py +237 -236
  25. pulumi_snowflake/external_oauth_integration.py +232 -231
  26. pulumi_snowflake/external_table.py +206 -205
  27. pulumi_snowflake/external_volume.py +59 -54
  28. pulumi_snowflake/failover_group.py +109 -108
  29. pulumi_snowflake/file_format.py +512 -511
  30. pulumi_snowflake/function_java.py +255 -254
  31. pulumi_snowflake/function_javascript.py +199 -198
  32. pulumi_snowflake/function_python.py +272 -271
  33. pulumi_snowflake/function_scala.py +255 -254
  34. pulumi_snowflake/function_sql.py +185 -184
  35. pulumi_snowflake/get_account_roles.py +12 -11
  36. pulumi_snowflake/get_accounts.py +12 -11
  37. pulumi_snowflake/get_alerts.py +23 -18
  38. pulumi_snowflake/get_connections.py +7 -6
  39. pulumi_snowflake/get_cortex_search_services.py +18 -13
  40. pulumi_snowflake/get_current_account.py +11 -6
  41. pulumi_snowflake/get_current_role.py +9 -4
  42. pulumi_snowflake/get_database.py +21 -16
  43. pulumi_snowflake/get_database_role.py +20 -15
  44. pulumi_snowflake/get_database_roles.py +12 -11
  45. pulumi_snowflake/get_databases.py +24 -23
  46. pulumi_snowflake/get_dynamic_tables.py +13 -8
  47. pulumi_snowflake/get_external_functions.py +18 -13
  48. pulumi_snowflake/get_external_tables.py +18 -13
  49. pulumi_snowflake/get_failover_groups.py +13 -8
  50. pulumi_snowflake/get_file_formats.py +18 -13
  51. pulumi_snowflake/get_functions.py +18 -13
  52. pulumi_snowflake/get_grants.py +6 -1
  53. pulumi_snowflake/get_masking_policies.py +13 -12
  54. pulumi_snowflake/get_materialized_views.py +18 -13
  55. pulumi_snowflake/get_network_policies.py +13 -12
  56. pulumi_snowflake/get_parameters.py +34 -29
  57. pulumi_snowflake/get_pipes.py +18 -13
  58. pulumi_snowflake/get_procedures.py +18 -13
  59. pulumi_snowflake/get_resource_monitors.py +7 -6
  60. pulumi_snowflake/get_row_access_policies.py +13 -12
  61. pulumi_snowflake/get_schemas.py +24 -23
  62. pulumi_snowflake/get_secrets.py +17 -12
  63. pulumi_snowflake/get_security_integrations.py +13 -12
  64. pulumi_snowflake/get_sequences.py +18 -13
  65. pulumi_snowflake/get_shares.py +13 -8
  66. pulumi_snowflake/get_stages.py +18 -13
  67. pulumi_snowflake/get_storage_integrations.py +8 -3
  68. pulumi_snowflake/get_streamlits.py +13 -12
  69. pulumi_snowflake/get_streams.py +18 -17
  70. pulumi_snowflake/get_system_generate_scim_access_token.py +14 -9
  71. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +12 -7
  72. pulumi_snowflake/get_system_get_private_link_config.py +17 -12
  73. pulumi_snowflake/get_system_get_snowflake_platform_info.py +10 -5
  74. pulumi_snowflake/get_tables.py +18 -13
  75. pulumi_snowflake/get_tags.py +7 -6
  76. pulumi_snowflake/get_tasks.py +23 -22
  77. pulumi_snowflake/get_users.py +24 -23
  78. pulumi_snowflake/get_views.py +18 -17
  79. pulumi_snowflake/get_warehouses.py +19 -18
  80. pulumi_snowflake/grant_account_role.py +43 -42
  81. pulumi_snowflake/grant_application_role.py +43 -42
  82. pulumi_snowflake/grant_database_role.py +57 -56
  83. pulumi_snowflake/grant_ownership.py +43 -42
  84. pulumi_snowflake/grant_privileges_to_account_role.py +107 -106
  85. pulumi_snowflake/grant_privileges_to_database_role.py +104 -103
  86. pulumi_snowflake/grant_privileges_to_share.py +127 -126
  87. pulumi_snowflake/legacy_service_user.py +1048 -1047
  88. pulumi_snowflake/managed_account.py +116 -115
  89. pulumi_snowflake/masking_policy.py +109 -108
  90. pulumi_snowflake/materialized_view.py +126 -125
  91. pulumi_snowflake/network_policy.py +92 -91
  92. pulumi_snowflake/network_policy_attachment.py +46 -45
  93. pulumi_snowflake/network_rule.py +106 -105
  94. pulumi_snowflake/notification_integration.py +254 -240
  95. pulumi_snowflake/oauth_integration_for_custom_clients.py +225 -224
  96. pulumi_snowflake/oauth_integration_for_partner_applications.py +143 -142
  97. pulumi_snowflake/object_parameter.py +60 -59
  98. pulumi_snowflake/outputs.py +9282 -9281
  99. pulumi_snowflake/password_policy.py +291 -286
  100. pulumi_snowflake/pipe.py +151 -150
  101. pulumi_snowflake/primary_connection.py +55 -54
  102. pulumi_snowflake/procedure_java.py +273 -272
  103. pulumi_snowflake/procedure_javascript.py +203 -202
  104. pulumi_snowflake/procedure_python.py +273 -272
  105. pulumi_snowflake/procedure_scala.py +273 -272
  106. pulumi_snowflake/procedure_sql.py +203 -202
  107. pulumi_snowflake/provider.py +303 -302
  108. pulumi_snowflake/pulumi-plugin.json +1 -1
  109. pulumi_snowflake/resource_monitor.py +134 -133
  110. pulumi_snowflake/row_access_policy.py +78 -77
  111. pulumi_snowflake/saml2_integration.py +258 -257
  112. pulumi_snowflake/schema.py +322 -321
  113. pulumi_snowflake/scim_integration.py +109 -108
  114. pulumi_snowflake/secondary_connection.py +57 -56
  115. pulumi_snowflake/secondary_database.py +288 -287
  116. pulumi_snowflake/secret_with_authorization_code_grant.py +109 -108
  117. pulumi_snowflake/secret_with_basic_authentication.py +95 -94
  118. pulumi_snowflake/secret_with_client_credentials.py +99 -98
  119. pulumi_snowflake/secret_with_generic_string.py +81 -80
  120. pulumi_snowflake/sequence.py +108 -107
  121. pulumi_snowflake/service_user.py +1021 -1020
  122. pulumi_snowflake/share.py +50 -49
  123. pulumi_snowflake/shared_database.py +246 -245
  124. pulumi_snowflake/stage.py +190 -189
  125. pulumi_snowflake/storage_integration.py +231 -165
  126. pulumi_snowflake/stream_on_directory_table.py +100 -99
  127. pulumi_snowflake/stream_on_external_table.py +117 -116
  128. pulumi_snowflake/stream_on_table.py +127 -126
  129. pulumi_snowflake/stream_on_view.py +127 -126
  130. pulumi_snowflake/streamlit.py +148 -147
  131. pulumi_snowflake/table.py +119 -118
  132. pulumi_snowflake/table_column_masking_policy_application.py +43 -42
  133. pulumi_snowflake/table_constraint.py +173 -172
  134. pulumi_snowflake/tag.py +92 -91
  135. pulumi_snowflake/tag_association.py +74 -73
  136. pulumi_snowflake/task.py +1005 -1004
  137. pulumi_snowflake/user.py +1110 -1109
  138. pulumi_snowflake/user_authentication_policy_attachment.py +29 -28
  139. pulumi_snowflake/user_password_policy_attachment.py +29 -28
  140. pulumi_snowflake/user_public_keys.py +43 -42
  141. pulumi_snowflake/view.py +142 -141
  142. pulumi_snowflake/warehouse.py +244 -243
  143. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/METADATA +1 -1
  144. pulumi_snowflake-1.2.0.dist-info/RECORD +148 -0
  145. pulumi_snowflake-1.1.4a1742960027.dist-info/RECORD +0 -148
  146. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/WHEEL +0 -0
  147. {pulumi_snowflake-1.1.4a1742960027.dist-info → pulumi_snowflake-1.2.0.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -52,7 +53,7 @@ class GetParametersResult:
52
53
 
53
54
  @property
54
55
  @pulumi.getter
55
- def id(self) -> str:
56
+ def id(self) -> builtins.str:
56
57
  """
57
58
  The provider-assigned unique ID for this managed resource.
58
59
  """
@@ -60,7 +61,7 @@ class GetParametersResult:
60
61
 
61
62
  @property
62
63
  @pulumi.getter(name="objectName")
63
- def object_name(self) -> Optional[str]:
64
+ def object_name(self) -> Optional[builtins.str]:
64
65
  """
65
66
  If parameter*type is set to "OBJECT" then object*name is the name of the object to display object parameters for.
66
67
  """
@@ -68,7 +69,7 @@ class GetParametersResult:
68
69
 
69
70
  @property
70
71
  @pulumi.getter(name="objectType")
71
- def object_type(self) -> Optional[str]:
72
+ def object_type(self) -> Optional[builtins.str]:
72
73
  """
73
74
  If parameter*type is set to "OBJECT" then object*type is the type of object to display object parameters for. Valid values are any object supported by the IN clause of the [SHOW PARAMETERS](https://docs.snowflake.com/en/sql-reference/sql/show-parameters.html#parameters) statement, including: WAREHOUSE | DATABASE | SCHEMA | TASK | TABLE
74
75
  """
@@ -76,9 +77,9 @@ class GetParametersResult:
76
77
 
77
78
  @property
78
79
  @pulumi.getter(name="parameterType")
79
- def parameter_type(self) -> Optional[str]:
80
+ def parameter_type(self) -> Optional[builtins.str]:
80
81
  """
81
- The type of parameter to filter by. Valid values are: "ACCOUNT", "SESSION", "OBJECT".
82
+ (Default: `ACCOUNT`) The type of parameter to filter by. Valid values are: "ACCOUNT", "SESSION", "OBJECT".
82
83
  """
83
84
  return pulumi.get(self, "parameter_type")
84
85
 
@@ -92,7 +93,7 @@ class GetParametersResult:
92
93
 
93
94
  @property
94
95
  @pulumi.getter
95
- def pattern(self) -> Optional[str]:
96
+ def pattern(self) -> Optional[builtins.str]:
96
97
  """
97
98
  Allows limiting the list of parameters by name using LIKE clause. Refer to [Limiting the List of Parameters by Name](https://docs.snowflake.com/en/sql-reference/parameters.html#limiting-the-list-of-parameters-by-name)
98
99
  """
@@ -100,7 +101,7 @@ class GetParametersResult:
100
101
 
101
102
  @property
102
103
  @pulumi.getter
103
- def user(self) -> Optional[str]:
104
+ def user(self) -> Optional[builtins.str]:
104
105
  """
105
106
  If parameter_type is set to "SESSION" then user is the name of the user to display session parameters for.
106
107
  """
@@ -122,14 +123,14 @@ class AwaitableGetParametersResult(GetParametersResult):
122
123
  user=self.user)
123
124
 
124
125
 
125
- def get_parameters(object_name: Optional[str] = None,
126
- object_type: Optional[str] = None,
127
- parameter_type: Optional[str] = None,
128
- pattern: Optional[str] = None,
129
- user: Optional[str] = None,
126
+ def get_parameters(object_name: Optional[builtins.str] = None,
127
+ object_type: Optional[builtins.str] = None,
128
+ parameter_type: Optional[builtins.str] = None,
129
+ pattern: Optional[builtins.str] = None,
130
+ user: Optional[builtins.str] = None,
130
131
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetParametersResult:
131
132
  """
132
- !> **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.
133
+ !> **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.
133
134
 
134
135
  ## Example Usage
135
136
 
@@ -151,12 +152,14 @@ def get_parameters(object_name: Optional[str] = None,
151
152
  user="TEST_USER")
152
153
  ```
153
154
 
155
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
154
156
 
155
- :param str object_name: If parameter*type is set to "OBJECT" then object*name is the name of the object to display object parameters for.
156
- :param str object_type: If parameter*type is set to "OBJECT" then object*type is the type of object to display object parameters for. Valid values are any object supported by the IN clause of the [SHOW PARAMETERS](https://docs.snowflake.com/en/sql-reference/sql/show-parameters.html#parameters) statement, including: WAREHOUSE | DATABASE | SCHEMA | TASK | TABLE
157
- :param str parameter_type: The type of parameter to filter by. Valid values are: "ACCOUNT", "SESSION", "OBJECT".
158
- :param str pattern: Allows limiting the list of parameters by name using LIKE clause. Refer to [Limiting the List of Parameters by Name](https://docs.snowflake.com/en/sql-reference/parameters.html#limiting-the-list-of-parameters-by-name)
159
- :param str user: If parameter_type is set to "SESSION" then user is the name of the user to display session parameters for.
157
+
158
+ :param builtins.str object_name: If parameter*type is set to "OBJECT" then object*name is the name of the object to display object parameters for.
159
+ :param builtins.str object_type: If parameter*type is set to "OBJECT" then object*type is the type of object to display object parameters for. Valid values are any object supported by the IN clause of the [SHOW PARAMETERS](https://docs.snowflake.com/en/sql-reference/sql/show-parameters.html#parameters) statement, including: WAREHOUSE | DATABASE | SCHEMA | TASK | TABLE
160
+ :param builtins.str parameter_type: (Default: `ACCOUNT`) The type of parameter to filter by. Valid values are: "ACCOUNT", "SESSION", "OBJECT".
161
+ :param builtins.str pattern: Allows limiting the list of parameters by name using LIKE clause. Refer to [Limiting the List of Parameters by Name](https://docs.snowflake.com/en/sql-reference/parameters.html#limiting-the-list-of-parameters-by-name)
162
+ :param builtins.str user: If parameter_type is set to "SESSION" then user is the name of the user to display session parameters for.
160
163
  """
161
164
  __args__ = dict()
162
165
  __args__['objectName'] = object_name
@@ -175,14 +178,14 @@ def get_parameters(object_name: Optional[str] = None,
175
178
  parameters=pulumi.get(__ret__, 'parameters'),
176
179
  pattern=pulumi.get(__ret__, 'pattern'),
177
180
  user=pulumi.get(__ret__, 'user'))
178
- def get_parameters_output(object_name: Optional[pulumi.Input[Optional[str]]] = None,
179
- object_type: Optional[pulumi.Input[Optional[str]]] = None,
180
- parameter_type: Optional[pulumi.Input[Optional[str]]] = None,
181
- pattern: Optional[pulumi.Input[Optional[str]]] = None,
182
- user: Optional[pulumi.Input[Optional[str]]] = None,
181
+ def get_parameters_output(object_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
182
+ object_type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
183
+ parameter_type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
184
+ pattern: Optional[pulumi.Input[Optional[builtins.str]]] = None,
185
+ user: Optional[pulumi.Input[Optional[builtins.str]]] = None,
183
186
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetParametersResult]:
184
187
  """
185
- !> **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.
188
+ !> **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.
186
189
 
187
190
  ## Example Usage
188
191
 
@@ -204,12 +207,14 @@ def get_parameters_output(object_name: Optional[pulumi.Input[Optional[str]]] = N
204
207
  user="TEST_USER")
205
208
  ```
206
209
 
210
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
211
+
207
212
 
208
- :param str object_name: If parameter*type is set to "OBJECT" then object*name is the name of the object to display object parameters for.
209
- :param str object_type: If parameter*type is set to "OBJECT" then object*type is the type of object to display object parameters for. Valid values are any object supported by the IN clause of the [SHOW PARAMETERS](https://docs.snowflake.com/en/sql-reference/sql/show-parameters.html#parameters) statement, including: WAREHOUSE | DATABASE | SCHEMA | TASK | TABLE
210
- :param str parameter_type: The type of parameter to filter by. Valid values are: "ACCOUNT", "SESSION", "OBJECT".
211
- :param str pattern: Allows limiting the list of parameters by name using LIKE clause. Refer to [Limiting the List of Parameters by Name](https://docs.snowflake.com/en/sql-reference/parameters.html#limiting-the-list-of-parameters-by-name)
212
- :param str user: If parameter_type is set to "SESSION" then user is the name of the user to display session parameters for.
213
+ :param builtins.str object_name: If parameter*type is set to "OBJECT" then object*name is the name of the object to display object parameters for.
214
+ :param builtins.str object_type: If parameter*type is set to "OBJECT" then object*type is the type of object to display object parameters for. Valid values are any object supported by the IN clause of the [SHOW PARAMETERS](https://docs.snowflake.com/en/sql-reference/sql/show-parameters.html#parameters) statement, including: WAREHOUSE | DATABASE | SCHEMA | TASK | TABLE
215
+ :param builtins.str parameter_type: (Default: `ACCOUNT`) The type of parameter to filter by. Valid values are: "ACCOUNT", "SESSION", "OBJECT".
216
+ :param builtins.str pattern: Allows limiting the list of parameters by name using LIKE clause. Refer to [Limiting the List of Parameters by Name](https://docs.snowflake.com/en/sql-reference/parameters.html#limiting-the-list-of-parameters-by-name)
217
+ :param builtins.str user: If parameter_type is set to "SESSION" then user is the name of the user to display session parameters for.
213
218
  """
214
219
  __args__ = dict()
215
220
  __args__['objectName'] = object_name
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -43,7 +44,7 @@ class GetPipesResult:
43
44
 
44
45
  @property
45
46
  @pulumi.getter
46
- def database(self) -> str:
47
+ def database(self) -> builtins.str:
47
48
  """
48
49
  The database from which to return the schemas from.
49
50
  """
@@ -51,7 +52,7 @@ class GetPipesResult:
51
52
 
52
53
  @property
53
54
  @pulumi.getter
54
- def id(self) -> str:
55
+ def id(self) -> builtins.str:
55
56
  """
56
57
  The provider-assigned unique ID for this managed resource.
57
58
  """
@@ -67,7 +68,7 @@ class GetPipesResult:
67
68
 
68
69
  @property
69
70
  @pulumi.getter
70
- def schema(self) -> str:
71
+ def schema(self) -> builtins.str:
71
72
  """
72
73
  The schema from which to return the pipes from.
73
74
  """
@@ -86,11 +87,11 @@ class AwaitableGetPipesResult(GetPipesResult):
86
87
  schema=self.schema)
87
88
 
88
89
 
89
- def get_pipes(database: Optional[str] = None,
90
- schema: Optional[str] = None,
90
+ def get_pipes(database: Optional[builtins.str] = None,
91
+ schema: Optional[builtins.str] = None,
91
92
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPipesResult:
92
93
  """
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
+ !> **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
95
 
95
96
  ## Example Usage
96
97
 
@@ -102,9 +103,11 @@ def get_pipes(database: Optional[str] = None,
102
103
  schema="MYSCHEMA")
103
104
  ```
104
105
 
106
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
105
107
 
106
- :param str database: The database from which to return the schemas from.
107
- :param str schema: The schema from which to return the pipes from.
108
+
109
+ :param builtins.str database: The database from which to return the schemas from.
110
+ :param builtins.str schema: The schema from which to return the pipes from.
108
111
  """
109
112
  __args__ = dict()
110
113
  __args__['database'] = database
@@ -117,11 +120,11 @@ def get_pipes(database: Optional[str] = None,
117
120
  id=pulumi.get(__ret__, 'id'),
118
121
  pipes=pulumi.get(__ret__, 'pipes'),
119
122
  schema=pulumi.get(__ret__, 'schema'))
120
- def get_pipes_output(database: Optional[pulumi.Input[str]] = None,
121
- schema: Optional[pulumi.Input[str]] = None,
123
+ def get_pipes_output(database: Optional[pulumi.Input[builtins.str]] = None,
124
+ schema: Optional[pulumi.Input[builtins.str]] = None,
122
125
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPipesResult]:
123
126
  """
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.
127
+ !> **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
128
 
126
129
  ## Example Usage
127
130
 
@@ -133,9 +136,11 @@ def get_pipes_output(database: Optional[pulumi.Input[str]] = None,
133
136
  schema="MYSCHEMA")
134
137
  ```
135
138
 
139
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
140
+
136
141
 
137
- :param str database: The database from which to return the schemas from.
138
- :param str schema: The schema from which to return the pipes from.
142
+ :param builtins.str database: The database from which to return the schemas from.
143
+ :param builtins.str schema: The schema from which to return the pipes from.
139
144
  """
140
145
  __args__ = dict()
141
146
  __args__['database'] = database
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -43,7 +44,7 @@ class GetProceduresResult:
43
44
 
44
45
  @property
45
46
  @pulumi.getter
46
- def database(self) -> str:
47
+ def database(self) -> builtins.str:
47
48
  """
48
49
  The database from which to return the schemas from.
49
50
  """
@@ -51,7 +52,7 @@ class GetProceduresResult:
51
52
 
52
53
  @property
53
54
  @pulumi.getter
54
- def id(self) -> str:
55
+ def id(self) -> builtins.str:
55
56
  """
56
57
  The provider-assigned unique ID for this managed resource.
57
58
  """
@@ -67,7 +68,7 @@ class GetProceduresResult:
67
68
 
68
69
  @property
69
70
  @pulumi.getter
70
- def schema(self) -> str:
71
+ def schema(self) -> builtins.str:
71
72
  """
72
73
  The schema from which to return the procedures from.
73
74
  """
@@ -86,11 +87,11 @@ class AwaitableGetProceduresResult(GetProceduresResult):
86
87
  schema=self.schema)
87
88
 
88
89
 
89
- def get_procedures(database: Optional[str] = None,
90
- schema: Optional[str] = None,
90
+ def get_procedures(database: Optional[builtins.str] = None,
91
+ schema: Optional[builtins.str] = None,
91
92
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProceduresResult:
92
93
  """
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
+ !> **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
95
 
95
96
  ## Example Usage
96
97
 
@@ -102,9 +103,11 @@ def get_procedures(database: Optional[str] = None,
102
103
  schema="MYSCHEMA")
103
104
  ```
104
105
 
106
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
105
107
 
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.
108
+
109
+ :param builtins.str database: The database from which to return the schemas from.
110
+ :param builtins.str schema: The schema from which to return the procedures from.
108
111
  """
109
112
  __args__ = dict()
110
113
  __args__['database'] = database
@@ -117,11 +120,11 @@ def get_procedures(database: Optional[str] = None,
117
120
  id=pulumi.get(__ret__, 'id'),
118
121
  procedures=pulumi.get(__ret__, 'procedures'),
119
122
  schema=pulumi.get(__ret__, 'schema'))
120
- def get_procedures_output(database: Optional[pulumi.Input[str]] = None,
121
- schema: Optional[pulumi.Input[str]] = None,
123
+ def get_procedures_output(database: Optional[pulumi.Input[builtins.str]] = None,
124
+ schema: Optional[pulumi.Input[builtins.str]] = None,
122
125
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetProceduresResult]:
123
126
  """
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.
127
+ !> **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
128
 
126
129
  ## Example Usage
127
130
 
@@ -133,9 +136,11 @@ def get_procedures_output(database: Optional[pulumi.Input[str]] = None,
133
136
  schema="MYSCHEMA")
134
137
  ```
135
138
 
139
+ > **Note** If a field has a default value, it is shown next to the type in the schema.
140
+
136
141
 
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.
142
+ :param builtins.str database: The database from which to return the schemas from.
143
+ :param builtins.str schema: The schema from which to return the procedures from.
139
144
  """
140
145
  __args__ = dict()
141
146
  __args__['database'] = database
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -40,7 +41,7 @@ class GetResourceMonitorsResult:
40
41
 
41
42
  @property
42
43
  @pulumi.getter
43
- def id(self) -> str:
44
+ def id(self) -> builtins.str:
44
45
  """
45
46
  The provider-assigned unique ID for this managed resource.
46
47
  """
@@ -48,7 +49,7 @@ class GetResourceMonitorsResult:
48
49
 
49
50
  @property
50
51
  @pulumi.getter
51
- def like(self) -> Optional[str]:
52
+ def like(self) -> Optional[builtins.str]:
52
53
  """
53
54
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
54
55
  """
@@ -74,13 +75,13 @@ class AwaitableGetResourceMonitorsResult(GetResourceMonitorsResult):
74
75
  resource_monitors=self.resource_monitors)
75
76
 
76
77
 
77
- def get_resource_monitors(like: Optional[str] = None,
78
+ def get_resource_monitors(like: Optional[builtins.str] = None,
78
79
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetResourceMonitorsResult:
79
80
  """
80
81
  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.
81
82
 
82
83
 
83
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
84
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
84
85
  """
85
86
  __args__ = dict()
86
87
  __args__['like'] = like
@@ -91,13 +92,13 @@ def get_resource_monitors(like: Optional[str] = None,
91
92
  id=pulumi.get(__ret__, 'id'),
92
93
  like=pulumi.get(__ret__, 'like'),
93
94
  resource_monitors=pulumi.get(__ret__, 'resource_monitors'))
94
- def get_resource_monitors_output(like: Optional[pulumi.Input[Optional[str]]] = None,
95
+ def get_resource_monitors_output(like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
95
96
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetResourceMonitorsResult]:
96
97
  """
97
98
  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.
98
99
 
99
100
 
100
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
101
+ :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
101
102
  """
102
103
  __args__ = dict()
103
104
  __args__['like'] = like
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -50,7 +51,7 @@ class GetRowAccessPoliciesResult:
50
51
 
51
52
  @property
52
53
  @pulumi.getter
53
- def id(self) -> str:
54
+ def id(self) -> builtins.str:
54
55
  """
55
56
  The provider-assigned unique ID for this managed resource.
56
57
  """
@@ -66,7 +67,7 @@ class GetRowAccessPoliciesResult:
66
67
 
67
68
  @property
68
69
  @pulumi.getter
69
- def like(self) -> Optional[str]:
70
+ def like(self) -> Optional[builtins.str]:
70
71
  """
71
72
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
72
73
  """
@@ -90,9 +91,9 @@ class GetRowAccessPoliciesResult:
90
91
 
91
92
  @property
92
93
  @pulumi.getter(name="withDescribe")
93
- def with_describe(self) -> Optional[bool]:
94
+ def with_describe(self) -> Optional[builtins.bool]:
94
95
  """
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.
96
+ (Default: `true`) 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.
96
97
  """
97
98
  return pulumi.get(self, "with_describe")
98
99
 
@@ -112,18 +113,18 @@ class AwaitableGetRowAccessPoliciesResult(GetRowAccessPoliciesResult):
112
113
 
113
114
 
114
115
  def get_row_access_policies(in_: Optional[Union['GetRowAccessPoliciesInArgs', 'GetRowAccessPoliciesInArgsDict']] = None,
115
- like: Optional[str] = None,
116
+ like: Optional[builtins.str] = None,
116
117
  limit: Optional[Union['GetRowAccessPoliciesLimitArgs', 'GetRowAccessPoliciesLimitArgsDict']] = None,
117
- with_describe: Optional[bool] = None,
118
+ with_describe: Optional[builtins.bool] = None,
118
119
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRowAccessPoliciesResult:
119
120
  """
120
121
  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`.
121
122
 
122
123
 
123
124
  :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 builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
125
126
  :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.
127
+ :param builtins.bool with_describe: (Default: `true`) 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.
127
128
  """
128
129
  __args__ = dict()
129
130
  __args__['in'] = in_
@@ -141,18 +142,18 @@ def get_row_access_policies(in_: Optional[Union['GetRowAccessPoliciesInArgs', 'G
141
142
  row_access_policies=pulumi.get(__ret__, 'row_access_policies'),
142
143
  with_describe=pulumi.get(__ret__, 'with_describe'))
143
144
  def get_row_access_policies_output(in_: Optional[pulumi.Input[Optional[Union['GetRowAccessPoliciesInArgs', 'GetRowAccessPoliciesInArgsDict']]]] = None,
144
- like: Optional[pulumi.Input[Optional[str]]] = None,
145
+ like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
145
146
  limit: Optional[pulumi.Input[Optional[Union['GetRowAccessPoliciesLimitArgs', 'GetRowAccessPoliciesLimitArgsDict']]]] = None,
146
- with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
147
+ with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
147
148
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRowAccessPoliciesResult]:
148
149
  """
149
150
  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`.
150
151
 
151
152
 
152
153
  :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 builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
154
155
  :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.
156
+ :param builtins.bool with_describe: (Default: `true`) 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.
156
157
  """
157
158
  __args__ = dict()
158
159
  __args__['in'] = in_
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -56,7 +57,7 @@ class GetSchemasResult:
56
57
 
57
58
  @property
58
59
  @pulumi.getter
59
- def id(self) -> str:
60
+ def id(self) -> builtins.str:
60
61
  """
61
62
  The provider-assigned unique ID for this managed resource.
62
63
  """
@@ -72,7 +73,7 @@ class GetSchemasResult:
72
73
 
73
74
  @property
74
75
  @pulumi.getter
75
- def like(self) -> Optional[str]:
76
+ def like(self) -> Optional[builtins.str]:
76
77
  """
77
78
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
78
79
  """
@@ -96,7 +97,7 @@ class GetSchemasResult:
96
97
 
97
98
  @property
98
99
  @pulumi.getter(name="startsWith")
99
- def starts_with(self) -> Optional[str]:
100
+ def starts_with(self) -> Optional[builtins.str]:
100
101
  """
101
102
  Filters the output with **case-sensitive** characters indicating the beginning of the object name.
102
103
  """
@@ -104,17 +105,17 @@ class GetSchemasResult:
104
105
 
105
106
  @property
106
107
  @pulumi.getter(name="withDescribe")
107
- def with_describe(self) -> Optional[bool]:
108
+ def with_describe(self) -> Optional[builtins.bool]:
108
109
  """
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
+ (Default: `true`) 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
  """
111
112
  return pulumi.get(self, "with_describe")
112
113
 
113
114
  @property
114
115
  @pulumi.getter(name="withParameters")
115
- def with_parameters(self) -> Optional[bool]:
116
+ def with_parameters(self) -> Optional[builtins.bool]:
116
117
  """
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
+ (Default: `true`) 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
  """
119
120
  return pulumi.get(self, "with_parameters")
120
121
 
@@ -136,11 +137,11 @@ class AwaitableGetSchemasResult(GetSchemasResult):
136
137
 
137
138
 
138
139
  def get_schemas(in_: Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']] = None,
139
- like: Optional[str] = None,
140
+ like: Optional[builtins.str] = None,
140
141
  limit: Optional[Union['GetSchemasLimitArgs', 'GetSchemasLimitArgsDict']] = None,
141
- starts_with: Optional[str] = None,
142
- with_describe: Optional[bool] = None,
143
- with_parameters: Optional[bool] = None,
142
+ starts_with: Optional[builtins.str] = None,
143
+ with_describe: Optional[builtins.bool] = None,
144
+ with_parameters: Optional[builtins.bool] = None,
144
145
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchemasResult:
145
146
  """
146
147
  <!-- TODO(SNOW-1844996): Remove this note.-->
@@ -150,11 +151,11 @@ def get_schemas(in_: Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']]
150
151
 
151
152
 
152
153
  :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 builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
154
155
  :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.
156
+ :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
157
+ :param builtins.bool with_describe: (Default: `true`) 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.
158
+ :param builtins.bool with_parameters: (Default: `true`) 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.
158
159
  """
159
160
  __args__ = dict()
160
161
  __args__['in'] = in_
@@ -176,11 +177,11 @@ def get_schemas(in_: Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']]
176
177
  with_describe=pulumi.get(__ret__, 'with_describe'),
177
178
  with_parameters=pulumi.get(__ret__, 'with_parameters'))
178
179
  def get_schemas_output(in_: Optional[pulumi.Input[Optional[Union['GetSchemasInArgs', 'GetSchemasInArgsDict']]]] = None,
179
- like: Optional[pulumi.Input[Optional[str]]] = None,
180
+ like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
180
181
  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,
182
+ starts_with: Optional[pulumi.Input[Optional[builtins.str]]] = None,
183
+ with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
184
+ with_parameters: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
184
185
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSchemasResult]:
185
186
  """
186
187
  <!-- TODO(SNOW-1844996): Remove this note.-->
@@ -190,11 +191,11 @@ def get_schemas_output(in_: Optional[pulumi.Input[Optional[Union['GetSchemasInAr
190
191
 
191
192
 
192
193
  :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 builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
194
195
  :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.
196
+ :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
197
+ :param builtins.bool with_describe: (Default: `true`) 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.
198
+ :param builtins.bool with_parameters: (Default: `true`) 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.
198
199
  """
199
200
  __args__ = dict()
200
201
  __args__['in'] = in_