pulumi-snowflake 0.63.0a1734439451__py3-none-any.whl → 1.0.0a1734440141__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (127) hide show
  1. pulumi_snowflake/__init__.py +82 -74
  2. pulumi_snowflake/_inputs.py +12705 -4876
  3. pulumi_snowflake/account.py +156 -163
  4. pulumi_snowflake/account_parameter.py +16 -16
  5. pulumi_snowflake/account_role.py +9 -9
  6. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +9 -22
  7. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +9 -22
  8. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +9 -22
  9. pulumi_snowflake/authentication_policy.py +21 -21
  10. pulumi_snowflake/config/__init__.pyi +8 -86
  11. pulumi_snowflake/config/vars.py +10 -110
  12. pulumi_snowflake/database.py +9 -9
  13. pulumi_snowflake/database_role.py +14 -14
  14. pulumi_snowflake/{unsafe_execute.py → execute.py} +35 -25
  15. pulumi_snowflake/external_oauth_integration.py +27 -27
  16. pulumi_snowflake/external_volume.py +11 -7
  17. pulumi_snowflake/function_java.py +1211 -0
  18. pulumi_snowflake/function_javascript.py +882 -0
  19. pulumi_snowflake/function_python.py +1212 -0
  20. pulumi_snowflake/function_scala.py +1212 -0
  21. pulumi_snowflake/function_sql.py +835 -0
  22. pulumi_snowflake/get_account_roles.py +129 -0
  23. pulumi_snowflake/get_accounts.py +41 -19
  24. pulumi_snowflake/get_alerts.py +4 -0
  25. pulumi_snowflake/get_connections.py +2 -40
  26. pulumi_snowflake/get_cortex_search_services.py +4 -0
  27. pulumi_snowflake/get_current_account.py +4 -0
  28. pulumi_snowflake/get_current_role.py +2 -2
  29. pulumi_snowflake/get_database.py +4 -0
  30. pulumi_snowflake/get_database_role.py +4 -0
  31. pulumi_snowflake/get_database_roles.py +2 -6
  32. pulumi_snowflake/get_databases.py +2 -6
  33. pulumi_snowflake/get_dynamic_tables.py +4 -2
  34. pulumi_snowflake/get_external_functions.py +4 -0
  35. pulumi_snowflake/get_external_tables.py +4 -0
  36. pulumi_snowflake/get_failover_groups.py +4 -2
  37. pulumi_snowflake/get_file_formats.py +4 -0
  38. pulumi_snowflake/get_functions.py +4 -0
  39. pulumi_snowflake/get_grants.py +0 -4
  40. pulumi_snowflake/get_masking_policies.py +2 -6
  41. pulumi_snowflake/get_materialized_views.py +4 -0
  42. pulumi_snowflake/get_network_policies.py +2 -6
  43. pulumi_snowflake/get_parameters.py +4 -0
  44. pulumi_snowflake/get_pipes.py +4 -0
  45. pulumi_snowflake/get_procedures.py +4 -0
  46. pulumi_snowflake/get_resource_monitors.py +2 -6
  47. pulumi_snowflake/get_row_access_policies.py +2 -6
  48. pulumi_snowflake/get_schemas.py +6 -4
  49. pulumi_snowflake/get_secrets.py +2 -6
  50. pulumi_snowflake/get_security_integrations.py +2 -6
  51. pulumi_snowflake/get_sequences.py +4 -0
  52. pulumi_snowflake/get_shares.py +4 -0
  53. pulumi_snowflake/get_stages.py +4 -0
  54. pulumi_snowflake/get_storage_integrations.py +4 -0
  55. pulumi_snowflake/get_streamlits.py +2 -6
  56. pulumi_snowflake/get_streams.py +2 -6
  57. pulumi_snowflake/get_system_generate_scim_access_token.py +4 -0
  58. pulumi_snowflake/get_system_get_private_link_config.py +4 -0
  59. pulumi_snowflake/get_system_get_snowflake_platform_info.py +2 -2
  60. pulumi_snowflake/get_tables.py +4 -0
  61. pulumi_snowflake/get_tags.py +2 -6
  62. pulumi_snowflake/get_tasks.py +0 -4
  63. pulumi_snowflake/get_users.py +2 -6
  64. pulumi_snowflake/get_views.py +2 -6
  65. pulumi_snowflake/get_warehouses.py +2 -6
  66. pulumi_snowflake/grant_account_role.py +21 -21
  67. pulumi_snowflake/grant_application_role.py +7 -7
  68. pulumi_snowflake/grant_database_role.py +28 -28
  69. pulumi_snowflake/grant_ownership.py +14 -14
  70. pulumi_snowflake/grant_privileges_to_account_role.py +14 -14
  71. pulumi_snowflake/grant_privileges_to_database_role.py +14 -14
  72. pulumi_snowflake/grant_privileges_to_share.py +42 -42
  73. pulumi_snowflake/legacy_service_user.py +21 -21
  74. pulumi_snowflake/masking_policy.py +21 -21
  75. pulumi_snowflake/network_policy.py +23 -23
  76. pulumi_snowflake/oauth_integration_for_custom_clients.py +73 -46
  77. pulumi_snowflake/oauth_integration_for_partner_applications.py +57 -30
  78. pulumi_snowflake/outputs.py +10029 -4056
  79. pulumi_snowflake/password_policy.py +12 -2
  80. pulumi_snowflake/primary_connection.py +16 -16
  81. pulumi_snowflake/procedure_java.py +1273 -0
  82. pulumi_snowflake/procedure_javascript.py +895 -0
  83. pulumi_snowflake/procedure_python.py +1226 -0
  84. pulumi_snowflake/procedure_scala.py +1273 -0
  85. pulumi_snowflake/procedure_sql.py +895 -0
  86. pulumi_snowflake/provider.py +40 -527
  87. pulumi_snowflake/pulumi-plugin.json +1 -1
  88. pulumi_snowflake/resource_monitor.py +16 -20
  89. pulumi_snowflake/row_access_policy.py +21 -21
  90. pulumi_snowflake/saml2_integration.py +9 -9
  91. pulumi_snowflake/schema.py +14 -18
  92. pulumi_snowflake/scim_integration.py +16 -16
  93. pulumi_snowflake/secondary_connection.py +16 -16
  94. pulumi_snowflake/secondary_database.py +16 -16
  95. pulumi_snowflake/secret_with_authorization_code_grant.py +28 -28
  96. pulumi_snowflake/secret_with_basic_authentication.py +21 -21
  97. pulumi_snowflake/secret_with_client_credentials.py +28 -28
  98. pulumi_snowflake/secret_with_generic_string.py +21 -21
  99. pulumi_snowflake/service_user.py +21 -21
  100. pulumi_snowflake/shared_database.py +16 -16
  101. pulumi_snowflake/stream_on_directory_table.py +28 -41
  102. pulumi_snowflake/stream_on_external_table.py +28 -41
  103. pulumi_snowflake/stream_on_table.py +28 -41
  104. pulumi_snowflake/stream_on_view.py +28 -41
  105. pulumi_snowflake/streamlit.py +42 -46
  106. pulumi_snowflake/tag.py +28 -28
  107. pulumi_snowflake/tag_association.py +28 -86
  108. pulumi_snowflake/task.py +58 -62
  109. pulumi_snowflake/user.py +21 -21
  110. pulumi_snowflake/view.py +28 -41
  111. pulumi_snowflake/warehouse.py +16 -16
  112. {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0a1734440141.dist-info}/METADATA +1 -1
  113. pulumi_snowflake-1.0.0a1734440141.dist-info/RECORD +148 -0
  114. pulumi_snowflake/database_old.py +0 -489
  115. pulumi_snowflake/function.py +0 -901
  116. pulumi_snowflake/get_role.py +0 -126
  117. pulumi_snowflake/get_roles.py +0 -133
  118. pulumi_snowflake/oauth_integration.py +0 -610
  119. pulumi_snowflake/procedure.py +0 -910
  120. pulumi_snowflake/role.py +0 -250
  121. pulumi_snowflake/saml_integration.py +0 -916
  122. pulumi_snowflake/session_parameter.py +0 -301
  123. pulumi_snowflake/stream.py +0 -643
  124. pulumi_snowflake/tag_masking_policy_association.py +0 -211
  125. pulumi_snowflake-0.63.0a1734439451.dist-info/RECORD +0 -148
  126. {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0a1734440141.dist-info}/WHEEL +0 -0
  127. {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0a1734440141.dist-info}/top_level.txt +0 -0
@@ -1,211 +0,0 @@
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
-
17
- __all__ = ['TagMaskingPolicyAssociationArgs', 'TagMaskingPolicyAssociation']
18
-
19
- @pulumi.input_type
20
- class TagMaskingPolicyAssociationArgs:
21
- def __init__(__self__, *,
22
- masking_policy_id: pulumi.Input[str],
23
- tag_id: pulumi.Input[str]):
24
- """
25
- The set of arguments for constructing a TagMaskingPolicyAssociation resource.
26
- :param pulumi.Input[str] masking_policy_id: The resource id of the masking policy
27
- :param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
28
- """
29
- pulumi.set(__self__, "masking_policy_id", masking_policy_id)
30
- pulumi.set(__self__, "tag_id", tag_id)
31
-
32
- @property
33
- @pulumi.getter(name="maskingPolicyId")
34
- def masking_policy_id(self) -> pulumi.Input[str]:
35
- """
36
- The resource id of the masking policy
37
- """
38
- return pulumi.get(self, "masking_policy_id")
39
-
40
- @masking_policy_id.setter
41
- def masking_policy_id(self, value: pulumi.Input[str]):
42
- pulumi.set(self, "masking_policy_id", value)
43
-
44
- @property
45
- @pulumi.getter(name="tagId")
46
- def tag_id(self) -> pulumi.Input[str]:
47
- """
48
- Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
49
- """
50
- return pulumi.get(self, "tag_id")
51
-
52
- @tag_id.setter
53
- def tag_id(self, value: pulumi.Input[str]):
54
- pulumi.set(self, "tag_id", value)
55
-
56
-
57
- @pulumi.input_type
58
- class _TagMaskingPolicyAssociationState:
59
- def __init__(__self__, *,
60
- masking_policy_id: Optional[pulumi.Input[str]] = None,
61
- tag_id: Optional[pulumi.Input[str]] = None):
62
- """
63
- Input properties used for looking up and filtering TagMaskingPolicyAssociation resources.
64
- :param pulumi.Input[str] masking_policy_id: The resource id of the masking policy
65
- :param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
66
- """
67
- if masking_policy_id is not None:
68
- pulumi.set(__self__, "masking_policy_id", masking_policy_id)
69
- if tag_id is not None:
70
- pulumi.set(__self__, "tag_id", tag_id)
71
-
72
- @property
73
- @pulumi.getter(name="maskingPolicyId")
74
- def masking_policy_id(self) -> Optional[pulumi.Input[str]]:
75
- """
76
- The resource id of the masking policy
77
- """
78
- return pulumi.get(self, "masking_policy_id")
79
-
80
- @masking_policy_id.setter
81
- def masking_policy_id(self, value: Optional[pulumi.Input[str]]):
82
- pulumi.set(self, "masking_policy_id", value)
83
-
84
- @property
85
- @pulumi.getter(name="tagId")
86
- def tag_id(self) -> Optional[pulumi.Input[str]]:
87
- """
88
- Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
89
- """
90
- return pulumi.get(self, "tag_id")
91
-
92
- @tag_id.setter
93
- def tag_id(self, value: Optional[pulumi.Input[str]]):
94
- pulumi.set(self, "tag_id", value)
95
-
96
-
97
- class TagMaskingPolicyAssociation(pulumi.CustomResource):
98
- @overload
99
- def __init__(__self__,
100
- resource_name: str,
101
- opts: Optional[pulumi.ResourceOptions] = None,
102
- masking_policy_id: Optional[pulumi.Input[str]] = None,
103
- tag_id: Optional[pulumi.Input[str]] = None,
104
- __props__=None):
105
- """
106
- ## Import
107
-
108
- format is tag database name | tag schema name | tag name | masking policy database | masking policy schema | masking policy name
109
-
110
- ```sh
111
- $ pulumi import snowflake:index/tagMaskingPolicyAssociation:TagMaskingPolicyAssociation example 'tag_db|tag_schema|tag_name|mp_db|mp_schema|mp_name'
112
- ```
113
-
114
- :param str resource_name: The name of the resource.
115
- :param pulumi.ResourceOptions opts: Options for the resource.
116
- :param pulumi.Input[str] masking_policy_id: The resource id of the masking policy
117
- :param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
118
- """
119
- ...
120
- @overload
121
- def __init__(__self__,
122
- resource_name: str,
123
- args: TagMaskingPolicyAssociationArgs,
124
- opts: Optional[pulumi.ResourceOptions] = None):
125
- """
126
- ## Import
127
-
128
- format is tag database name | tag schema name | tag name | masking policy database | masking policy schema | masking policy name
129
-
130
- ```sh
131
- $ pulumi import snowflake:index/tagMaskingPolicyAssociation:TagMaskingPolicyAssociation example 'tag_db|tag_schema|tag_name|mp_db|mp_schema|mp_name'
132
- ```
133
-
134
- :param str resource_name: The name of the resource.
135
- :param TagMaskingPolicyAssociationArgs args: The arguments to use to populate this resource's properties.
136
- :param pulumi.ResourceOptions opts: Options for the resource.
137
- """
138
- ...
139
- def __init__(__self__, resource_name: str, *args, **kwargs):
140
- resource_args, opts = _utilities.get_resource_args_opts(TagMaskingPolicyAssociationArgs, pulumi.ResourceOptions, *args, **kwargs)
141
- if resource_args is not None:
142
- __self__._internal_init(resource_name, opts, **resource_args.__dict__)
143
- else:
144
- __self__._internal_init(resource_name, *args, **kwargs)
145
-
146
- def _internal_init(__self__,
147
- resource_name: str,
148
- opts: Optional[pulumi.ResourceOptions] = None,
149
- masking_policy_id: Optional[pulumi.Input[str]] = None,
150
- tag_id: Optional[pulumi.Input[str]] = None,
151
- __props__=None):
152
- opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
153
- if not isinstance(opts, pulumi.ResourceOptions):
154
- raise TypeError('Expected resource options to be a ResourceOptions instance')
155
- if opts.id is None:
156
- if __props__ is not None:
157
- raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
158
- __props__ = TagMaskingPolicyAssociationArgs.__new__(TagMaskingPolicyAssociationArgs)
159
-
160
- if masking_policy_id is None and not opts.urn:
161
- raise TypeError("Missing required property 'masking_policy_id'")
162
- __props__.__dict__["masking_policy_id"] = masking_policy_id
163
- if tag_id is None and not opts.urn:
164
- raise TypeError("Missing required property 'tag_id'")
165
- __props__.__dict__["tag_id"] = tag_id
166
- super(TagMaskingPolicyAssociation, __self__).__init__(
167
- 'snowflake:index/tagMaskingPolicyAssociation:TagMaskingPolicyAssociation',
168
- resource_name,
169
- __props__,
170
- opts)
171
-
172
- @staticmethod
173
- def get(resource_name: str,
174
- id: pulumi.Input[str],
175
- opts: Optional[pulumi.ResourceOptions] = None,
176
- masking_policy_id: Optional[pulumi.Input[str]] = None,
177
- tag_id: Optional[pulumi.Input[str]] = None) -> 'TagMaskingPolicyAssociation':
178
- """
179
- Get an existing TagMaskingPolicyAssociation resource's state with the given name, id, and optional extra
180
- properties used to qualify the lookup.
181
-
182
- :param str resource_name: The unique name of the resulting resource.
183
- :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
184
- :param pulumi.ResourceOptions opts: Options for the resource.
185
- :param pulumi.Input[str] masking_policy_id: The resource id of the masking policy
186
- :param pulumi.Input[str] tag_id: Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
187
- """
188
- opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
189
-
190
- __props__ = _TagMaskingPolicyAssociationState.__new__(_TagMaskingPolicyAssociationState)
191
-
192
- __props__.__dict__["masking_policy_id"] = masking_policy_id
193
- __props__.__dict__["tag_id"] = tag_id
194
- return TagMaskingPolicyAssociation(resource_name, opts=opts, __props__=__props__)
195
-
196
- @property
197
- @pulumi.getter(name="maskingPolicyId")
198
- def masking_policy_id(self) -> pulumi.Output[str]:
199
- """
200
- The resource id of the masking policy
201
- """
202
- return pulumi.get(self, "masking_policy_id")
203
-
204
- @property
205
- @pulumi.getter(name="tagId")
206
- def tag_id(self) -> pulumi.Output[str]:
207
- """
208
- Specifies the identifier for the tag. Note: format must follow: "databaseName"."schemaName"."tagName" or "databaseName.schemaName.tagName" or "databaseName|schemaName.tagName" (snowflake_tag.tag.id)
209
- """
210
- return pulumi.get(self, "tag_id")
211
-
@@ -1,148 +0,0 @@
1
- pulumi_snowflake/__init__.py,sha256=O52y2xGrVXlOGApP9zcWUCaNUxq26kX4NLR8EaUv710,21949
2
- pulumi_snowflake/_inputs.py,sha256=UsDoHdUzul2HFzrQnO8-FIS0BroX6FLxjBgkBg63114,1830027
3
- pulumi_snowflake/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
4
- pulumi_snowflake/account.py,sha256=AVDJ--RjWG-Pv4kw2kVQY0lyB8llAvod6jI4VodaYuQ,47160
5
- pulumi_snowflake/account_authentication_policy_attachment.py,sha256=nz_c1DMOysRj5nW24oAXDRHL5JvEKXhfAXB8uanqr24,7328
6
- pulumi_snowflake/account_parameter.py,sha256=jyy1gnFKoYVn49irrZZZlNlKeg9X58XY1gzWQWDI8Io,8927
7
- pulumi_snowflake/account_password_policy_attachment.py,sha256=BsKxVE6d_37Gpxh_fMa6mI5TClxnMQpnfL9J4uAnozY,6944
8
- pulumi_snowflake/account_role.py,sha256=PP5pL3YBGW1mbBcvXKEGZ5JTD8NnFN2DrJC0pxljIPg,11052
9
- pulumi_snowflake/alert.py,sha256=dFZYIlKC1QHPwA--O80IVbFPwKXuMvq6cpbMJpO1x2o,24197
10
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=bSzS6R12pd9H4X_gL4nizt7parnY8elfuq5Nzw3RFmk,43199
11
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=nVPzwNOXh3PFn2vJIqw9b6g6GnuXF3G5ASB1f3-UojY,39935
12
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=qB2BDIixEakZ1Ct-1fCWGaX68PJr47gMsnAugqOqUFk,40671
13
- pulumi_snowflake/api_integration.py,sha256=l1PvCrilGDnnLDi78fUs3PFmkaX_3LSbhLI88oWkAFY,40529
14
- pulumi_snowflake/authentication_policy.py,sha256=GNY51NJIIr9alx0gIs3SYNB5jXhNwF3wrQPFUBUXuig,42148
15
- pulumi_snowflake/cortex_search_service.py,sha256=cQ3JFgokDMlP22Pmaqmb0UZGyItjicFOHERwcae-Zx4,25774
16
- pulumi_snowflake/database.py,sha256=ZYMPBdMs7k4hneu53j7aT5MWc_os9jQDZP0UE82rqwY,86864
17
- pulumi_snowflake/database_old.py,sha256=laFuzDtQoWo7iojPgITKEw0dQ01_sMIBJpe0p_9uIEE,27997
18
- pulumi_snowflake/database_role.py,sha256=7u-WU6RHISv_PX4KPtgoj7SlePOLJtsarOAXNBGZa3I,14613
19
- pulumi_snowflake/dynamic_table.py,sha256=_0zfkh5Qr6T42WfzsN1EO0p4HtXQ9HCvrITmgblwj8s,41364
20
- pulumi_snowflake/email_notification_integration.py,sha256=QnwfXgKmW01TYNbKayN2cvX0NfCIhittJ4YgIJ7DViM,12885
21
- pulumi_snowflake/external_function.py,sha256=PLM-30_f0LtAN6BYc7KjWih0nFZtn1v-OdVD2ofon7E,49316
22
- pulumi_snowflake/external_oauth_integration.py,sha256=dUdQgrikRLGQ9Iqb2W4aZvlzFosdwnypYnd8Wlg-wkg,66518
23
- pulumi_snowflake/external_table.py,sha256=a_vd4m-gwKoJI6As6az_wlAYdBCJro_EmP_MdZ-3eSs,41563
24
- pulumi_snowflake/external_volume.py,sha256=K7mV2PxGFhao103Zc1LRK0f4z8RG2mSEMN12Guxc8SQ,24236
25
- pulumi_snowflake/failover_group.py,sha256=eKqBhUUIlzocvBDnfUm1KAG0zPUklmcD5Bx_-V6oou0,38482
26
- pulumi_snowflake/file_format.py,sha256=lHZNvtfWdJ4qUgqj5qSR_K-XUqueG2znQcT-NnHIYq0,93070
27
- pulumi_snowflake/function.py,sha256=6AlpMLceE2RAhErpK0wmFGliAV5OoomP3BxK6chao6A,42264
28
- pulumi_snowflake/get_accounts.py,sha256=5rUx27ltSQpYFjkIR4ZF3cHfckLNdr58w0gYq6yTWoE,4071
29
- pulumi_snowflake/get_alerts.py,sha256=IC3yjpzCF4hklWIxR_kZLU7w7__ijxhAU0OdIwZIaKc,5760
30
- pulumi_snowflake/get_connections.py,sha256=5pqdFeTrHsdhbVMZbAl_1cTWpBm-OCdTajp8uf8luwo,6329
31
- pulumi_snowflake/get_cortex_search_services.py,sha256=mlkuIH9xDZBzvI6HMGQ-E3fuLx4wGm4RLqNEM4VN27k,10268
32
- pulumi_snowflake/get_current_account.py,sha256=DM08qObeN1x8sLWVUWPm3kWQ8tno9_EnMw3GSz3Y8w4,4520
33
- pulumi_snowflake/get_current_role.py,sha256=KL4nsvXKQeLDp3I4GeXyzWDCbeWUGA-ujK8M_O6k5S0,3093
34
- pulumi_snowflake/get_database.py,sha256=_AdGa4p9lgxCq3sznQGjsanRs0i5i93BX49t0U_msjw,7056
35
- pulumi_snowflake/get_database_role.py,sha256=aAx1DfGQnlFsGor_F1s4boWKdvWqjNnN7Hutfo5FnyM,5278
36
- pulumi_snowflake/get_database_roles.py,sha256=Z-pjNJOZ_uIcu9SQgA5hYT-5p8WcWu0ne9rwhPkhDwc,8477
37
- pulumi_snowflake/get_databases.py,sha256=ur2dfTyvfqA8pSPirgO0EbK88MUpA4AU-76zAPrK2ok,11265
38
- pulumi_snowflake/get_dynamic_tables.py,sha256=MqbAJ4duVqYghVXHnzrim28Ipr_qGFyd7SEsNlM2BhI,8287
39
- pulumi_snowflake/get_external_functions.py,sha256=lbL8osBnM6_hIRkTWrzlaagKvWubpkko8rqR8tqJi2U,5431
40
- pulumi_snowflake/get_external_tables.py,sha256=K_PxtrwQ6KC31sUcMJF6XM03G6WcDzptCUN9aWt1FBM,5247
41
- pulumi_snowflake/get_failover_groups.py,sha256=nRg6ad5cBq-cQj8QmJy5nL9rOqe8J1Mrolb-D9A-Ljk,4221
42
- pulumi_snowflake/get_file_formats.py,sha256=7QUxFWlzg9656CES25O1AVcqokEHKzgB7YK8ErIwb5g,5103
43
- pulumi_snowflake/get_functions.py,sha256=1uOkuC1FUmxN0x5GibT12OUb01AUwi4-D43tYqrkX0c,4961
44
- pulumi_snowflake/get_grants.py,sha256=Ct9RUZ39scMiwir5-d_JYrmmgoYLUYL-MTUUSyjIUQE,15926
45
- pulumi_snowflake/get_masking_policies.py,sha256=AyCDtJlSYjN4hoA9IMRrsgy222yrT4bb5YjyE2gwTk4,10097
46
- pulumi_snowflake/get_materialized_views.py,sha256=LCQ_T654OR3BJlR1bEFDzVEG1zw7K8hbM6CM5RrbyEY,5339
47
- pulumi_snowflake/get_network_policies.py,sha256=4e-sC0q7Mq5wCc3g7j3AtAsLqtjIcOWlPhEvZJSUKcM,7051
48
- pulumi_snowflake/get_parameters.py,sha256=Wkni4_ekQa8OLbg1Of9T9SalrqBLorwYV9RaPl6SASk,10751
49
- pulumi_snowflake/get_pipes.py,sha256=JVDnHSx12lCtvRiVvwM6HwwX_M9hw7-K0k8MLKMMhq0,4773
50
- pulumi_snowflake/get_procedures.py,sha256=JbK39SIU_uhpoQX_IK1wsQkq6iXl3mwbTCi2NLHTEeM,5008
51
- pulumi_snowflake/get_resource_monitors.py,sha256=B5FghuRWi5HLp51gIHzVlOy6xRdY1_92gIBOOrG6DNQ,5644
52
- pulumi_snowflake/get_role.py,sha256=7kdg4lonCRXynehApYWKTIUr5EHriuNkoyQzcONEpbI,4014
53
- pulumi_snowflake/get_roles.py,sha256=VDLg4S-Q5tyoSbS7VZ24QpLA0N3znIQYe-qkh99-KVY,6006
54
- pulumi_snowflake/get_row_access_policies.py,sha256=j_ERR5xX9M0eS8phOHHom6jHDFLO32s8Ggd9hLAmn5U,10311
55
- pulumi_snowflake/get_schemas.py,sha256=2GLD_FdR42NbMCkWmvQJDAhWANgq0sObGaEljorNbVs,11966
56
- pulumi_snowflake/get_secrets.py,sha256=LxLp4OPmMfkcX_Oyfxvf4IiX_9ihM_WiGrA7vFO-2Pk,9147
57
- pulumi_snowflake/get_security_integrations.py,sha256=17lmTxCbTkn8BEjmOvpLBJAmLrDBSXvKHO-OKAe441E,7388
58
- pulumi_snowflake/get_sequences.py,sha256=OmC5eAEPwuAWq1G_qHcncOLYIUE6lxBn72hkaVHxjNk,4961
59
- pulumi_snowflake/get_shares.py,sha256=Ky4FWTMLO16G_-3uzwDBMsj46ugmGMMb4Ry0EV8ZeB4,4003
60
- pulumi_snowflake/get_stages.py,sha256=GnD_LJ-tBYjcGEDuv68xo9_jtPALuuC8Od5uLn1XBgY,4820
61
- pulumi_snowflake/get_storage_integrations.py,sha256=y6IY0drn7FXBeFcTjod9RlxZ2OOgz0fDtygec3MiMSI,3620
62
- pulumi_snowflake/get_streamlits.py,sha256=N1bIhSI0VraKiuG89Orey3F-PvtKQwzwO6avnp4NQi4,9678
63
- pulumi_snowflake/get_streams.py,sha256=IEjIQ3RfDmAweCLxTL48mOp6mTJk2NuMkF6VXVLoC84,10480
64
- pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=KaIJAh2DwrRhkXTxa6a3ekmENkPoTjT9rOkEdiM3DmU,4736
65
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=AVY3srUbhXY81xlSrriOCAK4bPFv8Q63VpqBcJ_NMT0,5031
66
- pulumi_snowflake/get_system_get_private_link_config.py,sha256=-4CVrE7wiMtpILxfk1LBq6eQjFIZlti-pNFMihhcezE,12372
67
- pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=JRLmwxj8ucFLC8vJb4Enoj1xpd9HNuiNZ2uNvgiwVoI,4230
68
- pulumi_snowflake/get_tables.py,sha256=y0xQWg69_0WxNbogx5bg_pnFpw5ZJ18OvVZUDt3242w,4820
69
- pulumi_snowflake/get_tags.py,sha256=43PTjssBboK-72uH32T7Ojm83_1EUWHAIBZcoOEXtvg,5931
70
- pulumi_snowflake/get_tasks.py,sha256=S6RDTNaVox1UQge0u7SwzZR-kugq2hXpO5J5EVSgkl8,11440
71
- pulumi_snowflake/get_users.py,sha256=YMMt77DUnp0TJCVus0hXSvuPDXl0yXFTQN9YG07-_vQ,11509
72
- pulumi_snowflake/get_views.py,sha256=H2w4-9JMdGIkJ_AMrjrvaHfZxILqhBNuIXFhZ6ZFWIE,10368
73
- pulumi_snowflake/get_warehouses.py,sha256=IolwUkpcUB5TeKgS9iid0EklcO4n1-S5j3-PTRQ2bxA,8245
74
- pulumi_snowflake/grant_account_role.py,sha256=8LkAdD0mFzIcHwjjDhp0T_P3LpqIcmgOR7SxTpH1214,11362
75
- pulumi_snowflake/grant_application_role.py,sha256=IgnG1VfQ9T79kSC1S_-FPXQ7j5vk28DLw5HsFfkVZlM,12181
76
- pulumi_snowflake/grant_database_role.py,sha256=cY5CNJ9R9lbQ6gJUC6os6KBpaDI0PP59BPeFVNsEwdQ,14815
77
- pulumi_snowflake/grant_ownership.py,sha256=DJWE2FO_ysPysBWOgWKTrxFifSreod-aW-HOsYlG3aQ,19078
78
- pulumi_snowflake/grant_privileges_to_account_role.py,sha256=1d1u9aFIIjlCAhsAwjAHQLaUQlgtjR55TL1CGwm_RaQ,31419
79
- pulumi_snowflake/grant_privileges_to_database_role.py,sha256=BelFNII1Q1O7EMKFHNLRz5ezvXJczYIfWpBUfVJ74wY,28532
80
- pulumi_snowflake/grant_privileges_to_share.py,sha256=Y3ltvhnH2Dw5kiRGwTaKxiIMwhIJNSxNEa0jJGxd1bo,25069
81
- pulumi_snowflake/legacy_service_user.py,sha256=ed_Z6hmvsRIuHy8_6QIzkLdVrP-TxT9FizZBgvFR-Ec,327116
82
- pulumi_snowflake/managed_account.py,sha256=kIqqXm5nYCw-AgaXM1jhEL4wUQVfadzYoc4m3VaEPb4,22352
83
- pulumi_snowflake/masking_policy.py,sha256=uM2a2S_MXbqKHeknTvNEeYPK1ctn8gA4HI4awg9C3WI,35429
84
- pulumi_snowflake/materialized_view.py,sha256=y1TFBXlXVVMBeSIcgileuptX3oX9VgS-hfkCCellnPE,24500
85
- pulumi_snowflake/network_policy.py,sha256=f-9KJtVc2KHVHwI8iulHTQIUwjiOVbmI_-QyNUe6CD4,27602
86
- pulumi_snowflake/network_policy_attachment.py,sha256=4JQY3WsgKwIC_9k9izZX60In-dniPmu0P6N7WAe2fbg,15364
87
- pulumi_snowflake/network_rule.py,sha256=bvyfGis-UjvH2oMMP-96k_ABWTU9Jd7AB_Mm81nPN-A,23929
88
- pulumi_snowflake/notification_integration.py,sha256=onf6ayHu0Ns6Ibmlr7BoQ__2Clc-EMnSIAXokecVgbs,49366
89
- pulumi_snowflake/oauth_integration.py,sha256=LvL2jjSYPwF3ilaxpPX8q8J9yU6rxXbRCYYMlqalWzA,31539
90
- pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=0HQXMOzTKyKRkfSl7-7KYvwJ3q9A7cOxLe2VkaBvOeM,55945
91
- pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=XTXauQgMBwkbXFek69k1hgmdmsC_XsJqOcwkk_HA288,36537
92
- pulumi_snowflake/object_parameter.py,sha256=KiQuEvG6NrH-NFmAg_FnmmX5ZBBD6lVB7v6sCJUrXiA,18715
93
- pulumi_snowflake/outputs.py,sha256=8clXJTVHj8VhH0TSZVSvLuIIXepDwNKMTbj-keO0VFQ,1575156
94
- pulumi_snowflake/password_policy.py,sha256=YrEGmTPmrJMqhmpf7V57YnjRKYok9zmTFAfiyma9WTM,53819
95
- pulumi_snowflake/pipe.py,sha256=TUydVIVUwkIuDeCxpwVziLj5nOCsqcIejZ-JybN94qg,26413
96
- pulumi_snowflake/primary_connection.py,sha256=S1G8zVY4iSgXP6wgoogS-aIGOmYzJxlyNmo0d3eTjhA,18773
97
- pulumi_snowflake/procedure.py,sha256=Dg8cjvxO3iLp6g9ND2lQpkhGI14O42xlZMsGsR4ZMds,45794
98
- pulumi_snowflake/provider.py,sha256=YiaSLv9PM7dB-q2b7W_SS4KswxPjcqI4skaEAcoAOkI,102620
99
- pulumi_snowflake/pulumi-plugin.json,sha256=5BdssDLkLcP_cSIrZiuFVGspaniAf9IdH30DgQ93t54,86
100
- pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
- pulumi_snowflake/resource_monitor.py,sha256=2i8agd2_EQn3Y41UR6piLxLRLf6YtyPzH9t68BbYWk8,42031
102
- pulumi_snowflake/role.py,sha256=ihb2gIzixpeD78g9VQI5zYQNZILvo9UM2SuLXAcJTL4,10821
103
- pulumi_snowflake/row_access_policy.py,sha256=2PxA5Mlvaww5it1WRJqNWL1bMgEsErTZ5RKQ050d_9Y,27885
104
- pulumi_snowflake/saml2_integration.py,sha256=Chp4LROFgDEgN8me6xAuVc51XPfJGCFBG9GemCZlDkM,76609
105
- pulumi_snowflake/saml_integration.py,sha256=25snUHI4FQzzHnhKVqnbXGvuEC0oOs812tGx7Vud3v0,62645
106
- pulumi_snowflake/schema.py,sha256=iTC2DamZu-X6Y1W7bg-1r-VdPVrw3-on089U1H0w0Yk,92492
107
- pulumi_snowflake/scim_integration.py,sha256=tzGSjl2qfbdDZArpoWDXO85zKNnpiIhPHUAsm_pgTVg,28664
108
- pulumi_snowflake/secondary_connection.py,sha256=rWZMV2cRQsex54Odmp0tjOOrgJGHXasGhaLd7A2VZI4,17378
109
- pulumi_snowflake/secondary_database.py,sha256=X05WZgWalqzbsFKeB2Ct6pVaTPkuoYkLZwK59stWYwA,82514
110
- pulumi_snowflake/secret_with_authorization_code_grant.py,sha256=VaPg2aIBuLIBAxX8eX9WS5rYKZaJc3YmsHqRkulP9z8,29172
111
- pulumi_snowflake/secret_with_basic_authentication.py,sha256=rCn7-XHRZEixemQuW1O7cDy93htPV66pEi0Db1pWSkQ,24290
112
- pulumi_snowflake/secret_with_client_credentials.py,sha256=Lly9rNyLBw3uFGEJEni52MaddXh9D2Xex1mJ_oQOC-Y,26644
113
- pulumi_snowflake/secret_with_generic_string.py,sha256=ofGq6eVnxX4RP0N0ynzs19pJ6YJDpwH5lBGb9xhxDR0,22267
114
- pulumi_snowflake/sequence.py,sha256=3uch8fN22pyburdAvyvHjktLgiVoFqqw0pXX1sD4q1Q,18290
115
- pulumi_snowflake/service_user.py,sha256=1zPhXWs7dJLi1kXitnK-muVdPxlJA-B87doDyasdRtc,321116
116
- pulumi_snowflake/session_parameter.py,sha256=jmzbbo5i4UtLyijM4aiOJ6KDCt7Qgxznn51UtECrIo4,12933
117
- pulumi_snowflake/share.py,sha256=PmUfEZZuLv_Ls6o8cH3qwA7TkJXYYmsEggqgF22VLGM,12275
118
- pulumi_snowflake/shared_database.py,sha256=GxNvGpVHLAVxLuVqgLg716IZVXPtDkbbuRslOZUwJmg,65665
119
- pulumi_snowflake/stage.py,sha256=vbGPND3vgFK81mOs_C894EmzrPbDj_CtX7w02bpPan4,38015
120
- pulumi_snowflake/storage_integration.py,sha256=RxVJndz3CQPmS6d8ozo-_CIlrY2J5Y-tpObd8xIWDtg,34253
121
- pulumi_snowflake/stream.py,sha256=5E1OJaOaiArwfqWH21tcNq_xj5EXWP8YTw5WToOC6zI,26825
122
- pulumi_snowflake/stream_on_directory_table.py,sha256=eoK5aWuT02m0dzk4_YRbcstljNpQbRh2San0ZHeyiVc,29232
123
- pulumi_snowflake/stream_on_external_table.py,sha256=n-2YaORVatNJcbFgn0PTNvniRPz2tUEr2dl1Pv148YI,34304
124
- pulumi_snowflake/stream_on_table.py,sha256=LLfOwniTcjQWfw4RTOxHpQ7AJeXmd6o4E0tQB2SggsE,34900
125
- pulumi_snowflake/stream_on_view.py,sha256=lkDkXRVyEzv96S4nnwFSp2CUZI6p2fbHJ_BejIKhVsM,34793
126
- pulumi_snowflake/streamlit.py,sha256=2qCRo345W5x69yGfPogDRNXfsVTj9sKO4AkcvnThjoQ,31013
127
- pulumi_snowflake/table.py,sha256=ytScReoDsOfI3X2JR1rm2FtLPxnGDAzqj-T9EHAzxsc,33157
128
- pulumi_snowflake/table_column_masking_policy_application.py,sha256=He2six0YqZ5AHAb3lnHIpDNn3QhdNIPPzl82tK29Dhk,10717
129
- pulumi_snowflake/table_constraint.py,sha256=clloXd2bSwHxVuSRj3DPl44Yj3B5qaMYV5JcYEuG7H4,31166
130
- pulumi_snowflake/tag.py,sha256=1m9vSMB2GtS2o-KhGHEBBQPf-RAWvzyckJeObVB_8QM,22537
131
- pulumi_snowflake/tag_association.py,sha256=N25kJPYEYiYmn0lFP90mEdSYf-pmCV4nPYn6MWN0A5k,22842
132
- pulumi_snowflake/tag_masking_policy_association.py,sha256=E1LrfN7lLlRUqf8j9JL0tjLYiZXgkI3KviA13N6BM1s,9865
133
- pulumi_snowflake/task.py,sha256=VgCtLgBaX_x4_hH0wxosoPXuJNP5HRNo_EtoLr7UGbY,320201
134
- pulumi_snowflake/unsafe_execute.py,sha256=6Gp1SrnXsnlri07rkSm9PtE1Ys_5mR2w64wCO5X3pNA,11926
135
- pulumi_snowflake/user.py,sha256=iwgOWluem7Z_AYRx8417pOhLNvW7ZukjobGhV-7mDvA,335117
136
- pulumi_snowflake/user_authentication_policy_attachment.py,sha256=oZ-xdgGbkChufZp1OsGfp4tEDN3OWIRezUG-xzjhDQ0,9142
137
- pulumi_snowflake/user_password_policy_attachment.py,sha256=FwvBU8U-_KdpgbplKi3Q3s_Pulh1paOfOvqUvyhB5oQ,8924
138
- pulumi_snowflake/user_public_keys.py,sha256=hsyt78EP4kHs5SK7rLCPsWIHXI64N0D-KUdGUnO_sxY,11452
139
- pulumi_snowflake/view.py,sha256=t6Pdh6OhNcLKctgYpW4j-Kf0wN3uKT72gTaQ4_NBfG8,48938
140
- pulumi_snowflake/warehouse.py,sha256=FM-k6FycXeGOELTpdBpbD6Istd3ruBD8XS5_colE1sw,58461
141
- pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
142
- pulumi_snowflake/config/__init__.pyi,sha256=KY9Y8c6BWuAzIw6wERoii8J1SjaSHxMa2LgsZ1_Wodg,12177
143
- pulumi_snowflake/config/outputs.py,sha256=iAJ-lzy_gkkdNr_znbdiKbAphOhXY3G9NGJHcHMk8rU,4041
144
- pulumi_snowflake/config/vars.py,sha256=L4aNuov9BOY6CVUrY_Ir7c-2lvj4Y0HQzd9A-bu4zfM,18915
145
- pulumi_snowflake-0.63.0a1734439451.dist-info/METADATA,sha256=4eSwDMkNRClMyoer0UJaCGFVGpaSUiwWapGVPe4dzM8,5044
146
- pulumi_snowflake-0.63.0a1734439451.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
147
- pulumi_snowflake-0.63.0a1734439451.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
148
- pulumi_snowflake-0.63.0a1734439451.dist-info/RECORD,,