pulumi-snowflake 0.60.0a1728636583__py3-none-any.whl → 0.61.0__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 (43) hide show
  1. pulumi_snowflake/__init__.py +146 -0
  2. pulumi_snowflake/_inputs.py +20764 -4999
  3. pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
  4. pulumi_snowflake/authentication_policy.py +622 -0
  5. pulumi_snowflake/config/__init__.pyi +86 -36
  6. pulumi_snowflake/config/vars.py +104 -40
  7. pulumi_snowflake/external_volume.py +378 -0
  8. pulumi_snowflake/get_connections.py +147 -0
  9. pulumi_snowflake/get_grants.py +4 -0
  10. pulumi_snowflake/get_secrets.py +204 -0
  11. pulumi_snowflake/get_streams.py +105 -56
  12. pulumi_snowflake/grant_account_role.py +2 -2
  13. pulumi_snowflake/grant_application_role.py +2 -2
  14. pulumi_snowflake/grant_database_role.py +2 -2
  15. pulumi_snowflake/grant_ownership.py +14 -14
  16. pulumi_snowflake/grant_privileges_to_account_role.py +8 -8
  17. pulumi_snowflake/grant_privileges_to_database_role.py +8 -8
  18. pulumi_snowflake/grant_privileges_to_share.py +2 -2
  19. pulumi_snowflake/legacy_service_user.py +3670 -0
  20. pulumi_snowflake/masking_policy.py +4 -4
  21. pulumi_snowflake/outputs.py +14295 -3265
  22. pulumi_snowflake/primary_connection.py +330 -0
  23. pulumi_snowflake/provider.py +433 -146
  24. pulumi_snowflake/pulumi-plugin.json +1 -1
  25. pulumi_snowflake/row_access_policy.py +4 -4
  26. pulumi_snowflake/secondary_connection.py +339 -0
  27. pulumi_snowflake/secret_with_authorization_code_grant.py +548 -0
  28. pulumi_snowflake/secret_with_basic_authentication.py +500 -0
  29. pulumi_snowflake/secret_with_client_credentials.py +511 -0
  30. pulumi_snowflake/secret_with_generic_string.py +452 -0
  31. pulumi_snowflake/service_user.py +3585 -0
  32. pulumi_snowflake/stage.py +7 -7
  33. pulumi_snowflake/stream_on_directory_table.py +530 -0
  34. pulumi_snowflake/stream_on_external_table.py +645 -0
  35. pulumi_snowflake/stream_on_table.py +679 -0
  36. pulumi_snowflake/stream_on_view.py +679 -0
  37. pulumi_snowflake/tag_association.py +7 -7
  38. pulumi_snowflake/user.py +6 -2
  39. pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
  40. {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.61.0.dist-info}/METADATA +1 -1
  41. {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.61.0.dist-info}/RECORD +43 -25
  42. {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.61.0.dist-info}/WHEEL +1 -1
  43. {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.61.0.dist-info}/top_level.txt +0 -0
@@ -6,6 +6,7 @@ from . import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
8
  from .account import *
9
+ from .account_authentication_policy_attachment import *
9
10
  from .account_parameter import *
10
11
  from .account_password_policy_attachment import *
11
12
  from .account_role import *
@@ -14,6 +15,7 @@ from .api_authentication_integration_with_authorization_code_grant import *
14
15
  from .api_authentication_integration_with_client_credentials import *
15
16
  from .api_authentication_integration_with_jwt_bearer import *
16
17
  from .api_integration import *
18
+ from .authentication_policy import *
17
19
  from .cortex_search_service import *
18
20
  from .database import *
19
21
  from .database_old import *
@@ -23,11 +25,13 @@ from .email_notification_integration import *
23
25
  from .external_function import *
24
26
  from .external_oauth_integration import *
25
27
  from .external_table import *
28
+ from .external_volume import *
26
29
  from .failover_group import *
27
30
  from .file_format import *
28
31
  from .function import *
29
32
  from .get_accounts import *
30
33
  from .get_alerts import *
34
+ from .get_connections import *
31
35
  from .get_cortex_search_services import *
32
36
  from .get_current_account import *
33
37
  from .get_current_role import *
@@ -53,6 +57,7 @@ from .get_role import *
53
57
  from .get_roles import *
54
58
  from .get_row_access_policies import *
55
59
  from .get_schemas import *
60
+ from .get_secrets import *
56
61
  from .get_security_integrations import *
57
62
  from .get_sequences import *
58
63
  from .get_shares import *
@@ -76,6 +81,7 @@ from .grant_ownership import *
76
81
  from .grant_privileges_to_account_role import *
77
82
  from .grant_privileges_to_database_role import *
78
83
  from .grant_privileges_to_share import *
84
+ from .legacy_service_user import *
79
85
  from .managed_account import *
80
86
  from .masking_policy import *
81
87
  from .materialized_view import *
@@ -89,6 +95,7 @@ from .oauth_integration_for_partner_applications import *
89
95
  from .object_parameter import *
90
96
  from .password_policy import *
91
97
  from .pipe import *
98
+ from .primary_connection import *
92
99
  from .procedure import *
93
100
  from .provider import *
94
101
  from .resource_monitor import *
@@ -98,14 +105,24 @@ from .saml2_integration import *
98
105
  from .saml_integration import *
99
106
  from .schema import *
100
107
  from .scim_integration import *
108
+ from .secondary_connection import *
101
109
  from .secondary_database import *
110
+ from .secret_with_authorization_code_grant import *
111
+ from .secret_with_basic_authentication import *
112
+ from .secret_with_client_credentials import *
113
+ from .secret_with_generic_string import *
102
114
  from .sequence import *
115
+ from .service_user import *
103
116
  from .session_parameter import *
104
117
  from .share import *
105
118
  from .shared_database import *
106
119
  from .stage import *
107
120
  from .storage_integration import *
108
121
  from .stream import *
122
+ from .stream_on_directory_table import *
123
+ from .stream_on_external_table import *
124
+ from .stream_on_table import *
125
+ from .stream_on_view import *
109
126
  from .streamlit import *
110
127
  from .table import *
111
128
  from .table_column_masking_policy_application import *
@@ -116,6 +133,7 @@ from .tag_masking_policy_association import *
116
133
  from .task import *
117
134
  from .unsafe_execute import *
118
135
  from .user import *
136
+ from .user_authentication_policy_attachment import *
119
137
  from .user_password_policy_attachment import *
120
138
  from .user_public_keys import *
121
139
  from .view import *
@@ -141,6 +159,14 @@ _utilities.register(
141
159
  "snowflake:index/account:Account": "Account"
142
160
  }
143
161
  },
162
+ {
163
+ "pkg": "snowflake",
164
+ "mod": "index/accountAuthenticationPolicyAttachment",
165
+ "fqn": "pulumi_snowflake",
166
+ "classes": {
167
+ "snowflake:index/accountAuthenticationPolicyAttachment:AccountAuthenticationPolicyAttachment": "AccountAuthenticationPolicyAttachment"
168
+ }
169
+ },
144
170
  {
145
171
  "pkg": "snowflake",
146
172
  "mod": "index/accountParameter",
@@ -205,6 +231,14 @@ _utilities.register(
205
231
  "snowflake:index/apiIntegration:ApiIntegration": "ApiIntegration"
206
232
  }
207
233
  },
234
+ {
235
+ "pkg": "snowflake",
236
+ "mod": "index/authenticationPolicy",
237
+ "fqn": "pulumi_snowflake",
238
+ "classes": {
239
+ "snowflake:index/authenticationPolicy:AuthenticationPolicy": "AuthenticationPolicy"
240
+ }
241
+ },
208
242
  {
209
243
  "pkg": "snowflake",
210
244
  "mod": "index/cortexSearchService",
@@ -277,6 +311,14 @@ _utilities.register(
277
311
  "snowflake:index/externalTable:ExternalTable": "ExternalTable"
278
312
  }
279
313
  },
314
+ {
315
+ "pkg": "snowflake",
316
+ "mod": "index/externalVolume",
317
+ "fqn": "pulumi_snowflake",
318
+ "classes": {
319
+ "snowflake:index/externalVolume:ExternalVolume": "ExternalVolume"
320
+ }
321
+ },
280
322
  {
281
323
  "pkg": "snowflake",
282
324
  "mod": "index/failoverGroup",
@@ -357,6 +399,14 @@ _utilities.register(
357
399
  "snowflake:index/grantPrivilegesToShare:GrantPrivilegesToShare": "GrantPrivilegesToShare"
358
400
  }
359
401
  },
402
+ {
403
+ "pkg": "snowflake",
404
+ "mod": "index/legacyServiceUser",
405
+ "fqn": "pulumi_snowflake",
406
+ "classes": {
407
+ "snowflake:index/legacyServiceUser:LegacyServiceUser": "LegacyServiceUser"
408
+ }
409
+ },
360
410
  {
361
411
  "pkg": "snowflake",
362
412
  "mod": "index/managedAccount",
@@ -461,6 +511,14 @@ _utilities.register(
461
511
  "snowflake:index/pipe:Pipe": "Pipe"
462
512
  }
463
513
  },
514
+ {
515
+ "pkg": "snowflake",
516
+ "mod": "index/primaryConnection",
517
+ "fqn": "pulumi_snowflake",
518
+ "classes": {
519
+ "snowflake:index/primaryConnection:PrimaryConnection": "PrimaryConnection"
520
+ }
521
+ },
464
522
  {
465
523
  "pkg": "snowflake",
466
524
  "mod": "index/procedure",
@@ -525,6 +583,14 @@ _utilities.register(
525
583
  "snowflake:index/scimIntegration:ScimIntegration": "ScimIntegration"
526
584
  }
527
585
  },
586
+ {
587
+ "pkg": "snowflake",
588
+ "mod": "index/secondaryConnection",
589
+ "fqn": "pulumi_snowflake",
590
+ "classes": {
591
+ "snowflake:index/secondaryConnection:SecondaryConnection": "SecondaryConnection"
592
+ }
593
+ },
528
594
  {
529
595
  "pkg": "snowflake",
530
596
  "mod": "index/secondaryDatabase",
@@ -533,6 +599,38 @@ _utilities.register(
533
599
  "snowflake:index/secondaryDatabase:SecondaryDatabase": "SecondaryDatabase"
534
600
  }
535
601
  },
602
+ {
603
+ "pkg": "snowflake",
604
+ "mod": "index/secretWithAuthorizationCodeGrant",
605
+ "fqn": "pulumi_snowflake",
606
+ "classes": {
607
+ "snowflake:index/secretWithAuthorizationCodeGrant:SecretWithAuthorizationCodeGrant": "SecretWithAuthorizationCodeGrant"
608
+ }
609
+ },
610
+ {
611
+ "pkg": "snowflake",
612
+ "mod": "index/secretWithBasicAuthentication",
613
+ "fqn": "pulumi_snowflake",
614
+ "classes": {
615
+ "snowflake:index/secretWithBasicAuthentication:SecretWithBasicAuthentication": "SecretWithBasicAuthentication"
616
+ }
617
+ },
618
+ {
619
+ "pkg": "snowflake",
620
+ "mod": "index/secretWithClientCredentials",
621
+ "fqn": "pulumi_snowflake",
622
+ "classes": {
623
+ "snowflake:index/secretWithClientCredentials:SecretWithClientCredentials": "SecretWithClientCredentials"
624
+ }
625
+ },
626
+ {
627
+ "pkg": "snowflake",
628
+ "mod": "index/secretWithGenericString",
629
+ "fqn": "pulumi_snowflake",
630
+ "classes": {
631
+ "snowflake:index/secretWithGenericString:SecretWithGenericString": "SecretWithGenericString"
632
+ }
633
+ },
536
634
  {
537
635
  "pkg": "snowflake",
538
636
  "mod": "index/sequence",
@@ -541,6 +639,14 @@ _utilities.register(
541
639
  "snowflake:index/sequence:Sequence": "Sequence"
542
640
  }
543
641
  },
642
+ {
643
+ "pkg": "snowflake",
644
+ "mod": "index/serviceUser",
645
+ "fqn": "pulumi_snowflake",
646
+ "classes": {
647
+ "snowflake:index/serviceUser:ServiceUser": "ServiceUser"
648
+ }
649
+ },
544
650
  {
545
651
  "pkg": "snowflake",
546
652
  "mod": "index/sessionParameter",
@@ -589,6 +695,38 @@ _utilities.register(
589
695
  "snowflake:index/stream:Stream": "Stream"
590
696
  }
591
697
  },
698
+ {
699
+ "pkg": "snowflake",
700
+ "mod": "index/streamOnDirectoryTable",
701
+ "fqn": "pulumi_snowflake",
702
+ "classes": {
703
+ "snowflake:index/streamOnDirectoryTable:StreamOnDirectoryTable": "StreamOnDirectoryTable"
704
+ }
705
+ },
706
+ {
707
+ "pkg": "snowflake",
708
+ "mod": "index/streamOnExternalTable",
709
+ "fqn": "pulumi_snowflake",
710
+ "classes": {
711
+ "snowflake:index/streamOnExternalTable:StreamOnExternalTable": "StreamOnExternalTable"
712
+ }
713
+ },
714
+ {
715
+ "pkg": "snowflake",
716
+ "mod": "index/streamOnTable",
717
+ "fqn": "pulumi_snowflake",
718
+ "classes": {
719
+ "snowflake:index/streamOnTable:StreamOnTable": "StreamOnTable"
720
+ }
721
+ },
722
+ {
723
+ "pkg": "snowflake",
724
+ "mod": "index/streamOnView",
725
+ "fqn": "pulumi_snowflake",
726
+ "classes": {
727
+ "snowflake:index/streamOnView:StreamOnView": "StreamOnView"
728
+ }
729
+ },
592
730
  {
593
731
  "pkg": "snowflake",
594
732
  "mod": "index/streamlit",
@@ -669,6 +807,14 @@ _utilities.register(
669
807
  "snowflake:index/user:User": "User"
670
808
  }
671
809
  },
810
+ {
811
+ "pkg": "snowflake",
812
+ "mod": "index/userAuthenticationPolicyAttachment",
813
+ "fqn": "pulumi_snowflake",
814
+ "classes": {
815
+ "snowflake:index/userAuthenticationPolicyAttachment:UserAuthenticationPolicyAttachment": "UserAuthenticationPolicyAttachment"
816
+ }
817
+ },
672
818
  {
673
819
  "pkg": "snowflake",
674
820
  "mod": "index/userPasswordPolicyAttachment",