pulumi-snowflake 2.1.0a1750142727__py3-none-any.whl → 2.1.0a1750909414__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 +58 -0
- pulumi_snowflake/_inputs.py +4790 -958
- pulumi_snowflake/account.py +47 -0
- pulumi_snowflake/compute_pool.py +625 -0
- pulumi_snowflake/config/__init__.pyi +4 -2
- pulumi_snowflake/config/vars.py +4 -2
- pulumi_snowflake/cortex_search_service.py +77 -0
- pulumi_snowflake/current_account.py +5885 -0
- pulumi_snowflake/database.py +7 -7
- pulumi_snowflake/get_compute_pools.py +175 -0
- pulumi_snowflake/get_cortex_search_services.py +3 -3
- pulumi_snowflake/get_database_roles.py +3 -3
- pulumi_snowflake/get_databases.py +3 -3
- pulumi_snowflake/get_git_repositories.py +175 -0
- pulumi_snowflake/get_image_repositories.py +135 -0
- pulumi_snowflake/get_masking_policies.py +3 -3
- pulumi_snowflake/get_row_access_policies.py +3 -3
- pulumi_snowflake/get_schemas.py +3 -3
- pulumi_snowflake/get_services.py +215 -0
- pulumi_snowflake/get_streamlits.py +3 -3
- pulumi_snowflake/get_streams.py +3 -3
- pulumi_snowflake/get_tables.py +103 -62
- pulumi_snowflake/get_tasks.py +3 -3
- pulumi_snowflake/get_users.py +3 -3
- pulumi_snowflake/get_views.py +3 -3
- pulumi_snowflake/git_repository.py +532 -0
- pulumi_snowflake/image_repository.py +361 -0
- pulumi_snowflake/job_service.py +653 -0
- pulumi_snowflake/outputs.py +4220 -136
- pulumi_snowflake/provider.py +16 -8
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/schema.py +7 -7
- pulumi_snowflake/secondary_database.py +7 -7
- pulumi_snowflake/service.py +888 -0
- pulumi_snowflake/shared_database.py +7 -7
- pulumi_snowflake/tag_association.py +7 -7
- {pulumi_snowflake-2.1.0a1750142727.dist-info → pulumi_snowflake-2.1.0a1750909414.dist-info}/METADATA +1 -1
- {pulumi_snowflake-2.1.0a1750142727.dist-info → pulumi_snowflake-2.1.0a1750909414.dist-info}/RECORD +40 -30
- {pulumi_snowflake-2.1.0a1750142727.dist-info → pulumi_snowflake-2.1.0a1750909414.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-2.1.0a1750142727.dist-info → pulumi_snowflake-2.1.0a1750909414.dist-info}/top_level.txt +0 -0
|
@@ -52,7 +52,7 @@ class SharedDatabaseArgs:
|
|
|
52
52
|
:param pulumi.Input[builtins.str] storage_serialization_policy: The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
|
|
53
53
|
:param pulumi.Input[builtins.int] suspend_task_after_num_failures: How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
|
|
54
54
|
:param pulumi.Input[builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
|
|
55
|
-
:param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are:
|
|
55
|
+
:param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
56
56
|
:param pulumi.Input[builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
|
|
57
57
|
:param pulumi.Input[builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
58
58
|
:param pulumi.Input[builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
|
|
@@ -251,7 +251,7 @@ class SharedDatabaseArgs:
|
|
|
251
251
|
@pulumi.getter(name="traceLevel")
|
|
252
252
|
def trace_level(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
253
253
|
"""
|
|
254
|
-
Controls how trace events are ingested into the event table. Valid options are:
|
|
254
|
+
Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
255
255
|
"""
|
|
256
256
|
return pulumi.get(self, "trace_level")
|
|
257
257
|
|
|
@@ -333,7 +333,7 @@ class _SharedDatabaseState:
|
|
|
333
333
|
:param pulumi.Input[builtins.str] storage_serialization_policy: The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
|
|
334
334
|
:param pulumi.Input[builtins.int] suspend_task_after_num_failures: How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
|
|
335
335
|
:param pulumi.Input[builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
|
|
336
|
-
:param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are:
|
|
336
|
+
:param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
337
337
|
:param pulumi.Input[builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
|
|
338
338
|
:param pulumi.Input[builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
339
339
|
:param pulumi.Input[builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
|
|
@@ -547,7 +547,7 @@ class _SharedDatabaseState:
|
|
|
547
547
|
@pulumi.getter(name="traceLevel")
|
|
548
548
|
def trace_level(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
549
549
|
"""
|
|
550
|
-
Controls how trace events are ingested into the event table. Valid options are:
|
|
550
|
+
Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
551
551
|
"""
|
|
552
552
|
return pulumi.get(self, "trace_level")
|
|
553
553
|
|
|
@@ -638,7 +638,7 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
638
638
|
:param pulumi.Input[builtins.str] storage_serialization_policy: The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
|
|
639
639
|
:param pulumi.Input[builtins.int] suspend_task_after_num_failures: How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
|
|
640
640
|
:param pulumi.Input[builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
|
|
641
|
-
:param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are:
|
|
641
|
+
:param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
642
642
|
:param pulumi.Input[builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
|
|
643
643
|
:param pulumi.Input[builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
644
644
|
:param pulumi.Input[builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
|
|
@@ -766,7 +766,7 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
766
766
|
:param pulumi.Input[builtins.str] storage_serialization_policy: The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]. COMPATIBLE: Snowflake performs encoding and compression of data files that ensures interoperability with third-party compute engines. OPTIMIZED: Snowflake performs encoding and compression of data files that ensures the best table performance within Snowflake. For more information, see [STORAGE*SERIALIZATION*POLICY](https://docs.snowflake.com/en/sql-reference/parameters#storage-serialization-policy).
|
|
767
767
|
:param pulumi.Input[builtins.int] suspend_task_after_num_failures: How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending. For more information, see [SUSPEND*TASK*AFTER*NUM*FAILURES](https://docs.snowflake.com/en/sql-reference/parameters#suspend-task-after-num-failures).
|
|
768
768
|
:param pulumi.Input[builtins.int] task_auto_retry_attempts: Maximum automatic retries allowed for a user task. For more information, see [TASK*AUTO*RETRY_ATTEMPTS](https://docs.snowflake.com/en/sql-reference/parameters#task-auto-retry-attempts).
|
|
769
|
-
:param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are:
|
|
769
|
+
:param pulumi.Input[builtins.str] trace_level: Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
770
770
|
:param pulumi.Input[builtins.str] user_task_managed_initial_warehouse_size: The initial size of warehouse to use for managed warehouses in the absence of history. For more information, see [USER*TASK*MANAGED*INITIAL*WAREHOUSE_SIZE](https://docs.snowflake.com/en/sql-reference/parameters#user-task-managed-initial-warehouse-size).
|
|
771
771
|
:param pulumi.Input[builtins.int] user_task_minimum_trigger_interval_in_seconds: Minimum amount of time between Triggered Task executions in seconds.
|
|
772
772
|
:param pulumi.Input[builtins.int] user_task_timeout_ms: User task execution timeout in milliseconds. For more information, see [USER*TASK*TIMEOUT_MS](https://docs.snowflake.com/en/sql-reference/parameters#user-task-timeout-ms).
|
|
@@ -911,7 +911,7 @@ class SharedDatabase(pulumi.CustomResource):
|
|
|
911
911
|
@pulumi.getter(name="traceLevel")
|
|
912
912
|
def trace_level(self) -> pulumi.Output[builtins.str]:
|
|
913
913
|
"""
|
|
914
|
-
Controls how trace events are ingested into the event table. Valid options are:
|
|
914
|
+
Controls how trace events are ingested into the event table. Valid options are: `ALWAYS` | `ON_EVENT` | `PROPAGATE` | `OFF`. For information about levels, see [TRACE_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-trace-level).
|
|
915
915
|
"""
|
|
916
916
|
return pulumi.get(self, "trace_level")
|
|
917
917
|
|
|
@@ -28,7 +28,7 @@ class TagAssociationArgs:
|
|
|
28
28
|
"""
|
|
29
29
|
The set of arguments for constructing a TagAssociation resource.
|
|
30
30
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] object_identifiers: Specifies the object identifiers for the tag association.
|
|
31
|
-
:param pulumi.Input[builtins.str] object_type: Specifies the type of object to add a tag. Allowed object types:
|
|
31
|
+
:param pulumi.Input[builtins.str] object_type: Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
|
|
32
32
|
:param pulumi.Input[builtins.str] tag_id: Specifies the identifier for the tag.
|
|
33
33
|
:param pulumi.Input[builtins.str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
34
34
|
:param pulumi.Input[builtins.bool] skip_validation: (Default: `true`) If true, skips validation of the tag association.
|
|
@@ -56,7 +56,7 @@ class TagAssociationArgs:
|
|
|
56
56
|
@pulumi.getter(name="objectType")
|
|
57
57
|
def object_type(self) -> pulumi.Input[builtins.str]:
|
|
58
58
|
"""
|
|
59
|
-
Specifies the type of object to add a tag. Allowed object types:
|
|
59
|
+
Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
|
|
60
60
|
"""
|
|
61
61
|
return pulumi.get(self, "object_type")
|
|
62
62
|
|
|
@@ -112,7 +112,7 @@ class _TagAssociationState:
|
|
|
112
112
|
"""
|
|
113
113
|
Input properties used for looking up and filtering TagAssociation resources.
|
|
114
114
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] object_identifiers: Specifies the object identifiers for the tag association.
|
|
115
|
-
:param pulumi.Input[builtins.str] object_type: Specifies the type of object to add a tag. Allowed object types:
|
|
115
|
+
:param pulumi.Input[builtins.str] object_type: Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
|
|
116
116
|
:param pulumi.Input[builtins.bool] skip_validation: (Default: `true`) If true, skips validation of the tag association.
|
|
117
117
|
:param pulumi.Input[builtins.str] tag_id: Specifies the identifier for the tag.
|
|
118
118
|
:param pulumi.Input[builtins.str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
@@ -144,7 +144,7 @@ class _TagAssociationState:
|
|
|
144
144
|
@pulumi.getter(name="objectType")
|
|
145
145
|
def object_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
146
146
|
"""
|
|
147
|
-
Specifies the type of object to add a tag. Allowed object types:
|
|
147
|
+
Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
|
|
148
148
|
"""
|
|
149
149
|
return pulumi.get(self, "object_type")
|
|
150
150
|
|
|
@@ -213,7 +213,7 @@ class TagAssociation(pulumi.CustomResource):
|
|
|
213
213
|
:param str resource_name: The name of the resource.
|
|
214
214
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
215
215
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] object_identifiers: Specifies the object identifiers for the tag association.
|
|
216
|
-
:param pulumi.Input[builtins.str] object_type: Specifies the type of object to add a tag. Allowed object types:
|
|
216
|
+
:param pulumi.Input[builtins.str] object_type: Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
|
|
217
217
|
:param pulumi.Input[builtins.bool] skip_validation: (Default: `true`) If true, skips validation of the tag association.
|
|
218
218
|
:param pulumi.Input[builtins.str] tag_id: Specifies the identifier for the tag.
|
|
219
219
|
:param pulumi.Input[builtins.str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
@@ -298,7 +298,7 @@ class TagAssociation(pulumi.CustomResource):
|
|
|
298
298
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
299
299
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
300
300
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] object_identifiers: Specifies the object identifiers for the tag association.
|
|
301
|
-
:param pulumi.Input[builtins.str] object_type: Specifies the type of object to add a tag. Allowed object types:
|
|
301
|
+
:param pulumi.Input[builtins.str] object_type: Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
|
|
302
302
|
:param pulumi.Input[builtins.bool] skip_validation: (Default: `true`) If true, skips validation of the tag association.
|
|
303
303
|
:param pulumi.Input[builtins.str] tag_id: Specifies the identifier for the tag.
|
|
304
304
|
:param pulumi.Input[builtins.str] tag_value: Specifies the value of the tag, (e.g. 'finance' or 'engineering')
|
|
@@ -326,7 +326,7 @@ class TagAssociation(pulumi.CustomResource):
|
|
|
326
326
|
@pulumi.getter(name="objectType")
|
|
327
327
|
def object_type(self) -> pulumi.Output[builtins.str]:
|
|
328
328
|
"""
|
|
329
|
-
Specifies the type of object to add a tag. Allowed object types:
|
|
329
|
+
Specifies the type of object to add a tag. Allowed object types: `ACCOUNT` | `APPLICATION` | `APPLICATION PACKAGE` | `COMPUTE POOL` | `DATABASE` | `FAILOVER GROUP` | `INTEGRATION` | `NETWORK POLICY` | `REPLICATION GROUP` | `ROLE` | `SHARE` | `USER` | `WAREHOUSE` | `DATABASE ROLE` | `SCHEMA` | `ALERT` | `SNOWFLAKE.CORE.BUDGET` | `SNOWFLAKE.ML.CLASSIFICATION` | `EXTERNAL FUNCTION` | `EXTERNAL TABLE` | `FUNCTION` | `IMAGE REPOSITORY` | `GIT REPOSITORY` | `ICEBERG TABLE` | `MATERIALIZED VIEW` | `PIPE` | `MASKING POLICY` | `PASSWORD POLICY` | `ROW ACCESS POLICY` | `SESSION POLICY` | `PRIVACY POLICY` | `PROCEDURE` | `SERVICE` | `STAGE` | `STREAM` | `TABLE` | `TASK` | `VIEW` | `COLUMN` | `EVENT TABLE`.
|
|
330
330
|
"""
|
|
331
331
|
return pulumi.get(self, "object_type")
|
|
332
332
|
|
{pulumi_snowflake-2.1.0a1750142727.dist-info → pulumi_snowflake-2.1.0a1750909414.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
pulumi_snowflake/__init__.py,sha256=
|
|
2
|
-
pulumi_snowflake/_inputs.py,sha256=
|
|
1
|
+
pulumi_snowflake/__init__.py,sha256=XItY_nIfpsEQo3dzYUDBEOp7PTHi1FbdI3WZMbnrQhY,23511
|
|
2
|
+
pulumi_snowflake/_inputs.py,sha256=D67LM8Ga0HkVkeZKP0TY05eXb0TKzoYDGURv-5mf7OM,2376725
|
|
3
3
|
pulumi_snowflake/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
|
-
pulumi_snowflake/account.py,sha256=
|
|
4
|
+
pulumi_snowflake/account.py,sha256=Nd7xrVLkpbIhQRlFQyyDNGebc0nCq_QNyBvp-E8MSNk,48868
|
|
5
5
|
pulumi_snowflake/account_authentication_policy_attachment.py,sha256=Q2bA1SgysOmuPQQwJPHKGn9Xmg8TQ5r79mDXVixWmZY,7566
|
|
6
6
|
pulumi_snowflake/account_parameter.py,sha256=pAujrxCnDmkaQo8KTfswn8hnPeChCdhhxhsu2MZ7YG8,32192
|
|
7
7
|
pulumi_snowflake/account_password_policy_attachment.py,sha256=DrrBKkUwqKm5Zw1zX8hifBJkgX7bIN3qbnN6f97Ch5w,7170
|
|
@@ -12,8 +12,10 @@ pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha25
|
|
|
12
12
|
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=ILlWeh0lyJsP3amg4yqa5GxGfXOuDtxkuVsZTlG0Csc,41715
|
|
13
13
|
pulumi_snowflake/api_integration.py,sha256=6H7HyCy38rVpria2MT-1L7OlodKSi1SmdJO9-CW9J8k,42931
|
|
14
14
|
pulumi_snowflake/authentication_policy.py,sha256=6fVFDgcU_2XgfVJrMSgBaU8fz9Lhe3q5V4XJ-4EwTfU,43598
|
|
15
|
-
pulumi_snowflake/
|
|
16
|
-
pulumi_snowflake/
|
|
15
|
+
pulumi_snowflake/compute_pool.py,sha256=Lj6gDu2SMYO5z9qYqr7hYKlqx9Fpc12s4huYuPygQOo,37445
|
|
16
|
+
pulumi_snowflake/cortex_search_service.py,sha256=mNXC0AH4Gb-UyWBGngrERv_x2cJimIj3UgW-uBcfdRI,31461
|
|
17
|
+
pulumi_snowflake/current_account.py,sha256=1j_0dqWg1e0HOsWyP-IlkPeXgw3LKN_hMGhy7oSVi3I,637872
|
|
18
|
+
pulumi_snowflake/database.py,sha256=cRNH805OF63IOHDkv4liErfV7nKabxHVYh6jma-oK-c,89670
|
|
17
19
|
pulumi_snowflake/database_role.py,sha256=cmJrXYYqdklSZGy9qLET1pBvisyyd8Yi57Kk3sPfcvA,15130
|
|
18
20
|
pulumi_snowflake/dynamic_table.py,sha256=-8Y3S9zJaE5A0zf7ihST2_snaK7Edz784NEgQlc5GD8,43799
|
|
19
21
|
pulumi_snowflake/email_notification_integration.py,sha256=9i3qNYhssNIYAYq-zthRHqn2FTUSmJBumbZfyYZkEYU,13474
|
|
@@ -32,48 +34,53 @@ pulumi_snowflake/function_sql.py,sha256=OpqogVVBPOGxuvlwTxMtUKbc9ygBwXBAlMGrD5nn
|
|
|
32
34
|
pulumi_snowflake/get_account_roles.py,sha256=yDILoqeqLlpr1hcSO1R3OBq0dmz9RXQmUeRGRi8mJvA,5663
|
|
33
35
|
pulumi_snowflake/get_accounts.py,sha256=FgBOphzShc-a1M26XbWOVujoknjWnnesyhtcQAFnPx8,5527
|
|
34
36
|
pulumi_snowflake/get_alerts.py,sha256=E3jQ7ptCftcV0oK7JHWdBh9LDX7PnewpSdsyH0HTugk,7224
|
|
37
|
+
pulumi_snowflake/get_compute_pools.py,sha256=Xfs8slTIzYy2Epy25deSfTy_RTd4VgiQFc9PYWgpDOs,10488
|
|
35
38
|
pulumi_snowflake/get_connections.py,sha256=eC4TdUw08YF3kRzvoD33HTHluSbDeZQK1v-WqGV4oq8,4601
|
|
36
|
-
pulumi_snowflake/get_cortex_search_services.py,sha256=
|
|
39
|
+
pulumi_snowflake/get_cortex_search_services.py,sha256=JXs2itHOTDZ-tU1a6zu-9CB2sULLCYKxgWHe5530HOE,11690
|
|
37
40
|
pulumi_snowflake/get_current_account.py,sha256=1rqQ-FmBXE-LLcBWzuBHBssCFvFyHNCdTXO8kBRcpDk,5876
|
|
38
41
|
pulumi_snowflake/get_current_role.py,sha256=pJwcvetlildKNiOGPi_plaILDo5YTk_2wnRtP4D5k-U,4279
|
|
39
42
|
pulumi_snowflake/get_database.py,sha256=k4UjjYAMMPz1L61Kn-lgUrgLf_Y7RSyWvTqL6Y4HrTI,8502
|
|
40
43
|
pulumi_snowflake/get_database_role.py,sha256=zPYTD4iON2mno8d-5jZwcnXxZxtiJk-XwaONKEtLmcE,6715
|
|
41
|
-
pulumi_snowflake/get_database_roles.py,sha256=
|
|
42
|
-
pulumi_snowflake/get_databases.py,sha256=
|
|
44
|
+
pulumi_snowflake/get_database_roles.py,sha256=f55lHJM-V57g46_vROo_7raZRXrGtOXz2xt_PC1RWxY,7781
|
|
45
|
+
pulumi_snowflake/get_databases.py,sha256=_9T4DD7yNhSnXjeI9eZnAimtDwIoL5WGivar_3s8BV0,10767
|
|
43
46
|
pulumi_snowflake/get_dynamic_tables.py,sha256=5KSVbigy_XFKjyHMRCbDEywDG-7gLsOcSF_nQ5IAbRg,9511
|
|
44
47
|
pulumi_snowflake/get_external_functions.py,sha256=Yt3zdLCA8QDoNJKQEWp9rPNe1BRbdX6lL1qztM4Zz_I,6850
|
|
45
48
|
pulumi_snowflake/get_external_tables.py,sha256=-lckC8yfj4elsxR0cyAc3qOrth6-uYPIHzf92PXDmv4,6666
|
|
46
49
|
pulumi_snowflake/get_failover_groups.py,sha256=4iy_x94DWUl0naVH2K_BpNdZdS3clwNuKq5bQp39TeM,5445
|
|
47
50
|
pulumi_snowflake/get_file_formats.py,sha256=sNDDYVXkoKRFYSLogMx8crOuNoxfYdXbEwxMnzCwY90,6522
|
|
48
51
|
pulumi_snowflake/get_functions.py,sha256=-y9BRF9ZHzbbL_FQjlc72wVwLdKB37j8wUxebGEoHBw,6380
|
|
52
|
+
pulumi_snowflake/get_git_repositories.py,sha256=-J_PTtDLhr9HOoyc2_VEZofuot5f2AtQMEuWzsfq47g,10577
|
|
49
53
|
pulumi_snowflake/get_grants.py,sha256=4Vcw9CRuToxWZy10iDMbhQztfxPUE0CIEIrHj1Fdj8M,15277
|
|
50
|
-
pulumi_snowflake/
|
|
54
|
+
pulumi_snowflake/get_image_repositories.py,sha256=sumj03D2G7A3gpqT3FgCk80YBvzv1woSL16HTRoONwg,7182
|
|
55
|
+
pulumi_snowflake/get_masking_policies.py,sha256=kqZgZn4hlcz9bQYj43kdgXiFAm0o5AyoSo7bVjHelKU,10509
|
|
51
56
|
pulumi_snowflake/get_materialized_views.py,sha256=fvr0lQ78H6M6w-49fvvE8Bp8HI0ffGmon38m0TkBCqw,6758
|
|
52
57
|
pulumi_snowflake/get_network_policies.py,sha256=xVrzdbVQ41d7J_Ea1ciu2lAyY__7xlM_l06KkZIU8VY,6406
|
|
53
58
|
pulumi_snowflake/get_parameters.py,sha256=vnIdJ4UvdFScKAxbKDdaJc7qQ2FIIfa2eMcE4N9G1vk,12368
|
|
54
59
|
pulumi_snowflake/get_pipes.py,sha256=kd7aa2Z5NQSs6uACvo0IGebLDWJy2U-BUx4AFiqxUdc,6192
|
|
55
60
|
pulumi_snowflake/get_procedures.py,sha256=kDZ1JXg3mGfycQ8j5GMi2nJoTuNqjsQ9XbV1KaYYPFU,6427
|
|
56
61
|
pulumi_snowflake/get_resource_monitors.py,sha256=-nJsZt3T3QkT-SMmXUvWkRPCaYBeQD9BZZgCnjn_CWA,4900
|
|
57
|
-
pulumi_snowflake/get_row_access_policies.py,sha256=
|
|
58
|
-
pulumi_snowflake/get_schemas.py,sha256=
|
|
62
|
+
pulumi_snowflake/get_row_access_policies.py,sha256=7_kje3qiebFrx6ThlBf4-Aja67e72xxYC4gc2rvajoM,10723
|
|
63
|
+
pulumi_snowflake/get_schemas.py,sha256=xsZelnPS8g9mONjtqheuUPKQ1Vir0VlYp8KI7WPkMEU,11756
|
|
59
64
|
pulumi_snowflake/get_secrets.py,sha256=Wob2mlGwu_ioBTD8n0L_F_TK1MDvPjzzavZNZAhFYvQ,8720
|
|
60
65
|
pulumi_snowflake/get_security_integrations.py,sha256=PwRFmOkP7uYd3LGaJrDoiG5QYHJ9HoK6M0rAZq0sQ8E,6071
|
|
61
66
|
pulumi_snowflake/get_sequences.py,sha256=8VOcFCi9JBGnS231l68seKb3Lcy9KEh9fZubGuYxl0c,6380
|
|
67
|
+
pulumi_snowflake/get_services.py,sha256=dfWodgP4yw3umSorjpbjlwWrSp89xcbB4WwuntPw-L8,13040
|
|
62
68
|
pulumi_snowflake/get_shares.py,sha256=VWCx0zSoXQS9vunDPgufqYqy3zzyWEq1KI_3Gbgz0Dg,5377
|
|
63
69
|
pulumi_snowflake/get_stages.py,sha256=lc308b9SZ8Dg5p7IzXwiDOrHzo9AktxNWfTA_LwAE68,6239
|
|
64
70
|
pulumi_snowflake/get_storage_integrations.py,sha256=bDZYq2VkbWcFEj3qijrk7cuSi7BoiNjsB7wrHr5dHfM,4949
|
|
65
|
-
pulumi_snowflake/get_streamlits.py,sha256=
|
|
66
|
-
pulumi_snowflake/get_streams.py,sha256=
|
|
71
|
+
pulumi_snowflake/get_streamlits.py,sha256=113zVV26OZZWDPqQGB8fg6k72dhZvbrZ2F3lU7fPoWE,9036
|
|
72
|
+
pulumi_snowflake/get_streams.py,sha256=XIS8Oza3bwBCrOLZ0YazHCBHd5Yx-D8DS-TNSLDoSwU,9883
|
|
67
73
|
pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=xjQrwAu4gTJza6-5SazN5OPEz5BMA09IoTHwar1pwvw,6119
|
|
68
74
|
pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=L1ygE5bAKgbNkEQgnzJq-qHboxH7fR3uxa2U7GBjQgk,5276
|
|
69
75
|
pulumi_snowflake/get_system_get_private_link_config.py,sha256=RFt0a0LY6ZcKMEoVFZAsV1snXQVM_xE0Mg18caEgrGI,13782
|
|
70
76
|
pulumi_snowflake/get_system_get_snowflake_platform_info.py,sha256=tA0fWnVUd-ovN2gJy3i93AJ0GIEjsjlX49Uf2kwEjUg,5425
|
|
71
|
-
pulumi_snowflake/get_tables.py,sha256=
|
|
77
|
+
pulumi_snowflake/get_tables.py,sha256=AvlR9R11pMZcAyzzL4Oe51BZIpQxr9tAswI3RG5fprw,10962
|
|
72
78
|
pulumi_snowflake/get_tags.py,sha256=-DkAJLrzG9m4O1R_9bYD4UP5sYAoQUGyIIg9NvZhip0,5221
|
|
73
|
-
pulumi_snowflake/get_tasks.py,sha256=
|
|
74
|
-
pulumi_snowflake/get_users.py,sha256=
|
|
75
|
-
pulumi_snowflake/get_views.py,sha256=
|
|
79
|
+
pulumi_snowflake/get_tasks.py,sha256=cJORsrFPFRkI9GxNBh_EeZXpCmkWCytKAOD6it6bjVc,11760
|
|
80
|
+
pulumi_snowflake/get_users.py,sha256=OvWAnaLlNIhU-mn0PBpBxZAo2uiNNz1y3DC8AuCq5LE,9799
|
|
81
|
+
pulumi_snowflake/get_views.py,sha256=BMR_y_OpZMvEz0wZFzMuC7CSDVfHWNNeQiLXwN_yEg8,10573
|
|
76
82
|
pulumi_snowflake/get_warehouses.py,sha256=obgXXCyDldXJIdh2Ma0Qb-qg6jWoCe82TCYyiaOAK9E,7699
|
|
83
|
+
pulumi_snowflake/git_repository.py,sha256=24dHCyDO7J2Z7fgs9RCBadpVNxaX37HWDDXVMyuIp7c,29573
|
|
77
84
|
pulumi_snowflake/grant_account_role.py,sha256=-gFqJ3roQXzRnMAGfzFUk4pXQvc1La-V-0zstZKESTI,12902
|
|
78
85
|
pulumi_snowflake/grant_application_role.py,sha256=X_x4UKi3MU6exdwvnTbKOGbyZn_IcfxlVH1p8MYBQfg,13001
|
|
79
86
|
pulumi_snowflake/grant_database_role.py,sha256=NDTQo24h-HGzILhqHsvbkpbL6I06YoteK9yHdnxlRkc,16847
|
|
@@ -81,6 +88,8 @@ pulumi_snowflake/grant_ownership.py,sha256=FSj99YpISzagJJG_TIT47mntmbKaBDH8urxgL
|
|
|
81
88
|
pulumi_snowflake/grant_privileges_to_account_role.py,sha256=WHmZ-7BD5m46JrGYTkz3KrXP6RvXjgUIKdukg9gSk0o,34473
|
|
82
89
|
pulumi_snowflake/grant_privileges_to_database_role.py,sha256=6mfycq2Q7BzbYh83JojJmMnXoRYwS1RjFIh2S8rsjsg,30566
|
|
83
90
|
pulumi_snowflake/grant_privileges_to_share.py,sha256=2KoAu27QgLK_rjhFTbIYClLfndryVuKOHGAHCciaObM,28469
|
|
91
|
+
pulumi_snowflake/image_repository.py,sha256=znGNwll19PrY-_JiG7PYW5V7zWmHCp_Y22xLzpMQ4Vw,18164
|
|
92
|
+
pulumi_snowflake/job_service.py,sha256=HJlzKzXdLIGX3UeM-A40FBNzDyZUI5TiGvybwwLHmmc,43530
|
|
84
93
|
pulumi_snowflake/legacy_service_user.py,sha256=tgROmOmQgazAVjgEIYOEFpMMTCfkKbCQaVLePGLJ7G4,339134
|
|
85
94
|
pulumi_snowflake/managed_account.py,sha256=-xYLQKBUI5jsq_8OmFygxOcZTl_FLiELpWnyYN50mUI,23566
|
|
86
95
|
pulumi_snowflake/masking_policy.py,sha256=No5sW48iwzjL-mb9rvmYlrZJqTTz5pfzrJ7Eozlurx8,37320
|
|
@@ -92,7 +101,7 @@ pulumi_snowflake/notification_integration.py,sha256=TgoBKTYh29i5yQBpIFBWHDOgPe6n
|
|
|
92
101
|
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=_BYXwQAeYW-By8PBMfIBMXzxbpQeVRL83qIkFu8sjPo,67108
|
|
93
102
|
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=HCuQCr9wkcv3i8pe2rJ8Blk-Wum-TIcvZCGiHVd8QY8,46385
|
|
94
103
|
pulumi_snowflake/object_parameter.py,sha256=OD-NB9r7KuFBxgR9EbhRRdMRNXC6Pp5iSzyE-5OIZLQ,19400
|
|
95
|
-
pulumi_snowflake/outputs.py,sha256=
|
|
104
|
+
pulumi_snowflake/outputs.py,sha256=Q9czAk6_zPF9T9LbPtTsc4lVy-POS1N-W6rczwQ-K24,2005430
|
|
96
105
|
pulumi_snowflake/password_policy.py,sha256=mIHu5sAgOPUy_oLMOwO3_h9dMrmDJ4yN75_fOE-M_Pg,59785
|
|
97
106
|
pulumi_snowflake/pipe.py,sha256=R90jxAXHF88SoDOUXSiy1BOj0eurK_41TdJxkrlyPS4,27915
|
|
98
107
|
pulumi_snowflake/primary_connection.py,sha256=9CIDcif3eFwCF8bqKZrBSlprgiMnPTfHqJQ178DIbLI,19726
|
|
@@ -101,24 +110,25 @@ pulumi_snowflake/procedure_javascript.py,sha256=vu5X-cH8wn8jrY7zmc0OJD1W4Jn2ZGXB
|
|
|
101
110
|
pulumi_snowflake/procedure_python.py,sha256=Yj9K9clP_G2XrM3ItQ-_kGcqYpU8LRhcIksHp8ieWWQ,102529
|
|
102
111
|
pulumi_snowflake/procedure_scala.py,sha256=nmZEZBW4V97V5_bgjVkBphZgH3hDajNeyRVAnh4mYqo,106540
|
|
103
112
|
pulumi_snowflake/procedure_sql.py,sha256=QPhynOAdxeWsXJar-U7vUGshCP-6w51eL8unsIjMEY8,67555
|
|
104
|
-
pulumi_snowflake/provider.py,sha256=
|
|
105
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=
|
|
113
|
+
pulumi_snowflake/provider.py,sha256=LkXBhGqO7O0UATrDsr-xBdWkYGFTwwX2eBjqLozwWcM,80537
|
|
114
|
+
pulumi_snowflake/pulumi-plugin.json,sha256=DaFuUMcuCnhcCCQBue26V7iVN57PulUmNA1--Rthvo8,85
|
|
106
115
|
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
116
|
pulumi_snowflake/resource_monitor.py,sha256=P87_VZPzYmxEaZCFeVeZ0qGq9-0XLls9Ds1fflrRjO8,43589
|
|
108
117
|
pulumi_snowflake/row_access_policy.py,sha256=92F7YxdTgn40WiCMmeS2bzlS33wwGcTm5HzZTCXwxZg,28667
|
|
109
118
|
pulumi_snowflake/saml2_integration.py,sha256=htBILTLqO_tFBabVgXgJp4kPs7DGHhT87W6ZfEI6mcg,82579
|
|
110
|
-
pulumi_snowflake/schema.py,sha256=
|
|
119
|
+
pulumi_snowflake/schema.py,sha256=QC4yynxQKOdTDx7QBmaeD8roso8ye1Y1jXuprtcR4t4,98555
|
|
111
120
|
pulumi_snowflake/scim_integration.py,sha256=fPQ_g9Wi19EjlRrmBZqD9EzhF1aMRtAgyj_oEprDORo,30941
|
|
112
121
|
pulumi_snowflake/secondary_connection.py,sha256=ZNaAaJqPLi_HSxXJwxweCdu46zL5ezAkbfQmn2b3k_c,18337
|
|
113
|
-
pulumi_snowflake/secondary_database.py,sha256=
|
|
122
|
+
pulumi_snowflake/secondary_database.py,sha256=lF7zU0a1rA6hmPCkHmK64O5wbeuByxZNNOJ4zMTfGVM,85702
|
|
114
123
|
pulumi_snowflake/secret_with_authorization_code_grant.py,sha256=v2T98nR8YOq1aKS1Th1QhIQ3-Gp3SOYK3LJ_jzcDXEU,30631
|
|
115
124
|
pulumi_snowflake/secret_with_basic_authentication.py,sha256=HLjvbGG1IIj1qtC-gEOiarEB5cL9Hkgo9PhEmzQexUE,25253
|
|
116
125
|
pulumi_snowflake/secret_with_client_credentials.py,sha256=ozGl-NPkKH3izsjrT9JtFXzsVqaz1F3EQ_zE3lWKcPE,28003
|
|
117
126
|
pulumi_snowflake/secret_with_generic_string.py,sha256=wdwXVHDdn5bpMZ9pyMvREiqqD5C4sdcNQ9Za9U-bxOs,23092
|
|
118
127
|
pulumi_snowflake/sequence.py,sha256=tBzhE23JEo0wHvz4hr86DRqapAZqF5J1jCxkvXHfDGk,19562
|
|
128
|
+
pulumi_snowflake/service.py,sha256=caZcje89CljwKjplDvRgHWC2fTepbUTTBoEtmFpOduo,58713
|
|
119
129
|
pulumi_snowflake/service_user.py,sha256=WwfneJsWnqIUUhUZc41lnJO1GtlTZjjP_rW1OV-4ZYM,332045
|
|
120
130
|
pulumi_snowflake/share.py,sha256=OU4YOMobxZUqWxBJNyKnVs5aMn1K6LRbYOhi37caL1I,12764
|
|
121
|
-
pulumi_snowflake/shared_database.py,sha256=
|
|
131
|
+
pulumi_snowflake/shared_database.py,sha256=aQcoTNd5oTyD7LZ1XnSAqNgjDFKBuQ_OktYw9Hrdv4A,68469
|
|
122
132
|
pulumi_snowflake/stage.py,sha256=cY2R-UPIaBQpiGfLcCQTZOccbufh6ey54fqS9mwwTdM,42410
|
|
123
133
|
pulumi_snowflake/storage_integration.py,sha256=nlBsVuJJB7SY_kh6D2e0HSWG7j5S-4t_3NhsW6tkmJc,38159
|
|
124
134
|
pulumi_snowflake/stream_on_directory_table.py,sha256=Hi7LVKWe1CJsI5YfzCLKyiCmx70ZDRgPnd2e-F6Hb-4,28367
|
|
@@ -130,7 +140,7 @@ pulumi_snowflake/table.py,sha256=rTGxSh6IJMNxoFoBkzP6aAlnS0CNX1v3j2TPx1QdISg,351
|
|
|
130
140
|
pulumi_snowflake/table_column_masking_policy_application.py,sha256=vUwxpHILAb8iMXuosj9gK2OUfJoF3acXBrjf8TIMlao,11203
|
|
131
141
|
pulumi_snowflake/table_constraint.py,sha256=BVYJWL1CR47E7UYnY_d4qELgehN6ZO6OtbZUpHWIDkk,33418
|
|
132
142
|
pulumi_snowflake/tag.py,sha256=v1WrQAM9bZcgLy27HdEddOuZU4PRw73lK3vRxz070RQ,23785
|
|
133
|
-
pulumi_snowflake/tag_association.py,sha256=
|
|
143
|
+
pulumi_snowflake/tag_association.py,sha256=WmM5EUYfgy3e12p9JZ0CJ_Fnn_6jz-H5CosyTjZajs0,20777
|
|
134
144
|
pulumi_snowflake/task.py,sha256=oqxOIU04eafPmAYQPfitbJiy2YZBHt-RSZyJeNLwlPo,331161
|
|
135
145
|
pulumi_snowflake/user.py,sha256=lJHQTPn3tH9exGwg1Q_J-C4JY8h2bJOfYomEDUm0h7k,347667
|
|
136
146
|
pulumi_snowflake/user_authentication_policy_attachment.py,sha256=srQ5S05hg0h_J5CWFvJI2Bbb5AnnQAOkzuaWtwEYmT8,9500
|
|
@@ -139,10 +149,10 @@ pulumi_snowflake/user_public_keys.py,sha256=D768p_fpK5ZCmbJqsVP1ep0jttTx3wbsLCSK
|
|
|
139
149
|
pulumi_snowflake/view.py,sha256=Eh7du9dgo75-IOEajUB8hBO73G1Ujjg51Joyb6Zh4a0,52323
|
|
140
150
|
pulumi_snowflake/warehouse.py,sha256=Y_ClECoFTB-6bEWOBJ8ouLNE65B9hyqX9vFOs3vMDzo,64355
|
|
141
151
|
pulumi_snowflake/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
|
|
142
|
-
pulumi_snowflake/config/__init__.pyi,sha256=
|
|
152
|
+
pulumi_snowflake/config/__init__.pyi,sha256=zOp-wfS0-dNxuLU8guiqRQzIQv5toMVNgJHfZt7O3V4,9795
|
|
143
153
|
pulumi_snowflake/config/outputs.py,sha256=KkyfqVawdc_22mw0pC8IdCBCdV90hYVn2irNjnDBg94,4174
|
|
144
|
-
pulumi_snowflake/config/vars.py,sha256=
|
|
145
|
-
pulumi_snowflake-2.1.
|
|
146
|
-
pulumi_snowflake-2.1.
|
|
147
|
-
pulumi_snowflake-2.1.
|
|
148
|
-
pulumi_snowflake-2.1.
|
|
154
|
+
pulumi_snowflake/config/vars.py,sha256=gzafu17iERTHVmCSZydkzyCEDextIztezgLChQpvWp4,14972
|
|
155
|
+
pulumi_snowflake-2.1.0a1750909414.dist-info/METADATA,sha256=8N8CqdSFrAzGCc75oGsO29ZULYMRtgNf6jcMxBmgc8U,5046
|
|
156
|
+
pulumi_snowflake-2.1.0a1750909414.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
157
|
+
pulumi_snowflake-2.1.0a1750909414.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
158
|
+
pulumi_snowflake-2.1.0a1750909414.dist-info/RECORD,,
|
{pulumi_snowflake-2.1.0a1750142727.dist-info → pulumi_snowflake-2.1.0a1750909414.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|