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.
- pulumi_snowflake/__init__.py +224 -172
- pulumi_snowflake/_inputs.py +52857 -1665
- pulumi_snowflake/_utilities.py +41 -5
- pulumi_snowflake/account.py +188 -218
- pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
- pulumi_snowflake/account_parameter.py +21 -48
- pulumi_snowflake/account_password_policy_attachment.py +7 -32
- pulumi_snowflake/account_role.py +250 -0
- pulumi_snowflake/alert.py +38 -47
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +704 -0
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +657 -0
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +692 -0
- pulumi_snowflake/api_integration.py +33 -52
- pulumi_snowflake/authentication_policy.py +622 -0
- pulumi_snowflake/config/__init__.pyi +76 -99
- pulumi_snowflake/config/outputs.py +5 -0
- pulumi_snowflake/config/vars.py +93 -124
- pulumi_snowflake/cortex_search_service.py +596 -0
- pulumi_snowflake/database.py +819 -213
- pulumi_snowflake/database_role.py +81 -44
- pulumi_snowflake/dynamic_table.py +42 -49
- pulumi_snowflake/email_notification_integration.py +33 -28
- pulumi_snowflake/{unsafe_execute.py → execute.py} +36 -39
- pulumi_snowflake/external_function.py +54 -75
- pulumi_snowflake/external_oauth_integration.py +593 -542
- pulumi_snowflake/external_table.py +67 -90
- pulumi_snowflake/external_volume.py +382 -0
- pulumi_snowflake/failover_group.py +57 -98
- pulumi_snowflake/file_format.py +33 -28
- pulumi_snowflake/function_java.py +1211 -0
- pulumi_snowflake/function_javascript.py +882 -0
- pulumi_snowflake/function_python.py +1212 -0
- pulumi_snowflake/function_scala.py +1212 -0
- pulumi_snowflake/function_sql.py +835 -0
- pulumi_snowflake/get_account_roles.py +129 -0
- pulumi_snowflake/get_accounts.py +53 -22
- pulumi_snowflake/get_alerts.py +22 -9
- pulumi_snowflake/get_connections.py +109 -0
- pulumi_snowflake/get_cortex_search_services.py +216 -0
- pulumi_snowflake/get_current_account.py +24 -13
- pulumi_snowflake/get_current_role.py +14 -7
- pulumi_snowflake/get_database.py +25 -9
- pulumi_snowflake/get_database_role.py +162 -0
- pulumi_snowflake/get_database_roles.py +79 -47
- pulumi_snowflake/get_databases.py +91 -73
- pulumi_snowflake/get_dynamic_tables.py +36 -19
- pulumi_snowflake/get_external_functions.py +28 -9
- pulumi_snowflake/get_external_tables.py +28 -9
- pulumi_snowflake/get_failover_groups.py +18 -7
- pulumi_snowflake/get_file_formats.py +28 -9
- pulumi_snowflake/get_functions.py +28 -9
- pulumi_snowflake/get_grants.py +207 -84
- pulumi_snowflake/get_masking_policies.py +91 -51
- pulumi_snowflake/get_materialized_views.py +28 -9
- pulumi_snowflake/get_network_policies.py +129 -0
- pulumi_snowflake/get_parameters.py +38 -15
- pulumi_snowflake/get_pipes.py +28 -9
- pulumi_snowflake/get_procedures.py +28 -9
- pulumi_snowflake/get_resource_monitors.py +37 -24
- pulumi_snowflake/get_row_access_policies.py +91 -51
- pulumi_snowflake/get_schemas.py +145 -41
- pulumi_snowflake/get_secrets.py +200 -0
- pulumi_snowflake/get_security_integrations.py +129 -0
- pulumi_snowflake/get_sequences.py +28 -9
- pulumi_snowflake/get_shares.py +18 -9
- pulumi_snowflake/get_stages.py +28 -9
- pulumi_snowflake/get_storage_integrations.py +16 -9
- pulumi_snowflake/get_streamlits.py +170 -0
- pulumi_snowflake/get_streams.py +114 -54
- pulumi_snowflake/get_system_generate_scim_access_token.py +18 -9
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +32 -7
- pulumi_snowflake/get_system_get_private_link_config.py +120 -5
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +15 -7
- pulumi_snowflake/get_tables.py +28 -9
- pulumi_snowflake/get_tags.py +130 -0
- pulumi_snowflake/get_tasks.py +134 -54
- pulumi_snowflake/get_users.py +116 -44
- pulumi_snowflake/get_views.py +114 -54
- pulumi_snowflake/get_warehouses.py +79 -26
- pulumi_snowflake/grant_account_role.py +28 -75
- pulumi_snowflake/grant_application_role.py +257 -0
- pulumi_snowflake/grant_database_role.py +35 -94
- pulumi_snowflake/grant_ownership.py +382 -0
- pulumi_snowflake/grant_privileges_to_account_role.py +42 -78
- pulumi_snowflake/grant_privileges_to_database_role.py +37 -383
- pulumi_snowflake/grant_privileges_to_share.py +96 -44
- pulumi_snowflake/legacy_service_user.py +3670 -0
- pulumi_snowflake/managed_account.py +40 -11
- pulumi_snowflake/masking_policy.py +213 -310
- pulumi_snowflake/materialized_view.py +62 -71
- pulumi_snowflake/network_policy.py +217 -61
- pulumi_snowflake/network_policy_attachment.py +5 -34
- pulumi_snowflake/network_rule.py +473 -0
- pulumi_snowflake/notification_integration.py +49 -84
- pulumi_snowflake/oauth_integration_for_custom_clients.py +906 -0
- pulumi_snowflake/{oauth_integration.py → oauth_integration_for_partner_applications.py} +191 -192
- pulumi_snowflake/object_parameter.py +10 -101
- pulumi_snowflake/outputs.py +49200 -2928
- pulumi_snowflake/password_policy.py +41 -28
- pulumi_snowflake/pipe.py +33 -4
- pulumi_snowflake/primary_connection.py +330 -0
- pulumi_snowflake/procedure_java.py +1273 -0
- pulumi_snowflake/procedure_javascript.py +895 -0
- pulumi_snowflake/procedure_python.py +1226 -0
- pulumi_snowflake/procedure_scala.py +1273 -0
- pulumi_snowflake/procedure_sql.py +895 -0
- pulumi_snowflake/provider.py +378 -613
- pulumi_snowflake/pulumi-plugin.json +2 -1
- pulumi_snowflake/resource_monitor.py +118 -327
- pulumi_snowflake/row_access_policy.py +200 -149
- pulumi_snowflake/{saml_integration.py → saml2_integration.py} +356 -299
- pulumi_snowflake/schema.py +949 -178
- pulumi_snowflake/scim_integration.py +286 -109
- pulumi_snowflake/secondary_connection.py +339 -0
- pulumi_snowflake/secondary_database.py +1080 -0
- pulumi_snowflake/secret_with_authorization_code_grant.py +548 -0
- pulumi_snowflake/secret_with_basic_authentication.py +500 -0
- pulumi_snowflake/secret_with_client_credentials.py +511 -0
- pulumi_snowflake/secret_with_generic_string.py +452 -0
- pulumi_snowflake/sequence.py +9 -34
- pulumi_snowflake/service_user.py +3585 -0
- pulumi_snowflake/share.py +33 -28
- pulumi_snowflake/shared_database.py +939 -0
- pulumi_snowflake/stage.py +95 -84
- pulumi_snowflake/storage_integration.py +46 -4
- pulumi_snowflake/stream_on_directory_table.py +517 -0
- pulumi_snowflake/stream_on_external_table.py +632 -0
- pulumi_snowflake/stream_on_table.py +666 -0
- pulumi_snowflake/stream_on_view.py +666 -0
- pulumi_snowflake/streamlit.py +671 -0
- pulumi_snowflake/table.py +86 -97
- pulumi_snowflake/table_column_masking_policy_application.py +7 -14
- pulumi_snowflake/table_constraint.py +29 -172
- pulumi_snowflake/tag.py +142 -74
- pulumi_snowflake/tag_association.py +40 -215
- pulumi_snowflake/task.py +3048 -418
- pulumi_snowflake/user.py +3351 -384
- pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
- pulumi_snowflake/user_password_policy_attachment.py +5 -4
- pulumi_snowflake/user_public_keys.py +5 -0
- pulumi_snowflake/view.py +466 -215
- pulumi_snowflake/warehouse.py +184 -168
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736849992.dist-info}/METADATA +7 -6
- pulumi_snowflake-1.2.0a1736849992.dist-info/RECORD +148 -0
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736849992.dist-info}/WHEEL +1 -1
- pulumi_snowflake/account_grant.py +0 -343
- pulumi_snowflake/database_grant.py +0 -495
- pulumi_snowflake/external_table_grant.py +0 -690
- pulumi_snowflake/failover_group_grant.py +0 -388
- pulumi_snowflake/file_format_grant.py +0 -635
- pulumi_snowflake/function.py +0 -872
- pulumi_snowflake/function_grant.py +0 -745
- pulumi_snowflake/get_role.py +0 -121
- pulumi_snowflake/get_roles.py +0 -120
- pulumi_snowflake/grant_privileges_to_role.py +0 -825
- pulumi_snowflake/integration_grant.py +0 -440
- pulumi_snowflake/masking_policy_grant.py +0 -542
- pulumi_snowflake/materialized_view_grant.py +0 -689
- pulumi_snowflake/pipe_grant.py +0 -587
- pulumi_snowflake/procedure.py +0 -887
- pulumi_snowflake/procedure_grant.py +0 -745
- pulumi_snowflake/resource_monitor_grant.py +0 -387
- pulumi_snowflake/role.py +0 -273
- pulumi_snowflake/role_grants.py +0 -352
- pulumi_snowflake/role_ownership_grant.py +0 -338
- pulumi_snowflake/row_access_policy_grant.py +0 -540
- pulumi_snowflake/schema_grant.py +0 -647
- pulumi_snowflake/sequence_grant.py +0 -635
- pulumi_snowflake/session_parameter.py +0 -332
- pulumi_snowflake/stage_grant.py +0 -635
- pulumi_snowflake/stream.py +0 -614
- pulumi_snowflake/stream_grant.py +0 -635
- pulumi_snowflake/table_grant.py +0 -677
- pulumi_snowflake/tag_grant.py +0 -532
- pulumi_snowflake/tag_masking_policy_association.py +0 -210
- pulumi_snowflake/task_grant.py +0 -635
- pulumi_snowflake/user_grant.py +0 -394
- pulumi_snowflake/user_ownership_grant.py +0 -286
- pulumi_snowflake/view_grant.py +0 -705
- pulumi_snowflake/warehouse_grant.py +0 -440
- pulumi_snowflake-0.50.3a1710160126.dist-info/RECORD +0 -136
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736849992.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
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
|
|
15
|
+
from . import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._inputs import *
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'GetSecretsResult',
|
|
21
|
+
'AwaitableGetSecretsResult',
|
|
22
|
+
'get_secrets',
|
|
23
|
+
'get_secrets_output',
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
@pulumi.output_type
|
|
27
|
+
class GetSecretsResult:
|
|
28
|
+
"""
|
|
29
|
+
A collection of values returned by getSecrets.
|
|
30
|
+
"""
|
|
31
|
+
def __init__(__self__, id=None, in_=None, like=None, secrets=None, with_describe=None):
|
|
32
|
+
if id and not isinstance(id, str):
|
|
33
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
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 secrets and not isinstance(secrets, list):
|
|
42
|
+
raise TypeError("Expected argument 'secrets' to be a list")
|
|
43
|
+
pulumi.set(__self__, "secrets", secrets)
|
|
44
|
+
if with_describe and not isinstance(with_describe, bool):
|
|
45
|
+
raise TypeError("Expected argument 'with_describe' to be a bool")
|
|
46
|
+
pulumi.set(__self__, "with_describe", with_describe)
|
|
47
|
+
|
|
48
|
+
@property
|
|
49
|
+
@pulumi.getter
|
|
50
|
+
def id(self) -> str:
|
|
51
|
+
"""
|
|
52
|
+
The provider-assigned unique ID for this managed resource.
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "id")
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter(name="in")
|
|
58
|
+
def in_(self) -> Optional['outputs.GetSecretsInResult']:
|
|
59
|
+
"""
|
|
60
|
+
IN clause to filter the list of secrets
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "in_")
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def like(self) -> Optional[str]:
|
|
67
|
+
"""
|
|
68
|
+
Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "like")
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter
|
|
74
|
+
def secrets(self) -> Sequence['outputs.GetSecretsSecretResult']:
|
|
75
|
+
"""
|
|
76
|
+
Holds the aggregated output of all secrets details queries.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "secrets")
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter(name="withDescribe")
|
|
82
|
+
def with_describe(self) -> Optional[bool]:
|
|
83
|
+
"""
|
|
84
|
+
Runs DESC SECRET for each secret returned by SHOW SECRETS. The output of describe is saved to the description field. By default this value is set to true.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "with_describe")
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
class AwaitableGetSecretsResult(GetSecretsResult):
|
|
90
|
+
# pylint: disable=using-constant-test
|
|
91
|
+
def __await__(self):
|
|
92
|
+
if False:
|
|
93
|
+
yield self
|
|
94
|
+
return GetSecretsResult(
|
|
95
|
+
id=self.id,
|
|
96
|
+
in_=self.in_,
|
|
97
|
+
like=self.like,
|
|
98
|
+
secrets=self.secrets,
|
|
99
|
+
with_describe=self.with_describe)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
def get_secrets(in_: Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']] = None,
|
|
103
|
+
like: Optional[str] = None,
|
|
104
|
+
with_describe: Optional[bool] = None,
|
|
105
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecretsResult:
|
|
106
|
+
"""
|
|
107
|
+
Data source used to get details of filtered secrets. Filtering is aligned with the current possibilities for [SHOW SECRETS](https://docs.snowflake.com/en/sql-reference/sql/show-secrets) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `secrets`.
|
|
108
|
+
|
|
109
|
+
## Example Usage
|
|
110
|
+
|
|
111
|
+
```python
|
|
112
|
+
import pulumi
|
|
113
|
+
import pulumi_snowflake as snowflake
|
|
114
|
+
|
|
115
|
+
# Simple usage
|
|
116
|
+
simple = snowflake.get_secrets()
|
|
117
|
+
pulumi.export("simpleOutput", simple.secrets)
|
|
118
|
+
# Filtering (like)
|
|
119
|
+
like = snowflake.get_secrets(like="secret-name")
|
|
120
|
+
pulumi.export("likeOutput", like.secrets)
|
|
121
|
+
# Filtering by prefix (like)
|
|
122
|
+
like_prefix = snowflake.get_secrets(like="prefix%")
|
|
123
|
+
pulumi.export("likePrefixOutput", like_prefix.secrets)
|
|
124
|
+
# Filtering (in)
|
|
125
|
+
in_ = snowflake.get_secrets(in_={
|
|
126
|
+
"schema": test["fullyQualifiedName"],
|
|
127
|
+
})
|
|
128
|
+
pulumi.export("inOutput", in_.secrets)
|
|
129
|
+
# Without additional data (to limit the number of calls make for every found secret)
|
|
130
|
+
only_show = snowflake.get_secrets(with_describe=False)
|
|
131
|
+
pulumi.export("onlyShowOutput", only_show.secrets)
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
:param Union['GetSecretsInArgs', 'GetSecretsInArgsDict'] in_: IN clause to filter the list of secrets
|
|
136
|
+
:param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
137
|
+
:param bool with_describe: Runs DESC SECRET for each secret returned by SHOW SECRETS. The output of describe is saved to the description field. By default this value is set to true.
|
|
138
|
+
"""
|
|
139
|
+
__args__ = dict()
|
|
140
|
+
__args__['in'] = in_
|
|
141
|
+
__args__['like'] = like
|
|
142
|
+
__args__['withDescribe'] = with_describe
|
|
143
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
144
|
+
__ret__ = pulumi.runtime.invoke('snowflake:index/getSecrets:getSecrets', __args__, opts=opts, typ=GetSecretsResult).value
|
|
145
|
+
|
|
146
|
+
return AwaitableGetSecretsResult(
|
|
147
|
+
id=pulumi.get(__ret__, 'id'),
|
|
148
|
+
in_=pulumi.get(__ret__, 'in_'),
|
|
149
|
+
like=pulumi.get(__ret__, 'like'),
|
|
150
|
+
secrets=pulumi.get(__ret__, 'secrets'),
|
|
151
|
+
with_describe=pulumi.get(__ret__, 'with_describe'))
|
|
152
|
+
def get_secrets_output(in_: Optional[pulumi.Input[Optional[Union['GetSecretsInArgs', 'GetSecretsInArgsDict']]]] = None,
|
|
153
|
+
like: Optional[pulumi.Input[Optional[str]]] = None,
|
|
154
|
+
with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
155
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecretsResult]:
|
|
156
|
+
"""
|
|
157
|
+
Data source used to get details of filtered secrets. Filtering is aligned with the current possibilities for [SHOW SECRETS](https://docs.snowflake.com/en/sql-reference/sql/show-secrets) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `secrets`.
|
|
158
|
+
|
|
159
|
+
## Example Usage
|
|
160
|
+
|
|
161
|
+
```python
|
|
162
|
+
import pulumi
|
|
163
|
+
import pulumi_snowflake as snowflake
|
|
164
|
+
|
|
165
|
+
# Simple usage
|
|
166
|
+
simple = snowflake.get_secrets()
|
|
167
|
+
pulumi.export("simpleOutput", simple.secrets)
|
|
168
|
+
# Filtering (like)
|
|
169
|
+
like = snowflake.get_secrets(like="secret-name")
|
|
170
|
+
pulumi.export("likeOutput", like.secrets)
|
|
171
|
+
# Filtering by prefix (like)
|
|
172
|
+
like_prefix = snowflake.get_secrets(like="prefix%")
|
|
173
|
+
pulumi.export("likePrefixOutput", like_prefix.secrets)
|
|
174
|
+
# Filtering (in)
|
|
175
|
+
in_ = snowflake.get_secrets(in_={
|
|
176
|
+
"schema": test["fullyQualifiedName"],
|
|
177
|
+
})
|
|
178
|
+
pulumi.export("inOutput", in_.secrets)
|
|
179
|
+
# Without additional data (to limit the number of calls make for every found secret)
|
|
180
|
+
only_show = snowflake.get_secrets(with_describe=False)
|
|
181
|
+
pulumi.export("onlyShowOutput", only_show.secrets)
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
:param Union['GetSecretsInArgs', 'GetSecretsInArgsDict'] in_: IN clause to filter the list of secrets
|
|
186
|
+
:param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
187
|
+
:param bool with_describe: Runs DESC SECRET for each secret returned by SHOW SECRETS. The output of describe is saved to the description field. By default this value is set to true.
|
|
188
|
+
"""
|
|
189
|
+
__args__ = dict()
|
|
190
|
+
__args__['in'] = in_
|
|
191
|
+
__args__['like'] = like
|
|
192
|
+
__args__['withDescribe'] = with_describe
|
|
193
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
194
|
+
__ret__ = pulumi.runtime.invoke_output('snowflake:index/getSecrets:getSecrets', __args__, opts=opts, typ=GetSecretsResult)
|
|
195
|
+
return __ret__.apply(lambda __response__: GetSecretsResult(
|
|
196
|
+
id=pulumi.get(__response__, 'id'),
|
|
197
|
+
in_=pulumi.get(__response__, 'in_'),
|
|
198
|
+
like=pulumi.get(__response__, 'like'),
|
|
199
|
+
secrets=pulumi.get(__response__, 'secrets'),
|
|
200
|
+
with_describe=pulumi.get(__response__, 'with_describe')))
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
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
|
|
15
|
+
from . import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetSecurityIntegrationsResult',
|
|
20
|
+
'AwaitableGetSecurityIntegrationsResult',
|
|
21
|
+
'get_security_integrations',
|
|
22
|
+
'get_security_integrations_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetSecurityIntegrationsResult:
|
|
27
|
+
"""
|
|
28
|
+
A collection of values returned by getSecurityIntegrations.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, id=None, like=None, security_integrations=None, with_describe=None):
|
|
31
|
+
if id and not isinstance(id, str):
|
|
32
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
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)
|
|
37
|
+
if security_integrations and not isinstance(security_integrations, list):
|
|
38
|
+
raise TypeError("Expected argument 'security_integrations' to be a list")
|
|
39
|
+
pulumi.set(__self__, "security_integrations", security_integrations)
|
|
40
|
+
if with_describe and not isinstance(with_describe, bool):
|
|
41
|
+
raise TypeError("Expected argument 'with_describe' to be a bool")
|
|
42
|
+
pulumi.set(__self__, "with_describe", with_describe)
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter
|
|
46
|
+
def id(self) -> str:
|
|
47
|
+
"""
|
|
48
|
+
The provider-assigned unique ID for this managed resource.
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "id")
|
|
51
|
+
|
|
52
|
+
@property
|
|
53
|
+
@pulumi.getter
|
|
54
|
+
def like(self) -> Optional[str]:
|
|
55
|
+
"""
|
|
56
|
+
Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
57
|
+
"""
|
|
58
|
+
return pulumi.get(self, "like")
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter(name="securityIntegrations")
|
|
62
|
+
def security_integrations(self) -> Sequence['outputs.GetSecurityIntegrationsSecurityIntegrationResult']:
|
|
63
|
+
"""
|
|
64
|
+
Holds the aggregated output of all security integrations details queries.
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "security_integrations")
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter(name="withDescribe")
|
|
70
|
+
def with_describe(self) -> Optional[bool]:
|
|
71
|
+
"""
|
|
72
|
+
Runs DESC SECURITY INTEGRATION for each security integration returned by SHOW SECURITY INTEGRATIONS. The output of describe is saved to the description field. By default this value is set to true.
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "with_describe")
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
class AwaitableGetSecurityIntegrationsResult(GetSecurityIntegrationsResult):
|
|
78
|
+
# pylint: disable=using-constant-test
|
|
79
|
+
def __await__(self):
|
|
80
|
+
if False:
|
|
81
|
+
yield self
|
|
82
|
+
return GetSecurityIntegrationsResult(
|
|
83
|
+
id=self.id,
|
|
84
|
+
like=self.like,
|
|
85
|
+
security_integrations=self.security_integrations,
|
|
86
|
+
with_describe=self.with_describe)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
def get_security_integrations(like: Optional[str] = None,
|
|
90
|
+
with_describe: Optional[bool] = None,
|
|
91
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecurityIntegrationsResult:
|
|
92
|
+
"""
|
|
93
|
+
Data source used to get details of filtered security integrations. Filtering is aligned with the current possibilities for [SHOW SECURITY INTEGRATIONS](https://docs.snowflake.com/en/sql-reference/sql/show-integrations) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `security_integrations`.
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
:param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
97
|
+
:param bool with_describe: Runs DESC SECURITY INTEGRATION for each security integration returned by SHOW SECURITY INTEGRATIONS. The output of describe is saved to the description field. By default this value is set to true.
|
|
98
|
+
"""
|
|
99
|
+
__args__ = dict()
|
|
100
|
+
__args__['like'] = like
|
|
101
|
+
__args__['withDescribe'] = with_describe
|
|
102
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
103
|
+
__ret__ = pulumi.runtime.invoke('snowflake:index/getSecurityIntegrations:getSecurityIntegrations', __args__, opts=opts, typ=GetSecurityIntegrationsResult).value
|
|
104
|
+
|
|
105
|
+
return AwaitableGetSecurityIntegrationsResult(
|
|
106
|
+
id=pulumi.get(__ret__, 'id'),
|
|
107
|
+
like=pulumi.get(__ret__, 'like'),
|
|
108
|
+
security_integrations=pulumi.get(__ret__, 'security_integrations'),
|
|
109
|
+
with_describe=pulumi.get(__ret__, 'with_describe'))
|
|
110
|
+
def get_security_integrations_output(like: Optional[pulumi.Input[Optional[str]]] = None,
|
|
111
|
+
with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
112
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecurityIntegrationsResult]:
|
|
113
|
+
"""
|
|
114
|
+
Data source used to get details of filtered security integrations. Filtering is aligned with the current possibilities for [SHOW SECURITY INTEGRATIONS](https://docs.snowflake.com/en/sql-reference/sql/show-integrations) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `security_integrations`.
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
:param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
118
|
+
:param bool with_describe: Runs DESC SECURITY INTEGRATION for each security integration returned by SHOW SECURITY INTEGRATIONS. The output of describe is saved to the description field. By default this value is set to true.
|
|
119
|
+
"""
|
|
120
|
+
__args__ = dict()
|
|
121
|
+
__args__['like'] = like
|
|
122
|
+
__args__['withDescribe'] = with_describe
|
|
123
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
124
|
+
__ret__ = pulumi.runtime.invoke_output('snowflake:index/getSecurityIntegrations:getSecurityIntegrations', __args__, opts=opts, typ=GetSecurityIntegrationsResult)
|
|
125
|
+
return __ret__.apply(lambda __response__: GetSecurityIntegrationsResult(
|
|
126
|
+
id=pulumi.get(__response__, 'id'),
|
|
127
|
+
like=pulumi.get(__response__, 'like'),
|
|
128
|
+
security_integrations=pulumi.get(__response__, 'security_integrations'),
|
|
129
|
+
with_describe=pulumi.get(__response__, 'with_describe')))
|
|
@@ -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_sequences(database: Optional[str] = None,
|
|
|
85
90
|
schema: Optional[str] = None,
|
|
86
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSequencesResult:
|
|
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_sequences(database: Optional[str] = None,
|
|
|
95
101
|
current = snowflake.get_sequences(database="MYDB",
|
|
96
102
|
schema="MYSCHEMA")
|
|
97
103
|
```
|
|
98
|
-
|
|
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 sequences from.
|
|
99
108
|
"""
|
|
100
109
|
__args__ = dict()
|
|
101
110
|
__args__['database'] = database
|
|
@@ -108,16 +117,14 @@ def get_sequences(database: Optional[str] = None,
|
|
|
108
117
|
id=pulumi.get(__ret__, 'id'),
|
|
109
118
|
schema=pulumi.get(__ret__, 'schema'),
|
|
110
119
|
sequences=pulumi.get(__ret__, 'sequences'))
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
@_utilities.lift_output_func(get_sequences)
|
|
114
120
|
def get_sequences_output(database: Optional[pulumi.Input[str]] = None,
|
|
115
121
|
schema: Optional[pulumi.Input[str]] = None,
|
|
116
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSequencesResult]:
|
|
122
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSequencesResult]:
|
|
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_sequences_output(database: Optional[pulumi.Input[str]] = None,
|
|
|
125
132
|
current = snowflake.get_sequences(database="MYDB",
|
|
126
133
|
schema="MYSCHEMA")
|
|
127
134
|
```
|
|
128
|
-
|
|
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 sequences 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/getSequences:getSequences', __args__, opts=opts, typ=GetSequencesResult)
|
|
145
|
+
return __ret__.apply(lambda __response__: GetSequencesResult(
|
|
146
|
+
database=pulumi.get(__response__, 'database'),
|
|
147
|
+
id=pulumi.get(__response__, 'id'),
|
|
148
|
+
schema=pulumi.get(__response__, 'schema'),
|
|
149
|
+
sequences=pulumi.get(__response__, 'sequences')))
|
pulumi_snowflake/get_shares.py
CHANGED
|
@@ -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
|
|
|
@@ -72,9 +77,10 @@ class AwaitableGetSharesResult(GetSharesResult):
|
|
|
72
77
|
def get_shares(pattern: Optional[str] = None,
|
|
73
78
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSharesResult:
|
|
74
79
|
"""
|
|
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.
|
|
81
|
+
|
|
75
82
|
## Example Usage
|
|
76
83
|
|
|
77
|
-
<!--Start PulumiCodeChooser -->
|
|
78
84
|
```python
|
|
79
85
|
import pulumi
|
|
80
86
|
import pulumi_snowflake as snowflake
|
|
@@ -82,7 +88,6 @@ def get_shares(pattern: Optional[str] = None,
|
|
|
82
88
|
this = snowflake.get_shares()
|
|
83
89
|
ad = snowflake.get_shares(pattern="usage")
|
|
84
90
|
```
|
|
85
|
-
<!--End PulumiCodeChooser -->
|
|
86
91
|
|
|
87
92
|
|
|
88
93
|
:param str pattern: Filters the command output by object name.
|
|
@@ -96,15 +101,13 @@ def get_shares(pattern: Optional[str] = None,
|
|
|
96
101
|
id=pulumi.get(__ret__, 'id'),
|
|
97
102
|
pattern=pulumi.get(__ret__, 'pattern'),
|
|
98
103
|
shares=pulumi.get(__ret__, 'shares'))
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
@_utilities.lift_output_func(get_shares)
|
|
102
104
|
def get_shares_output(pattern: Optional[pulumi.Input[Optional[str]]] = None,
|
|
103
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSharesResult]:
|
|
105
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSharesResult]:
|
|
104
106
|
"""
|
|
107
|
+
!> **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.
|
|
108
|
+
|
|
105
109
|
## Example Usage
|
|
106
110
|
|
|
107
|
-
<!--Start PulumiCodeChooser -->
|
|
108
111
|
```python
|
|
109
112
|
import pulumi
|
|
110
113
|
import pulumi_snowflake as snowflake
|
|
@@ -112,9 +115,15 @@ def get_shares_output(pattern: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
112
115
|
this = snowflake.get_shares()
|
|
113
116
|
ad = snowflake.get_shares(pattern="usage")
|
|
114
117
|
```
|
|
115
|
-
<!--End PulumiCodeChooser -->
|
|
116
118
|
|
|
117
119
|
|
|
118
120
|
:param str pattern: Filters the command output by object name.
|
|
119
121
|
"""
|
|
120
|
-
|
|
122
|
+
__args__ = dict()
|
|
123
|
+
__args__['pattern'] = pattern
|
|
124
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
125
|
+
__ret__ = pulumi.runtime.invoke_output('snowflake:index/getShares:getShares', __args__, opts=opts, typ=GetSharesResult)
|
|
126
|
+
return __ret__.apply(lambda __response__: GetSharesResult(
|
|
127
|
+
id=pulumi.get(__response__, 'id'),
|
|
128
|
+
pattern=pulumi.get(__response__, 'pattern'),
|
|
129
|
+
shares=pulumi.get(__response__, 'shares')))
|
pulumi_snowflake/get_stages.py
CHANGED
|
@@ -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_stages(database: Optional[str] = None,
|
|
|
85
90
|
schema: Optional[str] = None,
|
|
86
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStagesResult:
|
|
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_stages(database: Optional[str] = None,
|
|
|
95
101
|
current = snowflake.get_stages(database="MYDB",
|
|
96
102
|
schema="MYSCHEMA")
|
|
97
103
|
```
|
|
98
|
-
|
|
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 stages from.
|
|
99
108
|
"""
|
|
100
109
|
__args__ = dict()
|
|
101
110
|
__args__['database'] = database
|
|
@@ -108,16 +117,14 @@ def get_stages(database: Optional[str] = None,
|
|
|
108
117
|
id=pulumi.get(__ret__, 'id'),
|
|
109
118
|
schema=pulumi.get(__ret__, 'schema'),
|
|
110
119
|
stages=pulumi.get(__ret__, 'stages'))
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
@_utilities.lift_output_func(get_stages)
|
|
114
120
|
def get_stages_output(database: Optional[pulumi.Input[str]] = None,
|
|
115
121
|
schema: Optional[pulumi.Input[str]] = None,
|
|
116
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetStagesResult]:
|
|
122
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStagesResult]:
|
|
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_stages_output(database: Optional[pulumi.Input[str]] = None,
|
|
|
125
132
|
current = snowflake.get_stages(database="MYDB",
|
|
126
133
|
schema="MYSCHEMA")
|
|
127
134
|
```
|
|
128
|
-
|
|
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 stages 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/getStages:getStages', __args__, opts=opts, typ=GetStagesResult)
|
|
145
|
+
return __ret__.apply(lambda __response__: GetStagesResult(
|
|
146
|
+
database=pulumi.get(__response__, 'database'),
|
|
147
|
+
id=pulumi.get(__response__, 'id'),
|
|
148
|
+
schema=pulumi.get(__response__, 'schema'),
|
|
149
|
+
stages=pulumi.get(__response__, 'stages')))
|
|
@@ -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
|
|
|
@@ -59,16 +64,16 @@ class AwaitableGetStorageIntegrationsResult(GetStorageIntegrationsResult):
|
|
|
59
64
|
|
|
60
65
|
def get_storage_integrations(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStorageIntegrationsResult:
|
|
61
66
|
"""
|
|
67
|
+
!> **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.
|
|
68
|
+
|
|
62
69
|
## Example Usage
|
|
63
70
|
|
|
64
|
-
<!--Start PulumiCodeChooser -->
|
|
65
71
|
```python
|
|
66
72
|
import pulumi
|
|
67
73
|
import pulumi_snowflake as snowflake
|
|
68
74
|
|
|
69
75
|
current = snowflake.get_storage_integrations()
|
|
70
76
|
```
|
|
71
|
-
<!--End PulumiCodeChooser -->
|
|
72
77
|
"""
|
|
73
78
|
__args__ = dict()
|
|
74
79
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
@@ -77,20 +82,22 @@ def get_storage_integrations(opts: Optional[pulumi.InvokeOptions] = None) -> Awa
|
|
|
77
82
|
return AwaitableGetStorageIntegrationsResult(
|
|
78
83
|
id=pulumi.get(__ret__, 'id'),
|
|
79
84
|
storage_integrations=pulumi.get(__ret__, 'storage_integrations'))
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
@_utilities.lift_output_func(get_storage_integrations)
|
|
83
|
-
def get_storage_integrations_output(opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetStorageIntegrationsResult]:
|
|
85
|
+
def get_storage_integrations_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStorageIntegrationsResult]:
|
|
84
86
|
"""
|
|
87
|
+
!> **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.
|
|
88
|
+
|
|
85
89
|
## Example Usage
|
|
86
90
|
|
|
87
|
-
<!--Start PulumiCodeChooser -->
|
|
88
91
|
```python
|
|
89
92
|
import pulumi
|
|
90
93
|
import pulumi_snowflake as snowflake
|
|
91
94
|
|
|
92
95
|
current = snowflake.get_storage_integrations()
|
|
93
96
|
```
|
|
94
|
-
<!--End PulumiCodeChooser -->
|
|
95
97
|
"""
|
|
96
|
-
|
|
98
|
+
__args__ = dict()
|
|
99
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
100
|
+
__ret__ = pulumi.runtime.invoke_output('snowflake:index/getStorageIntegrations:getStorageIntegrations', __args__, opts=opts, typ=GetStorageIntegrationsResult)
|
|
101
|
+
return __ret__.apply(lambda __response__: GetStorageIntegrationsResult(
|
|
102
|
+
id=pulumi.get(__response__, 'id'),
|
|
103
|
+
storage_integrations=pulumi.get(__response__, 'storage_integrations')))
|