pulumi-snowflake 0.57.0a1721977458__py3-none-any.whl → 0.57.0a1722246300__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.

Files changed (31) hide show
  1. pulumi_snowflake/__init__.py +20 -0
  2. pulumi_snowflake/_inputs.py +2475 -237
  3. pulumi_snowflake/account_role.py +226 -0
  4. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +4 -0
  5. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +4 -0
  6. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +4 -0
  7. pulumi_snowflake/database.py +63 -63
  8. pulumi_snowflake/external_oauth_integration.py +2 -2
  9. pulumi_snowflake/get_network_policies.py +122 -0
  10. pulumi_snowflake/get_roles.py +37 -31
  11. pulumi_snowflake/get_schemas.py +115 -38
  12. pulumi_snowflake/get_streamlits.py +159 -0
  13. pulumi_snowflake/network_policy.py +103 -19
  14. pulumi_snowflake/oauth_integration_for_custom_clients.py +18 -14
  15. pulumi_snowflake/oauth_integration_for_partner_applications.py +18 -14
  16. pulumi_snowflake/outputs.py +5849 -2728
  17. pulumi_snowflake/pulumi-plugin.json +1 -1
  18. pulumi_snowflake/role.py +44 -72
  19. pulumi_snowflake/saml2_integration.py +32 -28
  20. pulumi_snowflake/schema.py +905 -151
  21. pulumi_snowflake/scim_integration.py +25 -21
  22. pulumi_snowflake/secondary_database.py +63 -63
  23. pulumi_snowflake/shared_database.py +63 -63
  24. pulumi_snowflake/streamlit.py +650 -0
  25. pulumi_snowflake/table.py +0 -120
  26. pulumi_snowflake/table_constraint.py +2 -2
  27. pulumi_snowflake/unsafe_execute.py +8 -8
  28. {pulumi_snowflake-0.57.0a1721977458.dist-info → pulumi_snowflake-0.57.0a1722246300.dist-info}/METADATA +1 -1
  29. {pulumi_snowflake-0.57.0a1721977458.dist-info → pulumi_snowflake-0.57.0a1722246300.dist-info}/RECORD +31 -27
  30. {pulumi_snowflake-0.57.0a1721977458.dist-info → pulumi_snowflake-0.57.0a1722246300.dist-info}/WHEEL +1 -1
  31. {pulumi_snowflake-0.57.0a1721977458.dist-info → pulumi_snowflake-0.57.0a1722246300.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❄️test|test|table'
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❄️test|test|table'
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. Will be deleted in the upcoming versions. Use at your own risk.
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
- > **Deprecation** Experimental resource. Will be deleted in the upcoming versions. Use at your own risk. <deprecation>
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. Will be deleted in the upcoming versions. Use at your own risk.
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
- > **Deprecation** Experimental resource. Will be deleted in the upcoming versions. Use at your own risk. <deprecation>
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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_snowflake
3
- Version: 0.57.0a1721977458
3
+ Version: 0.57.0a1722246300
4
4
  Summary: A Pulumi package for creating and managing snowflake cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,22 +1,23 @@
1
- pulumi_snowflake/__init__.py,sha256=YVBXMrwSj4gqfVBn9FXNYVm3bos9N4EihGMQPXniakA,17422
2
- pulumi_snowflake/_inputs.py,sha256=4TLGqFB45q4EWhzWnrdWXWP0ty98ZKQg4ue7xF8XcxY,455730
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=pfiC3MUb1MydKfVkWAJlFBRbP69dHttnoqBO58t1rIQ,41148
9
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py,sha256=qSG1b-D1ON4JFIgWm7EfqdA5VtBL4AUO-UTR4aQDCxM,37904
10
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py,sha256=oaYuEvFPFOgqd_ljRHTeJwhd7gE9Qq84FEEydmIaPZk,38672
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=PjDSeIyNVF8JglVGbaSL6ibTE-f-JeebgGEMjWGI6is,77990
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=QJ7JbaGHnQ99LgjHHJ_t5PwVwz-4E00TngFvKD15BgE,64921
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
@@ -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=QFQLzEvCNuFWh7ZXdfh5Qk_1NF34Fmq322_ci5MG1kY,6251
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=csmM2aUsONasQtcI_63lwUurXmWtzOzS2bGLN5jk1pk,3422
49
+ pulumi_snowflake/get_roles.py,sha256=KqVrYYO78IOiBWwN0AD4nB_tRG148MSk4lfiUk1xHGQ,5279
48
50
  pulumi_snowflake/get_row_access_policies.py,sha256=U6dOdDDR5IN60wvnJmZ2vNr7JE6HrHzJ5Js9WHCBncs,4628
49
- pulumi_snowflake/get_schemas.py,sha256=_I9Z61kOwMrpj8ubDVuVTaWZhcWutdd1e-73WQs43d8,3348
51
+ pulumi_snowflake/get_schemas.py,sha256=yJikfoEkxSpWPVsRmmJFnhwlBmZyVmwwGSllVsp3bTY,9942
50
52
  pulumi_snowflake/get_security_integrations.py,sha256=n-n8vPw4xGAX2fMOt3DT-CCVG6BUM0mR2iTSPSOuDqc,6563
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=s9bF0f9OI3hpRRWuZBY2zDQXYz2I8bsJ29cSa3gAnUg,8615
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
@@ -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=sfgdw87fJV_0f6uylPbv7JpOySSeMRuxv_iVKt964pY,20849
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=BV9ZEOxvo1-BFquxzMXRPWyQZwcD7HAiDb_QtGvw_eg,56986
81
- pulumi_snowflake/oauth_integration_for_partner_applications.py,sha256=zulCMCO6D3AkLWDKIKmwnqxBkKSDQCzaYFyCq4hn97U,34452
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=fiiKXgzOAjeefn2z4wYyN3bx4QMszImDDjkisSURGAc,537375
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=LkiLjC1mW9I-02_mXu3P8SyB3eknbx6oH64NXJzhA2Y,86
91
+ pulumi_snowflake/pulumi-plugin.json,sha256=kvo_1-0YzT5OvTXalBcEeWRf0wRbRIzXwB7kMJiqFMo,86
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=8Ew60WGFMrEYmp_kLiYZI0LaBZkrivzLVSO_5y2-Ra8,9590
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=Wa3QQ97xRey3AxOYKPo26q6izzhthvdFbQwf_Dtligk,71637
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=hmo5p3Rb4aSvKIpw-t3nUxRLKHuWH0mlrv0brbRzEKg,23220
96
- pulumi_snowflake/scim_integration.py,sha256=cduJ7hDDxUpA633N8VgZ80dkxUHNJZVuB9lUT5yJfdM,26328
97
- pulumi_snowflake/secondary_database.py,sha256=2lrpF_VUp4RMzuPLCqKBGG1iBJlJgbetKV3Nio_Tggk,73498
98
+ pulumi_snowflake/schema.py,sha256=5qPA9qsJQpJfpwbxC9QeGjNcauqrO6SEfuR3au1mPZc,89571
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=VuLCtSyjDD3376FJGn2fzPH1v3F4_RieQNJkkKmKMmo,55781
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/table.py,sha256=PnNRiEg6rf-uGyPj8ZpnDRx8C4XO0zYMnvnD636rmt0,36328
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=7av_dn6pMXXtu7-A9JXN0o5s-HfwEaLv2GM5x0qAv9k,35742
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=QBBaRMMrhIj74Gzvt-J6bJg-6r6qZooOBckGKmSuz0E,13478
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.0a1721977458.dist-info/METADATA,sha256=nNr3IObwFBYbncaE1s5DrgKOOYflxrT9cVRLfdRINIU,4981
123
- pulumi_snowflake-0.57.0a1721977458.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
124
- pulumi_snowflake-0.57.0a1721977458.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
125
- pulumi_snowflake-0.57.0a1721977458.dist-info/RECORD,,
126
+ pulumi_snowflake-0.57.0a1722246300.dist-info/METADATA,sha256=oBW7J2dfW23A_gtZZ2-1wXfjvmUWmtqRcw8WaLgHUtM,4981
127
+ pulumi_snowflake-0.57.0a1722246300.dist-info/WHEEL,sha256=Rp8gFpivVLXx-k3U95ozHnQw8yDcPxmhOpn_Gx8d5nc,91
128
+ pulumi_snowflake-0.57.0a1722246300.dist-info/top_level.txt,sha256=g3Beva1lYynlCe8hPZIQgjAlBgsI_1k3yHm8t4KhUN4,17
129
+ pulumi_snowflake-0.57.0a1722246300.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.1.0)
2
+ Generator: setuptools (72.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5