pulumi-snowflake 2.3.0a1753339260__py3-none-any.whl → 2.3.0a1753398370__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-snowflake might be problematic. Click here for more details.
- pulumi_snowflake/__init__.py +1 -1
- pulumi_snowflake/_inputs.py +16796 -16797
- pulumi_snowflake/account.py +252 -253
- pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
- pulumi_snowflake/account_parameter.py +35 -36
- pulumi_snowflake/account_password_policy_attachment.py +18 -19
- pulumi_snowflake/account_role.py +42 -43
- pulumi_snowflake/alert.py +149 -150
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
- pulumi_snowflake/api_integration.py +251 -252
- pulumi_snowflake/authentication_policy.py +167 -168
- pulumi_snowflake/compute_pool.py +167 -168
- pulumi_snowflake/config/__init__.py +1 -1
- pulumi_snowflake/config/__init__.pyi +1 -2
- pulumi_snowflake/config/outputs.py +21 -22
- pulumi_snowflake/config/vars.py +43 -44
- pulumi_snowflake/cortex_search_service.py +191 -192
- pulumi_snowflake/current_account.py +2088 -2089
- pulumi_snowflake/database.py +353 -354
- pulumi_snowflake/database_role.py +63 -64
- pulumi_snowflake/dynamic_table.py +274 -275
- pulumi_snowflake/email_notification_integration.py +70 -71
- pulumi_snowflake/execute.py +61 -62
- pulumi_snowflake/external_function.py +280 -281
- pulumi_snowflake/external_oauth_integration.py +288 -289
- pulumi_snowflake/external_table.py +246 -247
- pulumi_snowflake/external_volume.py +68 -69
- pulumi_snowflake/failover_group.py +135 -136
- pulumi_snowflake/file_format.py +622 -623
- pulumi_snowflake/function_java.py +320 -321
- pulumi_snowflake/function_javascript.py +243 -244
- pulumi_snowflake/function_python.py +334 -335
- pulumi_snowflake/function_scala.py +320 -321
- pulumi_snowflake/function_sql.py +226 -227
- pulumi_snowflake/get_account_roles.py +16 -17
- pulumi_snowflake/get_accounts.py +16 -17
- pulumi_snowflake/get_alerts.py +22 -23
- pulumi_snowflake/get_compute_pools.py +23 -24
- pulumi_snowflake/get_connections.py +10 -11
- pulumi_snowflake/get_cortex_search_services.py +18 -19
- pulumi_snowflake/get_current_account.py +9 -10
- pulumi_snowflake/get_current_role.py +5 -6
- pulumi_snowflake/get_database.py +25 -26
- pulumi_snowflake/get_database_role.py +19 -20
- pulumi_snowflake/get_database_roles.py +17 -18
- pulumi_snowflake/get_databases.py +29 -30
- pulumi_snowflake/get_dynamic_tables.py +13 -14
- pulumi_snowflake/get_external_functions.py +16 -17
- pulumi_snowflake/get_external_tables.py +16 -17
- pulumi_snowflake/get_failover_groups.py +10 -11
- pulumi_snowflake/get_file_formats.py +16 -17
- pulumi_snowflake/get_functions.py +16 -17
- pulumi_snowflake/get_git_repositories.py +18 -19
- pulumi_snowflake/get_grants.py +9 -10
- pulumi_snowflake/get_image_repositories.py +11 -12
- pulumi_snowflake/get_masking_policies.py +18 -19
- pulumi_snowflake/get_materialized_views.py +16 -17
- pulumi_snowflake/get_network_policies.py +16 -17
- pulumi_snowflake/get_parameters.py +34 -35
- pulumi_snowflake/get_pipes.py +16 -17
- pulumi_snowflake/get_procedures.py +16 -17
- pulumi_snowflake/get_resource_monitors.py +10 -11
- pulumi_snowflake/get_row_access_policies.py +18 -19
- pulumi_snowflake/get_schemas.py +30 -31
- pulumi_snowflake/get_secrets.py +17 -18
- pulumi_snowflake/get_security_integrations.py +16 -17
- pulumi_snowflake/get_sequences.py +16 -17
- pulumi_snowflake/get_services.py +30 -31
- pulumi_snowflake/get_shares.py +10 -11
- pulumi_snowflake/get_stages.py +16 -17
- pulumi_snowflake/get_storage_integrations.py +4 -5
- pulumi_snowflake/get_streamlits.py +18 -19
- pulumi_snowflake/get_streams.py +24 -25
- pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
- pulumi_snowflake/get_system_get_private_link_config.py +21 -22
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
- pulumi_snowflake/get_tables.py +24 -25
- pulumi_snowflake/get_tags.py +11 -12
- pulumi_snowflake/get_tasks.py +30 -31
- pulumi_snowflake/get_users.py +29 -30
- pulumi_snowflake/get_views.py +24 -25
- pulumi_snowflake/get_warehouses.py +22 -23
- pulumi_snowflake/git_repository.py +133 -134
- pulumi_snowflake/grant_account_role.py +52 -53
- pulumi_snowflake/grant_application_role.py +52 -53
- pulumi_snowflake/grant_database_role.py +69 -70
- pulumi_snowflake/grant_ownership.py +55 -56
- pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
- pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
- pulumi_snowflake/grant_privileges_to_share.py +154 -155
- pulumi_snowflake/image_repository.py +80 -81
- pulumi_snowflake/job_service.py +148 -149
- pulumi_snowflake/legacy_service_user.py +1269 -1270
- pulumi_snowflake/managed_account.py +140 -141
- pulumi_snowflake/masking_policy.py +136 -137
- pulumi_snowflake/materialized_view.py +149 -150
- pulumi_snowflake/network_policy.py +116 -117
- pulumi_snowflake/network_policy_attachment.py +52 -53
- pulumi_snowflake/network_rule.py +129 -130
- pulumi_snowflake/notification_integration.py +298 -299
- pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
- pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
- pulumi_snowflake/object_parameter.py +72 -73
- pulumi_snowflake/outputs.py +15510 -15511
- pulumi_snowflake/password_policy.py +299 -300
- pulumi_snowflake/pipe.py +181 -182
- pulumi_snowflake/primary_connection.py +70 -71
- pulumi_snowflake/procedure_java.py +341 -342
- pulumi_snowflake/procedure_javascript.py +247 -248
- pulumi_snowflake/procedure_python.py +338 -339
- pulumi_snowflake/procedure_scala.py +341 -342
- pulumi_snowflake/procedure_sql.py +247 -248
- pulumi_snowflake/provider.py +377 -378
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/resource_monitor.py +165 -166
- pulumi_snowflake/row_access_policy.py +102 -103
- pulumi_snowflake/saml2_integration.py +303 -304
- pulumi_snowflake/schema.py +390 -391
- pulumi_snowflake/scim_integration.py +133 -134
- pulumi_snowflake/secondary_connection.py +72 -73
- pulumi_snowflake/secondary_database.py +350 -351
- pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
- pulumi_snowflake/secret_with_basic_authentication.py +121 -122
- pulumi_snowflake/secret_with_client_credentials.py +125 -126
- pulumi_snowflake/secret_with_generic_string.py +104 -105
- pulumi_snowflake/sequence.py +121 -122
- pulumi_snowflake/service.py +233 -234
- pulumi_snowflake/service_user.py +1239 -1240
- pulumi_snowflake/share.py +61 -62
- pulumi_snowflake/shared_database.py +299 -300
- pulumi_snowflake/stage.py +234 -235
- pulumi_snowflake/storage_integration.py +230 -231
- pulumi_snowflake/stream_on_directory_table.py +128 -129
- pulumi_snowflake/stream_on_external_table.py +151 -152
- pulumi_snowflake/stream_on_table.py +164 -165
- pulumi_snowflake/stream_on_view.py +164 -165
- pulumi_snowflake/streamlit.py +184 -185
- pulumi_snowflake/table.py +147 -148
- pulumi_snowflake/table_column_masking_policy_application.py +52 -53
- pulumi_snowflake/table_constraint.py +191 -192
- pulumi_snowflake/tag.py +114 -115
- pulumi_snowflake/tag_association.py +86 -87
- pulumi_snowflake/task.py +1224 -1225
- pulumi_snowflake/user.py +1346 -1347
- pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
- pulumi_snowflake/user_password_policy_attachment.py +35 -36
- pulumi_snowflake/user_public_keys.py +52 -53
- pulumi_snowflake/view.py +187 -188
- pulumi_snowflake/warehouse.py +286 -287
- {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
- pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
- pulumi_snowflake-2.3.0a1753339260.dist-info/RECORD +0 -158
- {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -49,15 +48,15 @@ class GetDynamicTablesResult:
|
|
|
49
48
|
raise TypeError("Expected argument 'starts_with' to be a str")
|
|
50
49
|
pulumi.set(__self__, "starts_with", starts_with)
|
|
51
50
|
|
|
52
|
-
@property
|
|
51
|
+
@_builtins.property
|
|
53
52
|
@pulumi.getter
|
|
54
|
-
def id(self) ->
|
|
53
|
+
def id(self) -> _builtins.str:
|
|
55
54
|
"""
|
|
56
55
|
The provider-assigned unique ID for this managed resource.
|
|
57
56
|
"""
|
|
58
57
|
return pulumi.get(self, "id")
|
|
59
58
|
|
|
60
|
-
@property
|
|
59
|
+
@_builtins.property
|
|
61
60
|
@pulumi.getter(name="in")
|
|
62
61
|
def in_(self) -> Optional['outputs.GetDynamicTablesInResult']:
|
|
63
62
|
"""
|
|
@@ -65,7 +64,7 @@ class GetDynamicTablesResult:
|
|
|
65
64
|
"""
|
|
66
65
|
return pulumi.get(self, "in_")
|
|
67
66
|
|
|
68
|
-
@property
|
|
67
|
+
@_builtins.property
|
|
69
68
|
@pulumi.getter
|
|
70
69
|
def like(self) -> Optional['outputs.GetDynamicTablesLikeResult']:
|
|
71
70
|
"""
|
|
@@ -73,7 +72,7 @@ class GetDynamicTablesResult:
|
|
|
73
72
|
"""
|
|
74
73
|
return pulumi.get(self, "like")
|
|
75
74
|
|
|
76
|
-
@property
|
|
75
|
+
@_builtins.property
|
|
77
76
|
@pulumi.getter
|
|
78
77
|
def limit(self) -> Optional['outputs.GetDynamicTablesLimitResult']:
|
|
79
78
|
"""
|
|
@@ -81,7 +80,7 @@ class GetDynamicTablesResult:
|
|
|
81
80
|
"""
|
|
82
81
|
return pulumi.get(self, "limit")
|
|
83
82
|
|
|
84
|
-
@property
|
|
83
|
+
@_builtins.property
|
|
85
84
|
@pulumi.getter
|
|
86
85
|
def records(self) -> Sequence['outputs.GetDynamicTablesRecordResult']:
|
|
87
86
|
"""
|
|
@@ -89,9 +88,9 @@ class GetDynamicTablesResult:
|
|
|
89
88
|
"""
|
|
90
89
|
return pulumi.get(self, "records")
|
|
91
90
|
|
|
92
|
-
@property
|
|
91
|
+
@_builtins.property
|
|
93
92
|
@pulumi.getter(name="startsWith")
|
|
94
|
-
def starts_with(self) -> Optional[
|
|
93
|
+
def starts_with(self) -> Optional[_builtins.str]:
|
|
95
94
|
"""
|
|
96
95
|
Optionally filters the command output based on the characters that appear at the beginning of the object name. The string is case-sensitive.
|
|
97
96
|
"""
|
|
@@ -115,7 +114,7 @@ class AwaitableGetDynamicTablesResult(GetDynamicTablesResult):
|
|
|
115
114
|
def get_dynamic_tables(in_: Optional[Union['GetDynamicTablesInArgs', 'GetDynamicTablesInArgsDict']] = None,
|
|
116
115
|
like: Optional[Union['GetDynamicTablesLikeArgs', 'GetDynamicTablesLikeArgsDict']] = None,
|
|
117
116
|
limit: Optional[Union['GetDynamicTablesLimitArgs', 'GetDynamicTablesLimitArgsDict']] = None,
|
|
118
|
-
starts_with: Optional[
|
|
117
|
+
starts_with: Optional[_builtins.str] = None,
|
|
119
118
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDynamicTablesResult:
|
|
120
119
|
"""
|
|
121
120
|
!> **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.
|
|
@@ -126,7 +125,7 @@ def get_dynamic_tables(in_: Optional[Union['GetDynamicTablesInArgs', 'GetDynamic
|
|
|
126
125
|
:param Union['GetDynamicTablesInArgs', 'GetDynamicTablesInArgsDict'] in_: IN clause to filter the list of dynamic tables.
|
|
127
126
|
:param Union['GetDynamicTablesLikeArgs', 'GetDynamicTablesLikeArgsDict'] like: LIKE clause to filter the list of dynamic tables.
|
|
128
127
|
:param Union['GetDynamicTablesLimitArgs', 'GetDynamicTablesLimitArgsDict'] limit: Optionally limits the maximum number of rows returned, while also enabling “pagination” of the results. Note that the actual number of rows returned might be less than the specified limit (e.g. the number of existing objects is less than the specified limit).
|
|
129
|
-
:param
|
|
128
|
+
:param _builtins.str starts_with: Optionally filters the command output based on the characters that appear at the beginning of the object name. The string is case-sensitive.
|
|
130
129
|
"""
|
|
131
130
|
__args__ = dict()
|
|
132
131
|
__args__['in'] = in_
|
|
@@ -146,7 +145,7 @@ def get_dynamic_tables(in_: Optional[Union['GetDynamicTablesInArgs', 'GetDynamic
|
|
|
146
145
|
def get_dynamic_tables_output(in_: Optional[pulumi.Input[Optional[Union['GetDynamicTablesInArgs', 'GetDynamicTablesInArgsDict']]]] = None,
|
|
147
146
|
like: Optional[pulumi.Input[Optional[Union['GetDynamicTablesLikeArgs', 'GetDynamicTablesLikeArgsDict']]]] = None,
|
|
148
147
|
limit: Optional[pulumi.Input[Optional[Union['GetDynamicTablesLimitArgs', 'GetDynamicTablesLimitArgsDict']]]] = None,
|
|
149
|
-
starts_with: Optional[pulumi.Input[Optional[
|
|
148
|
+
starts_with: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
150
149
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDynamicTablesResult]:
|
|
151
150
|
"""
|
|
152
151
|
!> **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.
|
|
@@ -157,7 +156,7 @@ def get_dynamic_tables_output(in_: Optional[pulumi.Input[Optional[Union['GetDyna
|
|
|
157
156
|
:param Union['GetDynamicTablesInArgs', 'GetDynamicTablesInArgsDict'] in_: IN clause to filter the list of dynamic tables.
|
|
158
157
|
:param Union['GetDynamicTablesLikeArgs', 'GetDynamicTablesLikeArgsDict'] like: LIKE clause to filter the list of dynamic tables.
|
|
159
158
|
:param Union['GetDynamicTablesLimitArgs', 'GetDynamicTablesLimitArgsDict'] limit: Optionally limits the maximum number of rows returned, while also enabling “pagination” of the results. Note that the actual number of rows returned might be less than the specified limit (e.g. the number of existing objects is less than the specified limit).
|
|
160
|
-
:param
|
|
159
|
+
:param _builtins.str starts_with: Optionally filters the command output based on the characters that appear at the beginning of the object name. The string is case-sensitive.
|
|
161
160
|
"""
|
|
162
161
|
__args__ = dict()
|
|
163
162
|
__args__['in'] = in_
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -42,15 +41,15 @@ class GetExternalFunctionsResult:
|
|
|
42
41
|
raise TypeError("Expected argument 'schema' to be a str")
|
|
43
42
|
pulumi.set(__self__, "schema", schema)
|
|
44
43
|
|
|
45
|
-
@property
|
|
44
|
+
@_builtins.property
|
|
46
45
|
@pulumi.getter
|
|
47
|
-
def database(self) -> Optional[
|
|
46
|
+
def database(self) -> Optional[_builtins.str]:
|
|
48
47
|
"""
|
|
49
48
|
The database from which to return the schemas from.
|
|
50
49
|
"""
|
|
51
50
|
return pulumi.get(self, "database")
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter(name="externalFunctions")
|
|
55
54
|
def external_functions(self) -> Sequence['outputs.GetExternalFunctionsExternalFunctionResult']:
|
|
56
55
|
"""
|
|
@@ -58,17 +57,17 @@ class GetExternalFunctionsResult:
|
|
|
58
57
|
"""
|
|
59
58
|
return pulumi.get(self, "external_functions")
|
|
60
59
|
|
|
61
|
-
@property
|
|
60
|
+
@_builtins.property
|
|
62
61
|
@pulumi.getter
|
|
63
|
-
def id(self) ->
|
|
62
|
+
def id(self) -> _builtins.str:
|
|
64
63
|
"""
|
|
65
64
|
The provider-assigned unique ID for this managed resource.
|
|
66
65
|
"""
|
|
67
66
|
return pulumi.get(self, "id")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter
|
|
71
|
-
def schema(self) -> Optional[
|
|
70
|
+
def schema(self) -> Optional[_builtins.str]:
|
|
72
71
|
"""
|
|
73
72
|
The schema from which to return the external functions from.
|
|
74
73
|
"""
|
|
@@ -87,8 +86,8 @@ class AwaitableGetExternalFunctionsResult(GetExternalFunctionsResult):
|
|
|
87
86
|
schema=self.schema)
|
|
88
87
|
|
|
89
88
|
|
|
90
|
-
def get_external_functions(database: Optional[
|
|
91
|
-
schema: Optional[
|
|
89
|
+
def get_external_functions(database: Optional[_builtins.str] = None,
|
|
90
|
+
schema: Optional[_builtins.str] = None,
|
|
92
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalFunctionsResult:
|
|
93
92
|
"""
|
|
94
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.
|
|
@@ -106,8 +105,8 @@ def get_external_functions(database: Optional[builtins.str] = None,
|
|
|
106
105
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
107
106
|
|
|
108
107
|
|
|
109
|
-
:param
|
|
110
|
-
:param
|
|
108
|
+
:param _builtins.str database: The database from which to return the schemas from.
|
|
109
|
+
:param _builtins.str schema: The schema from which to return the external functions from.
|
|
111
110
|
"""
|
|
112
111
|
__args__ = dict()
|
|
113
112
|
__args__['database'] = database
|
|
@@ -120,8 +119,8 @@ def get_external_functions(database: Optional[builtins.str] = None,
|
|
|
120
119
|
external_functions=pulumi.get(__ret__, 'external_functions'),
|
|
121
120
|
id=pulumi.get(__ret__, 'id'),
|
|
122
121
|
schema=pulumi.get(__ret__, 'schema'))
|
|
123
|
-
def get_external_functions_output(database: Optional[pulumi.Input[Optional[
|
|
124
|
-
schema: Optional[pulumi.Input[Optional[
|
|
122
|
+
def get_external_functions_output(database: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
123
|
+
schema: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
125
124
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExternalFunctionsResult]:
|
|
126
125
|
"""
|
|
127
126
|
!> **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.
|
|
@@ -139,8 +138,8 @@ def get_external_functions_output(database: Optional[pulumi.Input[Optional[built
|
|
|
139
138
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
140
139
|
|
|
141
140
|
|
|
142
|
-
:param
|
|
143
|
-
:param
|
|
141
|
+
:param _builtins.str database: The database from which to return the schemas from.
|
|
142
|
+
:param _builtins.str schema: The schema from which to return the external functions from.
|
|
144
143
|
"""
|
|
145
144
|
__args__ = dict()
|
|
146
145
|
__args__['database'] = database
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -42,15 +41,15 @@ class GetExternalTablesResult:
|
|
|
42
41
|
raise TypeError("Expected argument 'schema' to be a str")
|
|
43
42
|
pulumi.set(__self__, "schema", schema)
|
|
44
43
|
|
|
45
|
-
@property
|
|
44
|
+
@_builtins.property
|
|
46
45
|
@pulumi.getter
|
|
47
|
-
def database(self) ->
|
|
46
|
+
def database(self) -> _builtins.str:
|
|
48
47
|
"""
|
|
49
48
|
The database from which to return the schemas from.
|
|
50
49
|
"""
|
|
51
50
|
return pulumi.get(self, "database")
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter(name="externalTables")
|
|
55
54
|
def external_tables(self) -> Sequence['outputs.GetExternalTablesExternalTableResult']:
|
|
56
55
|
"""
|
|
@@ -58,17 +57,17 @@ class GetExternalTablesResult:
|
|
|
58
57
|
"""
|
|
59
58
|
return pulumi.get(self, "external_tables")
|
|
60
59
|
|
|
61
|
-
@property
|
|
60
|
+
@_builtins.property
|
|
62
61
|
@pulumi.getter
|
|
63
|
-
def id(self) ->
|
|
62
|
+
def id(self) -> _builtins.str:
|
|
64
63
|
"""
|
|
65
64
|
The provider-assigned unique ID for this managed resource.
|
|
66
65
|
"""
|
|
67
66
|
return pulumi.get(self, "id")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter
|
|
71
|
-
def schema(self) ->
|
|
70
|
+
def schema(self) -> _builtins.str:
|
|
72
71
|
"""
|
|
73
72
|
The schema from which to return the external tables from.
|
|
74
73
|
"""
|
|
@@ -87,8 +86,8 @@ class AwaitableGetExternalTablesResult(GetExternalTablesResult):
|
|
|
87
86
|
schema=self.schema)
|
|
88
87
|
|
|
89
88
|
|
|
90
|
-
def get_external_tables(database: Optional[
|
|
91
|
-
schema: Optional[
|
|
89
|
+
def get_external_tables(database: Optional[_builtins.str] = None,
|
|
90
|
+
schema: Optional[_builtins.str] = None,
|
|
92
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalTablesResult:
|
|
93
92
|
"""
|
|
94
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.
|
|
@@ -106,8 +105,8 @@ def get_external_tables(database: Optional[builtins.str] = None,
|
|
|
106
105
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
107
106
|
|
|
108
107
|
|
|
109
|
-
:param
|
|
110
|
-
:param
|
|
108
|
+
:param _builtins.str database: The database from which to return the schemas from.
|
|
109
|
+
:param _builtins.str schema: The schema from which to return the external tables from.
|
|
111
110
|
"""
|
|
112
111
|
__args__ = dict()
|
|
113
112
|
__args__['database'] = database
|
|
@@ -120,8 +119,8 @@ def get_external_tables(database: Optional[builtins.str] = None,
|
|
|
120
119
|
external_tables=pulumi.get(__ret__, 'external_tables'),
|
|
121
120
|
id=pulumi.get(__ret__, 'id'),
|
|
122
121
|
schema=pulumi.get(__ret__, 'schema'))
|
|
123
|
-
def get_external_tables_output(database: Optional[pulumi.Input[
|
|
124
|
-
schema: Optional[pulumi.Input[
|
|
122
|
+
def get_external_tables_output(database: Optional[pulumi.Input[_builtins.str]] = None,
|
|
123
|
+
schema: Optional[pulumi.Input[_builtins.str]] = None,
|
|
125
124
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExternalTablesResult]:
|
|
126
125
|
"""
|
|
127
126
|
!> **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.
|
|
@@ -139,8 +138,8 @@ def get_external_tables_output(database: Optional[pulumi.Input[builtins.str]] =
|
|
|
139
138
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
140
139
|
|
|
141
140
|
|
|
142
|
-
:param
|
|
143
|
-
:param
|
|
141
|
+
:param _builtins.str database: The database from which to return the schemas from.
|
|
142
|
+
:param _builtins.str schema: The schema from which to return the external tables from.
|
|
144
143
|
"""
|
|
145
144
|
__args__ = dict()
|
|
146
145
|
__args__['database'] = database
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -39,7 +38,7 @@ class GetFailoverGroupsResult:
|
|
|
39
38
|
raise TypeError("Expected argument 'in_account' to be a str")
|
|
40
39
|
pulumi.set(__self__, "in_account", in_account)
|
|
41
40
|
|
|
42
|
-
@property
|
|
41
|
+
@_builtins.property
|
|
43
42
|
@pulumi.getter(name="failoverGroups")
|
|
44
43
|
def failover_groups(self) -> Sequence['outputs.GetFailoverGroupsFailoverGroupResult']:
|
|
45
44
|
"""
|
|
@@ -47,17 +46,17 @@ class GetFailoverGroupsResult:
|
|
|
47
46
|
"""
|
|
48
47
|
return pulumi.get(self, "failover_groups")
|
|
49
48
|
|
|
50
|
-
@property
|
|
49
|
+
@_builtins.property
|
|
51
50
|
@pulumi.getter
|
|
52
|
-
def id(self) ->
|
|
51
|
+
def id(self) -> _builtins.str:
|
|
53
52
|
"""
|
|
54
53
|
The provider-assigned unique ID for this managed resource.
|
|
55
54
|
"""
|
|
56
55
|
return pulumi.get(self, "id")
|
|
57
56
|
|
|
58
|
-
@property
|
|
57
|
+
@_builtins.property
|
|
59
58
|
@pulumi.getter(name="inAccount")
|
|
60
|
-
def in_account(self) -> Optional[
|
|
59
|
+
def in_account(self) -> Optional[_builtins.str]:
|
|
61
60
|
"""
|
|
62
61
|
Specifies the identifier for the account
|
|
63
62
|
"""
|
|
@@ -75,7 +74,7 @@ class AwaitableGetFailoverGroupsResult(GetFailoverGroupsResult):
|
|
|
75
74
|
in_account=self.in_account)
|
|
76
75
|
|
|
77
76
|
|
|
78
|
-
def get_failover_groups(in_account: Optional[
|
|
77
|
+
def get_failover_groups(in_account: Optional[_builtins.str] = None,
|
|
79
78
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFailoverGroupsResult:
|
|
80
79
|
"""
|
|
81
80
|
!> **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.
|
|
@@ -83,7 +82,7 @@ def get_failover_groups(in_account: Optional[builtins.str] = None,
|
|
|
83
82
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
84
83
|
|
|
85
84
|
|
|
86
|
-
:param
|
|
85
|
+
:param _builtins.str in_account: Specifies the identifier for the account
|
|
87
86
|
"""
|
|
88
87
|
__args__ = dict()
|
|
89
88
|
__args__['inAccount'] = in_account
|
|
@@ -94,7 +93,7 @@ def get_failover_groups(in_account: Optional[builtins.str] = None,
|
|
|
94
93
|
failover_groups=pulumi.get(__ret__, 'failover_groups'),
|
|
95
94
|
id=pulumi.get(__ret__, 'id'),
|
|
96
95
|
in_account=pulumi.get(__ret__, 'in_account'))
|
|
97
|
-
def get_failover_groups_output(in_account: Optional[pulumi.Input[Optional[
|
|
96
|
+
def get_failover_groups_output(in_account: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
98
97
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFailoverGroupsResult]:
|
|
99
98
|
"""
|
|
100
99
|
!> **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.
|
|
@@ -102,7 +101,7 @@ def get_failover_groups_output(in_account: Optional[pulumi.Input[Optional[builti
|
|
|
102
101
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
103
102
|
|
|
104
103
|
|
|
105
|
-
:param
|
|
104
|
+
:param _builtins.str in_account: Specifies the identifier for the account
|
|
106
105
|
"""
|
|
107
106
|
__args__ = dict()
|
|
108
107
|
__args__['inAccount'] = in_account
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -42,15 +41,15 @@ class GetFileFormatsResult:
|
|
|
42
41
|
raise TypeError("Expected argument 'schema' to be a str")
|
|
43
42
|
pulumi.set(__self__, "schema", schema)
|
|
44
43
|
|
|
45
|
-
@property
|
|
44
|
+
@_builtins.property
|
|
46
45
|
@pulumi.getter
|
|
47
|
-
def database(self) ->
|
|
46
|
+
def database(self) -> _builtins.str:
|
|
48
47
|
"""
|
|
49
48
|
The database from which to return the schemas from.
|
|
50
49
|
"""
|
|
51
50
|
return pulumi.get(self, "database")
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter(name="fileFormats")
|
|
55
54
|
def file_formats(self) -> Sequence['outputs.GetFileFormatsFileFormatResult']:
|
|
56
55
|
"""
|
|
@@ -58,17 +57,17 @@ class GetFileFormatsResult:
|
|
|
58
57
|
"""
|
|
59
58
|
return pulumi.get(self, "file_formats")
|
|
60
59
|
|
|
61
|
-
@property
|
|
60
|
+
@_builtins.property
|
|
62
61
|
@pulumi.getter
|
|
63
|
-
def id(self) ->
|
|
62
|
+
def id(self) -> _builtins.str:
|
|
64
63
|
"""
|
|
65
64
|
The provider-assigned unique ID for this managed resource.
|
|
66
65
|
"""
|
|
67
66
|
return pulumi.get(self, "id")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter
|
|
71
|
-
def schema(self) ->
|
|
70
|
+
def schema(self) -> _builtins.str:
|
|
72
71
|
"""
|
|
73
72
|
The schema from which to return the file formats from.
|
|
74
73
|
"""
|
|
@@ -87,8 +86,8 @@ class AwaitableGetFileFormatsResult(GetFileFormatsResult):
|
|
|
87
86
|
schema=self.schema)
|
|
88
87
|
|
|
89
88
|
|
|
90
|
-
def get_file_formats(database: Optional[
|
|
91
|
-
schema: Optional[
|
|
89
|
+
def get_file_formats(database: Optional[_builtins.str] = None,
|
|
90
|
+
schema: Optional[_builtins.str] = None,
|
|
92
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFileFormatsResult:
|
|
93
92
|
"""
|
|
94
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.
|
|
@@ -106,8 +105,8 @@ def get_file_formats(database: Optional[builtins.str] = None,
|
|
|
106
105
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
107
106
|
|
|
108
107
|
|
|
109
|
-
:param
|
|
110
|
-
:param
|
|
108
|
+
:param _builtins.str database: The database from which to return the schemas from.
|
|
109
|
+
:param _builtins.str schema: The schema from which to return the file formats from.
|
|
111
110
|
"""
|
|
112
111
|
__args__ = dict()
|
|
113
112
|
__args__['database'] = database
|
|
@@ -120,8 +119,8 @@ def get_file_formats(database: Optional[builtins.str] = None,
|
|
|
120
119
|
file_formats=pulumi.get(__ret__, 'file_formats'),
|
|
121
120
|
id=pulumi.get(__ret__, 'id'),
|
|
122
121
|
schema=pulumi.get(__ret__, 'schema'))
|
|
123
|
-
def get_file_formats_output(database: Optional[pulumi.Input[
|
|
124
|
-
schema: Optional[pulumi.Input[
|
|
122
|
+
def get_file_formats_output(database: Optional[pulumi.Input[_builtins.str]] = None,
|
|
123
|
+
schema: Optional[pulumi.Input[_builtins.str]] = None,
|
|
125
124
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFileFormatsResult]:
|
|
126
125
|
"""
|
|
127
126
|
!> **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.
|
|
@@ -139,8 +138,8 @@ def get_file_formats_output(database: Optional[pulumi.Input[builtins.str]] = Non
|
|
|
139
138
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
140
139
|
|
|
141
140
|
|
|
142
|
-
:param
|
|
143
|
-
:param
|
|
141
|
+
:param _builtins.str database: The database from which to return the schemas from.
|
|
142
|
+
:param _builtins.str schema: The schema from which to return the file formats from.
|
|
144
143
|
"""
|
|
145
144
|
__args__ = dict()
|
|
146
145
|
__args__['database'] = database
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -42,15 +41,15 @@ class GetFunctionsResult:
|
|
|
42
41
|
raise TypeError("Expected argument 'schema' to be a str")
|
|
43
42
|
pulumi.set(__self__, "schema", schema)
|
|
44
43
|
|
|
45
|
-
@property
|
|
44
|
+
@_builtins.property
|
|
46
45
|
@pulumi.getter
|
|
47
|
-
def database(self) ->
|
|
46
|
+
def database(self) -> _builtins.str:
|
|
48
47
|
"""
|
|
49
48
|
The database from which to return the schemas from.
|
|
50
49
|
"""
|
|
51
50
|
return pulumi.get(self, "database")
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter
|
|
55
54
|
def functions(self) -> Sequence['outputs.GetFunctionsFunctionResult']:
|
|
56
55
|
"""
|
|
@@ -58,17 +57,17 @@ class GetFunctionsResult:
|
|
|
58
57
|
"""
|
|
59
58
|
return pulumi.get(self, "functions")
|
|
60
59
|
|
|
61
|
-
@property
|
|
60
|
+
@_builtins.property
|
|
62
61
|
@pulumi.getter
|
|
63
|
-
def id(self) ->
|
|
62
|
+
def id(self) -> _builtins.str:
|
|
64
63
|
"""
|
|
65
64
|
The provider-assigned unique ID for this managed resource.
|
|
66
65
|
"""
|
|
67
66
|
return pulumi.get(self, "id")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter
|
|
71
|
-
def schema(self) ->
|
|
70
|
+
def schema(self) -> _builtins.str:
|
|
72
71
|
"""
|
|
73
72
|
The schema from which to return the functions from.
|
|
74
73
|
"""
|
|
@@ -87,8 +86,8 @@ class AwaitableGetFunctionsResult(GetFunctionsResult):
|
|
|
87
86
|
schema=self.schema)
|
|
88
87
|
|
|
89
88
|
|
|
90
|
-
def get_functions(database: Optional[
|
|
91
|
-
schema: Optional[
|
|
89
|
+
def get_functions(database: Optional[_builtins.str] = None,
|
|
90
|
+
schema: Optional[_builtins.str] = None,
|
|
92
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFunctionsResult:
|
|
93
92
|
"""
|
|
94
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.
|
|
@@ -106,8 +105,8 @@ def get_functions(database: Optional[builtins.str] = None,
|
|
|
106
105
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
107
106
|
|
|
108
107
|
|
|
109
|
-
:param
|
|
110
|
-
:param
|
|
108
|
+
:param _builtins.str database: The database from which to return the schemas from.
|
|
109
|
+
:param _builtins.str schema: The schema from which to return the functions from.
|
|
111
110
|
"""
|
|
112
111
|
__args__ = dict()
|
|
113
112
|
__args__['database'] = database
|
|
@@ -120,8 +119,8 @@ def get_functions(database: Optional[builtins.str] = None,
|
|
|
120
119
|
functions=pulumi.get(__ret__, 'functions'),
|
|
121
120
|
id=pulumi.get(__ret__, 'id'),
|
|
122
121
|
schema=pulumi.get(__ret__, 'schema'))
|
|
123
|
-
def get_functions_output(database: Optional[pulumi.Input[
|
|
124
|
-
schema: Optional[pulumi.Input[
|
|
122
|
+
def get_functions_output(database: Optional[pulumi.Input[_builtins.str]] = None,
|
|
123
|
+
schema: Optional[pulumi.Input[_builtins.str]] = None,
|
|
125
124
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFunctionsResult]:
|
|
126
125
|
"""
|
|
127
126
|
!> **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.
|
|
@@ -139,8 +138,8 @@ def get_functions_output(database: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
139
138
|
> **Note** If a field has a default value, it is shown next to the type in the schema.
|
|
140
139
|
|
|
141
140
|
|
|
142
|
-
:param
|
|
143
|
-
:param
|
|
141
|
+
:param _builtins.str database: The database from which to return the schemas from.
|
|
142
|
+
:param _builtins.str schema: The schema from which to return the functions from.
|
|
144
143
|
"""
|
|
145
144
|
__args__ = dict()
|
|
146
145
|
__args__['database'] = database
|