pulumi-snowflake 2.3.0a1753398370__py3-none-any.whl → 2.4.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.
- pulumi_snowflake/__init__.py +28 -0
- pulumi_snowflake/_inputs.py +2164 -214
- pulumi_snowflake/config/__init__.pyi +3 -2
- pulumi_snowflake/config/vars.py +3 -2
- pulumi_snowflake/current_account.py +16 -16
- pulumi_snowflake/current_organization_account.py +5863 -0
- pulumi_snowflake/get_user_programmatic_access_tokens.py +113 -0
- pulumi_snowflake/listing.py +440 -0
- pulumi_snowflake/outputs.py +1476 -0
- pulumi_snowflake/provider.py +12 -8
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/storage_integration.py +51 -2
- pulumi_snowflake/user_programmatic_access_token.py +598 -0
- {pulumi_snowflake-2.3.0a1753398370.dist-info → pulumi_snowflake-2.4.0.dist-info}/METADATA +1 -1
- {pulumi_snowflake-2.3.0a1753398370.dist-info → pulumi_snowflake-2.4.0.dist-info}/RECORD +17 -13
- {pulumi_snowflake-2.3.0a1753398370.dist-info → pulumi_snowflake-2.4.0.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-2.3.0a1753398370.dist-info → pulumi_snowflake-2.4.0.dist-info}/top_level.txt +0 -0
pulumi_snowflake/__init__.py
CHANGED
|
@@ -20,6 +20,7 @@ from .authentication_policy import *
|
|
|
20
20
|
from .compute_pool import *
|
|
21
21
|
from .cortex_search_service import *
|
|
22
22
|
from .current_account import *
|
|
23
|
+
from .current_organization_account import *
|
|
23
24
|
from .database import *
|
|
24
25
|
from .database_role import *
|
|
25
26
|
from .dynamic_table import *
|
|
@@ -82,6 +83,7 @@ from .get_system_get_snowflake_platform_info import *
|
|
|
82
83
|
from .get_tables import *
|
|
83
84
|
from .get_tags import *
|
|
84
85
|
from .get_tasks import *
|
|
86
|
+
from .get_user_programmatic_access_tokens import *
|
|
85
87
|
from .get_users import *
|
|
86
88
|
from .get_views import *
|
|
87
89
|
from .get_warehouses import *
|
|
@@ -96,6 +98,7 @@ from .grant_privileges_to_share import *
|
|
|
96
98
|
from .image_repository import *
|
|
97
99
|
from .job_service import *
|
|
98
100
|
from .legacy_service_user import *
|
|
101
|
+
from .listing import *
|
|
99
102
|
from .managed_account import *
|
|
100
103
|
from .masking_policy import *
|
|
101
104
|
from .materialized_view import *
|
|
@@ -147,6 +150,7 @@ from .task import *
|
|
|
147
150
|
from .user import *
|
|
148
151
|
from .user_authentication_policy_attachment import *
|
|
149
152
|
from .user_password_policy_attachment import *
|
|
153
|
+
from .user_programmatic_access_token import *
|
|
150
154
|
from .user_public_keys import *
|
|
151
155
|
from .view import *
|
|
152
156
|
from .warehouse import *
|
|
@@ -275,6 +279,14 @@ _utilities.register(
|
|
|
275
279
|
"snowflake:index/currentAccount:CurrentAccount": "CurrentAccount"
|
|
276
280
|
}
|
|
277
281
|
},
|
|
282
|
+
{
|
|
283
|
+
"pkg": "snowflake",
|
|
284
|
+
"mod": "index/currentOrganizationAccount",
|
|
285
|
+
"fqn": "pulumi_snowflake",
|
|
286
|
+
"classes": {
|
|
287
|
+
"snowflake:index/currentOrganizationAccount:CurrentOrganizationAccount": "CurrentOrganizationAccount"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
278
290
|
{
|
|
279
291
|
"pkg": "snowflake",
|
|
280
292
|
"mod": "index/database",
|
|
@@ -491,6 +503,14 @@ _utilities.register(
|
|
|
491
503
|
"snowflake:index/legacyServiceUser:LegacyServiceUser": "LegacyServiceUser"
|
|
492
504
|
}
|
|
493
505
|
},
|
|
506
|
+
{
|
|
507
|
+
"pkg": "snowflake",
|
|
508
|
+
"mod": "index/listing",
|
|
509
|
+
"fqn": "pulumi_snowflake",
|
|
510
|
+
"classes": {
|
|
511
|
+
"snowflake:index/listing:Listing": "Listing"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
494
514
|
{
|
|
495
515
|
"pkg": "snowflake",
|
|
496
516
|
"mod": "index/managedAccount",
|
|
@@ -891,6 +911,14 @@ _utilities.register(
|
|
|
891
911
|
"snowflake:index/userPasswordPolicyAttachment:UserPasswordPolicyAttachment": "UserPasswordPolicyAttachment"
|
|
892
912
|
}
|
|
893
913
|
},
|
|
914
|
+
{
|
|
915
|
+
"pkg": "snowflake",
|
|
916
|
+
"mod": "index/userProgrammaticAccessToken",
|
|
917
|
+
"fqn": "pulumi_snowflake",
|
|
918
|
+
"classes": {
|
|
919
|
+
"snowflake:index/userProgrammaticAccessToken:UserProgrammaticAccessToken": "UserProgrammaticAccessToken"
|
|
920
|
+
}
|
|
921
|
+
},
|
|
894
922
|
{
|
|
895
923
|
"pkg": "snowflake",
|
|
896
924
|
"mod": "index/userPublicKeys",
|