pulumi-snowflake 0.59.0a1726827563__py3-none-any.whl → 0.60.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-snowflake might be problematic. Click here for more details.
- pulumi_snowflake/__init__.py +36 -0
- pulumi_snowflake/_inputs.py +20444 -3310
- pulumi_snowflake/_utilities.py +1 -1
- pulumi_snowflake/account.py +5 -0
- pulumi_snowflake/account_parameter.py +5 -0
- pulumi_snowflake/account_password_policy_attachment.py +5 -0
- pulumi_snowflake/account_role.py +5 -0
- pulumi_snowflake/alert.py +5 -0
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +5 -0
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +5 -0
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +5 -0
- pulumi_snowflake/api_integration.py +5 -0
- pulumi_snowflake/config/__init__.pyi +5 -0
- pulumi_snowflake/config/outputs.py +5 -0
- pulumi_snowflake/config/vars.py +5 -0
- pulumi_snowflake/cortex_search_service.py +5 -0
- pulumi_snowflake/database.py +5 -0
- pulumi_snowflake/database_old.py +5 -0
- pulumi_snowflake/database_role.py +5 -0
- pulumi_snowflake/dynamic_table.py +5 -0
- pulumi_snowflake/email_notification_integration.py +5 -0
- pulumi_snowflake/external_function.py +5 -0
- pulumi_snowflake/external_oauth_integration.py +5 -0
- pulumi_snowflake/external_table.py +5 -0
- pulumi_snowflake/failover_group.py +5 -0
- pulumi_snowflake/file_format.py +5 -0
- pulumi_snowflake/function.py +5 -0
- pulumi_snowflake/get_accounts.py +13 -4
- pulumi_snowflake/get_alerts.py +17 -4
- pulumi_snowflake/get_cortex_search_services.py +19 -4
- pulumi_snowflake/get_current_account.py +13 -4
- pulumi_snowflake/get_current_role.py +11 -4
- pulumi_snowflake/get_database.py +20 -4
- pulumi_snowflake/get_database_role.py +16 -4
- pulumi_snowflake/get_database_roles.py +21 -4
- pulumi_snowflake/get_databases.py +21 -4
- pulumi_snowflake/get_dynamic_tables.py +19 -4
- pulumi_snowflake/get_external_functions.py +15 -4
- pulumi_snowflake/get_external_tables.py +15 -4
- pulumi_snowflake/get_failover_groups.py +13 -4
- pulumi_snowflake/get_file_formats.py +15 -4
- pulumi_snowflake/get_functions.py +15 -4
- pulumi_snowflake/get_grants.py +21 -4
- pulumi_snowflake/get_masking_policies.py +92 -52
- pulumi_snowflake/get_materialized_views.py +15 -4
- pulumi_snowflake/get_network_policies.py +15 -4
- pulumi_snowflake/get_parameters.py +21 -4
- pulumi_snowflake/get_pipes.py +15 -4
- pulumi_snowflake/get_procedures.py +15 -4
- pulumi_snowflake/get_resource_monitors.py +41 -20
- pulumi_snowflake/get_role.py +13 -4
- pulumi_snowflake/get_roles.py +15 -4
- pulumi_snowflake/get_row_access_policies.py +92 -52
- pulumi_snowflake/get_schemas.py +23 -4
- pulumi_snowflake/get_security_integrations.py +15 -4
- pulumi_snowflake/get_sequences.py +15 -4
- pulumi_snowflake/get_shares.py +13 -4
- pulumi_snowflake/get_stages.py +15 -4
- pulumi_snowflake/get_storage_integrations.py +11 -4
- pulumi_snowflake/get_streamlits.py +19 -4
- pulumi_snowflake/get_streams.py +15 -4
- pulumi_snowflake/get_system_generate_scim_access_token.py +13 -4
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +13 -4
- pulumi_snowflake/get_system_get_private_link_config.py +19 -4
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +12 -4
- pulumi_snowflake/get_tables.py +15 -4
- pulumi_snowflake/get_tasks.py +15 -4
- pulumi_snowflake/get_users.py +21 -4
- pulumi_snowflake/get_views.py +25 -4
- pulumi_snowflake/get_warehouses.py +17 -4
- pulumi_snowflake/grant_account_role.py +5 -0
- pulumi_snowflake/grant_application_role.py +5 -0
- pulumi_snowflake/grant_database_role.py +5 -0
- pulumi_snowflake/grant_ownership.py +5 -0
- pulumi_snowflake/grant_privileges_to_account_role.py +5 -0
- pulumi_snowflake/grant_privileges_to_database_role.py +5 -0
- pulumi_snowflake/grant_privileges_to_share.py +5 -0
- pulumi_snowflake/legacy_service_user.py +3666 -0
- pulumi_snowflake/managed_account.py +5 -0
- pulumi_snowflake/masking_policy.py +197 -234
- pulumi_snowflake/materialized_view.py +5 -0
- pulumi_snowflake/network_policy.py +5 -0
- pulumi_snowflake/network_policy_attachment.py +5 -0
- pulumi_snowflake/network_rule.py +5 -0
- pulumi_snowflake/notification_integration.py +5 -0
- pulumi_snowflake/oauth_integration.py +5 -0
- pulumi_snowflake/oauth_integration_for_custom_clients.py +5 -0
- pulumi_snowflake/oauth_integration_for_partner_applications.py +5 -0
- pulumi_snowflake/object_parameter.py +5 -0
- pulumi_snowflake/outputs.py +11392 -2385
- pulumi_snowflake/password_policy.py +5 -0
- pulumi_snowflake/pipe.py +5 -0
- pulumi_snowflake/procedure.py +5 -0
- pulumi_snowflake/provider.py +5 -0
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/resource_monitor.py +88 -259
- pulumi_snowflake/role.py +5 -0
- pulumi_snowflake/row_access_policy.py +173 -114
- pulumi_snowflake/saml2_integration.py +5 -0
- pulumi_snowflake/saml_integration.py +5 -0
- pulumi_snowflake/schema.py +5 -0
- pulumi_snowflake/scim_integration.py +5 -0
- pulumi_snowflake/secondary_database.py +5 -0
- pulumi_snowflake/sequence.py +5 -0
- pulumi_snowflake/service_user.py +3585 -0
- pulumi_snowflake/session_parameter.py +5 -0
- pulumi_snowflake/share.py +5 -0
- pulumi_snowflake/shared_database.py +5 -0
- pulumi_snowflake/stage.py +12 -7
- pulumi_snowflake/storage_integration.py +5 -0
- pulumi_snowflake/stream.py +5 -0
- pulumi_snowflake/stream_on_external_table.py +597 -0
- pulumi_snowflake/stream_on_table.py +631 -0
- pulumi_snowflake/streamlit.py +5 -0
- pulumi_snowflake/table.py +5 -0
- pulumi_snowflake/table_column_masking_policy_application.py +5 -0
- pulumi_snowflake/table_constraint.py +5 -0
- pulumi_snowflake/tag.py +5 -0
- pulumi_snowflake/tag_association.py +5 -0
- pulumi_snowflake/tag_masking_policy_association.py +5 -0
- pulumi_snowflake/task.py +5 -0
- pulumi_snowflake/unsafe_execute.py +5 -0
- pulumi_snowflake/user.py +7 -2
- pulumi_snowflake/user_password_policy_attachment.py +5 -0
- pulumi_snowflake/user_public_keys.py +5 -0
- pulumi_snowflake/view.py +12 -7
- pulumi_snowflake/warehouse.py +9 -4
- {pulumi_snowflake-0.59.0a1726827563.dist-info → pulumi_snowflake-0.60.0.dist-info}/METADATA +3 -2
- pulumi_snowflake-0.60.0.dist-info/RECORD +133 -0
- pulumi_snowflake-0.59.0a1726827563.dist-info/RECORD +0 -129
- {pulumi_snowflake-0.59.0a1726827563.dist-info → pulumi_snowflake-0.60.0.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-0.59.0a1726827563.dist-info → pulumi_snowflake-0.60.0.dist-info}/top_level.txt +0 -0
|
@@ -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__ = ['TableColumnMaskingPolicyApplicationArgs', 'TableColumnMaskingPolicyApplication']
|
|
@@ -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
|
from ._inputs import *
|
pulumi_snowflake/tag.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
|
|
|
12
17
|
__all__ = ['TagArgs', 'Tag']
|
|
@@ -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
|
from ._inputs import *
|
|
@@ -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__ = ['TagMaskingPolicyAssociationArgs', 'TagMaskingPolicyAssociation']
|
pulumi_snowflake/task.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
|
|
|
12
17
|
__all__ = ['TaskArgs', 'Task']
|
|
@@ -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__ = ['UnsafeExecuteArgs', 'UnsafeExecute']
|
pulumi_snowflake/user.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
|
from ._inputs import *
|
|
@@ -2670,7 +2675,7 @@ class User(pulumi.CustomResource):
|
|
|
2670
2675
|
## Import
|
|
2671
2676
|
|
|
2672
2677
|
```sh
|
|
2673
|
-
$ pulumi import snowflake:index/user:User example
|
|
2678
|
+
$ pulumi import snowflake:index/user:User example '"<user_name>"'
|
|
2674
2679
|
```
|
|
2675
2680
|
|
|
2676
2681
|
:param str resource_name: The name of the resource.
|
|
@@ -2760,7 +2765,7 @@ class User(pulumi.CustomResource):
|
|
|
2760
2765
|
## Import
|
|
2761
2766
|
|
|
2762
2767
|
```sh
|
|
2763
|
-
$ pulumi import snowflake:index/user:User example
|
|
2768
|
+
$ pulumi import snowflake:index/user:User example '"<user_name>"'
|
|
2764
2769
|
```
|
|
2765
2770
|
|
|
2766
2771
|
:param str resource_name: The name of the resource.
|
|
@@ -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__ = ['UserPasswordPolicyAttachmentArgs', 'UserPasswordPolicyAttachment']
|
|
@@ -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__ = ['UserPublicKeysArgs', 'UserPublicKeys']
|
pulumi_snowflake/view.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
|
from ._inputs import *
|
|
@@ -38,7 +43,7 @@ class ViewArgs:
|
|
|
38
43
|
:param pulumi.Input[str] statement: Specifies the query used to create the view.
|
|
39
44
|
:param pulumi.Input['ViewAggregationPolicyArgs'] aggregation_policy: Specifies the aggregation policy to set on a view.
|
|
40
45
|
:param pulumi.Input[str] change_tracking: Specifies to enable or disable change tracking on the table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
41
|
-
:param pulumi.Input[Sequence[pulumi.Input['ViewColumnArgs']]] columns: If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns.
|
|
46
|
+
:param pulumi.Input[Sequence[pulumi.Input['ViewColumnArgs']]] columns: If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns. You do not need to specify the data types of the columns. If this field is not specified, columns are inferred from the `statement` field by Snowflake.
|
|
42
47
|
:param pulumi.Input[str] comment: Specifies a comment for the view.
|
|
43
48
|
:param pulumi.Input[bool] copy_grants: Retains the access permissions from the original view when a new view is created using the OR REPLACE clause.
|
|
44
49
|
:param pulumi.Input[Sequence[pulumi.Input['ViewDataMetricFunctionArgs']]] data_metric_functions: Data metric functions used for the view.
|
|
@@ -139,7 +144,7 @@ class ViewArgs:
|
|
|
139
144
|
@pulumi.getter
|
|
140
145
|
def columns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ViewColumnArgs']]]]:
|
|
141
146
|
"""
|
|
142
|
-
If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns.
|
|
147
|
+
If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns. You do not need to specify the data types of the columns. If this field is not specified, columns are inferred from the `statement` field by Snowflake.
|
|
143
148
|
"""
|
|
144
149
|
return pulumi.get(self, "columns")
|
|
145
150
|
|
|
@@ -275,7 +280,7 @@ class _ViewState:
|
|
|
275
280
|
Input properties used for looking up and filtering View resources.
|
|
276
281
|
:param pulumi.Input['ViewAggregationPolicyArgs'] aggregation_policy: Specifies the aggregation policy to set on a view.
|
|
277
282
|
:param pulumi.Input[str] change_tracking: Specifies to enable or disable change tracking on the table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
278
|
-
:param pulumi.Input[Sequence[pulumi.Input['ViewColumnArgs']]] columns: If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns.
|
|
283
|
+
:param pulumi.Input[Sequence[pulumi.Input['ViewColumnArgs']]] columns: If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns. You do not need to specify the data types of the columns. If this field is not specified, columns are inferred from the `statement` field by Snowflake.
|
|
279
284
|
:param pulumi.Input[str] comment: Specifies a comment for the view.
|
|
280
285
|
:param pulumi.Input[bool] copy_grants: Retains the access permissions from the original view when a new view is created using the OR REPLACE clause.
|
|
281
286
|
:param pulumi.Input[Sequence[pulumi.Input['ViewDataMetricFunctionArgs']]] data_metric_functions: Data metric functions used for the view.
|
|
@@ -355,7 +360,7 @@ class _ViewState:
|
|
|
355
360
|
@pulumi.getter
|
|
356
361
|
def columns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ViewColumnArgs']]]]:
|
|
357
362
|
"""
|
|
358
|
-
If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns.
|
|
363
|
+
If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns. You do not need to specify the data types of the columns. If this field is not specified, columns are inferred from the `statement` field by Snowflake.
|
|
359
364
|
"""
|
|
360
365
|
return pulumi.get(self, "columns")
|
|
361
366
|
|
|
@@ -570,7 +575,7 @@ class View(pulumi.CustomResource):
|
|
|
570
575
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
571
576
|
:param pulumi.Input[Union['ViewAggregationPolicyArgs', 'ViewAggregationPolicyArgsDict']] aggregation_policy: Specifies the aggregation policy to set on a view.
|
|
572
577
|
:param pulumi.Input[str] change_tracking: Specifies to enable or disable change tracking on the table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
573
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ViewColumnArgs', 'ViewColumnArgsDict']]]] columns: If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns.
|
|
578
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ViewColumnArgs', 'ViewColumnArgsDict']]]] columns: If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns. You do not need to specify the data types of the columns. If this field is not specified, columns are inferred from the `statement` field by Snowflake.
|
|
574
579
|
:param pulumi.Input[str] comment: Specifies a comment for the view.
|
|
575
580
|
:param pulumi.Input[bool] copy_grants: Retains the access permissions from the original view when a new view is created using the OR REPLACE clause.
|
|
576
581
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ViewDataMetricFunctionArgs', 'ViewDataMetricFunctionArgsDict']]]] data_metric_functions: Data metric functions used for the view.
|
|
@@ -695,7 +700,7 @@ class View(pulumi.CustomResource):
|
|
|
695
700
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
696
701
|
:param pulumi.Input[Union['ViewAggregationPolicyArgs', 'ViewAggregationPolicyArgsDict']] aggregation_policy: Specifies the aggregation policy to set on a view.
|
|
697
702
|
:param pulumi.Input[str] change_tracking: Specifies to enable or disable change tracking on the table. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
698
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ViewColumnArgs', 'ViewColumnArgsDict']]]] columns: If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns.
|
|
703
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ViewColumnArgs', 'ViewColumnArgsDict']]]] columns: If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns. You do not need to specify the data types of the columns. If this field is not specified, columns are inferred from the `statement` field by Snowflake.
|
|
699
704
|
:param pulumi.Input[str] comment: Specifies a comment for the view.
|
|
700
705
|
:param pulumi.Input[bool] copy_grants: Retains the access permissions from the original view when a new view is created using the OR REPLACE clause.
|
|
701
706
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ViewDataMetricFunctionArgs', 'ViewDataMetricFunctionArgsDict']]]] data_metric_functions: Data metric functions used for the view.
|
|
@@ -754,7 +759,7 @@ class View(pulumi.CustomResource):
|
|
|
754
759
|
@pulumi.getter
|
|
755
760
|
def columns(self) -> pulumi.Output[Optional[Sequence['outputs.ViewColumn']]]:
|
|
756
761
|
"""
|
|
757
|
-
If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns.
|
|
762
|
+
If you want to change the name of a column or add a comment to a column in the new view, include a column list that specifies the column names and (if needed) comments about the columns. You do not need to specify the data types of the columns. If this field is not specified, columns are inferred from the `statement` field by Snowflake.
|
|
758
763
|
"""
|
|
759
764
|
return pulumi.get(self, "columns")
|
|
760
765
|
|
pulumi_snowflake/warehouse.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
|
from ._inputs import *
|
|
@@ -315,7 +320,7 @@ class _WarehouseState:
|
|
|
315
320
|
:param pulumi.Input[int] query_acceleration_max_scale_factor: Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size.
|
|
316
321
|
:param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
|
|
317
322
|
:param pulumi.Input[str] scaling_policy: Specifies the policy for automatically starting and shutting down clusters in a multi-cluster warehouse running in Auto-scale mode. Valid values are (case-insensitive): `STANDARD` | `ECONOMY`.
|
|
318
|
-
:param pulumi.Input[Sequence[pulumi.Input['WarehouseShowOutputArgs']]] show_outputs: Outputs the result of `SHOW
|
|
323
|
+
:param pulumi.Input[Sequence[pulumi.Input['WarehouseShowOutputArgs']]] show_outputs: Outputs the result of `SHOW WAREHOUSES` for the given warehouse.
|
|
319
324
|
:param pulumi.Input[int] statement_queued_timeout_in_seconds: Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
|
|
320
325
|
:param pulumi.Input[int] statement_timeout_in_seconds: Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system
|
|
321
326
|
:param pulumi.Input[str] warehouse_size: Specifies the size of the virtual warehouse. Valid values are (case-insensitive): `XSMALL` | `X-SMALL` | `SMALL` | `MEDIUM` | `LARGE` | `XLARGE` | `X-LARGE` | `XXLARGE` | `X2LARGE` | `2X-LARGE` | `XXXLARGE` | `X3LARGE` | `3X-LARGE` | `X4LARGE` | `4X-LARGE` | `X5LARGE` | `5X-LARGE` | `X6LARGE` | `6X-LARGE`. Consult [warehouse documentation](https://docs.snowflake.com/en/sql-reference/sql/create-warehouse#optional-properties-objectproperties) for the details. Note: removing the size from config will result in the resource recreation.
|
|
@@ -532,7 +537,7 @@ class _WarehouseState:
|
|
|
532
537
|
@pulumi.getter(name="showOutputs")
|
|
533
538
|
def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WarehouseShowOutputArgs']]]]:
|
|
534
539
|
"""
|
|
535
|
-
Outputs the result of `SHOW
|
|
540
|
+
Outputs the result of `SHOW WAREHOUSES` for the given warehouse.
|
|
536
541
|
"""
|
|
537
542
|
return pulumi.get(self, "show_outputs")
|
|
538
543
|
|
|
@@ -759,7 +764,7 @@ class Warehouse(pulumi.CustomResource):
|
|
|
759
764
|
:param pulumi.Input[int] query_acceleration_max_scale_factor: Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size.
|
|
760
765
|
:param pulumi.Input[str] resource_monitor: Specifies the name of a resource monitor that is explicitly assigned to the warehouse.
|
|
761
766
|
:param pulumi.Input[str] scaling_policy: Specifies the policy for automatically starting and shutting down clusters in a multi-cluster warehouse running in Auto-scale mode. Valid values are (case-insensitive): `STANDARD` | `ECONOMY`.
|
|
762
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['WarehouseShowOutputArgs', 'WarehouseShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW
|
|
767
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['WarehouseShowOutputArgs', 'WarehouseShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW WAREHOUSES` for the given warehouse.
|
|
763
768
|
:param pulumi.Input[int] statement_queued_timeout_in_seconds: Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system.
|
|
764
769
|
:param pulumi.Input[int] statement_timeout_in_seconds: Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system
|
|
765
770
|
:param pulumi.Input[str] warehouse_size: Specifies the size of the virtual warehouse. Valid values are (case-insensitive): `XSMALL` | `X-SMALL` | `SMALL` | `MEDIUM` | `LARGE` | `XLARGE` | `X-LARGE` | `XXLARGE` | `X2LARGE` | `2X-LARGE` | `XXXLARGE` | `X3LARGE` | `3X-LARGE` | `X4LARGE` | `4X-LARGE` | `X5LARGE` | `5X-LARGE` | `X6LARGE` | `6X-LARGE`. Consult [warehouse documentation](https://docs.snowflake.com/en/sql-reference/sql/create-warehouse#optional-properties-objectproperties) for the details. Note: removing the size from config will result in the resource recreation.
|
|
@@ -906,7 +911,7 @@ class Warehouse(pulumi.CustomResource):
|
|
|
906
911
|
@pulumi.getter(name="showOutputs")
|
|
907
912
|
def show_outputs(self) -> pulumi.Output[Sequence['outputs.WarehouseShowOutput']]:
|
|
908
913
|
"""
|
|
909
|
-
Outputs the result of `SHOW
|
|
914
|
+
Outputs the result of `SHOW WAREHOUSES` for the given warehouse.
|
|
910
915
|
"""
|
|
911
916
|
return pulumi.get(self, "show_outputs")
|
|
912
917
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_snowflake
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.60.0
|
|
4
4
|
Summary: A Pulumi package for creating and managing snowflake cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
@@ -9,8 +9,9 @@ Keywords: pulumi,snowflake
|
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
|
12
|
-
Requires-Dist: pulumi <4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.136.0
|
|
13
13
|
Requires-Dist: semver >=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
[](https://github.com/pulumi/pulumi-snowflake/actions)
|
|
16
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
pulumi_snowflake/__init__.py,sha256=BssjKUXw6hzneB_o4YRSe_CD6z0icvcU2O9Ii2g8UM4,18741
|
|
2
|
+
pulumi_snowflake/_inputs.py,sha256=JAD46lqjr34fvaD-URxTCTxchMX1a4cgaU58U5Ttfk8,1468282
|
|
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_parameter.py,sha256=jyy1gnFKoYVn49irrZZZlNlKeg9X58XY1gzWQWDI8Io,8927
|
|
6
|
+
pulumi_snowflake/account_password_policy_attachment.py,sha256=BsKxVE6d_37Gpxh_fMa6mI5TClxnMQpnfL9J4uAnozY,6944
|
|
7
|
+
pulumi_snowflake/account_role.py,sha256=EcKm8ysaiyheyACfhlPtHqQN7ilVSLLRgMliCaek8V4,11122
|
|
8
|
+
pulumi_snowflake/alert.py,sha256=dFZYIlKC1QHPwA--O80IVbFPwKXuMvq6cpbMJpO1x2o,24197
|
|
9
|
+
pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=RQkNJQMQnYDm6RI6cTIMkUQfNqRyduZPNp-0MlUutJg,43269
|
|
10
|
+
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=o3SDwERSWXX2bMYcjFOUG2ZcOPo0slZrzEY1Rj-TMvg,40005
|
|
11
|
+
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=bi0cDCmArj_mi3qNVbJy5lrcj7GiPZCr7h_zkE8g2kk,40741
|
|
12
|
+
pulumi_snowflake/api_integration.py,sha256=l1PvCrilGDnnLDi78fUs3PFmkaX_3LSbhLI88oWkAFY,40529
|
|
13
|
+
pulumi_snowflake/cortex_search_service.py,sha256=cQ3JFgokDMlP22Pmaqmb0UZGyItjicFOHERwcae-Zx4,25774
|
|
14
|
+
pulumi_snowflake/database.py,sha256=yqG_HREDo8-UcraPDkStS6mVmNqeDMgz1sih9Ycj1vI,86934
|
|
15
|
+
pulumi_snowflake/database_old.py,sha256=laFuzDtQoWo7iojPgITKEw0dQ01_sMIBJpe0p_9uIEE,27997
|
|
16
|
+
pulumi_snowflake/database_role.py,sha256=2IHWUDRPIRaMNoD1Ie-ugy1I9sTYHEV2bwxA3tU4SCE,14753
|
|
17
|
+
pulumi_snowflake/dynamic_table.py,sha256=_0zfkh5Qr6T42WfzsN1EO0p4HtXQ9HCvrITmgblwj8s,41364
|
|
18
|
+
pulumi_snowflake/email_notification_integration.py,sha256=QnwfXgKmW01TYNbKayN2cvX0NfCIhittJ4YgIJ7DViM,12885
|
|
19
|
+
pulumi_snowflake/external_function.py,sha256=PLM-30_f0LtAN6BYc7KjWih0nFZtn1v-OdVD2ofon7E,49316
|
|
20
|
+
pulumi_snowflake/external_oauth_integration.py,sha256=mG-Zjwamgllnz4VLa0r3a1EBAPg4TTk-QMwwZFwv1d4,66588
|
|
21
|
+
pulumi_snowflake/external_table.py,sha256=a_vd4m-gwKoJI6As6az_wlAYdBCJro_EmP_MdZ-3eSs,41563
|
|
22
|
+
pulumi_snowflake/failover_group.py,sha256=eKqBhUUIlzocvBDnfUm1KAG0zPUklmcD5Bx_-V6oou0,38482
|
|
23
|
+
pulumi_snowflake/file_format.py,sha256=lHZNvtfWdJ4qUgqj5qSR_K-XUqueG2znQcT-NnHIYq0,93070
|
|
24
|
+
pulumi_snowflake/function.py,sha256=6AlpMLceE2RAhErpK0wmFGliAV5OoomP3BxK6chao6A,42264
|
|
25
|
+
pulumi_snowflake/get_accounts.py,sha256=drV8C9P7oF7hWelJUA0rnEpnBFNYUy6QyACJTjqxJLA,4030
|
|
26
|
+
pulumi_snowflake/get_alerts.py,sha256=_IyVwpVU7mFI3qBAZ7sloe7dwg7VUwMl7ALPu5mqUFk,5719
|
|
27
|
+
pulumi_snowflake/get_cortex_search_services.py,sha256=KgkLUd4IXnBJOSkWTC0fTynKe0RWWLUJIq--y5KwC_A,10227
|
|
28
|
+
pulumi_snowflake/get_current_account.py,sha256=HQXQmEqT1E70rQ_NCXuWjx5ivRGDynh8ocYRN9r7KLk,4479
|
|
29
|
+
pulumi_snowflake/get_current_role.py,sha256=Wn-tEIwECv_ArYNBmElEvDscJuo5NeyvgooecWFWEqQ,3052
|
|
30
|
+
pulumi_snowflake/get_database.py,sha256=LBbg7IPyTnE8-49o07v0oO3NurspJ-bG8AymClibRdw,7015
|
|
31
|
+
pulumi_snowflake/get_database_role.py,sha256=APxr80sQfa7xnpfi4czQwp5rMKP1JjL8NEYLobMlR_Y,5237
|
|
32
|
+
pulumi_snowflake/get_database_roles.py,sha256=d_Gc4CC-CvvQs4JOnOns9dEeyxLzHUtvyEWNd6eTPwU,8436
|
|
33
|
+
pulumi_snowflake/get_databases.py,sha256=APR3iF7gHxUXK4ADuzb68jvQHRoKKhpdFPfoSd_7Mug,11224
|
|
34
|
+
pulumi_snowflake/get_dynamic_tables.py,sha256=U6lYXdMOVxLOpo1w3r8g2Gywhwy3WcFZeUfH9MEIzx4,8246
|
|
35
|
+
pulumi_snowflake/get_external_functions.py,sha256=AEGfLck9SIbuSsK9T0iAC6eCetTQ-ckGkrJsZf3BaIc,5390
|
|
36
|
+
pulumi_snowflake/get_external_tables.py,sha256=lBwav7CuHKlbsK6U3JRYPwRwplW84gTqlkRJ9zMXsyU,5206
|
|
37
|
+
pulumi_snowflake/get_failover_groups.py,sha256=mzl8NbL1vtGw7zGoZYvjvExb03lg0-tnLZtI3cq1CGQ,4180
|
|
38
|
+
pulumi_snowflake/get_file_formats.py,sha256=hv9mVRcHZxFp7J3aIQbOIwMYRqxx8D8KR8OiP0wjFfU,5062
|
|
39
|
+
pulumi_snowflake/get_functions.py,sha256=j1Zn7BhWdt8yAOk94IsWQqy9aR9kGMAVpSclAYwyf6w,4920
|
|
40
|
+
pulumi_snowflake/get_grants.py,sha256=ZkGqHXAqROG9rEtBsLStnooYuZYvDb-X8-1RDwumGyE,15045
|
|
41
|
+
pulumi_snowflake/get_masking_policies.py,sha256=RaAkBITXMHzGqz8SUMcjS3NJ8v4zPTLnF4AigbIEYWo,10056
|
|
42
|
+
pulumi_snowflake/get_materialized_views.py,sha256=RTsrQfY0--cdVrEaXZvw48HEH2LY2kjfmOed_A1Pi-Q,5298
|
|
43
|
+
pulumi_snowflake/get_network_policies.py,sha256=qd7QDeOh8ZjnifqCIWIq25kxRFt__CZTaU6eIc4jnKg,7010
|
|
44
|
+
pulumi_snowflake/get_parameters.py,sha256=bQ3iQpNRKjXjdFbZ25iyfIXP-CquROGgfp2PI3WhPdI,10710
|
|
45
|
+
pulumi_snowflake/get_pipes.py,sha256=BWXyXz3G-kDrmzVCEgYz4zH-XJwQhscI8Q9KSWef724,4732
|
|
46
|
+
pulumi_snowflake/get_procedures.py,sha256=B3tswSe6p3p-oTVxo2YTK3DNO4G2_dm4FeVbGsLbWiY,4967
|
|
47
|
+
pulumi_snowflake/get_resource_monitors.py,sha256=DJ9TDLXRjge6BthTCOS3esjN6JZ5OTV9BdK0O34dASo,5603
|
|
48
|
+
pulumi_snowflake/get_role.py,sha256=ksfqZO5UDxzTU5O60UIhty55zxaDa9G8RB-4O1AzChs,3973
|
|
49
|
+
pulumi_snowflake/get_roles.py,sha256=E0WKAFf-JI7B2TVIfCymXQtwcViDR3_gAsk8g0hvFQc,5965
|
|
50
|
+
pulumi_snowflake/get_row_access_policies.py,sha256=iRXdT5mwf0SxHUiogLOIk0sDPe2tqBbEmMSQN1AMRcA,10270
|
|
51
|
+
pulumi_snowflake/get_schemas.py,sha256=CkaS9r6fgjCi-HdTuvpTNXLFKRZbdnwHIOVsKP14T_A,11925
|
|
52
|
+
pulumi_snowflake/get_security_integrations.py,sha256=sIAT1CtSZh5YgwbjmSSpk_nrY0qKHTqa5uQffupSSn4,7347
|
|
53
|
+
pulumi_snowflake/get_sequences.py,sha256=t5oVHXgaWcxy1-E8s3Zrfdjsw-RNnC9GArheYXRHXFs,4920
|
|
54
|
+
pulumi_snowflake/get_shares.py,sha256=YOG1xpv4Byx_eKg3AV3NPoCRDUWpjxJOg9-Xn4MdIKw,3962
|
|
55
|
+
pulumi_snowflake/get_stages.py,sha256=mwRm1LPaY05wOaBE4pqBVHvHhBmFOyPtbtWqaBuoxK0,4779
|
|
56
|
+
pulumi_snowflake/get_storage_integrations.py,sha256=d2RrwpmXizsNX8n_JAjOKDUL5wtoTu39RUPnejtPjec,3579
|
|
57
|
+
pulumi_snowflake/get_streamlits.py,sha256=sJxb_6GQKbNn2a2KOcenNuxItBf3DLJ2z6w0uyUGZTw,9637
|
|
58
|
+
pulumi_snowflake/get_streams.py,sha256=VQILOESiE26ZlBloltqsfKg_X2uNCozpIOX2X5YiCIE,4826
|
|
59
|
+
pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=tQssNNgQf-_3TsAtt-0wRlQh5eaGcKbyKNAkhh47Xwc,4695
|
|
60
|
+
pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=h3BdeP44-qeOAHgB6WuSKCqNgR_DRDwGNUiXVFo-nD4,4990
|
|
61
|
+
pulumi_snowflake/get_system_get_private_link_config.py,sha256=HteDPCysQG6n8I7FJcQ13RqS2UV91Agtdcc3BUsYnYk,12331
|
|
62
|
+
pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=5Fg3tkawVBDBGnscNAzztrxAOoH54PtbVxBlAPDgPYo,4189
|
|
63
|
+
pulumi_snowflake/get_tables.py,sha256=IlDGQ4HMBdmzMRnKEbDEGHpI3G5k_FSKHt2EFFlZxSk,4779
|
|
64
|
+
pulumi_snowflake/get_tasks.py,sha256=zl_s1JxCUDnM0OkvGNHV1EC-EMyRcey0BS4KCZrkerA,4732
|
|
65
|
+
pulumi_snowflake/get_users.py,sha256=ctrEYtC4oPvVxvMUfm8p1vU46dS9S7EC3IV7-bB_PhU,11468
|
|
66
|
+
pulumi_snowflake/get_views.py,sha256=HUE1N7RqOBi-D9BdAmHVRYbPLPcwS2e9emsKUSmtUxI,10327
|
|
67
|
+
pulumi_snowflake/get_warehouses.py,sha256=uBvZXCkza_sju0yh1e7vVc2TJdWUS9gEobUMNMSaXl0,8204
|
|
68
|
+
pulumi_snowflake/grant_account_role.py,sha256=eN-Xzy35SmfbcC_bzDTvXyPN7SGgdBuYbV-VFUpqlTg,11362
|
|
69
|
+
pulumi_snowflake/grant_application_role.py,sha256=psmHg7a1zOek2YMjEIO29TQGQbLaKg4gAeva6ACe_Ak,12145
|
|
70
|
+
pulumi_snowflake/grant_database_role.py,sha256=2GA_WTlpX3RkNY0tVz3zyqZf9nGAxBQwVkzuFDQ9b_A,14801
|
|
71
|
+
pulumi_snowflake/grant_ownership.py,sha256=VEPy3cYvn_PiYBVAzU5edn7rrcxbcUfcl5EDDURCkxQ,18278
|
|
72
|
+
pulumi_snowflake/grant_privileges_to_account_role.py,sha256=uQU08kHsLkKjM_iAJNgIi18n_vP1TFHLBUPp329x-H0,31009
|
|
73
|
+
pulumi_snowflake/grant_privileges_to_database_role.py,sha256=XR0KxL1euijwxcriHvWqIcL3ysXgfoHQKQLnPTMo0z4,28034
|
|
74
|
+
pulumi_snowflake/grant_privileges_to_share.py,sha256=c6smCSpNtEAFkTY-6-AdFWThYEcxe5T84KXV4GoyTIY,24925
|
|
75
|
+
pulumi_snowflake/legacy_service_user.py,sha256=Oan29HsnTfSl3NZ_r5a_XX0iz1Kt3Vnsf5iIy0reuzs,326912
|
|
76
|
+
pulumi_snowflake/managed_account.py,sha256=kIqqXm5nYCw-AgaXM1jhEL4wUQVfadzYoc4m3VaEPb4,22352
|
|
77
|
+
pulumi_snowflake/masking_policy.py,sha256=vXs24jH6ffq5mKtJQiKAbpKY0QcBXW_EcXQyQrbwWjA,35639
|
|
78
|
+
pulumi_snowflake/materialized_view.py,sha256=y1TFBXlXVVMBeSIcgileuptX3oX9VgS-hfkCCellnPE,24500
|
|
79
|
+
pulumi_snowflake/network_policy.py,sha256=BnPLeOhnBWJ1gs4wtVqhycmw6v8rVbnxFyl8hcKuOas,27672
|
|
80
|
+
pulumi_snowflake/network_policy_attachment.py,sha256=4JQY3WsgKwIC_9k9izZX60In-dniPmu0P6N7WAe2fbg,15364
|
|
81
|
+
pulumi_snowflake/network_rule.py,sha256=bvyfGis-UjvH2oMMP-96k_ABWTU9Jd7AB_Mm81nPN-A,23929
|
|
82
|
+
pulumi_snowflake/notification_integration.py,sha256=onf6ayHu0Ns6Ibmlr7BoQ__2Clc-EMnSIAXokecVgbs,49366
|
|
83
|
+
pulumi_snowflake/oauth_integration.py,sha256=LvL2jjSYPwF3ilaxpPX8q8J9yU6rxXbRCYYMlqalWzA,31539
|
|
84
|
+
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=P4XZGOowBPm3g4s8ZVNqp_isUfGhKwE0RLh8po4850g,56015
|
|
85
|
+
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=KG1Fi47z29mRaWZ93MtFOWVDKYWXNWKsTYoeBC9_cj4,36607
|
|
86
|
+
pulumi_snowflake/object_parameter.py,sha256=KiQuEvG6NrH-NFmAg_FnmmX5ZBBD6lVB7v6sCJUrXiA,18715
|
|
87
|
+
pulumi_snowflake/outputs.py,sha256=3VeK5gCRLipCKwEE_nSgNSQ4KRvUszJjumtfaUnGNUE,1233730
|
|
88
|
+
pulumi_snowflake/password_policy.py,sha256=Vh54yzM_4WtVKMrLQU6uAPznTrcYB58hJk1ug199rXE,53905
|
|
89
|
+
pulumi_snowflake/pipe.py,sha256=TUydVIVUwkIuDeCxpwVziLj5nOCsqcIejZ-JybN94qg,26413
|
|
90
|
+
pulumi_snowflake/procedure.py,sha256=Dg8cjvxO3iLp6g9ND2lQpkhGI14O42xlZMsGsR4ZMds,45794
|
|
91
|
+
pulumi_snowflake/provider.py,sha256=SrzQ-XvnUzMgDqFJXOmCKOZ8yAEadiAukMdXUEP4eY0,85454
|
|
92
|
+
pulumi_snowflake/pulumi-plugin.json,sha256=9HGgRP2vw5tYciHDTFBsek65q6fkrpmgBwqo_JlrwFQ,69
|
|
93
|
+
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
+
pulumi_snowflake/resource_monitor.py,sha256=ZAYYFguvUfRV7QC0ReOHOhcE3gHbLcUDPOF2c_4qnjI,42101
|
|
95
|
+
pulumi_snowflake/role.py,sha256=6XbCskGmmGtB7Yr8U9uZNkqFbxCPKtGey3CVCEpSUhQ,10891
|
|
96
|
+
pulumi_snowflake/row_access_policy.py,sha256=i8LWudc25urMsjlKWjPgCizSHCGXlvPrG4KA8Gwgbc4,28095
|
|
97
|
+
pulumi_snowflake/saml2_integration.py,sha256=u0mKSWh4VWhgvbN8XG5OsS6owRgHueW6Fmk-Qxx89ss,76679
|
|
98
|
+
pulumi_snowflake/saml_integration.py,sha256=25snUHI4FQzzHnhKVqnbXGvuEC0oOs812tGx7Vud3v0,62645
|
|
99
|
+
pulumi_snowflake/schema.py,sha256=iTC2DamZu-X6Y1W7bg-1r-VdPVrw3-on089U1H0w0Yk,92492
|
|
100
|
+
pulumi_snowflake/scim_integration.py,sha256=nTbLnwIHXicNFXrovxfGwTHPNydkK9kykJGjzbNqa38,28734
|
|
101
|
+
pulumi_snowflake/secondary_database.py,sha256=LvzAa9vYCpELorXG3366ScmRwpfzFuXFMIoh87DElJ8,82584
|
|
102
|
+
pulumi_snowflake/sequence.py,sha256=3uch8fN22pyburdAvyvHjktLgiVoFqqw0pXX1sD4q1Q,18290
|
|
103
|
+
pulumi_snowflake/service_user.py,sha256=G-dAHCezsD5vcARCptHw3hQE3RCqdp9xwelbdSVuEdY,321186
|
|
104
|
+
pulumi_snowflake/session_parameter.py,sha256=jmzbbo5i4UtLyijM4aiOJ6KDCt7Qgxznn51UtECrIo4,12933
|
|
105
|
+
pulumi_snowflake/share.py,sha256=PmUfEZZuLv_Ls6o8cH3qwA7TkJXYYmsEggqgF22VLGM,12275
|
|
106
|
+
pulumi_snowflake/shared_database.py,sha256=hG7QRWFWDbFdMOyg-6qc-UE_9RKRWDzB-hidYVXazcg,65735
|
|
107
|
+
pulumi_snowflake/stage.py,sha256=vbGPND3vgFK81mOs_C894EmzrPbDj_CtX7w02bpPan4,38015
|
|
108
|
+
pulumi_snowflake/storage_integration.py,sha256=vb1ofhP6LU-J6t2_qBAB7rPqqF6MlpPU7M16fKx2pO0,33141
|
|
109
|
+
pulumi_snowflake/stream.py,sha256=5E1OJaOaiArwfqWH21tcNq_xj5EXWP8YTw5WToOC6zI,26825
|
|
110
|
+
pulumi_snowflake/stream_on_external_table.py,sha256=rRGNK6Is8oxukgqaiIf1t65WE4OJwW1CnfkA-bjAM7s,32513
|
|
111
|
+
pulumi_snowflake/stream_on_table.py,sha256=nt7GF6JvA6wSDUU3jgVgq2Lt1-m1j4FNrjezt3i-D9w,33109
|
|
112
|
+
pulumi_snowflake/streamlit.py,sha256=2qCRo345W5x69yGfPogDRNXfsVTj9sKO4AkcvnThjoQ,31013
|
|
113
|
+
pulumi_snowflake/table.py,sha256=ytScReoDsOfI3X2JR1rm2FtLPxnGDAzqj-T9EHAzxsc,33157
|
|
114
|
+
pulumi_snowflake/table_column_masking_policy_application.py,sha256=He2six0YqZ5AHAb3lnHIpDNn3QhdNIPPzl82tK29Dhk,10717
|
|
115
|
+
pulumi_snowflake/table_constraint.py,sha256=clloXd2bSwHxVuSRj3DPl44Yj3B5qaMYV5JcYEuG7H4,31166
|
|
116
|
+
pulumi_snowflake/tag.py,sha256=jE2cNJCXna0ZwpIv7piAM4tnJVDF_J0z-0VTiCbnIJ8,15397
|
|
117
|
+
pulumi_snowflake/tag_association.py,sha256=rTCgpQtof9E8SPOLjg_KMgu0G25hRsmuPFLoILPUDmg,22093
|
|
118
|
+
pulumi_snowflake/tag_masking_policy_association.py,sha256=E1LrfN7lLlRUqf8j9JL0tjLYiZXgkI3KviA13N6BM1s,9865
|
|
119
|
+
pulumi_snowflake/task.py,sha256=2wYzEEw6rfhBzqJe87eWxS2dC2E4XxyeLJfzr38rSTw,47908
|
|
120
|
+
pulumi_snowflake/unsafe_execute.py,sha256=6Gp1SrnXsnlri07rkSm9PtE1Ys_5mR2w64wCO5X3pNA,11926
|
|
121
|
+
pulumi_snowflake/user.py,sha256=u-QnGCXlA387TZXixP6HumbWFhUBFFcxOWDvLjVvCj0,334913
|
|
122
|
+
pulumi_snowflake/user_password_policy_attachment.py,sha256=FwvBU8U-_KdpgbplKi3Q3s_Pulh1paOfOvqUvyhB5oQ,8924
|
|
123
|
+
pulumi_snowflake/user_public_keys.py,sha256=hsyt78EP4kHs5SK7rLCPsWIHXI64N0D-KUdGUnO_sxY,11452
|
|
124
|
+
pulumi_snowflake/view.py,sha256=394gynbpC5gPl7vkf7GeoZRuXtze6IsdEKVSW4uzMcY,49148
|
|
125
|
+
pulumi_snowflake/warehouse.py,sha256=se2NXj9yS6klXgp7Acgr0niPUTwPwhioJz21rQgoCfA,58531
|
|
126
|
+
pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
127
|
+
pulumi_snowflake/config/__init__.pyi,sha256=aa0VMLLskk9aIMRoknu4efzyLcxw_17GLRHF800qGjI,10042
|
|
128
|
+
pulumi_snowflake/config/outputs.py,sha256=iAJ-lzy_gkkdNr_znbdiKbAphOhXY3G9NGJHcHMk8rU,4041
|
|
129
|
+
pulumi_snowflake/config/vars.py,sha256=G39jUlPVuNob1qJuIhVliLG8PlRZGx_IFjLPZ2KWHA0,15936
|
|
130
|
+
pulumi_snowflake-0.60.0.dist-info/METADATA,sha256=bBLCzwBomEukDB9s_5eqErOUjpsMMppC25snVe8SdlI,5038
|
|
131
|
+
pulumi_snowflake-0.60.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
132
|
+
pulumi_snowflake-0.60.0.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
133
|
+
pulumi_snowflake-0.60.0.dist-info/RECORD,,
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
pulumi_snowflake/__init__.py,sha256=jLhHlQ_zLRRsNuX3MUUJZ6Zeo6ajiEG6dI7bTYnbqms,17867
|
|
2
|
-
pulumi_snowflake/_inputs.py,sha256=kZWGLszpY9SKSEK5T9mHYiAsaZUKOj3sgLc2zZXR6BI,753122
|
|
3
|
-
pulumi_snowflake/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
4
|
-
pulumi_snowflake/account.py,sha256=jH3DxskMHSTxox8DfeVZ3fmSH1gfu4KPz9bYEJMxCLQ,46986
|
|
5
|
-
pulumi_snowflake/account_parameter.py,sha256=NLCma6MdpBgH29t-flNQfwUQ_nUy4OMVo3c9s_YUs_0,8753
|
|
6
|
-
pulumi_snowflake/account_password_policy_attachment.py,sha256=HM1StOWHSWobxaFTfQEyW8i0cegg_jdJ8vAO5s6kfGc,6770
|
|
7
|
-
pulumi_snowflake/account_role.py,sha256=TYf571kn63Rzz038FbGliu7YEQ5N0NFA-LViyMAbjJk,10948
|
|
8
|
-
pulumi_snowflake/alert.py,sha256=JDlRxzDGUDLUppEBjS0McLj1Wew6SA-LMXFzQMk_1QI,24023
|
|
9
|
-
pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=wZcnFYOuJlmwUzfw1esGy6kICMYykZOamn5y9hj-dWE,43095
|
|
10
|
-
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=BLpscA1uJgS5RuZT--DTvDjSIwH4cCybyv6fnVdZ2Sk,39831
|
|
11
|
-
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=yEKk8zu7bn2SV4RqG1qo8qZR3bZqTac9fw17TWGSxZg,40567
|
|
12
|
-
pulumi_snowflake/api_integration.py,sha256=QbKQ0WM7bhQTIlsDDAZWFg3onUlqM3q7UJ9CEOFQUFs,40355
|
|
13
|
-
pulumi_snowflake/cortex_search_service.py,sha256=4xAZW8bnU0ICOtsAQXKrZ5HLDbk5y_EBAcY9wlFR1K4,25600
|
|
14
|
-
pulumi_snowflake/database.py,sha256=yZgpshJBp-gqUcuEmah8UX3oPu819Tv05LC9gwKIIVY,86760
|
|
15
|
-
pulumi_snowflake/database_old.py,sha256=QQPuv_9NTHMrHdvgztu41ysX-oL3a9AAANPdZ2m7WgA,27823
|
|
16
|
-
pulumi_snowflake/database_role.py,sha256=Bp1JIbnfm8Gpn5oyUnnJiAslQJUhrNOkqSsWiFK2NWo,14579
|
|
17
|
-
pulumi_snowflake/dynamic_table.py,sha256=wS-LAszKT6j8XjgUmmX_imVpmKvRPkT1-TrfeicjO4A,41190
|
|
18
|
-
pulumi_snowflake/email_notification_integration.py,sha256=vHtSBw8MnZuABXNwh0qBW9FqMXKMsQhnN-6vJfOyHQg,12711
|
|
19
|
-
pulumi_snowflake/external_function.py,sha256=0b0SKpZj9FnL82iJu0pfNKNH9eNSJWHge-zjlDfJuNI,49142
|
|
20
|
-
pulumi_snowflake/external_oauth_integration.py,sha256=bAcVYc5yBlaK7P_XIbBHRBrtbelcHwxXEhczkA9fkbg,66414
|
|
21
|
-
pulumi_snowflake/external_table.py,sha256=4tA5fCRgrtSkgZlVlY0m2qwecd8vpHMvg4ZpRouGuOs,41389
|
|
22
|
-
pulumi_snowflake/failover_group.py,sha256=e9ZrQgK3Ous-Zi_H-ZHZBQOtaqX1MYKgIG0HtFya0B8,38308
|
|
23
|
-
pulumi_snowflake/file_format.py,sha256=SNYbLUxLR5IT0BblAognqU8lApTCRv471ruQM_UyUe0,92896
|
|
24
|
-
pulumi_snowflake/function.py,sha256=gHYAeC9MXQhBMkju-zoRQvid6zU0pqtPcFLw3v7hlBQ,42090
|
|
25
|
-
pulumi_snowflake/get_accounts.py,sha256=1XaZzHCyz4veYUDjZ-urRSFR0WCEPCGpAneC8B_F7gk,3423
|
|
26
|
-
pulumi_snowflake/get_alerts.py,sha256=IOYjHzz6mofcwCs9US7STsx9kKz1pleAer2IR1iQEbg,4948
|
|
27
|
-
pulumi_snowflake/get_cortex_search_services.py,sha256=kWy5WqbZl2AuHw2kBLg3nuyNVIWmXWah_LqIYcllgTQ,9319
|
|
28
|
-
pulumi_snowflake/get_current_account.py,sha256=ekQYpY3r7i7TXxCTtMo8B9MdLVQEfgURVxt0zs7glC4,3848
|
|
29
|
-
pulumi_snowflake/get_current_role.py,sha256=8qctYLhiMpij40a-sTPUpxno0OBzyTpp4pp1v0Dm3OM,2532
|
|
30
|
-
pulumi_snowflake/get_database.py,sha256=-OCZl50Fyaz8OSDes2wLsaf9dsk927UHIlFuut5ACSw,6025
|
|
31
|
-
pulumi_snowflake/get_database_role.py,sha256=VgJGlvm4SNuYWpoaClTLlyIS8dszGaX2WZgUpASbdFE,4493
|
|
32
|
-
pulumi_snowflake/get_database_roles.py,sha256=6VWRNqTyIhwBL1kRRZZDCg1BzaAinTN1r1UIFstvwV4,7002
|
|
33
|
-
pulumi_snowflake/get_databases.py,sha256=eTr97oMUtON16CGdOSRr6NDzc4nw9KGMXXPEpBFhPV4,10215
|
|
34
|
-
pulumi_snowflake/get_dynamic_tables.py,sha256=n9IPEtqJ6IYk37eS-pXY_KP2F174TUzlaeBJjI7UCFA,7388
|
|
35
|
-
pulumi_snowflake/get_external_functions.py,sha256=-UoeIjSURHaxT-3F70gfowF1Xmy8TkbaKLNFpxYdEYo,4650
|
|
36
|
-
pulumi_snowflake/get_external_tables.py,sha256=MeoscZ7LbpY-Fj9zaQoXz-4VsQBSxhpyPiMiAn201hg,4481
|
|
37
|
-
pulumi_snowflake/get_failover_groups.py,sha256=3_2DcfbgcxQ3vPE-2uE18f_41j1p3nYruuB11nmrVIw,3531
|
|
38
|
-
pulumi_snowflake/get_file_formats.py,sha256=nM16keOSoW2kFh4te0gpAE-xIc3VwyzrW2tx76jDukI,4352
|
|
39
|
-
pulumi_snowflake/get_functions.py,sha256=A8jzOryl_PloHXf8EIKEt1NCIP3oQSyAV8XMdVIwKKY,4221
|
|
40
|
-
pulumi_snowflake/get_grants.py,sha256=o8S62PUU6mNrmdSqft7_iXTlOgaY-MNq46UyExQUr3E,14011
|
|
41
|
-
pulumi_snowflake/get_masking_policies.py,sha256=ra6_KaY7vxq4o3xztRQF7qJT4j8sQHmQRvxIA_MaxGs,4519
|
|
42
|
-
pulumi_snowflake/get_materialized_views.py,sha256=SzrOyytKFC1L1Bxtf_k8PI0wXfP_zkvrAfRHdYJIovQ,4558
|
|
43
|
-
pulumi_snowflake/get_network_policies.py,sha256=7E5UrgcVlA202R1j141IjEjTOfgvgMLWgk50mDEQ6ns,6269
|
|
44
|
-
pulumi_snowflake/get_parameters.py,sha256=sziM3-TIrQKQutCRQddpm6ql82SaE5lie55lm1dNAOw,9700
|
|
45
|
-
pulumi_snowflake/get_pipes.py,sha256=S8EURVcZJze6r7br5sdFFEcxmf358EK3ept7Sft5CFE,4053
|
|
46
|
-
pulumi_snowflake/get_procedures.py,sha256=1DZvj-MhgKOW3BGB6EQVtofsGAha8Rg7Sh2P1jsDars,4263
|
|
47
|
-
pulumi_snowflake/get_resource_monitors.py,sha256=ou1SwZvtDDpkFmFYvYZpmS_KeI_Zy51OW4Rk9EEDAGw,2895
|
|
48
|
-
pulumi_snowflake/get_role.py,sha256=BvCk_WCi6C8GvQc9q4nlWprYwVt9pI1pHUYieW_2JRs,3392
|
|
49
|
-
pulumi_snowflake/get_roles.py,sha256=I48pxk_QaE14ls-FghgbZm-vagZ3TDzlqoGX764KMrs,5295
|
|
50
|
-
pulumi_snowflake/get_row_access_policies.py,sha256=U6dOdDDR5IN60wvnJmZ2vNr7JE6HrHzJ5Js9WHCBncs,4628
|
|
51
|
-
pulumi_snowflake/get_schemas.py,sha256=lZ4UCri1rHq65Zex7CXQ_GUcXyDCWOtETXa8tmNVpYU,10856
|
|
52
|
-
pulumi_snowflake/get_security_integrations.py,sha256=U9PAfYXQ9LflMrL0CiEnn-yhef9uEJbLM_iwMZQLERQ,6581
|
|
53
|
-
pulumi_snowflake/get_sequences.py,sha256=xp_duxQQTXk5R6MW7bhoqX9dEk7bATY1fk5F8vcuOoM,4221
|
|
54
|
-
pulumi_snowflake/get_shares.py,sha256=xOrMChS5bTQ8vIETDAtJt1Ar7VDjSo3fpqQldXyfRLU,3365
|
|
55
|
-
pulumi_snowflake/get_stages.py,sha256=0aDVuqtlisNUHBA1z81PgpUrYSNmfIUp3CrNTPG9vt0,4095
|
|
56
|
-
pulumi_snowflake/get_storage_integrations.py,sha256=B96Ikapf8A8FcFYRivOwOooBjbyj7wsZnul0C7kHJK4,3003
|
|
57
|
-
pulumi_snowflake/get_streamlits.py,sha256=V0EM8OhxuuLG5R-Y_KRBgwEUcAo0df94kd3HHchmtGA,8773
|
|
58
|
-
pulumi_snowflake/get_streams.py,sha256=lKhjr5ZI0ImQjl-zJPjVwzZNwPJDmZws4znbyQYynY8,4137
|
|
59
|
-
pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=qDnAfUXWuNeg4CkP0Rt8SZliQsE9kAyMYlB8U3cikvg,3986
|
|
60
|
-
pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=fm4NJGPdm5RehwqL0glf-HfiAf_71JxLNmNJaXQSNrI,4269
|
|
61
|
-
pulumi_snowflake/get_system_get_private_link_config.py,sha256=WaaVjQAKPaoOFig494UkEiVFaoOkfBlJHwGCaln9yQY,11211
|
|
62
|
-
pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=QLFK-mEZVXbTSfKzQOi83VE_fn5H5K8YAMJaQsQY8Rg,3520
|
|
63
|
-
pulumi_snowflake/get_tables.py,sha256=AG1baNGUWbRj4ow9g7OY6dGqkL-eUvgDtCOydrHvN9Y,4095
|
|
64
|
-
pulumi_snowflake/get_tasks.py,sha256=lzEuSYuJHfOeGhkVeFH2MdR612BWq5Ywc14P6tawsjo,4053
|
|
65
|
-
pulumi_snowflake/get_users.py,sha256=UQ6g-zIgFjWO4YmN7O2zOFfzUZEAsw0ncZSbentfubM,10479
|
|
66
|
-
pulumi_snowflake/get_views.py,sha256=qvRRafcCiC2eczd7MeC6cQcxa5nt4POsI3MpPbTHcTQ,8588
|
|
67
|
-
pulumi_snowflake/get_warehouses.py,sha256=6KFeQL76lEbl-Oyutye0JlES_IkNCpjCt5d7Oryq2hU,7371
|
|
68
|
-
pulumi_snowflake/grant_account_role.py,sha256=lxR9N7ObN22MK1BITBAA31xwMzZRU6hHKuGNON3CBPw,11188
|
|
69
|
-
pulumi_snowflake/grant_application_role.py,sha256=UNm21GWjYep4EKt_oiLhHeP_HR4vMNeS7_Z0KEoLVXo,11971
|
|
70
|
-
pulumi_snowflake/grant_database_role.py,sha256=wE1ZcvcgpFf4KlOvGVX55E8nI8bMvKzZzqWt7GiNVu8,14627
|
|
71
|
-
pulumi_snowflake/grant_ownership.py,sha256=BI6V1NDGeXAZLLXtgKG54J_o0tHhHGzLQOEBE-ZIlpY,18104
|
|
72
|
-
pulumi_snowflake/grant_privileges_to_account_role.py,sha256=M1MzrwoYOWtSWrFYukLSedbx43v7WiFHxjVbDC8lhnI,30835
|
|
73
|
-
pulumi_snowflake/grant_privileges_to_database_role.py,sha256=BbcAkNXx9S2XwRQQRb4f5tBigVP9no7e0dFFjb3Uc7o,27860
|
|
74
|
-
pulumi_snowflake/grant_privileges_to_share.py,sha256=AeHSy5_z0cjg6H8YF2rCNyUjiClG10wtsXvYH3zejzk,24751
|
|
75
|
-
pulumi_snowflake/managed_account.py,sha256=opk6VJuTiojT3g2rOhj9eOxG0OTmYe9Mqshfsfostsw,22178
|
|
76
|
-
pulumi_snowflake/masking_policy.py,sha256=PTJUht5gimuViu8ISFwZXHZQQ3RrCft6L-O_I8NGqP4,28305
|
|
77
|
-
pulumi_snowflake/materialized_view.py,sha256=np5uyds74dxI91To7fC8ZR6lh2rV9a_92DGO9WHeyAc,24326
|
|
78
|
-
pulumi_snowflake/network_policy.py,sha256=3xcb9r1Cx2r9QaGkr2RKydQ5iu1pwSUcjxnXuMIsZ1A,27498
|
|
79
|
-
pulumi_snowflake/network_policy_attachment.py,sha256=2fuljncw1CSP7DxpomHZ4PUdB0JcDjnkjt9dHcQeeXw,15190
|
|
80
|
-
pulumi_snowflake/network_rule.py,sha256=cM8JhtLMfeUBtvcJk2u_Y4ibcqfWmSPGiRrSbBenFEo,23755
|
|
81
|
-
pulumi_snowflake/notification_integration.py,sha256=OrGW3CGSI7nqkMRy6-gf_n7jt_VrR_pmyILC2jfhIrw,49192
|
|
82
|
-
pulumi_snowflake/oauth_integration.py,sha256=vQzP4Sl6mS6ZTqMX7tT-Uq_XcyjuhbXnJtDZYbXq38A,31365
|
|
83
|
-
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=oIcLrB53zyWGaNdTBoPkGWMt-yq2zeNpdRqflwk0RCI,55841
|
|
84
|
-
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=5QMmnM3Jplc8TyRoHd8zA8QG6g4Wt0J6P3hRTg9YFFk,36433
|
|
85
|
-
pulumi_snowflake/object_parameter.py,sha256=lEUHFXGrS2NNn4Md9-LIQMbB9wMle_DsIycm7mgYFNc,18541
|
|
86
|
-
pulumi_snowflake/outputs.py,sha256=-Xsw1LaRQYxaxJ0tHjEjYDsp2H0KJpruBhKqwCYYbHo,910869
|
|
87
|
-
pulumi_snowflake/password_policy.py,sha256=sTR0Y7OnaA5rlltAwOw1D0XXHdD9PvvLI_Z69I2f4RU,53731
|
|
88
|
-
pulumi_snowflake/pipe.py,sha256=BWpaXzBs1SGB6gNZeimXBYecT0vxCR2zp_gnEJhjeSE,26239
|
|
89
|
-
pulumi_snowflake/procedure.py,sha256=XNUBvg9bF0dxBccqnQNnFAjl3MNSF1xGPc9sAfFJChY,45620
|
|
90
|
-
pulumi_snowflake/provider.py,sha256=PEyKukbl3zEttQSVtkbM_RY9u8Ro14hPbNYCTwCvOaw,85280
|
|
91
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=rtHo3vo-0DsOKw_rfTtQ-eJjW0jG4-yiK8QffRXcxtE,86
|
|
92
|
-
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
-
pulumi_snowflake/resource_monitor.py,sha256=7YjrfEtLqZGgSEsaLNebjf8Fh1ht9gFdqXZZTpijOqw,39434
|
|
94
|
-
pulumi_snowflake/role.py,sha256=M5uy8EnOre_YL_BF_whhEDQQ1BREC8v8-yCVrVpB7cI,10717
|
|
95
|
-
pulumi_snowflake/row_access_policy.py,sha256=Qi_nfiFThsfj300hdlNYeOb2E3Oo2POGYLb8w6PEZ8M,20735
|
|
96
|
-
pulumi_snowflake/saml2_integration.py,sha256=jwNfpIX3Kj-xFZMEfS-09lyr77dD_QyMP3PEJJeTSkQ,76505
|
|
97
|
-
pulumi_snowflake/saml_integration.py,sha256=330aNgwiOsNj1x16vU4myGhA9zkaMJyvpIjaAmxgfDU,62471
|
|
98
|
-
pulumi_snowflake/schema.py,sha256=DA-UaAxx-jkiSpQ8b-ukhAfoMD17m82sONA4aNBVEgI,92318
|
|
99
|
-
pulumi_snowflake/scim_integration.py,sha256=qRDbB7QXc4R_lYTpwyBMQz0WhKuFiYkqSKmgKxUKeeQ,28560
|
|
100
|
-
pulumi_snowflake/secondary_database.py,sha256=_-2IFUkkg_RyoLBE6DB5Kevg1n3uAYwkszWS5LwTm-o,82410
|
|
101
|
-
pulumi_snowflake/sequence.py,sha256=n8WG8gT9KOm6sAC3WNxlN3ql0wPhxkLUHHv_uQN_9kQ,18116
|
|
102
|
-
pulumi_snowflake/session_parameter.py,sha256=0JuhSs8KLw8l8NEStrDREv463tIQTkSGtPkceI7Krtk,12759
|
|
103
|
-
pulumi_snowflake/share.py,sha256=wSV7ohLk_PKagh81hy_dXfSD1A8zS_acv2ZjlHh7z4w,12101
|
|
104
|
-
pulumi_snowflake/shared_database.py,sha256=Y5mLBBpQDuRz1BN2Kc25mxYsiDZjjZP2Y01xQ55eHk0,65561
|
|
105
|
-
pulumi_snowflake/stage.py,sha256=5gxnMtsYsPeD7CCXM7Iq7xkVOzntIaBt65aP2lNjtJU,36476
|
|
106
|
-
pulumi_snowflake/storage_integration.py,sha256=nSxX43Ab2GQ865Hw8uKtn1U4Log07YFojktQZT3qUcM,32967
|
|
107
|
-
pulumi_snowflake/stream.py,sha256=jN73wRK7Jl2u9hs2s1gmCw1-m86zj1dK4DHpwOZmFFk,26651
|
|
108
|
-
pulumi_snowflake/streamlit.py,sha256=esm8YJmRunwBMoLXDgyyqyWLH2WDq9ZCRQ8hGh9dFlE,30839
|
|
109
|
-
pulumi_snowflake/table.py,sha256=j3RVoWgDbwAywaEGNsejamYufyHSo5bLBEkEukU2GLw,32983
|
|
110
|
-
pulumi_snowflake/table_column_masking_policy_application.py,sha256=yxUKWGQ9FYMM5DFeERgjx8pfsIsHwu0Ld6ixxybe4vk,10543
|
|
111
|
-
pulumi_snowflake/table_constraint.py,sha256=nBNlzmwVet-jBd6vLS1DXmRKNbI7VkyULZBS9AX_pPg,30992
|
|
112
|
-
pulumi_snowflake/tag.py,sha256=ajzU6m8usKe3V37VN50BrdbaPJWA_yjrGELJ9CuyYk8,15223
|
|
113
|
-
pulumi_snowflake/tag_association.py,sha256=84bORYJMgG4xQXW1nG7bf4hi5oRrJ5GwffZqnoliL_8,21919
|
|
114
|
-
pulumi_snowflake/tag_masking_policy_association.py,sha256=MkGYO_A8nuiBfca2EdwK0rkcmBoI49TdYZUL36p_u3k,9691
|
|
115
|
-
pulumi_snowflake/task.py,sha256=prgW83QdoC8WwRTZtjcAvuncz7p34BEpxDcVJ5dJQcU,47734
|
|
116
|
-
pulumi_snowflake/unsafe_execute.py,sha256=PMd-Kt53tvGOsWPTOTExeSRvtDaT-t3uwZpydOTXjGo,11752
|
|
117
|
-
pulumi_snowflake/user.py,sha256=kVJI3Fe_jrS-Hc29LtBVIFxTRRt0fRC3ah6oqRour9I,334725
|
|
118
|
-
pulumi_snowflake/user_password_policy_attachment.py,sha256=SMTbHU2Qqy915fVV7Z9HTt9NjyTFYlgSDzPBi4t2x8w,8750
|
|
119
|
-
pulumi_snowflake/user_public_keys.py,sha256=Z8QaNFXe8bGM0pzxRwM3bPSlGvqXVOxejQLDbhQm5Ck,11278
|
|
120
|
-
pulumi_snowflake/view.py,sha256=sj3P4YOxYnA7aELlWdi2R_6ueAEyPpVXDsPCsagNmuQ,48330
|
|
121
|
-
pulumi_snowflake/warehouse.py,sha256=QftxJogf_XsoRKAuCmq0Vx4NFZLyJ6WZ2B2PaTPBkHE,58353
|
|
122
|
-
pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
123
|
-
pulumi_snowflake/config/__init__.pyi,sha256=wA0KR9Mzb7OhcEV0M_FSljX8L_jCHB4hMilHnLcVwTo,9868
|
|
124
|
-
pulumi_snowflake/config/outputs.py,sha256=zm82Qv8RbeJ_iKb90mfdQeQBHOwjYRC8zHHII-DHiNs,3867
|
|
125
|
-
pulumi_snowflake/config/vars.py,sha256=D3v_7m-rX66OwF6n2t32KU1cRLebk5_u6vSbTuL9o-Y,15762
|
|
126
|
-
pulumi_snowflake-0.59.0a1726827563.dist-info/METADATA,sha256=rAdYLKHPmB2TA7d_A1D2XQ7Xg6khGnP0z3yQMVm6goU,4981
|
|
127
|
-
pulumi_snowflake-0.59.0a1726827563.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
128
|
-
pulumi_snowflake-0.59.0a1726827563.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
129
|
-
pulumi_snowflake-0.59.0a1726827563.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_snowflake-0.59.0a1726827563.dist-info → pulumi_snowflake-0.60.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|