pulumi-snowflake 2.4.0a1754462842__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.0a1754462842.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/METADATA +1 -1
- {pulumi_snowflake-2.4.0a1754462842.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/RECORD +13 -12
- {pulumi_snowflake-2.4.0a1754462842.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-2.4.0a1754462842.dist-info → pulumi_snowflake-2.4.0a1754624939.dist-info}/top_level.txt +0 -0
pulumi_snowflake/__init__.py
CHANGED
|
@@ -98,6 +98,7 @@ from .grant_privileges_to_share import *
|
|
|
98
98
|
from .image_repository import *
|
|
99
99
|
from .job_service import *
|
|
100
100
|
from .legacy_service_user import *
|
|
101
|
+
from .listing import *
|
|
101
102
|
from .managed_account import *
|
|
102
103
|
from .masking_policy import *
|
|
103
104
|
from .materialized_view import *
|
|
@@ -502,6 +503,14 @@ _utilities.register(
|
|
|
502
503
|
"snowflake:index/legacyServiceUser:LegacyServiceUser": "LegacyServiceUser"
|
|
503
504
|
}
|
|
504
505
|
},
|
|
506
|
+
{
|
|
507
|
+
"pkg": "snowflake",
|
|
508
|
+
"mod": "index/listing",
|
|
509
|
+
"fqn": "pulumi_snowflake",
|
|
510
|
+
"classes": {
|
|
511
|
+
"snowflake:index/listing:Listing": "Listing"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
505
514
|
{
|
|
506
515
|
"pkg": "snowflake",
|
|
507
516
|
"mod": "index/managedAccount",
|