pulumi-snowflake 0.60.0a1728636583__py3-none-any.whl → 0.60.0a1728941570__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 +16515 -4095
- pulumi_snowflake/legacy_service_user.py +3666 -0
- pulumi_snowflake/masking_policy.py +4 -4
- pulumi_snowflake/outputs.py +10643 -2668
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/row_access_policy.py +4 -4
- pulumi_snowflake/service_user.py +3585 -0
- pulumi_snowflake/stage.py +7 -7
- pulumi_snowflake/stream_on_external_table.py +597 -0
- pulumi_snowflake/stream_on_table.py +631 -0
- pulumi_snowflake/user.py +2 -2
- {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.60.0a1728941570.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.60.0a1728941570.dist-info}/RECORD +16 -12
- {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.60.0a1728941570.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.60.0a1728941570.dist-info}/top_level.txt +0 -0
|
@@ -175,7 +175,7 @@ class _MaskingPolicyState:
|
|
|
175
175
|
:param pulumi.Input[str] name: Specifies the identifier for the masking policy; must be unique for the database and schema in which the masking policy is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
176
176
|
:param pulumi.Input[str] return_data_type: The return data type must match the input data type of the first column that is specified as an input column. For more information about data types, check [Snowflake docs](https://docs.snowflake.com/en/sql-reference/intro-summary-data-types).
|
|
177
177
|
:param pulumi.Input[str] schema: The schema in which to create the masking policy. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
178
|
-
:param pulumi.Input[Sequence[pulumi.Input['MaskingPolicyShowOutputArgs']]] show_outputs: Outputs the result of `SHOW MASKING
|
|
178
|
+
:param pulumi.Input[Sequence[pulumi.Input['MaskingPolicyShowOutputArgs']]] show_outputs: Outputs the result of `SHOW MASKING POLICIES` for the given masking policy.
|
|
179
179
|
"""
|
|
180
180
|
if arguments is not None:
|
|
181
181
|
pulumi.set(__self__, "arguments", arguments)
|
|
@@ -324,7 +324,7 @@ class _MaskingPolicyState:
|
|
|
324
324
|
@pulumi.getter(name="showOutputs")
|
|
325
325
|
def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MaskingPolicyShowOutputArgs']]]]:
|
|
326
326
|
"""
|
|
327
|
-
Outputs the result of `SHOW MASKING
|
|
327
|
+
Outputs the result of `SHOW MASKING POLICIES` for the given masking policy.
|
|
328
328
|
"""
|
|
329
329
|
return pulumi.get(self, "show_outputs")
|
|
330
330
|
|
|
@@ -469,7 +469,7 @@ class MaskingPolicy(pulumi.CustomResource):
|
|
|
469
469
|
:param pulumi.Input[str] name: Specifies the identifier for the masking policy; must be unique for the database and schema in which the masking policy is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
470
470
|
:param pulumi.Input[str] return_data_type: The return data type must match the input data type of the first column that is specified as an input column. For more information about data types, check [Snowflake docs](https://docs.snowflake.com/en/sql-reference/intro-summary-data-types).
|
|
471
471
|
:param pulumi.Input[str] schema: The schema in which to create the masking policy. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
|
|
472
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['MaskingPolicyShowOutputArgs', 'MaskingPolicyShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW MASKING
|
|
472
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['MaskingPolicyShowOutputArgs', 'MaskingPolicyShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW MASKING POLICIES` for the given masking policy.
|
|
473
473
|
"""
|
|
474
474
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
475
475
|
|
|
@@ -572,7 +572,7 @@ class MaskingPolicy(pulumi.CustomResource):
|
|
|
572
572
|
@pulumi.getter(name="showOutputs")
|
|
573
573
|
def show_outputs(self) -> pulumi.Output[Sequence['outputs.MaskingPolicyShowOutput']]:
|
|
574
574
|
"""
|
|
575
|
-
Outputs the result of `SHOW MASKING
|
|
575
|
+
Outputs the result of `SHOW MASKING POLICIES` for the given masking policy.
|
|
576
576
|
"""
|
|
577
577
|
return pulumi.get(self, "show_outputs")
|
|
578
578
|
|