pulumi-snowflake 0.57.0a1722063098__py3-none-any.whl → 0.57.1__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.
- pulumi_snowflake/__init__.py +20 -0
- pulumi_snowflake/_inputs.py +2475 -237
- pulumi_snowflake/account_role.py +226 -0
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +4 -0
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +4 -0
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +4 -0
- pulumi_snowflake/database.py +63 -63
- pulumi_snowflake/external_oauth_integration.py +2 -2
- pulumi_snowflake/get_databases.py +2 -2
- pulumi_snowflake/get_network_policies.py +122 -0
- pulumi_snowflake/get_roles.py +37 -31
- pulumi_snowflake/get_schemas.py +117 -36
- pulumi_snowflake/get_security_integrations.py +2 -2
- pulumi_snowflake/get_streamlits.py +159 -0
- pulumi_snowflake/get_warehouses.py +2 -2
- pulumi_snowflake/network_policy.py +103 -19
- pulumi_snowflake/oauth_integration_for_custom_clients.py +18 -14
- pulumi_snowflake/oauth_integration_for_partner_applications.py +18 -14
- pulumi_snowflake/outputs.py +5849 -2728
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/role.py +44 -72
- pulumi_snowflake/saml2_integration.py +32 -28
- pulumi_snowflake/schema.py +914 -156
- pulumi_snowflake/scim_integration.py +25 -21
- pulumi_snowflake/secondary_database.py +63 -63
- pulumi_snowflake/shared_database.py +63 -63
- pulumi_snowflake/streamlit.py +650 -0
- pulumi_snowflake/table.py +0 -120
- pulumi_snowflake/table_constraint.py +2 -2
- pulumi_snowflake/unsafe_execute.py +8 -8
- {pulumi_snowflake-0.57.0a1722063098.dist-info → pulumi_snowflake-0.57.1.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.57.0a1722063098.dist-info → pulumi_snowflake-0.57.1.dist-info}/RECORD +34 -30
- {pulumi_snowflake-0.57.0a1722063098.dist-info → pulumi_snowflake-0.57.1.dist-info}/WHEEL +1 -1
- {pulumi_snowflake-0.57.0a1722063098.dist-info → pulumi_snowflake-0.57.1.dist-info}/top_level.txt +0 -0
pulumi_snowflake/table.py
CHANGED
|
@@ -413,66 +413,6 @@ class Table(pulumi.CustomResource):
|
|
|
413
413
|
"""
|
|
414
414
|
## Example Usage
|
|
415
415
|
|
|
416
|
-
```python
|
|
417
|
-
import pulumi
|
|
418
|
-
import pulumi_snowflake as snowflake
|
|
419
|
-
|
|
420
|
-
schema = snowflake.Schema("schema",
|
|
421
|
-
database="database",
|
|
422
|
-
name="schema",
|
|
423
|
-
data_retention_days=1)
|
|
424
|
-
sequence = snowflake.Sequence("sequence",
|
|
425
|
-
database=schema.database,
|
|
426
|
-
schema=schema.name,
|
|
427
|
-
name="sequence")
|
|
428
|
-
table = snowflake.Table("table",
|
|
429
|
-
database=schema.database,
|
|
430
|
-
schema=schema.name,
|
|
431
|
-
name="table",
|
|
432
|
-
comment="A table.",
|
|
433
|
-
cluster_bies=["to_date(DATE)"],
|
|
434
|
-
data_retention_time_in_days=schema.data_retention_time_in_days,
|
|
435
|
-
change_tracking=False,
|
|
436
|
-
columns=[
|
|
437
|
-
snowflake.TableColumnArgs(
|
|
438
|
-
name="id",
|
|
439
|
-
type="int",
|
|
440
|
-
nullable=True,
|
|
441
|
-
default=snowflake.TableColumnDefaultArgs(
|
|
442
|
-
sequence=sequence.fully_qualified_name,
|
|
443
|
-
),
|
|
444
|
-
),
|
|
445
|
-
snowflake.TableColumnArgs(
|
|
446
|
-
name="identity",
|
|
447
|
-
type="NUMBER(38,0)",
|
|
448
|
-
nullable=True,
|
|
449
|
-
identity=snowflake.TableColumnIdentityArgs(
|
|
450
|
-
start_num=1,
|
|
451
|
-
step_num=3,
|
|
452
|
-
),
|
|
453
|
-
),
|
|
454
|
-
snowflake.TableColumnArgs(
|
|
455
|
-
name="data",
|
|
456
|
-
type="text",
|
|
457
|
-
nullable=False,
|
|
458
|
-
collate="en-ci",
|
|
459
|
-
),
|
|
460
|
-
snowflake.TableColumnArgs(
|
|
461
|
-
name="DATE",
|
|
462
|
-
type="TIMESTAMP_NTZ(9)",
|
|
463
|
-
),
|
|
464
|
-
snowflake.TableColumnArgs(
|
|
465
|
-
name="extra",
|
|
466
|
-
type="VARIANT",
|
|
467
|
-
comment="extra data",
|
|
468
|
-
),
|
|
469
|
-
],
|
|
470
|
-
primary_key=snowflake.TablePrimaryKeyArgs(
|
|
471
|
-
name="my_key",
|
|
472
|
-
keys=["data"],
|
|
473
|
-
))
|
|
474
|
-
```
|
|
475
|
-
|
|
476
416
|
## Import
|
|
477
417
|
|
|
478
418
|
format is database name | schema name | table name
|
|
@@ -503,66 +443,6 @@ class Table(pulumi.CustomResource):
|
|
|
503
443
|
"""
|
|
504
444
|
## Example Usage
|
|
505
445
|
|
|
506
|
-
```python
|
|
507
|
-
import pulumi
|
|
508
|
-
import pulumi_snowflake as snowflake
|
|
509
|
-
|
|
510
|
-
schema = snowflake.Schema("schema",
|
|
511
|
-
database="database",
|
|
512
|
-
name="schema",
|
|
513
|
-
data_retention_days=1)
|
|
514
|
-
sequence = snowflake.Sequence("sequence",
|
|
515
|
-
database=schema.database,
|
|
516
|
-
schema=schema.name,
|
|
517
|
-
name="sequence")
|
|
518
|
-
table = snowflake.Table("table",
|
|
519
|
-
database=schema.database,
|
|
520
|
-
schema=schema.name,
|
|
521
|
-
name="table",
|
|
522
|
-
comment="A table.",
|
|
523
|
-
cluster_bies=["to_date(DATE)"],
|
|
524
|
-
data_retention_time_in_days=schema.data_retention_time_in_days,
|
|
525
|
-
change_tracking=False,
|
|
526
|
-
columns=[
|
|
527
|
-
snowflake.TableColumnArgs(
|
|
528
|
-
name="id",
|
|
529
|
-
type="int",
|
|
530
|
-
nullable=True,
|
|
531
|
-
default=snowflake.TableColumnDefaultArgs(
|
|
532
|
-
sequence=sequence.fully_qualified_name,
|
|
533
|
-
),
|
|
534
|
-
),
|
|
535
|
-
snowflake.TableColumnArgs(
|
|
536
|
-
name="identity",
|
|
537
|
-
type="NUMBER(38,0)",
|
|
538
|
-
nullable=True,
|
|
539
|
-
identity=snowflake.TableColumnIdentityArgs(
|
|
540
|
-
start_num=1,
|
|
541
|
-
step_num=3,
|
|
542
|
-
),
|
|
543
|
-
),
|
|
544
|
-
snowflake.TableColumnArgs(
|
|
545
|
-
name="data",
|
|
546
|
-
type="text",
|
|
547
|
-
nullable=False,
|
|
548
|
-
collate="en-ci",
|
|
549
|
-
),
|
|
550
|
-
snowflake.TableColumnArgs(
|
|
551
|
-
name="DATE",
|
|
552
|
-
type="TIMESTAMP_NTZ(9)",
|
|
553
|
-
),
|
|
554
|
-
snowflake.TableColumnArgs(
|
|
555
|
-
name="extra",
|
|
556
|
-
type="VARIANT",
|
|
557
|
-
comment="extra data",
|
|
558
|
-
),
|
|
559
|
-
],
|
|
560
|
-
primary_key=snowflake.TablePrimaryKeyArgs(
|
|
561
|
-
name="my_key",
|
|
562
|
-
keys=["data"],
|
|
563
|
-
))
|
|
564
|
-
```
|
|
565
|
-
|
|
566
446
|
## Import
|
|
567
447
|
|
|
568
448
|
format is database name | schema name | table name
|
|
@@ -516,7 +516,7 @@ class TableConstraint(pulumi.CustomResource):
|
|
|
516
516
|
## Import
|
|
517
517
|
|
|
518
518
|
```sh
|
|
519
|
-
$ pulumi import snowflake:index/tableConstraint:TableConstraint example 'myconstraintfk❄️FOREIGN KEY❄️
|
|
519
|
+
$ pulumi import snowflake:index/tableConstraint:TableConstraint example 'myconstraintfk❄️FOREIGN KEY❄️databaseName|schemaName|tableName'
|
|
520
520
|
```
|
|
521
521
|
|
|
522
522
|
:param str resource_name: The name of the resource.
|
|
@@ -620,7 +620,7 @@ class TableConstraint(pulumi.CustomResource):
|
|
|
620
620
|
## Import
|
|
621
621
|
|
|
622
622
|
```sh
|
|
623
|
-
$ pulumi import snowflake:index/tableConstraint:TableConstraint example 'myconstraintfk❄️FOREIGN KEY❄️
|
|
623
|
+
$ pulumi import snowflake:index/tableConstraint:TableConstraint example 'myconstraintfk❄️FOREIGN KEY❄️databaseName|schemaName|tableName'
|
|
624
624
|
```
|
|
625
625
|
|
|
626
626
|
:param str resource_name: The name of the resource.
|
|
@@ -147,15 +147,15 @@ class UnsafeExecute(pulumi.CustomResource):
|
|
|
147
147
|
revert: Optional[pulumi.Input[str]] = None,
|
|
148
148
|
__props__=None):
|
|
149
149
|
"""
|
|
150
|
-
!> **Warning** This is a dangerous resource that allows executing **ANY** SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources.
|
|
150
|
+
!> **Warning** This is a dangerous resource that allows executing **ANY** SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources. Use at your own risk.
|
|
151
|
+
|
|
152
|
+
> **Note** This resource will be included in the V1 (check here.
|
|
151
153
|
|
|
152
154
|
> **Note** It can be theoretically used to manage resource that are not supported by the provider. This is risky and may brake other resources if used incorrectly.
|
|
153
155
|
|
|
154
156
|
> **Note** Use `query` parameter with caution. It will fetch **ALL** the results returned by the query provided. Try to limit the number of results by writing query with filters. Query failure does not stop resource creation; it simply results in `query_results` being empty.
|
|
155
157
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
Experimental resource used for testing purposes only. Allows to execute ANY SQL statement.
|
|
158
|
+
Experimental resource allowing execution of ANY SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources. Use at your own risk.
|
|
159
159
|
|
|
160
160
|
:param str resource_name: The name of the resource.
|
|
161
161
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -170,15 +170,15 @@ class UnsafeExecute(pulumi.CustomResource):
|
|
|
170
170
|
args: UnsafeExecuteArgs,
|
|
171
171
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
172
172
|
"""
|
|
173
|
-
!> **Warning** This is a dangerous resource that allows executing **ANY** SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources.
|
|
173
|
+
!> **Warning** This is a dangerous resource that allows executing **ANY** SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources. Use at your own risk.
|
|
174
|
+
|
|
175
|
+
> **Note** This resource will be included in the V1 (check here.
|
|
174
176
|
|
|
175
177
|
> **Note** It can be theoretically used to manage resource that are not supported by the provider. This is risky and may brake other resources if used incorrectly.
|
|
176
178
|
|
|
177
179
|
> **Note** Use `query` parameter with caution. It will fetch **ALL** the results returned by the query provided. Try to limit the number of results by writing query with filters. Query failure does not stop resource creation; it simply results in `query_results` being empty.
|
|
178
180
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
Experimental resource used for testing purposes only. Allows to execute ANY SQL statement.
|
|
181
|
+
Experimental resource allowing execution of ANY SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources. Use at your own risk.
|
|
182
182
|
|
|
183
183
|
:param str resource_name: The name of the resource.
|
|
184
184
|
:param UnsafeExecuteArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
pulumi_snowflake/__init__.py,sha256=
|
|
2
|
-
pulumi_snowflake/_inputs.py,sha256=
|
|
1
|
+
pulumi_snowflake/__init__.py,sha256=jLhHlQ_zLRRsNuX3MUUJZ6Zeo6ajiEG6dI7bTYnbqms,17867
|
|
2
|
+
pulumi_snowflake/_inputs.py,sha256=ZOPttY6q57bhXWRXNaP1yNkJFdHMakHSHifPz5TKGzU,539581
|
|
3
3
|
pulumi_snowflake/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
4
4
|
pulumi_snowflake/account.py,sha256=vJUJAc9rMC1XkVlj_q4AwDu6kO0DAvGFOqc89XTTGUs,47120
|
|
5
5
|
pulumi_snowflake/account_parameter.py,sha256=tQwfHgeDP9BHYfvXuhSl1vTub0UvMw52KGJNNy-n_ds,9445
|
|
6
6
|
pulumi_snowflake/account_password_policy_attachment.py,sha256=-JsZcmX9NHY2KQS1devUCXoqEZFKTUSZaOd_jl97S_k,7628
|
|
7
|
+
pulumi_snowflake/account_role.py,sha256=4JH9BLYZNM6nfHVv6i6iDaF14h0_LBpwmBcZWDue0wo,9557
|
|
7
8
|
pulumi_snowflake/alert.py,sha256=biv6GdmJ2sncU60-vLs_b4MNS_n2NGftoXjrU1trbU8,23278
|
|
8
|
-
pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=
|
|
9
|
-
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=
|
|
10
|
-
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=
|
|
9
|
+
pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py,sha256=JIORJkSlxZHmGjb7KrapDckadvUZ9SnkoYunW3-EXjs,41678
|
|
10
|
+
pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=VzYEOq4dAcwQ5u2Xr5dhf1ptu6vqLtra3MLgZTVnDVY,38422
|
|
11
|
+
pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=sxlpFaZI4Q9EL3aHQagijmVZqZTT_6yy3ZxvZaYhIs8,39174
|
|
11
12
|
pulumi_snowflake/api_integration.py,sha256=KRwKhCyjlTuoM-IHtkgTD31uIJlGv340s78VBsEf7Qg,40947
|
|
12
13
|
pulumi_snowflake/cortex_search_service.py,sha256=3tsNMJxmOdj9nGpnGW0Bd5Zo1bCEckV1olo186019fg,23896
|
|
13
|
-
pulumi_snowflake/database.py,sha256=
|
|
14
|
+
pulumi_snowflake/database.py,sha256=vpkuuZhlGj-5H_6OAdbK7nfjiySTbM0zNDLzN0GDopY,86565
|
|
14
15
|
pulumi_snowflake/database_old.py,sha256=27OE3sOJKSNMuhPwBA9AjSV3aQaLbbEoReLjotYUutc,30383
|
|
15
16
|
pulumi_snowflake/database_role.py,sha256=3jo3f547ySt5GuNBCKlUx7WyboeSjxZ2oUgbgpWi6cI,9831
|
|
16
17
|
pulumi_snowflake/dynamic_table.py,sha256=TT7bi_TFwNEsi9wSwvFr5TB3WGXAs89jYMhnY02felk,40652
|
|
17
18
|
pulumi_snowflake/email_notification_integration.py,sha256=Vf2-KL9Ec6KVb2-ijUV7YAzOsYwst5BKypwDHhWkjJs,11731
|
|
18
19
|
pulumi_snowflake/external_function.py,sha256=EHYcrx0MNRCyV8HV3CM0w9bRfXfVbP9STWzqSMKzFW4,48911
|
|
19
|
-
pulumi_snowflake/external_oauth_integration.py,sha256=
|
|
20
|
+
pulumi_snowflake/external_oauth_integration.py,sha256=0bxSj53wpi4q4DIOwmFfotOH8rza00wBd17VbSub63k,64979
|
|
20
21
|
pulumi_snowflake/external_table.py,sha256=utJNNSFmiigInW1EAMDK6-bGlj4U3TtYSSIoJXK6dpg,40874
|
|
21
22
|
pulumi_snowflake/failover_group.py,sha256=qkzfmKwLfPzwyZPQqro0nLTIlkYnAPWQ0ep6rLS9Jvs,38900
|
|
22
23
|
pulumi_snowflake/file_format.py,sha256=02NrI5_S1O2Xt6fHn_hKN2WoH3jhyJLBdYDHGJ9AoOU,91876
|
|
@@ -29,7 +30,7 @@ pulumi_snowflake/get_current_role.py,sha256=8qctYLhiMpij40a-sTPUpxno0OBzyTpp4pp1
|
|
|
29
30
|
pulumi_snowflake/get_database.py,sha256=-OCZl50Fyaz8OSDes2wLsaf9dsk927UHIlFuut5ACSw,6025
|
|
30
31
|
pulumi_snowflake/get_database_role.py,sha256=VgJGlvm4SNuYWpoaClTLlyIS8dszGaX2WZgUpASbdFE,4493
|
|
31
32
|
pulumi_snowflake/get_database_roles.py,sha256=phyvBWznKjhUlGomFhsB2McEmdY6FSRAqy6Ux4qt22w,3656
|
|
32
|
-
pulumi_snowflake/get_databases.py,sha256=
|
|
33
|
+
pulumi_snowflake/get_databases.py,sha256=ez5rNmU63ZCPktWxMnWt81vNS3x0yfBqxpmJxmwrLmk,10143
|
|
33
34
|
pulumi_snowflake/get_dynamic_tables.py,sha256=QIh9_v7aq2ena2BkGLdhYHKMa_tj6qN1ezdTKw5bCNc,7140
|
|
34
35
|
pulumi_snowflake/get_external_functions.py,sha256=-UoeIjSURHaxT-3F70gfowF1Xmy8TkbaKLNFpxYdEYo,4650
|
|
35
36
|
pulumi_snowflake/get_external_tables.py,sha256=MeoscZ7LbpY-Fj9zaQoXz-4VsQBSxhpyPiMiAn201hg,4481
|
|
@@ -39,19 +40,21 @@ pulumi_snowflake/get_functions.py,sha256=A8jzOryl_PloHXf8EIKEt1NCIP3oQSyAV8XMdVI
|
|
|
39
40
|
pulumi_snowflake/get_grants.py,sha256=hHqQkfXr9y9UJCTAG8jpf36HL3BqHUxyza6LbnzZLCE,14707
|
|
40
41
|
pulumi_snowflake/get_masking_policies.py,sha256=ra6_KaY7vxq4o3xztRQF7qJT4j8sQHmQRvxIA_MaxGs,4519
|
|
41
42
|
pulumi_snowflake/get_materialized_views.py,sha256=SzrOyytKFC1L1Bxtf_k8PI0wXfP_zkvrAfRHdYJIovQ,4558
|
|
43
|
+
pulumi_snowflake/get_network_policies.py,sha256=7E5UrgcVlA202R1j141IjEjTOfgvgMLWgk50mDEQ6ns,6269
|
|
42
44
|
pulumi_snowflake/get_parameters.py,sha256=sziM3-TIrQKQutCRQddpm6ql82SaE5lie55lm1dNAOw,9700
|
|
43
45
|
pulumi_snowflake/get_pipes.py,sha256=S8EURVcZJze6r7br5sdFFEcxmf358EK3ept7Sft5CFE,4053
|
|
44
46
|
pulumi_snowflake/get_procedures.py,sha256=1DZvj-MhgKOW3BGB6EQVtofsGAha8Rg7Sh2P1jsDars,4263
|
|
45
47
|
pulumi_snowflake/get_resource_monitors.py,sha256=ou1SwZvtDDpkFmFYvYZpmS_KeI_Zy51OW4Rk9EEDAGw,2895
|
|
46
48
|
pulumi_snowflake/get_role.py,sha256=BvCk_WCi6C8GvQc9q4nlWprYwVt9pI1pHUYieW_2JRs,3392
|
|
47
|
-
pulumi_snowflake/get_roles.py,sha256=
|
|
49
|
+
pulumi_snowflake/get_roles.py,sha256=I48pxk_QaE14ls-FghgbZm-vagZ3TDzlqoGX764KMrs,5295
|
|
48
50
|
pulumi_snowflake/get_row_access_policies.py,sha256=U6dOdDDR5IN60wvnJmZ2vNr7JE6HrHzJ5Js9WHCBncs,4628
|
|
49
|
-
pulumi_snowflake/get_schemas.py,sha256=
|
|
50
|
-
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
|
|
51
53
|
pulumi_snowflake/get_sequences.py,sha256=xp_duxQQTXk5R6MW7bhoqX9dEk7bATY1fk5F8vcuOoM,4221
|
|
52
54
|
pulumi_snowflake/get_shares.py,sha256=xOrMChS5bTQ8vIETDAtJt1Ar7VDjSo3fpqQldXyfRLU,3365
|
|
53
55
|
pulumi_snowflake/get_stages.py,sha256=0aDVuqtlisNUHBA1z81PgpUrYSNmfIUp3CrNTPG9vt0,4095
|
|
54
56
|
pulumi_snowflake/get_storage_integrations.py,sha256=B96Ikapf8A8FcFYRivOwOooBjbyj7wsZnul0C7kHJK4,3003
|
|
57
|
+
pulumi_snowflake/get_streamlits.py,sha256=5JmBa5yXeStbh7-hlOmHebk4G22krGSJhysoN0pk_VQ,8633
|
|
55
58
|
pulumi_snowflake/get_streams.py,sha256=lKhjr5ZI0ImQjl-zJPjVwzZNwPJDmZws4znbyQYynY8,4137
|
|
56
59
|
pulumi_snowflake/get_system_generate_scim_access_token.py,sha256=qDnAfUXWuNeg4CkP0Rt8SZliQsE9kAyMYlB8U3cikvg,3986
|
|
57
60
|
pulumi_snowflake/get_system_get_aws_sns_iam_policy.py,sha256=fm4NJGPdm5RehwqL0glf-HfiAf_71JxLNmNJaXQSNrI,4269
|
|
@@ -61,7 +64,7 @@ pulumi_snowflake/get_tables.py,sha256=AG1baNGUWbRj4ow9g7OY6dGqkL-eUvgDtCOydrHvN9
|
|
|
61
64
|
pulumi_snowflake/get_tasks.py,sha256=lzEuSYuJHfOeGhkVeFH2MdR612BWq5Ywc14P6tawsjo,4053
|
|
62
65
|
pulumi_snowflake/get_users.py,sha256=7oj99U-ynVSDwVarsWQZsUOwxMjoPOWwRRHeVwcX7Ko,3637
|
|
63
66
|
pulumi_snowflake/get_views.py,sha256=FkSkOYf7GwUf2yeD3mEmgsu9uzVvnVnxxY5sUUORqsg,4053
|
|
64
|
-
pulumi_snowflake/get_warehouses.py,sha256=
|
|
67
|
+
pulumi_snowflake/get_warehouses.py,sha256=6KFeQL76lEbl-Oyutye0JlES_IkNCpjCt5d7Oryq2hU,7371
|
|
65
68
|
pulumi_snowflake/grant_account_role.py,sha256=qo-o4zRtA9_NaCTrK-WMtn7lfN5bsuaAmYHLnzKtJyc,11240
|
|
66
69
|
pulumi_snowflake/grant_application_role.py,sha256=XOWw4Ag836RenWYFPV0hKNXT6v_gMqd3PqGxxsQJXlI,12023
|
|
67
70
|
pulumi_snowflake/grant_database_role.py,sha256=MZy5M4neHp2ON2fH4L26Rt4dLP_MT3ShDcrUe407qLI,14679
|
|
@@ -72,44 +75,45 @@ pulumi_snowflake/grant_privileges_to_share.py,sha256=U03vjv93LgnKjcEDglAsfUlcQmd
|
|
|
72
75
|
pulumi_snowflake/managed_account.py,sha256=IsRioua9GLxB93e8v4mSS88bYkHJ3DyOo64ao3cp_BY,20526
|
|
73
76
|
pulumi_snowflake/masking_policy.py,sha256=2KnJCdaIKk4ocLgVlCFCf9ngDVFamjga7fszkas0Kjw,29322
|
|
74
77
|
pulumi_snowflake/materialized_view.py,sha256=_VhZ7Q1RiPsbPDWlPxVeVCqqHLUQsxoggGiPq2CaCE0,23378
|
|
75
|
-
pulumi_snowflake/network_policy.py,sha256=
|
|
78
|
+
pulumi_snowflake/network_policy.py,sha256=iHNumhYizKI89XluLbvSiqsXzb6lETYSB07y04Zrxtc,27073
|
|
76
79
|
pulumi_snowflake/network_policy_attachment.py,sha256=EXOob_OuzWvFFMr_KffaX3TDs9Z2toWZXdFdsWxpGQ4,15886
|
|
77
80
|
pulumi_snowflake/network_rule.py,sha256=3ZfVe2h9JjvKuWhQ9umrvLHoQsTu9X5jD98kH7uDsQs,24105
|
|
78
81
|
pulumi_snowflake/notification_integration.py,sha256=mtEOKUNubXTaZFln3Z5iIXjIU9acipZyNBKRwo_oaEA,48506
|
|
79
82
|
pulumi_snowflake/oauth_integration.py,sha256=z6m4d7mxQ5C7UTIFBMr1262WlizqfRbW169RMm2UiJo,32685
|
|
80
|
-
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=
|
|
81
|
-
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=
|
|
83
|
+
pulumi_snowflake/oauth_integration_for_custom_clients.py,sha256=BhgxRBJIr48FvtJfvcyN9UeM4Df2wj0yS5I5-NvqAHQ,57552
|
|
84
|
+
pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=y9A2BGeubtrP2Jt-ASGb5n2z7YFvCxiIPeXce2uYrys,35058
|
|
82
85
|
pulumi_snowflake/object_parameter.py,sha256=RrZ30vr5g-snSKZiJtTd7oGkCk8V0CDNv44uA4J-U_0,21635
|
|
83
|
-
pulumi_snowflake/outputs.py,sha256=
|
|
86
|
+
pulumi_snowflake/outputs.py,sha256=thd-a75ay8x9sNLi0iYGh_flOnkFcV3TeGoowCQFf58,645812
|
|
84
87
|
pulumi_snowflake/password_policy.py,sha256=KbUVIr4fMYuwYf1HEfKxTjf6jSuJbarcTDZh17laQGY,53191
|
|
85
88
|
pulumi_snowflake/pipe.py,sha256=N_U9gy0MMoCRTOxDyOtEherFeG_QCu7aT-TsaH1MhcA,24843
|
|
86
89
|
pulumi_snowflake/procedure.py,sha256=qfNFo_jm1k3diAeRC8dGlydckWxPlPVolWYY2UZ6MDQ,43878
|
|
87
90
|
pulumi_snowflake/provider.py,sha256=UJDRm9PEGDK3jQ1LKdk4qclY1eCZ-Tk8x5W0U9lXptk,85040
|
|
88
|
-
pulumi_snowflake/pulumi-plugin.json,sha256=
|
|
91
|
+
pulumi_snowflake/pulumi-plugin.json,sha256=yqHFWPyzaGySBFIWkvClZKg95p5Im_tC_c0xZCmdEVk,69
|
|
89
92
|
pulumi_snowflake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
93
|
pulumi_snowflake/resource_monitor.py,sha256=V2bJR2jvWbO4yZYUF8lp8qzBIgM85mP878FzuLAdCcU,38970
|
|
91
|
-
pulumi_snowflake/role.py,sha256=
|
|
94
|
+
pulumi_snowflake/role.py,sha256=FxM6f4zF4QmBhDY5gkkQtHmPrahnXAwljrbhzaaFOkQ,8864
|
|
92
95
|
pulumi_snowflake/row_access_policy.py,sha256=z9GSTCGxTvHtZUxh0cQu35yitocJ8lUR90XcWqIC58c,20109
|
|
93
|
-
pulumi_snowflake/saml2_integration.py,sha256=
|
|
96
|
+
pulumi_snowflake/saml2_integration.py,sha256=otCBBv9ApaRXpfzRrPO69hfKW_gLvU2iJwDoXLbUFrM,75148
|
|
94
97
|
pulumi_snowflake/saml_integration.py,sha256=bVQPrrXXKTym0w3usppuiJERA6cg7rjQcOc5zGO6cMo,65285
|
|
95
|
-
pulumi_snowflake/schema.py,sha256=
|
|
96
|
-
pulumi_snowflake/scim_integration.py,sha256=
|
|
97
|
-
pulumi_snowflake/secondary_database.py,sha256=
|
|
98
|
+
pulumi_snowflake/schema.py,sha256=BHgT6RVPrr8l5Fu1URMGPaYwgdepM4lCI6kpGomYj4A,91521
|
|
99
|
+
pulumi_snowflake/scim_integration.py,sha256=gVqjop-w8NACJEPN79nMqKugQsVczLSI6ExB5jy2Nfc,27203
|
|
100
|
+
pulumi_snowflake/secondary_database.py,sha256=ROih4_eNLTCIe2axTTeGnfQp89_LHmTt-nHnlegZxUg,82073
|
|
98
101
|
pulumi_snowflake/sequence.py,sha256=WCrhrUSIeSS4aRAg_q8CknVjsswpDB9ksZaCp_uJybg,18596
|
|
99
102
|
pulumi_snowflake/session_parameter.py,sha256=3MITgbXMi6B3-XGLI7iebq2pRHgG6-pBPGMNs-I4Jyk,13557
|
|
100
103
|
pulumi_snowflake/share.py,sha256=WvO2tfeyPs5s0q7myV6TyEMXeazsZpI3gsTcl5ssdzM,11207
|
|
101
|
-
pulumi_snowflake/shared_database.py,sha256=
|
|
104
|
+
pulumi_snowflake/shared_database.py,sha256=28h8Rtu1x2lKxunODmOVXlZnGFFxms6zjWsu4d2kzIs,64356
|
|
102
105
|
pulumi_snowflake/stage.py,sha256=MSpWrW_FWlwMEAXUb1vxp806Cg5v5MIjX-jz2dg6lOo,35611
|
|
103
106
|
pulumi_snowflake/storage_integration.py,sha256=usRmBXSV_0UBL9PZiF51T5w6Dxfsj4MnhJPdxqytcBk,31315
|
|
104
107
|
pulumi_snowflake/stream.py,sha256=WgZ87qdjc4_meR5x2JNd8lsrdfn1y1gWalVs2u_CIZ4,24999
|
|
105
|
-
pulumi_snowflake/
|
|
108
|
+
pulumi_snowflake/streamlit.py,sha256=M5Ur33AIJrzkZH9kMxUsBjm0A3CCytQNq0rECtnVYKY,30129
|
|
109
|
+
pulumi_snowflake/table.py,sha256=N3XFJBDXbBniEhBI4FZJpdtmFgAHEOOHCTLWbgkl_r4,32250
|
|
106
110
|
pulumi_snowflake/table_column_masking_policy_application.py,sha256=gM5EZc64cM86Pd2r_QaPyJc5wTtiuNfjMMbmV2ko6gc,11641
|
|
107
|
-
pulumi_snowflake/table_constraint.py,sha256=
|
|
111
|
+
pulumi_snowflake/table_constraint.py,sha256=LrMNV6xetwgtU8AvaC0iJT9_H6uQCaSYOoXBlbkuxn4,35778
|
|
108
112
|
pulumi_snowflake/tag.py,sha256=arbK3yapCB2mFgxb2UhkbwZWl5dCTaANgd9eA9CTLBA,14591
|
|
109
113
|
pulumi_snowflake/tag_association.py,sha256=oR2jKBmCvnIHkvAodWmeHkyZTpowJhgwsq1Y3tvsJIM,26054
|
|
110
114
|
pulumi_snowflake/tag_masking_policy_association.py,sha256=peiS_9g69yO976ZTIz53DCRky90xcP44G4telKz6eFc,10129
|
|
111
115
|
pulumi_snowflake/task.py,sha256=H2cdntrFuWNcGpJl5Ywbls5P5GAfzIHboGUkShKsQ4Y,48980
|
|
112
|
-
pulumi_snowflake/unsafe_execute.py,sha256=
|
|
116
|
+
pulumi_snowflake/unsafe_execute.py,sha256=s3djFyuRkbM_RE_qxX4k861H3Btf7t3bHQnpSd2LjWw,13480
|
|
113
117
|
pulumi_snowflake/user.py,sha256=rl5DfPWWUUnoea9muzD3JRpym_fvFLaPPCHawBD5N-8,43432
|
|
114
118
|
pulumi_snowflake/user_password_policy_attachment.py,sha256=KlKgy4vWuR9gQ-J5NMjrBsh3XUtltstBMbBL0KGEYBY,10050
|
|
115
119
|
pulumi_snowflake/user_public_keys.py,sha256=Z8QaNFXe8bGM0pzxRwM3bPSlGvqXVOxejQLDbhQm5Ck,11278
|
|
@@ -119,7 +123,7 @@ pulumi_snowflake/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3A
|
|
|
119
123
|
pulumi_snowflake/config/__init__.pyi,sha256=wA0KR9Mzb7OhcEV0M_FSljX8L_jCHB4hMilHnLcVwTo,9868
|
|
120
124
|
pulumi_snowflake/config/outputs.py,sha256=zm82Qv8RbeJ_iKb90mfdQeQBHOwjYRC8zHHII-DHiNs,3867
|
|
121
125
|
pulumi_snowflake/config/vars.py,sha256=D3v_7m-rX66OwF6n2t32KU1cRLebk5_u6vSbTuL9o-Y,15762
|
|
122
|
-
pulumi_snowflake-0.57.
|
|
123
|
-
pulumi_snowflake-0.57.
|
|
124
|
-
pulumi_snowflake-0.57.
|
|
125
|
-
pulumi_snowflake-0.57.
|
|
126
|
+
pulumi_snowflake-0.57.1.dist-info/METADATA,sha256=0Y3RpLJQGJm_iY3Zsb5ab2QPFSTaT-AN6RLHjJ4dASg,4970
|
|
127
|
+
pulumi_snowflake-0.57.1.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
128
|
+
pulumi_snowflake-0.57.1.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
|
|
129
|
+
pulumi_snowflake-0.57.1.dist-info/RECORD,,
|
{pulumi_snowflake-0.57.0a1722063098.dist-info → pulumi_snowflake-0.57.1.dist-info}/top_level.txt
RENAMED
|
File without changes
|