pulumi-snowflake 0.50.3a1710160126__py3-none-any.whl → 1.2.0a1736835738__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.0a1736835738.dist-info}/METADATA +7 -6
- pulumi_snowflake-1.2.0a1736835738.dist-info/RECORD +148 -0
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736835738.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.0a1736835738.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,170 @@
|
|
|
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
|
+
'GetStreamlitsResult',
|
|
21
|
+
'AwaitableGetStreamlitsResult',
|
|
22
|
+
'get_streamlits',
|
|
23
|
+
'get_streamlits_output',
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
@pulumi.output_type
|
|
27
|
+
class GetStreamlitsResult:
|
|
28
|
+
"""
|
|
29
|
+
A collection of values returned by getStreamlits.
|
|
30
|
+
"""
|
|
31
|
+
def __init__(__self__, id=None, in_=None, like=None, limit=None, streamlits=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 limit and not isinstance(limit, dict):
|
|
42
|
+
raise TypeError("Expected argument 'limit' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "limit", limit)
|
|
44
|
+
if streamlits and not isinstance(streamlits, list):
|
|
45
|
+
raise TypeError("Expected argument 'streamlits' to be a list")
|
|
46
|
+
pulumi.set(__self__, "streamlits", streamlits)
|
|
47
|
+
if with_describe and not isinstance(with_describe, bool):
|
|
48
|
+
raise TypeError("Expected argument 'with_describe' to be a bool")
|
|
49
|
+
pulumi.set(__self__, "with_describe", with_describe)
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter
|
|
53
|
+
def id(self) -> str:
|
|
54
|
+
"""
|
|
55
|
+
The provider-assigned unique ID for this managed resource.
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "id")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter(name="in")
|
|
61
|
+
def in_(self) -> Optional['outputs.GetStreamlitsInResult']:
|
|
62
|
+
"""
|
|
63
|
+
IN clause to filter the list of streamlits
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "in_")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def like(self) -> Optional[str]:
|
|
70
|
+
"""
|
|
71
|
+
Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "like")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter
|
|
77
|
+
def limit(self) -> Optional['outputs.GetStreamlitsLimitResult']:
|
|
78
|
+
"""
|
|
79
|
+
Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "limit")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter
|
|
85
|
+
def streamlits(self) -> Sequence['outputs.GetStreamlitsStreamlitResult']:
|
|
86
|
+
"""
|
|
87
|
+
Holds the aggregated output of all streamlits details queries.
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "streamlits")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="withDescribe")
|
|
93
|
+
def with_describe(self) -> Optional[bool]:
|
|
94
|
+
"""
|
|
95
|
+
Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "with_describe")
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
class AwaitableGetStreamlitsResult(GetStreamlitsResult):
|
|
101
|
+
# pylint: disable=using-constant-test
|
|
102
|
+
def __await__(self):
|
|
103
|
+
if False:
|
|
104
|
+
yield self
|
|
105
|
+
return GetStreamlitsResult(
|
|
106
|
+
id=self.id,
|
|
107
|
+
in_=self.in_,
|
|
108
|
+
like=self.like,
|
|
109
|
+
limit=self.limit,
|
|
110
|
+
streamlits=self.streamlits,
|
|
111
|
+
with_describe=self.with_describe)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
def get_streamlits(in_: Optional[Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict']] = None,
|
|
115
|
+
like: Optional[str] = None,
|
|
116
|
+
limit: Optional[Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict']] = None,
|
|
117
|
+
with_describe: Optional[bool] = None,
|
|
118
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStreamlitsResult:
|
|
119
|
+
"""
|
|
120
|
+
Data source used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
:param Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict'] in_: IN clause to filter the list of streamlits
|
|
124
|
+
:param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
125
|
+
:param Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict'] 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 STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
|
|
127
|
+
"""
|
|
128
|
+
__args__ = dict()
|
|
129
|
+
__args__['in'] = in_
|
|
130
|
+
__args__['like'] = like
|
|
131
|
+
__args__['limit'] = limit
|
|
132
|
+
__args__['withDescribe'] = with_describe
|
|
133
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
134
|
+
__ret__ = pulumi.runtime.invoke('snowflake:index/getStreamlits:getStreamlits', __args__, opts=opts, typ=GetStreamlitsResult).value
|
|
135
|
+
|
|
136
|
+
return AwaitableGetStreamlitsResult(
|
|
137
|
+
id=pulumi.get(__ret__, 'id'),
|
|
138
|
+
in_=pulumi.get(__ret__, 'in_'),
|
|
139
|
+
like=pulumi.get(__ret__, 'like'),
|
|
140
|
+
limit=pulumi.get(__ret__, 'limit'),
|
|
141
|
+
streamlits=pulumi.get(__ret__, 'streamlits'),
|
|
142
|
+
with_describe=pulumi.get(__ret__, 'with_describe'))
|
|
143
|
+
def get_streamlits_output(in_: Optional[pulumi.Input[Optional[Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict']]]] = None,
|
|
144
|
+
like: Optional[pulumi.Input[Optional[str]]] = None,
|
|
145
|
+
limit: Optional[pulumi.Input[Optional[Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict']]]] = None,
|
|
146
|
+
with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
147
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStreamlitsResult]:
|
|
148
|
+
"""
|
|
149
|
+
Data source used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
:param Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict'] in_: IN clause to filter the list of streamlits
|
|
153
|
+
:param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
154
|
+
:param Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict'] 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 STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
|
|
156
|
+
"""
|
|
157
|
+
__args__ = dict()
|
|
158
|
+
__args__['in'] = in_
|
|
159
|
+
__args__['like'] = like
|
|
160
|
+
__args__['limit'] = limit
|
|
161
|
+
__args__['withDescribe'] = with_describe
|
|
162
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
163
|
+
__ret__ = pulumi.runtime.invoke_output('snowflake:index/getStreamlits:getStreamlits', __args__, opts=opts, typ=GetStreamlitsResult)
|
|
164
|
+
return __ret__.apply(lambda __response__: GetStreamlitsResult(
|
|
165
|
+
id=pulumi.get(__response__, 'id'),
|
|
166
|
+
in_=pulumi.get(__response__, 'in_'),
|
|
167
|
+
like=pulumi.get(__response__, 'like'),
|
|
168
|
+
limit=pulumi.get(__response__, 'limit'),
|
|
169
|
+
streamlits=pulumi.get(__response__, 'streamlits'),
|
|
170
|
+
with_describe=pulumi.get(__response__, 'with_describe')))
|
pulumi_snowflake/get_streams.py
CHANGED
|
@@ -4,11 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
17
|
+
from ._inputs import *
|
|
12
18
|
|
|
13
19
|
__all__ = [
|
|
14
20
|
'GetStreamsResult',
|
|
@@ -22,52 +28,85 @@ class GetStreamsResult:
|
|
|
22
28
|
"""
|
|
23
29
|
A collection of values returned by getStreams.
|
|
24
30
|
"""
|
|
25
|
-
def __init__(__self__,
|
|
26
|
-
if database and not isinstance(database, str):
|
|
27
|
-
raise TypeError("Expected argument 'database' to be a str")
|
|
28
|
-
pulumi.set(__self__, "database", database)
|
|
31
|
+
def __init__(__self__, id=None, in_=None, like=None, limit=None, starts_with=None, streams=None, with_describe=None):
|
|
29
32
|
if id and not isinstance(id, str):
|
|
30
33
|
raise TypeError("Expected argument 'id' to be a str")
|
|
31
34
|
pulumi.set(__self__, "id", id)
|
|
32
|
-
if
|
|
33
|
-
raise TypeError("Expected argument '
|
|
34
|
-
pulumi.set(__self__, "
|
|
35
|
+
if in_ and not isinstance(in_, dict):
|
|
36
|
+
raise TypeError("Expected argument 'in_' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "in_", in_)
|
|
38
|
+
if like and not isinstance(like, str):
|
|
39
|
+
raise TypeError("Expected argument 'like' to be a str")
|
|
40
|
+
pulumi.set(__self__, "like", like)
|
|
41
|
+
if limit and not isinstance(limit, dict):
|
|
42
|
+
raise TypeError("Expected argument 'limit' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "limit", limit)
|
|
44
|
+
if starts_with and not isinstance(starts_with, str):
|
|
45
|
+
raise TypeError("Expected argument 'starts_with' to be a str")
|
|
46
|
+
pulumi.set(__self__, "starts_with", starts_with)
|
|
35
47
|
if streams and not isinstance(streams, list):
|
|
36
48
|
raise TypeError("Expected argument 'streams' to be a list")
|
|
37
49
|
pulumi.set(__self__, "streams", streams)
|
|
50
|
+
if with_describe and not isinstance(with_describe, bool):
|
|
51
|
+
raise TypeError("Expected argument 'with_describe' to be a bool")
|
|
52
|
+
pulumi.set(__self__, "with_describe", with_describe)
|
|
38
53
|
|
|
39
54
|
@property
|
|
40
55
|
@pulumi.getter
|
|
41
|
-
def
|
|
56
|
+
def id(self) -> str:
|
|
57
|
+
"""
|
|
58
|
+
The provider-assigned unique ID for this managed resource.
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "id")
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter(name="in")
|
|
64
|
+
def in_(self) -> Optional['outputs.GetStreamsInResult']:
|
|
42
65
|
"""
|
|
43
|
-
|
|
66
|
+
IN clause to filter the list of objects
|
|
44
67
|
"""
|
|
45
|
-
return pulumi.get(self, "
|
|
68
|
+
return pulumi.get(self, "in_")
|
|
46
69
|
|
|
47
70
|
@property
|
|
48
71
|
@pulumi.getter
|
|
49
|
-
def
|
|
72
|
+
def like(self) -> Optional[str]:
|
|
50
73
|
"""
|
|
51
|
-
|
|
74
|
+
Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
52
75
|
"""
|
|
53
|
-
return pulumi.get(self, "
|
|
76
|
+
return pulumi.get(self, "like")
|
|
54
77
|
|
|
55
78
|
@property
|
|
56
79
|
@pulumi.getter
|
|
57
|
-
def
|
|
80
|
+
def limit(self) -> Optional['outputs.GetStreamsLimitResult']:
|
|
58
81
|
"""
|
|
59
|
-
|
|
82
|
+
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`.
|
|
60
83
|
"""
|
|
61
|
-
return pulumi.get(self, "
|
|
84
|
+
return pulumi.get(self, "limit")
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter(name="startsWith")
|
|
88
|
+
def starts_with(self) -> Optional[str]:
|
|
89
|
+
"""
|
|
90
|
+
Filters the output with **case-sensitive** characters indicating the beginning of the object name.
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "starts_with")
|
|
62
93
|
|
|
63
94
|
@property
|
|
64
95
|
@pulumi.getter
|
|
65
96
|
def streams(self) -> Sequence['outputs.GetStreamsStreamResult']:
|
|
66
97
|
"""
|
|
67
|
-
|
|
98
|
+
Holds the aggregated output of all streams details queries.
|
|
68
99
|
"""
|
|
69
100
|
return pulumi.get(self, "streams")
|
|
70
101
|
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter(name="withDescribe")
|
|
104
|
+
def with_describe(self) -> Optional[bool]:
|
|
105
|
+
"""
|
|
106
|
+
Runs DESC STREAM for each user returned by SHOW STREAMS. The output of describe is saved to the description field. By default this value is set to true.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "with_describe")
|
|
109
|
+
|
|
71
110
|
|
|
72
111
|
class AwaitableGetStreamsResult(GetStreamsResult):
|
|
73
112
|
# pylint: disable=using-constant-test
|
|
@@ -75,56 +114,77 @@ class AwaitableGetStreamsResult(GetStreamsResult):
|
|
|
75
114
|
if False:
|
|
76
115
|
yield self
|
|
77
116
|
return GetStreamsResult(
|
|
78
|
-
database=self.database,
|
|
79
117
|
id=self.id,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
118
|
+
in_=self.in_,
|
|
119
|
+
like=self.like,
|
|
120
|
+
limit=self.limit,
|
|
121
|
+
starts_with=self.starts_with,
|
|
122
|
+
streams=self.streams,
|
|
123
|
+
with_describe=self.with_describe)
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
def get_streams(in_: Optional[Union['GetStreamsInArgs', 'GetStreamsInArgsDict']] = None,
|
|
127
|
+
like: Optional[str] = None,
|
|
128
|
+
limit: Optional[Union['GetStreamsLimitArgs', 'GetStreamsLimitArgsDict']] = None,
|
|
129
|
+
starts_with: Optional[str] = None,
|
|
130
|
+
with_describe: Optional[bool] = None,
|
|
86
131
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStreamsResult:
|
|
87
132
|
"""
|
|
88
|
-
|
|
133
|
+
Data source used to get details of filtered streams. Filtering is aligned with the current possibilities for [SHOW STREAMS](https://docs.snowflake.com/en/sql-reference/sql/show-streams) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `streams`.
|
|
89
134
|
|
|
90
|
-
<!--Start PulumiCodeChooser -->
|
|
91
|
-
```python
|
|
92
|
-
import pulumi
|
|
93
|
-
import pulumi_snowflake as snowflake
|
|
94
135
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
136
|
+
:param Union['GetStreamsInArgs', 'GetStreamsInArgsDict'] in_: IN clause to filter the list of objects
|
|
137
|
+
:param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
138
|
+
:param Union['GetStreamsLimitArgs', 'GetStreamsLimitArgsDict'] 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`.
|
|
139
|
+
:param str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
|
|
140
|
+
:param bool with_describe: Runs DESC STREAM for each user returned by SHOW STREAMS. The output of describe is saved to the description field. By default this value is set to true.
|
|
99
141
|
"""
|
|
100
142
|
__args__ = dict()
|
|
101
|
-
__args__['
|
|
102
|
-
__args__['
|
|
143
|
+
__args__['in'] = in_
|
|
144
|
+
__args__['like'] = like
|
|
145
|
+
__args__['limit'] = limit
|
|
146
|
+
__args__['startsWith'] = starts_with
|
|
147
|
+
__args__['withDescribe'] = with_describe
|
|
103
148
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
104
149
|
__ret__ = pulumi.runtime.invoke('snowflake:index/getStreams:getStreams', __args__, opts=opts, typ=GetStreamsResult).value
|
|
105
150
|
|
|
106
151
|
return AwaitableGetStreamsResult(
|
|
107
|
-
database=pulumi.get(__ret__, 'database'),
|
|
108
152
|
id=pulumi.get(__ret__, 'id'),
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
153
|
+
in_=pulumi.get(__ret__, 'in_'),
|
|
154
|
+
like=pulumi.get(__ret__, 'like'),
|
|
155
|
+
limit=pulumi.get(__ret__, 'limit'),
|
|
156
|
+
starts_with=pulumi.get(__ret__, 'starts_with'),
|
|
157
|
+
streams=pulumi.get(__ret__, 'streams'),
|
|
158
|
+
with_describe=pulumi.get(__ret__, 'with_describe'))
|
|
159
|
+
def get_streams_output(in_: Optional[pulumi.Input[Optional[Union['GetStreamsInArgs', 'GetStreamsInArgsDict']]]] = None,
|
|
160
|
+
like: Optional[pulumi.Input[Optional[str]]] = None,
|
|
161
|
+
limit: Optional[pulumi.Input[Optional[Union['GetStreamsLimitArgs', 'GetStreamsLimitArgsDict']]]] = None,
|
|
162
|
+
starts_with: Optional[pulumi.Input[Optional[str]]] = None,
|
|
163
|
+
with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
164
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStreamsResult]:
|
|
117
165
|
"""
|
|
118
|
-
|
|
166
|
+
Data source used to get details of filtered streams. Filtering is aligned with the current possibilities for [SHOW STREAMS](https://docs.snowflake.com/en/sql-reference/sql/show-streams) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `streams`.
|
|
119
167
|
|
|
120
|
-
<!--Start PulumiCodeChooser -->
|
|
121
|
-
```python
|
|
122
|
-
import pulumi
|
|
123
|
-
import pulumi_snowflake as snowflake
|
|
124
168
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
169
|
+
:param Union['GetStreamsInArgs', 'GetStreamsInArgsDict'] in_: IN clause to filter the list of objects
|
|
170
|
+
:param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
|
|
171
|
+
:param Union['GetStreamsLimitArgs', 'GetStreamsLimitArgsDict'] 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`.
|
|
172
|
+
:param str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
|
|
173
|
+
:param bool with_describe: Runs DESC STREAM for each user returned by SHOW STREAMS. The output of describe is saved to the description field. By default this value is set to true.
|
|
129
174
|
"""
|
|
130
|
-
|
|
175
|
+
__args__ = dict()
|
|
176
|
+
__args__['in'] = in_
|
|
177
|
+
__args__['like'] = like
|
|
178
|
+
__args__['limit'] = limit
|
|
179
|
+
__args__['startsWith'] = starts_with
|
|
180
|
+
__args__['withDescribe'] = with_describe
|
|
181
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
182
|
+
__ret__ = pulumi.runtime.invoke_output('snowflake:index/getStreams:getStreams', __args__, opts=opts, typ=GetStreamsResult)
|
|
183
|
+
return __ret__.apply(lambda __response__: GetStreamsResult(
|
|
184
|
+
id=pulumi.get(__response__, 'id'),
|
|
185
|
+
in_=pulumi.get(__response__, 'in_'),
|
|
186
|
+
like=pulumi.get(__response__, 'like'),
|
|
187
|
+
limit=pulumi.get(__response__, 'limit'),
|
|
188
|
+
starts_with=pulumi.get(__response__, 'starts_with'),
|
|
189
|
+
streams=pulumi.get(__response__, 'streams'),
|
|
190
|
+
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
|
|
|
12
17
|
__all__ = [
|
|
@@ -71,16 +76,16 @@ class AwaitableGetSystemGenerateScimAccessTokenResult(GetSystemGenerateScimAcces
|
|
|
71
76
|
def get_system_generate_scim_access_token(integration_name: Optional[str] = None,
|
|
72
77
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSystemGenerateScimAccessTokenResult:
|
|
73
78
|
"""
|
|
79
|
+
!> **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.
|
|
80
|
+
|
|
74
81
|
## Example Usage
|
|
75
82
|
|
|
76
|
-
<!--Start PulumiCodeChooser -->
|
|
77
83
|
```python
|
|
78
84
|
import pulumi
|
|
79
85
|
import pulumi_snowflake as snowflake
|
|
80
86
|
|
|
81
87
|
scim = snowflake.get_system_generate_scim_access_token(integration_name="AAD_PROVISIONING")
|
|
82
88
|
```
|
|
83
|
-
<!--End PulumiCodeChooser -->
|
|
84
89
|
|
|
85
90
|
|
|
86
91
|
:param str integration_name: SCIM Integration Name
|
|
@@ -94,24 +99,28 @@ def get_system_generate_scim_access_token(integration_name: Optional[str] = None
|
|
|
94
99
|
access_token=pulumi.get(__ret__, 'access_token'),
|
|
95
100
|
id=pulumi.get(__ret__, 'id'),
|
|
96
101
|
integration_name=pulumi.get(__ret__, 'integration_name'))
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
@_utilities.lift_output_func(get_system_generate_scim_access_token)
|
|
100
102
|
def get_system_generate_scim_access_token_output(integration_name: Optional[pulumi.Input[str]] = None,
|
|
101
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSystemGenerateScimAccessTokenResult]:
|
|
103
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSystemGenerateScimAccessTokenResult]:
|
|
102
104
|
"""
|
|
105
|
+
!> **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
|
+
|
|
103
107
|
## Example Usage
|
|
104
108
|
|
|
105
|
-
<!--Start PulumiCodeChooser -->
|
|
106
109
|
```python
|
|
107
110
|
import pulumi
|
|
108
111
|
import pulumi_snowflake as snowflake
|
|
109
112
|
|
|
110
113
|
scim = snowflake.get_system_generate_scim_access_token(integration_name="AAD_PROVISIONING")
|
|
111
114
|
```
|
|
112
|
-
<!--End PulumiCodeChooser -->
|
|
113
115
|
|
|
114
116
|
|
|
115
117
|
:param str integration_name: SCIM Integration Name
|
|
116
118
|
"""
|
|
117
|
-
|
|
119
|
+
__args__ = dict()
|
|
120
|
+
__args__['integrationName'] = integration_name
|
|
121
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
122
|
+
__ret__ = pulumi.runtime.invoke_output('snowflake:index/getSystemGenerateScimAccessToken:getSystemGenerateScimAccessToken', __args__, opts=opts, typ=GetSystemGenerateScimAccessTokenResult)
|
|
123
|
+
return __ret__.apply(lambda __response__: GetSystemGenerateScimAccessTokenResult(
|
|
124
|
+
access_token=pulumi.get(__response__, 'access_token'),
|
|
125
|
+
id=pulumi.get(__response__, 'id'),
|
|
126
|
+
integration_name=pulumi.get(__response__, 'integration_name')))
|
|
@@ -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
|
|
|
12
17
|
__all__ = [
|
|
@@ -71,7 +76,15 @@ class AwaitableGetSystemGetAwsSnsIamPolicyResult(GetSystemGetAwsSnsIamPolicyResu
|
|
|
71
76
|
def get_system_get_aws_sns_iam_policy(aws_sns_topic_arn: Optional[str] = None,
|
|
72
77
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSystemGetAwsSnsIamPolicyResult:
|
|
73
78
|
"""
|
|
74
|
-
|
|
79
|
+
## Example Usage
|
|
80
|
+
|
|
81
|
+
```python
|
|
82
|
+
import pulumi
|
|
83
|
+
import pulumi_snowflake as snowflake
|
|
84
|
+
|
|
85
|
+
snowflake_policy = snowflake.get_system_get_aws_sns_iam_policy(aws_sns_topic_arn="<aws_sns_topic_arn>")
|
|
86
|
+
```
|
|
87
|
+
|
|
75
88
|
|
|
76
89
|
:param str aws_sns_topic_arn: Amazon Resource Name (ARN) of the SNS topic for your S3 bucket
|
|
77
90
|
"""
|
|
@@ -84,14 +97,26 @@ def get_system_get_aws_sns_iam_policy(aws_sns_topic_arn: Optional[str] = None,
|
|
|
84
97
|
aws_sns_topic_arn=pulumi.get(__ret__, 'aws_sns_topic_arn'),
|
|
85
98
|
aws_sns_topic_policy_json=pulumi.get(__ret__, 'aws_sns_topic_policy_json'),
|
|
86
99
|
id=pulumi.get(__ret__, 'id'))
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
@_utilities.lift_output_func(get_system_get_aws_sns_iam_policy)
|
|
90
100
|
def get_system_get_aws_sns_iam_policy_output(aws_sns_topic_arn: Optional[pulumi.Input[str]] = None,
|
|
91
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSystemGetAwsSnsIamPolicyResult]:
|
|
101
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSystemGetAwsSnsIamPolicyResult]:
|
|
92
102
|
"""
|
|
93
|
-
|
|
103
|
+
## Example Usage
|
|
104
|
+
|
|
105
|
+
```python
|
|
106
|
+
import pulumi
|
|
107
|
+
import pulumi_snowflake as snowflake
|
|
108
|
+
|
|
109
|
+
snowflake_policy = snowflake.get_system_get_aws_sns_iam_policy(aws_sns_topic_arn="<aws_sns_topic_arn>")
|
|
110
|
+
```
|
|
111
|
+
|
|
94
112
|
|
|
95
113
|
:param str aws_sns_topic_arn: Amazon Resource Name (ARN) of the SNS topic for your S3 bucket
|
|
96
114
|
"""
|
|
97
|
-
|
|
115
|
+
__args__ = dict()
|
|
116
|
+
__args__['awsSnsTopicArn'] = aws_sns_topic_arn
|
|
117
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
118
|
+
__ret__ = pulumi.runtime.invoke_output('snowflake:index/getSystemGetAwsSnsIamPolicy:getSystemGetAwsSnsIamPolicy', __args__, opts=opts, typ=GetSystemGetAwsSnsIamPolicyResult)
|
|
119
|
+
return __ret__.apply(lambda __response__: GetSystemGetAwsSnsIamPolicyResult(
|
|
120
|
+
aws_sns_topic_arn=pulumi.get(__response__, 'aws_sns_topic_arn'),
|
|
121
|
+
aws_sns_topic_policy_json=pulumi.get(__response__, 'aws_sns_topic_policy_json'),
|
|
122
|
+
id=pulumi.get(__response__, 'id')))
|