pulumi-snowflake 2.4.0a1753511923__py3-none-any.whl → 2.4.0a1754624939__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 +9 -0
- pulumi_snowflake/_inputs.py +1510 -0
- pulumi_snowflake/config/__init__.pyi +3 -2
- pulumi_snowflake/config/vars.py +3 -2
- pulumi_snowflake/listing.py +440 -0
- pulumi_snowflake/outputs.py +1029 -0
- pulumi_snowflake/provider.py +12 -8
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/storage_integration.py +51 -2
- {pulumi_snowflake-2.4.0a1753511923.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/METADATA +1 -1
- {pulumi_snowflake-2.4.0a1753511923.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/RECORD +13 -12
- {pulumi_snowflake-2.4.0a1753511923.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-2.4.0a1753511923.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/top_level.txt +0 -0
pulumi_snowflake/provider.py
CHANGED
|
@@ -141,8 +141,9 @@ class ProviderArgs:
|
|
|
141
141
|
`SNOWFLAKE_SKIP_TOML_FILE_PERMISSION_VERIFICATION` environment variable.
|
|
142
142
|
:param pulumi.Input[_builtins.str] tmp_directory_path: Sets temporary directory used by the driver for operations like encrypting, compressing etc. Can also be sourced from
|
|
143
143
|
the `SNOWFLAKE_TMP_DIRECTORY_PATH` environment variable.
|
|
144
|
-
:param pulumi.Input[_builtins.str] token: Token to use for OAuth and other forms of token based auth.
|
|
145
|
-
|
|
144
|
+
:param pulumi.Input[_builtins.str] token: Token to use for OAuth and other forms of token based auth. When this field is set here, or in the TOML file, the
|
|
145
|
+
provider sets the `authenticator` to `OAUTH`. Optionally, set the `authenticator` field to the authenticator you want to
|
|
146
|
+
use. Can also be sourced from the `SNOWFLAKE_TOKEN` environment variable.
|
|
146
147
|
:param pulumi.Input[_builtins.bool] use_legacy_toml_file: False by default. When this is set to true, the provider expects the legacy TOML format. Otherwise, it expects the new
|
|
147
148
|
format. See more in the section below Can also be sourced from the `SNOWFLAKE_USE_LEGACY_TOML_FILE` environment
|
|
148
149
|
variable.
|
|
@@ -726,8 +727,9 @@ class ProviderArgs:
|
|
|
726
727
|
@pulumi.getter
|
|
727
728
|
def token(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
728
729
|
"""
|
|
729
|
-
Token to use for OAuth and other forms of token based auth.
|
|
730
|
-
|
|
730
|
+
Token to use for OAuth and other forms of token based auth. When this field is set here, or in the TOML file, the
|
|
731
|
+
provider sets the `authenticator` to `OAUTH`. Optionally, set the `authenticator` field to the authenticator you want to
|
|
732
|
+
use. Can also be sourced from the `SNOWFLAKE_TOKEN` environment variable.
|
|
731
733
|
"""
|
|
732
734
|
return pulumi.get(self, "token")
|
|
733
735
|
|
|
@@ -931,8 +933,9 @@ class Provider(pulumi.ProviderResource):
|
|
|
931
933
|
`SNOWFLAKE_SKIP_TOML_FILE_PERMISSION_VERIFICATION` environment variable.
|
|
932
934
|
:param pulumi.Input[_builtins.str] tmp_directory_path: Sets temporary directory used by the driver for operations like encrypting, compressing etc. Can also be sourced from
|
|
933
935
|
the `SNOWFLAKE_TMP_DIRECTORY_PATH` environment variable.
|
|
934
|
-
:param pulumi.Input[_builtins.str] token: Token to use for OAuth and other forms of token based auth.
|
|
935
|
-
|
|
936
|
+
:param pulumi.Input[_builtins.str] token: Token to use for OAuth and other forms of token based auth. When this field is set here, or in the TOML file, the
|
|
937
|
+
provider sets the `authenticator` to `OAUTH`. Optionally, set the `authenticator` field to the authenticator you want to
|
|
938
|
+
use. Can also be sourced from the `SNOWFLAKE_TOKEN` environment variable.
|
|
936
939
|
:param pulumi.Input[_builtins.bool] use_legacy_toml_file: False by default. When this is set to true, the provider expects the legacy TOML format. Otherwise, it expects the new
|
|
937
940
|
format. See more in the section below Can also be sourced from the `SNOWFLAKE_USE_LEGACY_TOML_FILE` environment
|
|
938
941
|
variable.
|
|
@@ -1274,8 +1277,9 @@ class Provider(pulumi.ProviderResource):
|
|
|
1274
1277
|
@pulumi.getter
|
|
1275
1278
|
def token(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1276
1279
|
"""
|
|
1277
|
-
Token to use for OAuth and other forms of token based auth.
|
|
1278
|
-
|
|
1280
|
+
Token to use for OAuth and other forms of token based auth. When this field is set here, or in the TOML file, the
|
|
1281
|
+
provider sets the `authenticator` to `OAUTH`. Optionally, set the `authenticator` field to the authenticator you want to
|
|
1282
|
+
use. Can also be sourced from the `SNOWFLAKE_TOKEN` environment variable.
|
|
1279
1283
|
"""
|
|
1280
1284
|
return pulumi.get(self, "token")
|
|
1281
1285
|
|
|
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
|
13
13
|
else:
|
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
15
|
from . import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._inputs import *
|
|
16
18
|
|
|
17
19
|
__all__ = ['StorageIntegrationArgs', 'StorageIntegration']
|
|
18
20
|
|
|
@@ -25,6 +27,7 @@ class StorageIntegrationArgs:
|
|
|
25
27
|
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
28
|
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
27
29
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
30
|
+
storage_aws_external_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
31
|
storage_aws_object_acl: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
32
|
storage_aws_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
30
33
|
storage_blocked_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
@@ -36,6 +39,7 @@ class StorageIntegrationArgs:
|
|
|
36
39
|
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``)
|
|
37
40
|
:param pulumi.Input[_builtins.str] comment: (Default: ``)
|
|
38
41
|
:param pulumi.Input[_builtins.bool] enabled: (Default: `true`)
|
|
42
|
+
:param pulumi.Input[_builtins.str] storage_aws_external_id: The external ID that Snowflake will use when assuming the AWS role.
|
|
39
43
|
:param pulumi.Input[_builtins.str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
40
44
|
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``)
|
|
41
45
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
@@ -51,6 +55,8 @@ class StorageIntegrationArgs:
|
|
|
51
55
|
pulumi.set(__self__, "enabled", enabled)
|
|
52
56
|
if name is not None:
|
|
53
57
|
pulumi.set(__self__, "name", name)
|
|
58
|
+
if storage_aws_external_id is not None:
|
|
59
|
+
pulumi.set(__self__, "storage_aws_external_id", storage_aws_external_id)
|
|
54
60
|
if storage_aws_object_acl is not None:
|
|
55
61
|
pulumi.set(__self__, "storage_aws_object_acl", storage_aws_object_acl)
|
|
56
62
|
if storage_aws_role_arn is not None:
|
|
@@ -129,6 +135,18 @@ class StorageIntegrationArgs:
|
|
|
129
135
|
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
130
136
|
pulumi.set(self, "name", value)
|
|
131
137
|
|
|
138
|
+
@_builtins.property
|
|
139
|
+
@pulumi.getter(name="storageAwsExternalId")
|
|
140
|
+
def storage_aws_external_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
141
|
+
"""
|
|
142
|
+
The external ID that Snowflake will use when assuming the AWS role.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "storage_aws_external_id")
|
|
145
|
+
|
|
146
|
+
@storage_aws_external_id.setter
|
|
147
|
+
def storage_aws_external_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
148
|
+
pulumi.set(self, "storage_aws_external_id", value)
|
|
149
|
+
|
|
132
150
|
@_builtins.property
|
|
133
151
|
@pulumi.getter(name="storageAwsObjectAcl")
|
|
134
152
|
def storage_aws_object_acl(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -186,6 +204,7 @@ class _StorageIntegrationState:
|
|
|
186
204
|
azure_tenant_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
187
205
|
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
188
206
|
created_on: Optional[pulumi.Input[_builtins.str]] = None,
|
|
207
|
+
describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['StorageIntegrationDescribeOutputArgs']]]] = None,
|
|
189
208
|
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
190
209
|
fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
191
210
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -205,6 +224,7 @@ class _StorageIntegrationState:
|
|
|
205
224
|
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``)
|
|
206
225
|
:param pulumi.Input[_builtins.str] comment: (Default: ``)
|
|
207
226
|
:param pulumi.Input[_builtins.str] created_on: Date and time when the storage integration was created.
|
|
227
|
+
:param pulumi.Input[Sequence[pulumi.Input['StorageIntegrationDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE STORAGE INTEGRATION` for the given storage integration.
|
|
208
228
|
:param pulumi.Input[_builtins.bool] enabled: (Default: `true`)
|
|
209
229
|
:param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
210
230
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_allowed_locations: Explicitly limits external stages that use the integration to reference one or more storage locations.
|
|
@@ -227,6 +247,8 @@ class _StorageIntegrationState:
|
|
|
227
247
|
pulumi.set(__self__, "comment", comment)
|
|
228
248
|
if created_on is not None:
|
|
229
249
|
pulumi.set(__self__, "created_on", created_on)
|
|
250
|
+
if describe_outputs is not None:
|
|
251
|
+
pulumi.set(__self__, "describe_outputs", describe_outputs)
|
|
230
252
|
if enabled is not None:
|
|
231
253
|
pulumi.set(__self__, "enabled", enabled)
|
|
232
254
|
if fully_qualified_name is not None:
|
|
@@ -312,6 +334,18 @@ class _StorageIntegrationState:
|
|
|
312
334
|
def created_on(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
313
335
|
pulumi.set(self, "created_on", value)
|
|
314
336
|
|
|
337
|
+
@_builtins.property
|
|
338
|
+
@pulumi.getter(name="describeOutputs")
|
|
339
|
+
def describe_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['StorageIntegrationDescribeOutputArgs']]]]:
|
|
340
|
+
"""
|
|
341
|
+
Outputs the result of `DESCRIBE STORAGE INTEGRATION` for the given storage integration.
|
|
342
|
+
"""
|
|
343
|
+
return pulumi.get(self, "describe_outputs")
|
|
344
|
+
|
|
345
|
+
@describe_outputs.setter
|
|
346
|
+
def describe_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StorageIntegrationDescribeOutputArgs']]]]):
|
|
347
|
+
pulumi.set(self, "describe_outputs", value)
|
|
348
|
+
|
|
315
349
|
@_builtins.property
|
|
316
350
|
@pulumi.getter
|
|
317
351
|
def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
@@ -465,6 +499,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
465
499
|
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
466
500
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
467
501
|
storage_allowed_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
502
|
+
storage_aws_external_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
468
503
|
storage_aws_object_acl: Optional[pulumi.Input[_builtins.str]] = None,
|
|
469
504
|
storage_aws_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
470
505
|
storage_blocked_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
@@ -484,6 +519,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
484
519
|
:param pulumi.Input[_builtins.str] comment: (Default: ``)
|
|
485
520
|
:param pulumi.Input[_builtins.bool] enabled: (Default: `true`)
|
|
486
521
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_allowed_locations: Explicitly limits external stages that use the integration to reference one or more storage locations.
|
|
522
|
+
:param pulumi.Input[_builtins.str] storage_aws_external_id: The external ID that Snowflake will use when assuming the AWS role.
|
|
487
523
|
:param pulumi.Input[_builtins.str] storage_aws_object_acl: "bucket-owner-full-control" Enables support for AWS access control lists (ACLs) to grant the bucket owner full control.
|
|
488
524
|
:param pulumi.Input[_builtins.str] storage_aws_role_arn: (Default: ``)
|
|
489
525
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_blocked_locations: Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
|
|
@@ -523,6 +559,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
523
559
|
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
524
560
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
525
561
|
storage_allowed_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
562
|
+
storage_aws_external_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
526
563
|
storage_aws_object_acl: Optional[pulumi.Input[_builtins.str]] = None,
|
|
527
564
|
storage_aws_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
528
565
|
storage_blocked_locations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
@@ -544,6 +581,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
544
581
|
if storage_allowed_locations is None and not opts.urn:
|
|
545
582
|
raise TypeError("Missing required property 'storage_allowed_locations'")
|
|
546
583
|
__props__.__dict__["storage_allowed_locations"] = storage_allowed_locations
|
|
584
|
+
__props__.__dict__["storage_aws_external_id"] = storage_aws_external_id
|
|
547
585
|
__props__.__dict__["storage_aws_object_acl"] = storage_aws_object_acl
|
|
548
586
|
__props__.__dict__["storage_aws_role_arn"] = storage_aws_role_arn
|
|
549
587
|
__props__.__dict__["storage_blocked_locations"] = storage_blocked_locations
|
|
@@ -554,8 +592,8 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
554
592
|
__props__.__dict__["azure_consent_url"] = None
|
|
555
593
|
__props__.__dict__["azure_multi_tenant_app_name"] = None
|
|
556
594
|
__props__.__dict__["created_on"] = None
|
|
595
|
+
__props__.__dict__["describe_outputs"] = None
|
|
557
596
|
__props__.__dict__["fully_qualified_name"] = None
|
|
558
|
-
__props__.__dict__["storage_aws_external_id"] = None
|
|
559
597
|
__props__.__dict__["storage_aws_iam_user_arn"] = None
|
|
560
598
|
__props__.__dict__["storage_gcp_service_account"] = None
|
|
561
599
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["azureConsentUrl"])
|
|
@@ -575,6 +613,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
575
613
|
azure_tenant_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
576
614
|
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
577
615
|
created_on: Optional[pulumi.Input[_builtins.str]] = None,
|
|
616
|
+
describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StorageIntegrationDescribeOutputArgs', 'StorageIntegrationDescribeOutputArgsDict']]]]] = None,
|
|
578
617
|
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
579
618
|
fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
580
619
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -599,6 +638,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
599
638
|
:param pulumi.Input[_builtins.str] azure_tenant_id: (Default: ``)
|
|
600
639
|
:param pulumi.Input[_builtins.str] comment: (Default: ``)
|
|
601
640
|
:param pulumi.Input[_builtins.str] created_on: Date and time when the storage integration was created.
|
|
641
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['StorageIntegrationDescribeOutputArgs', 'StorageIntegrationDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE STORAGE INTEGRATION` for the given storage integration.
|
|
602
642
|
:param pulumi.Input[_builtins.bool] enabled: (Default: `true`)
|
|
603
643
|
:param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
604
644
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] storage_allowed_locations: Explicitly limits external stages that use the integration to reference one or more storage locations.
|
|
@@ -620,6 +660,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
620
660
|
__props__.__dict__["azure_tenant_id"] = azure_tenant_id
|
|
621
661
|
__props__.__dict__["comment"] = comment
|
|
622
662
|
__props__.__dict__["created_on"] = created_on
|
|
663
|
+
__props__.__dict__["describe_outputs"] = describe_outputs
|
|
623
664
|
__props__.__dict__["enabled"] = enabled
|
|
624
665
|
__props__.__dict__["fully_qualified_name"] = fully_qualified_name
|
|
625
666
|
__props__.__dict__["name"] = name
|
|
@@ -674,6 +715,14 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
674
715
|
"""
|
|
675
716
|
return pulumi.get(self, "created_on")
|
|
676
717
|
|
|
718
|
+
@_builtins.property
|
|
719
|
+
@pulumi.getter(name="describeOutputs")
|
|
720
|
+
def describe_outputs(self) -> pulumi.Output[Sequence['outputs.StorageIntegrationDescribeOutput']]:
|
|
721
|
+
"""
|
|
722
|
+
Outputs the result of `DESCRIBE STORAGE INTEGRATION` for the given storage integration.
|
|
723
|
+
"""
|
|
724
|
+
return pulumi.get(self, "describe_outputs")
|
|
725
|
+
|
|
677
726
|
@_builtins.property
|
|
678
727
|
@pulumi.getter
|
|
679
728
|
def enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
@@ -705,7 +754,7 @@ class StorageIntegration(pulumi.CustomResource):
|
|
|
705
754
|
|
|
706
755
|
@_builtins.property
|
|
707
756
|
@pulumi.getter(name="storageAwsExternalId")
|
|
708
|
-
def storage_aws_external_id(self) -> pulumi.Output[_builtins.str]:
|
|
757
|
+
def storage_aws_external_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
709
758
|
"""
|
|
710
759
|
The external ID that Snowflake will use when assuming the AWS role.
|
|
711
760
|
"""
|
{pulumi_snowflake-2.4.0a1753511923.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pulumi_snowflake/__init__.py,sha256=
|
|
2
|
-
pulumi_snowflake/_inputs.py,sha256=
|
|
1
|
+
pulumi_snowflake/__init__.py,sha256=VvRhpCNzTVIUG6vlTsznpeo9kgEmmelel8d-pVVSaZc,24297
|
|
2
|
+
pulumi_snowflake/_inputs.py,sha256=PmvT8XkY-AJiB6fLSbXIZ6unyw68archZlmtcWqe9t4,2514526
|
|
3
3
|
pulumi_snowflake/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_snowflake/account.py,sha256=KN46WRC181S-cIqdKIelhX9Xtfu3AGmNhwCwwRYUCys,49588
|
|
5
5
|
pulumi_snowflake/account_authentication_policy_attachment.py,sha256=Jr1Kinx5vmNGO13OA4sragSuPMpQ92UUwoeFKqVfEYQ,7611
|
|
@@ -93,6 +93,7 @@ pulumi_snowflake/grant_privileges_to_share.py,sha256=xAlN7nvuAKghNkeD5e8BZtmml8M
|
|
|
93
93
|
pulumi_snowflake/image_repository.py,sha256=f7pyfHj3s0NCu2XWyKnMZ3mOEWIFaEkWS2WwEGDSv-Q,18388
|
|
94
94
|
pulumi_snowflake/job_service.py,sha256=JO9_idaR89ws4zfB1haaKj89u3QhbEW3GXDCIcFCSFY,43993
|
|
95
95
|
pulumi_snowflake/legacy_service_user.py,sha256=Db5CRzWIKMAEhoayasimljT59a-_Znt4ecKXAGhlLe4,342473
|
|
96
|
+
pulumi_snowflake/listing.py,sha256=hgXdp5BLX4XoY9bTwrLAcj4odpVQcixzmd0Ce_NcJGA,21690
|
|
96
97
|
pulumi_snowflake/managed_account.py,sha256=wEoFSScdaUtgnWuWyYaVMt7mRTFBd0KmoGAetYt3FeA,23949
|
|
97
98
|
pulumi_snowflake/masking_policy.py,sha256=tY0rDeilnpe3Ibf9Eu3vhng9dGHstNdM2B6SvOQcr7w,37726
|
|
98
99
|
pulumi_snowflake/materialized_view.py,sha256=AnBHDdafJv1oLY7HWuWGzJNresbNmL9dJUSE6T7Zda8,26317
|
|
@@ -103,7 +104,7 @@ pulumi_snowflake/notification_integration.py,sha256=E5cZkhvev9zsGtymX_y0UytC-xvR
|
|
|
103
104
|
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=rEhwOGQONepoJGKqW0ANLKGhlsArSx9P1Ei22ruxb5o,67848
|
|
104
105
|
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=Is83_5gtfgINFhswY__n0FJQ5wvQLcyVtxFObLEeOzs,46869
|
|
105
106
|
pulumi_snowflake/object_parameter.py,sha256=G9YrqXejEjvLMn-mx7tUjqtTkjz7fv182DH6je46NEs,19607
|
|
106
|
-
pulumi_snowflake/outputs.py,sha256=
|
|
107
|
+
pulumi_snowflake/outputs.py,sha256=hv_Ltp_3v9VajuerIlI2RvkpIa94PMzu3A36nDOZL1w,2131454
|
|
107
108
|
pulumi_snowflake/password_policy.py,sha256=UJYR8E11cr5Xz_Z4CFku7_kG3OVFw43YiqbRGJJOIU8,60561
|
|
108
109
|
pulumi_snowflake/pipe.py,sha256=-A7N_y7mRyC2xbhmeLlczapXAnIeJjJW05qhfXPu9us,28393
|
|
109
110
|
pulumi_snowflake/primary_connection.py,sha256=ZXK3hasUj-KtQiwK5oxp5FdxxPgJyd-rYDqiGeUzvrc,19931
|
|
@@ -112,8 +113,8 @@ pulumi_snowflake/procedure_javascript.py,sha256=drgTg8Q1DMsC_bMzf0lqQn9WOlgRhHH3
|
|
|
112
113
|
pulumi_snowflake/procedure_python.py,sha256=9g8LjPQHbmAZbZy4lm959J6vA0Ul_wDQD1u4bWVbKVY,103506
|
|
113
114
|
pulumi_snowflake/procedure_scala.py,sha256=c_Ww6RK7mvmLscUUAVsG9VdArGXGhbFKYRaBaVI5f2A,107547
|
|
114
115
|
pulumi_snowflake/procedure_sql.py,sha256=3bnuUcXMYgs80Amn1d6cFGC2mZLGSI-YW78QHBsGVGs,68252
|
|
115
|
-
pulumi_snowflake/provider.py,sha256=
|
|
116
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=
|
|
116
|
+
pulumi_snowflake/provider.py,sha256=ZYM8SoYOQzvZ1zKosMiwfbazAt9VfamVz_NhG0DjwqE,82449
|
|
117
|
+
pulumi_snowflake/pulumi-plugin.json,sha256=aUE4EnWi2R6_XKWL3QLrYe3ofNQE28PSA561R_KDuI4,85
|
|
117
118
|
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
119
|
pulumi_snowflake/resource_monitor.py,sha256=AJsCxuI7Fmhq-4G4UnCzUo7pzC59Uz6hXnWLwQlLhvY,44033
|
|
119
120
|
pulumi_snowflake/row_access_policy.py,sha256=P4yNKevffDDxH2mJ5TmuSZHTe0uFnmkLspCq5okbz4c,28985
|
|
@@ -132,7 +133,7 @@ pulumi_snowflake/service_user.py,sha256=wMeu3qHsy49WAsOSLkAd7s16vkaoTQQuEfOKDuTX
|
|
|
132
133
|
pulumi_snowflake/share.py,sha256=cn680ZyuN9zHhzR95RMcyPvKJVKkkG7jLZIgPKkZMs8,12924
|
|
133
134
|
pulumi_snowflake/shared_database.py,sha256=ftR9foHESLvkaBrYBjuc0ekdwnYBezpnJ-iyGU1qiyw,69245
|
|
134
135
|
pulumi_snowflake/stage.py,sha256=oIFBQrljkJtCpprmoKh_-uvrMPN4Q-zHmSjpsQ10Wa0,43040
|
|
135
|
-
pulumi_snowflake/storage_integration.py,sha256=
|
|
136
|
+
pulumi_snowflake/storage_integration.py,sha256=wX_zgZokT4zea_izFazFLcKabUHroR7crAwYB2owTyA,41924
|
|
136
137
|
pulumi_snowflake/stream_on_directory_table.py,sha256=snbiHLXHZ5519I72csVsFdNKgNPc6jlBdpU3SSYKQlQ,28747
|
|
137
138
|
pulumi_snowflake/stream_on_external_table.py,sha256=iIuMx-wjbuwabOXjARhTNsbLaWRmD7af4EXic8N23-w,34908
|
|
138
139
|
pulumi_snowflake/stream_on_table.py,sha256=qhGJ8VHWFk2lgFhG6ZApKCTPa5dWh9dT33ViB-dmlo4,35618
|
|
@@ -152,10 +153,10 @@ pulumi_snowflake/user_public_keys.py,sha256=YLJac9Gddadhd6aNPEHFa5JvR2bCouFghfqK
|
|
|
152
153
|
pulumi_snowflake/view.py,sha256=JvXVY3aNoKHKolPMvjl2RCXRihgXPfa55drTJKgBnI8,52969
|
|
153
154
|
pulumi_snowflake/warehouse.py,sha256=ifCiafD2KTjJ8sAaHujl7XIcw0eVvN74bNXywiksw4g,65127
|
|
154
155
|
pulumi_snowflake/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
155
|
-
pulumi_snowflake/config/__init__.pyi,sha256=
|
|
156
|
+
pulumi_snowflake/config/__init__.pyi,sha256=8xT08HV2blk6XhcqwM6y1toWQeKDY32ugyis2wznBUA,10006
|
|
156
157
|
pulumi_snowflake/config/outputs.py,sha256=dobKlWS5UlTr1Wrtg-V_e4peAN_Om_QMF6Lcncn6nM0,4240
|
|
157
|
-
pulumi_snowflake/config/vars.py,sha256=
|
|
158
|
-
pulumi_snowflake-2.4.
|
|
159
|
-
pulumi_snowflake-2.4.
|
|
160
|
-
pulumi_snowflake-2.4.
|
|
161
|
-
pulumi_snowflake-2.4.
|
|
158
|
+
pulumi_snowflake/config/vars.py,sha256=2Ro-VgcnKl9SBeRzV9vGvY-n0FprqU_ahYhXDa5n6BQ,15619
|
|
159
|
+
pulumi_snowflake-2.4.0a1754624939.dist-info/METADATA,sha256=5sMs8fpXQ0ClT1GXM2c53-398g7y7vkrg7US1q7X6KA,5046
|
|
160
|
+
pulumi_snowflake-2.4.0a1754624939.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
161
|
+
pulumi_snowflake-2.4.0a1754624939.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
162
|
+
pulumi_snowflake-2.4.0a1754624939.dist-info/RECORD,,
|
{pulumi_snowflake-2.4.0a1753511923.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|