pulumi-snowflake 0.57.0a1722246300__py3-none-any.whl → 0.57.1a1722856643__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/get_databases.py +2 -2
- pulumi_snowflake/get_network_policies.py +2 -2
- pulumi_snowflake/get_roles.py +2 -2
- pulumi_snowflake/get_schemas.py +4 -0
- pulumi_snowflake/get_security_integrations.py +2 -2
- pulumi_snowflake/get_streamlits.py +2 -2
- pulumi_snowflake/get_warehouses.py +2 -2
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/schema.py +11 -7
- {pulumi_snowflake-0.57.0a1722246300.dist-info → pulumi_snowflake-0.57.1a1722856643.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.57.0a1722246300.dist-info → pulumi_snowflake-0.57.1a1722856643.dist-info}/RECORD +13 -13
- {pulumi_snowflake-0.57.0a1722246300.dist-info → pulumi_snowflake-0.57.1a1722856643.dist-info}/WHEEL +1 -1
- {pulumi_snowflake-0.57.0a1722246300.dist-info → pulumi_snowflake-0.57.1a1722856643.dist-info}/top_level.txt +0 -0
|
@@ -125,7 +125,7 @@ def get_databases(like: Optional[str] = None,
|
|
|
125
125
|
with_parameters: Optional[bool] = None,
|
|
126
126
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabasesResult:
|
|
127
127
|
"""
|
|
128
|
-
!> **V1 release candidate** This
|
|
128
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
129
129
|
|
|
130
130
|
Datasource used to get details of filtered databases. Filtering is aligned with the current possibilities for [SHOW DATABASES](https://docs.snowflake.com/en/sql-reference/sql/show-databases) query (`like`, `starts_with`, and `limit` are all supported). The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
|
|
131
131
|
|
|
@@ -163,7 +163,7 @@ def get_databases_output(like: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
163
163
|
with_parameters: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
164
164
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDatabasesResult]:
|
|
165
165
|
"""
|
|
166
|
-
!> **V1 release candidate** This
|
|
166
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
167
167
|
|
|
168
168
|
Datasource used to get details of filtered databases. Filtering is aligned with the current possibilities for [SHOW DATABASES](https://docs.snowflake.com/en/sql-reference/sql/show-databases) query (`like`, `starts_with`, and `limit` are all supported). The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
|
|
169
169
|
|
|
@@ -85,7 +85,7 @@ def get_network_policies(like: Optional[str] = None,
|
|
|
85
85
|
with_describe: Optional[bool] = None,
|
|
86
86
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNetworkPoliciesResult:
|
|
87
87
|
"""
|
|
88
|
-
!> **V1 release candidate** This
|
|
88
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
89
89
|
|
|
90
90
|
Datasource used to get details of filtered network policies. Filtering is aligned with the current possibilities for [SHOW NETWORK POLICIES](https://docs.snowflake.com/en/sql-reference/sql/show-network-policies) query (`like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection.
|
|
91
91
|
|
|
@@ -111,7 +111,7 @@ def get_network_policies_output(like: Optional[pulumi.Input[Optional[str]]] = No
|
|
|
111
111
|
with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
112
112
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetNetworkPoliciesResult]:
|
|
113
113
|
"""
|
|
114
|
-
!> **V1 release candidate** This
|
|
114
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
115
115
|
|
|
116
116
|
Datasource used to get details of filtered network policies. Filtering is aligned with the current possibilities for [SHOW NETWORK POLICIES](https://docs.snowflake.com/en/sql-reference/sql/show-network-policies) query (`like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection.
|
|
117
117
|
|
pulumi_snowflake/get_roles.py
CHANGED
|
@@ -85,7 +85,7 @@ def get_roles(in_class: Optional[str] = None,
|
|
|
85
85
|
like: Optional[str] = None,
|
|
86
86
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRolesResult:
|
|
87
87
|
"""
|
|
88
|
-
!> **V1 release candidate** This
|
|
88
|
+
!> **V1 release candidate** This datasource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
89
89
|
|
|
90
90
|
Datasource used to get details of filtered roles. Filtering is aligned with the current possibilities for [SHOW ROLES](https://docs.snowflake.com/en/sql-reference/sql/show-roles) query (`like` and `in_class` are all supported). The results of SHOW are encapsulated in one output collection.
|
|
91
91
|
|
|
@@ -111,7 +111,7 @@ def get_roles_output(in_class: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
111
111
|
like: Optional[pulumi.Input[Optional[str]]] = None,
|
|
112
112
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetRolesResult]:
|
|
113
113
|
"""
|
|
114
|
-
!> **V1 release candidate** This
|
|
114
|
+
!> **V1 release candidate** This datasource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
115
115
|
|
|
116
116
|
Datasource used to get details of filtered roles. Filtering is aligned with the current possibilities for [SHOW ROLES](https://docs.snowflake.com/en/sql-reference/sql/show-roles) query (`like` and `in_class` are all supported). The results of SHOW are encapsulated in one output collection.
|
|
117
117
|
|
pulumi_snowflake/get_schemas.py
CHANGED
|
@@ -138,6 +138,8 @@ def get_schemas(in_: Optional[pulumi.InputType['GetSchemasInArgs']] = None,
|
|
|
138
138
|
with_parameters: Optional[bool] = None,
|
|
139
139
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchemasResult:
|
|
140
140
|
"""
|
|
141
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
142
|
+
|
|
141
143
|
Datasource used to get details of filtered schemas. Filtering is aligned with the current possibilities for [SHOW SCHEMAS](https://docs.snowflake.com/en/sql-reference/sql/show-schemas) query. The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
|
|
142
144
|
|
|
143
145
|
|
|
@@ -178,6 +180,8 @@ def get_schemas_output(in_: Optional[pulumi.Input[Optional[pulumi.InputType['Get
|
|
|
178
180
|
with_parameters: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
179
181
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSchemasResult]:
|
|
180
182
|
"""
|
|
183
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
184
|
+
|
|
181
185
|
Datasource used to get details of filtered schemas. Filtering is aligned with the current possibilities for [SHOW SCHEMAS](https://docs.snowflake.com/en/sql-reference/sql/show-schemas) query. The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
|
|
182
186
|
|
|
183
187
|
|
|
@@ -85,7 +85,7 @@ def get_security_integrations(like: Optional[str] = None,
|
|
|
85
85
|
with_describe: Optional[bool] = None,
|
|
86
86
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecurityIntegrationsResult:
|
|
87
87
|
"""
|
|
88
|
-
!> **V1 release candidate** This
|
|
88
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
89
89
|
|
|
90
90
|
Datasource used to get details of filtered security integrations. Filtering is aligned with the current possibilities for [SHOW SECURITY INTEGRATIONS](https://docs.snowflake.com/en/sql-reference/sql/show-integrations) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `security_integrations`.
|
|
91
91
|
|
|
@@ -111,7 +111,7 @@ def get_security_integrations_output(like: Optional[pulumi.Input[Optional[str]]]
|
|
|
111
111
|
with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
112
112
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSecurityIntegrationsResult]:
|
|
113
113
|
"""
|
|
114
|
-
!> **V1 release candidate** This
|
|
114
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
115
115
|
|
|
116
116
|
Datasource used to get details of filtered security integrations. Filtering is aligned with the current possibilities for [SHOW SECURITY INTEGRATIONS](https://docs.snowflake.com/en/sql-reference/sql/show-integrations) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `security_integrations`.
|
|
117
117
|
|
|
@@ -112,7 +112,7 @@ def get_streamlits(in_: Optional[pulumi.InputType['GetStreamlitsInArgs']] = None
|
|
|
112
112
|
with_describe: Optional[bool] = None,
|
|
113
113
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStreamlitsResult:
|
|
114
114
|
"""
|
|
115
|
-
!> **V1 release candidate** This
|
|
115
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
116
116
|
|
|
117
117
|
Datasource used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
|
|
118
118
|
|
|
@@ -146,7 +146,7 @@ def get_streamlits_output(in_: Optional[pulumi.Input[Optional[pulumi.InputType['
|
|
|
146
146
|
with_describe: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
147
147
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetStreamlitsResult]:
|
|
148
148
|
"""
|
|
149
|
-
!> **V1 release candidate** This
|
|
149
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
150
150
|
|
|
151
151
|
Datasource used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
|
|
152
152
|
|
|
@@ -98,7 +98,7 @@ def get_warehouses(like: Optional[str] = None,
|
|
|
98
98
|
with_parameters: Optional[bool] = None,
|
|
99
99
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWarehousesResult:
|
|
100
100
|
"""
|
|
101
|
-
!> **V1 release candidate** This
|
|
101
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
102
102
|
|
|
103
103
|
Datasource used to get details of filtered warehouses. Filtering is aligned with the current possibilities for [SHOW WAREHOUSES](https://docs.snowflake.com/en/sql-reference/sql/show-warehouses) query (only `like` is supported). The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
|
|
104
104
|
|
|
@@ -128,7 +128,7 @@ def get_warehouses_output(like: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
128
128
|
with_parameters: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
129
129
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetWarehousesResult]:
|
|
130
130
|
"""
|
|
131
|
-
!> **V1 release candidate** This
|
|
131
|
+
!> **V1 release candidate** This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
|
|
132
132
|
|
|
133
133
|
Datasource used to get details of filtered warehouses. Filtering is aligned with the current possibilities for [SHOW WAREHOUSES](https://docs.snowflake.com/en/sql-reference/sql/show-warehouses) query (only `like` is supported). The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection.
|
|
134
134
|
|
pulumi_snowflake/schema.py
CHANGED
|
@@ -50,7 +50,7 @@ class SchemaArgs:
|
|
|
50
50
|
:param pulumi.Input[str] is_transient: Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. 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.
|
|
51
51
|
:param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see [LOG_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
|
|
52
52
|
:param pulumi.Input[int] max_data_extension_time_in_days: Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
|
|
53
|
-
:param pulumi.Input[str] name: Specifies the identifier for the schema; must be unique for the database in which the schema is created.
|
|
53
|
+
:param pulumi.Input[str] name: Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is `PUBLIC`, during creation the provider checks if this schema has already been created and, in such case, `ALTER` is used to match the desired state.
|
|
54
54
|
:param pulumi.Input[bool] pipe_execution_paused: Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, see [PIPE*EXECUTION*PAUSED](https://docs.snowflake.com/en/sql-reference/parameters#pipe-execution-paused).
|
|
55
55
|
:param pulumi.Input[bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
|
|
56
56
|
:param pulumi.Input[bool] replace_invalid_characters: Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
|
|
@@ -231,7 +231,7 @@ class SchemaArgs:
|
|
|
231
231
|
@pulumi.getter
|
|
232
232
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
233
233
|
"""
|
|
234
|
-
Specifies the identifier for the schema; must be unique for the database in which the schema is created.
|
|
234
|
+
Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is `PUBLIC`, during creation the provider checks if this schema has already been created and, in such case, `ALTER` is used to match the desired state.
|
|
235
235
|
"""
|
|
236
236
|
return pulumi.get(self, "name")
|
|
237
237
|
|
|
@@ -413,7 +413,7 @@ class _SchemaState:
|
|
|
413
413
|
:param pulumi.Input[str] is_transient: Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. 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.
|
|
414
414
|
:param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see [LOG_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
|
|
415
415
|
:param pulumi.Input[int] max_data_extension_time_in_days: Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
|
|
416
|
-
:param pulumi.Input[str] name: Specifies the identifier for the schema; must be unique for the database in which the schema is created.
|
|
416
|
+
:param pulumi.Input[str] name: Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is `PUBLIC`, during creation the provider checks if this schema has already been created and, in such case, `ALTER` is used to match the desired state.
|
|
417
417
|
:param pulumi.Input[Sequence[pulumi.Input['SchemaParameterArgs']]] parameters: Outputs the result of `SHOW PARAMETERS IN SCHEMA` for the given object.
|
|
418
418
|
:param pulumi.Input[bool] pipe_execution_paused: Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, see [PIPE*EXECUTION*PAUSED](https://docs.snowflake.com/en/sql-reference/parameters#pipe-execution-paused).
|
|
419
419
|
:param pulumi.Input[bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
|
|
@@ -615,7 +615,7 @@ class _SchemaState:
|
|
|
615
615
|
@pulumi.getter
|
|
616
616
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
617
617
|
"""
|
|
618
|
-
Specifies the identifier for the schema; must be unique for the database in which the schema is created.
|
|
618
|
+
Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is `PUBLIC`, during creation the provider checks if this schema has already been created and, in such case, `ALTER` is used to match the desired state.
|
|
619
619
|
"""
|
|
620
620
|
return pulumi.get(self, "name")
|
|
621
621
|
|
|
@@ -809,6 +809,8 @@ class Schema(pulumi.CustomResource):
|
|
|
809
809
|
with_managed_access: Optional[pulumi.Input[str]] = None,
|
|
810
810
|
__props__=None):
|
|
811
811
|
"""
|
|
812
|
+
!> **V1 release candidate** This resource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
|
|
813
|
+
|
|
812
814
|
Resource used to manage schema objects. For more information, check [schema documentation](https://docs.snowflake.com/en/sql-reference/sql/create-schema).
|
|
813
815
|
|
|
814
816
|
## Import
|
|
@@ -831,7 +833,7 @@ class Schema(pulumi.CustomResource):
|
|
|
831
833
|
:param pulumi.Input[str] is_transient: Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. 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.
|
|
832
834
|
:param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see [LOG_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
|
|
833
835
|
:param pulumi.Input[int] max_data_extension_time_in_days: Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
|
|
834
|
-
:param pulumi.Input[str] name: Specifies the identifier for the schema; must be unique for the database in which the schema is created.
|
|
836
|
+
:param pulumi.Input[str] name: Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is `PUBLIC`, during creation the provider checks if this schema has already been created and, in such case, `ALTER` is used to match the desired state.
|
|
835
837
|
:param pulumi.Input[bool] pipe_execution_paused: Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, see [PIPE*EXECUTION*PAUSED](https://docs.snowflake.com/en/sql-reference/parameters#pipe-execution-paused).
|
|
836
838
|
:param pulumi.Input[bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
|
|
837
839
|
:param pulumi.Input[bool] replace_invalid_characters: Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character (�) in query results for an Iceberg table. You can only set this parameter for tables that use an external Iceberg catalog. For more information, see [REPLACE*INVALID*CHARACTERS](https://docs.snowflake.com/en/sql-reference/parameters#replace-invalid-characters).
|
|
@@ -851,6 +853,8 @@ class Schema(pulumi.CustomResource):
|
|
|
851
853
|
args: SchemaArgs,
|
|
852
854
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
853
855
|
"""
|
|
856
|
+
!> **V1 release candidate** This resource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the migration guide to use it.
|
|
857
|
+
|
|
854
858
|
Resource used to manage schema objects. For more information, check [schema documentation](https://docs.snowflake.com/en/sql-reference/sql/create-schema).
|
|
855
859
|
|
|
856
860
|
## Import
|
|
@@ -987,7 +991,7 @@ class Schema(pulumi.CustomResource):
|
|
|
987
991
|
:param pulumi.Input[str] is_transient: Specifies the schema as transient. Transient schemas do not have a Fail-safe period so they do not incur additional storage costs once they leave Time Travel; however, this means they are also not protected by Fail-safe in the event of a data loss. 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.
|
|
988
992
|
:param pulumi.Input[str] log_level: Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF]. Messages at the specified level (and at more severe levels) are ingested. For more information, see [LOG_LEVEL](https://docs.snowflake.com/en/sql-reference/parameters.html#label-log-level).
|
|
989
993
|
:param pulumi.Input[int] max_data_extension_time_in_days: Object parameter that specifies the maximum number of days for which Snowflake can extend the data retention period for tables in the database to prevent streams on the tables from becoming stale. For a detailed description of this parameter, see [MAX*DATA*EXTENSION*TIME*IN_DAYS](https://docs.snowflake.com/en/sql-reference/parameters.html#label-max-data-extension-time-in-days).
|
|
990
|
-
:param pulumi.Input[str] name: Specifies the identifier for the schema; must be unique for the database in which the schema is created.
|
|
994
|
+
:param pulumi.Input[str] name: Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is `PUBLIC`, during creation the provider checks if this schema has already been created and, in such case, `ALTER` is used to match the desired state.
|
|
991
995
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SchemaParameterArgs']]]] parameters: Outputs the result of `SHOW PARAMETERS IN SCHEMA` for the given object.
|
|
992
996
|
:param pulumi.Input[bool] pipe_execution_paused: Specifies whether to pause a running pipe, primarily in preparation for transferring ownership of the pipe to a different role. For more information, see [PIPE*EXECUTION*PAUSED](https://docs.snowflake.com/en/sql-reference/parameters#pipe-execution-paused).
|
|
993
997
|
:param pulumi.Input[bool] quoted_identifiers_ignore_case: If true, the case of quoted identifiers is ignored. For more information, see [QUOTED*IDENTIFIERS*IGNORE_CASE](https://docs.snowflake.com/en/sql-reference/parameters#quoted-identifiers-ignore-case).
|
|
@@ -1125,7 +1129,7 @@ class Schema(pulumi.CustomResource):
|
|
|
1125
1129
|
@pulumi.getter
|
|
1126
1130
|
def name(self) -> pulumi.Output[str]:
|
|
1127
1131
|
"""
|
|
1128
|
-
Specifies the identifier for the schema; must be unique for the database in which the schema is created.
|
|
1132
|
+
Specifies the identifier for the schema; must be unique for the database in which the schema is created. When the name is `PUBLIC`, during creation the provider checks if this schema has already been created and, in such case, `ALTER` is used to match the desired state.
|
|
1129
1133
|
"""
|
|
1130
1134
|
return pulumi.get(self, "name")
|
|
1131
1135
|
|
{pulumi_snowflake-0.57.0a1722246300.dist-info → pulumi_snowflake-0.57.1a1722856643.dist-info}/RECORD
RENAMED
|
@@ -30,7 +30,7 @@ pulumi_snowflake/get_current_role.py,sha256=8qctYLhiMpij40a-sTPUpxno0OBzyTpp4pp1
|
|
|
30
30
|
pulumi_snowflake/get_database.py,sha256=-OCZl50Fyaz8OSDes2wLsaf9dsk927UHIlFuut5ACSw,6025
|
|
31
31
|
pulumi_snowflake/get_database_role.py,sha256=VgJGlvm4SNuYWpoaClTLlyIS8dszGaX2WZgUpASbdFE,4493
|
|
32
32
|
pulumi_snowflake/get_database_roles.py,sha256=phyvBWznKjhUlGomFhsB2McEmdY6FSRAqy6Ux4qt22w,3656
|
|
33
|
-
pulumi_snowflake/get_databases.py,sha256=
|
|
33
|
+
pulumi_snowflake/get_databases.py,sha256=ez5rNmU63ZCPktWxMnWt81vNS3x0yfBqxpmJxmwrLmk,10143
|
|
34
34
|
pulumi_snowflake/get_dynamic_tables.py,sha256=QIh9_v7aq2ena2BkGLdhYHKMa_tj6qN1ezdTKw5bCNc,7140
|
|
35
35
|
pulumi_snowflake/get_external_functions.py,sha256=-UoeIjSURHaxT-3F70gfowF1Xmy8TkbaKLNFpxYdEYo,4650
|
|
36
36
|
pulumi_snowflake/get_external_tables.py,sha256=MeoscZ7LbpY-Fj9zaQoXz-4VsQBSxhpyPiMiAn201hg,4481
|
|
@@ -40,21 +40,21 @@ pulumi_snowflake/get_functions.py,sha256=A8jzOryl_PloHXf8EIKEt1NCIP3oQSyAV8XMdVI
|
|
|
40
40
|
pulumi_snowflake/get_grants.py,sha256=hHqQkfXr9y9UJCTAG8jpf36HL3BqHUxyza6LbnzZLCE,14707
|
|
41
41
|
pulumi_snowflake/get_masking_policies.py,sha256=ra6_KaY7vxq4o3xztRQF7qJT4j8sQHmQRvxIA_MaxGs,4519
|
|
42
42
|
pulumi_snowflake/get_materialized_views.py,sha256=SzrOyytKFC1L1Bxtf_k8PI0wXfP_zkvrAfRHdYJIovQ,4558
|
|
43
|
-
pulumi_snowflake/get_network_policies.py,sha256=
|
|
43
|
+
pulumi_snowflake/get_network_policies.py,sha256=7E5UrgcVlA202R1j141IjEjTOfgvgMLWgk50mDEQ6ns,6269
|
|
44
44
|
pulumi_snowflake/get_parameters.py,sha256=sziM3-TIrQKQutCRQddpm6ql82SaE5lie55lm1dNAOw,9700
|
|
45
45
|
pulumi_snowflake/get_pipes.py,sha256=S8EURVcZJze6r7br5sdFFEcxmf358EK3ept7Sft5CFE,4053
|
|
46
46
|
pulumi_snowflake/get_procedures.py,sha256=1DZvj-MhgKOW3BGB6EQVtofsGAha8Rg7Sh2P1jsDars,4263
|
|
47
47
|
pulumi_snowflake/get_resource_monitors.py,sha256=ou1SwZvtDDpkFmFYvYZpmS_KeI_Zy51OW4Rk9EEDAGw,2895
|
|
48
48
|
pulumi_snowflake/get_role.py,sha256=BvCk_WCi6C8GvQc9q4nlWprYwVt9pI1pHUYieW_2JRs,3392
|
|
49
|
-
pulumi_snowflake/get_roles.py,sha256=
|
|
49
|
+
pulumi_snowflake/get_roles.py,sha256=I48pxk_QaE14ls-FghgbZm-vagZ3TDzlqoGX764KMrs,5295
|
|
50
50
|
pulumi_snowflake/get_row_access_policies.py,sha256=U6dOdDDR5IN60wvnJmZ2vNr7JE6HrHzJ5Js9WHCBncs,4628
|
|
51
|
-
pulumi_snowflake/get_schemas.py,sha256=
|
|
52
|
-
pulumi_snowflake/get_security_integrations.py,sha256=
|
|
51
|
+
pulumi_snowflake/get_schemas.py,sha256=QqfDMoFElQCmHGX0JfHctY1j5lZtKpgxFEuVV7m6Exg,10740
|
|
52
|
+
pulumi_snowflake/get_security_integrations.py,sha256=U9PAfYXQ9LflMrL0CiEnn-yhef9uEJbLM_iwMZQLERQ,6581
|
|
53
53
|
pulumi_snowflake/get_sequences.py,sha256=xp_duxQQTXk5R6MW7bhoqX9dEk7bATY1fk5F8vcuOoM,4221
|
|
54
54
|
pulumi_snowflake/get_shares.py,sha256=xOrMChS5bTQ8vIETDAtJt1Ar7VDjSo3fpqQldXyfRLU,3365
|
|
55
55
|
pulumi_snowflake/get_stages.py,sha256=0aDVuqtlisNUHBA1z81PgpUrYSNmfIUp3CrNTPG9vt0,4095
|
|
56
56
|
pulumi_snowflake/get_storage_integrations.py,sha256=B96Ikapf8A8FcFYRivOwOooBjbyj7wsZnul0C7kHJK4,3003
|
|
57
|
-
pulumi_snowflake/get_streamlits.py,sha256=
|
|
57
|
+
pulumi_snowflake/get_streamlits.py,sha256=5JmBa5yXeStbh7-hlOmHebk4G22krGSJhysoN0pk_VQ,8633
|
|
58
58
|
pulumi_snowflake/get_streams.py,sha256=lKhjr5ZI0ImQjl-zJPjVwzZNwPJDmZws4znbyQYynY8,4137
|
|
59
59
|
pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=qDnAfUXWuNeg4CkP0Rt8SZliQsE9kAyMYlB8U3cikvg,3986
|
|
60
60
|
pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=fm4NJGPdm5RehwqL0glf-HfiAf_71JxLNmNJaXQSNrI,4269
|
|
@@ -64,7 +64,7 @@ pulumi_snowflake/get_tables.py,sha256=AG1baNGUWbRj4ow9g7OY6dGqkL-eUvgDtCOydrHvN9
|
|
|
64
64
|
pulumi_snowflake/get_tasks.py,sha256=lzEuSYuJHfOeGhkVeFH2MdR612BWq5Ywc14P6tawsjo,4053
|
|
65
65
|
pulumi_snowflake/get_users.py,sha256=7oj99U-ynVSDwVarsWQZsUOwxMjoPOWwRRHeVwcX7Ko,3637
|
|
66
66
|
pulumi_snowflake/get_views.py,sha256=FkSkOYf7GwUf2yeD3mEmgsu9uzVvnVnxxY5sUUORqsg,4053
|
|
67
|
-
pulumi_snowflake/get_warehouses.py,sha256=
|
|
67
|
+
pulumi_snowflake/get_warehouses.py,sha256=6KFeQL76lEbl-Oyutye0JlES_IkNCpjCt5d7Oryq2hU,7371
|
|
68
68
|
pulumi_snowflake/grant_account_role.py,sha256=qo-o4zRtA9_NaCTrK-WMtn7lfN5bsuaAmYHLnzKtJyc,11240
|
|
69
69
|
pulumi_snowflake/grant_application_role.py,sha256=XOWw4Ag836RenWYFPV0hKNXT6v_gMqd3PqGxxsQJXlI,12023
|
|
70
70
|
pulumi_snowflake/grant_database_role.py,sha256=MZy5M4neHp2ON2fH4L26Rt4dLP_MT3ShDcrUe407qLI,14679
|
|
@@ -88,14 +88,14 @@ pulumi_snowflake/password_policy.py,sha256=KbUVIr4fMYuwYf1HEfKxTjf6jSuJbarcTDZh1
|
|
|
88
88
|
pulumi_snowflake/pipe.py,sha256=N_U9gy0MMoCRTOxDyOtEherFeG_QCu7aT-TsaH1MhcA,24843
|
|
89
89
|
pulumi_snowflake/procedure.py,sha256=qfNFo_jm1k3diAeRC8dGlydckWxPlPVolWYY2UZ6MDQ,43878
|
|
90
90
|
pulumi_snowflake/provider.py,sha256=UJDRm9PEGDK3jQ1LKdk4qclY1eCZ-Tk8x5W0U9lXptk,85040
|
|
91
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=
|
|
91
|
+
pulumi_snowflake/pulumi-plugin.json,sha256=pTtGYURKMqpVWqiVTExZbOdqYJxZet3S623UffMt_Uw,86
|
|
92
92
|
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
93
|
pulumi_snowflake/resource_monitor.py,sha256=V2bJR2jvWbO4yZYUF8lp8qzBIgM85mP878FzuLAdCcU,38970
|
|
94
94
|
pulumi_snowflake/role.py,sha256=FxM6f4zF4QmBhDY5gkkQtHmPrahnXAwljrbhzaaFOkQ,8864
|
|
95
95
|
pulumi_snowflake/row_access_policy.py,sha256=z9GSTCGxTvHtZUxh0cQu35yitocJ8lUR90XcWqIC58c,20109
|
|
96
96
|
pulumi_snowflake/saml2_integration.py,sha256=otCBBv9ApaRXpfzRrPO69hfKW_gLvU2iJwDoXLbUFrM,75148
|
|
97
97
|
pulumi_snowflake/saml_integration.py,sha256=bVQPrrXXKTym0w3usppuiJERA6cg7rjQcOc5zGO6cMo,65285
|
|
98
|
-
pulumi_snowflake/schema.py,sha256=
|
|
98
|
+
pulumi_snowflake/schema.py,sha256=BHgT6RVPrr8l5Fu1URMGPaYwgdepM4lCI6kpGomYj4A,91521
|
|
99
99
|
pulumi_snowflake/scim_integration.py,sha256=gVqjop-w8NACJEPN79nMqKugQsVczLSI6ExB5jy2Nfc,27203
|
|
100
100
|
pulumi_snowflake/secondary_database.py,sha256=ROih4_eNLTCIe2axTTeGnfQp89_LHmTt-nHnlegZxUg,82073
|
|
101
101
|
pulumi_snowflake/sequence.py,sha256=WCrhrUSIeSS4aRAg_q8CknVjsswpDB9ksZaCp_uJybg,18596
|
|
@@ -123,7 +123,7 @@ pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3A
|
|
|
123
123
|
pulumi_snowflake/config/__init__.pyi,sha256=wA0KR9Mzb7OhcEV0M_FSljX8L_jCHB4hMilHnLcVwTo,9868
|
|
124
124
|
pulumi_snowflake/config/outputs.py,sha256=zm82Qv8RbeJ_iKb90mfdQeQBHOwjYRC8zHHII-DHiNs,3867
|
|
125
125
|
pulumi_snowflake/config/vars.py,sha256=D3v_7m-rX66OwF6n2t32KU1cRLebk5_u6vSbTuL9o-Y,15762
|
|
126
|
-
pulumi_snowflake-0.57.
|
|
127
|
-
pulumi_snowflake-0.57.
|
|
128
|
-
pulumi_snowflake-0.57.
|
|
129
|
-
pulumi_snowflake-0.57.
|
|
126
|
+
pulumi_snowflake-0.57.1a1722856643.dist-info/METADATA,sha256=TNrLTIlbXuhKuWCkC2uPh6Q2qU9CS9BhNxXTLc4y7N4,4981
|
|
127
|
+
pulumi_snowflake-0.57.1a1722856643.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
128
|
+
pulumi_snowflake-0.57.1a1722856643.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
129
|
+
pulumi_snowflake-0.57.1a1722856643.dist-info/RECORD,,
|
|
File without changes
|