pulumi-snowflake 0.60.0a1728636583__py3-none-any.whl → 0.60.0a1728941570__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 +36 -0
- pulumi_snowflake/_inputs.py +16515 -4095
- pulumi_snowflake/legacy_service_user.py +3666 -0
- pulumi_snowflake/masking_policy.py +4 -4
- pulumi_snowflake/outputs.py +10643 -2668
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/row_access_policy.py +4 -4
- pulumi_snowflake/service_user.py +3585 -0
- pulumi_snowflake/stage.py +7 -7
- pulumi_snowflake/stream_on_external_table.py +597 -0
- pulumi_snowflake/stream_on_table.py +631 -0
- pulumi_snowflake/user.py +2 -2
- {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.60.0a1728941570.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.60.0a1728941570.dist-info}/RECORD +16 -12
- {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.60.0a1728941570.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-0.60.0a1728636583.dist-info → pulumi_snowflake-0.60.0a1728941570.dist-info}/top_level.txt +0 -0
pulumi_snowflake/__init__.py
CHANGED
|
@@ -76,6 +76,7 @@ from .grant_ownership import *
|
|
|
76
76
|
from .grant_privileges_to_account_role import *
|
|
77
77
|
from .grant_privileges_to_database_role import *
|
|
78
78
|
from .grant_privileges_to_share import *
|
|
79
|
+
from .legacy_service_user import *
|
|
79
80
|
from .managed_account import *
|
|
80
81
|
from .masking_policy import *
|
|
81
82
|
from .materialized_view import *
|
|
@@ -100,12 +101,15 @@ from .schema import *
|
|
|
100
101
|
from .scim_integration import *
|
|
101
102
|
from .secondary_database import *
|
|
102
103
|
from .sequence import *
|
|
104
|
+
from .service_user import *
|
|
103
105
|
from .session_parameter import *
|
|
104
106
|
from .share import *
|
|
105
107
|
from .shared_database import *
|
|
106
108
|
from .stage import *
|
|
107
109
|
from .storage_integration import *
|
|
108
110
|
from .stream import *
|
|
111
|
+
from .stream_on_external_table import *
|
|
112
|
+
from .stream_on_table import *
|
|
109
113
|
from .streamlit import *
|
|
110
114
|
from .table import *
|
|
111
115
|
from .table_column_masking_policy_application import *
|
|
@@ -357,6 +361,14 @@ _utilities.register(
|
|
|
357
361
|
"snowflake:index/grantPrivilegesToShare:GrantPrivilegesToShare": "GrantPrivilegesToShare"
|
|
358
362
|
}
|
|
359
363
|
},
|
|
364
|
+
{
|
|
365
|
+
"pkg": "snowflake",
|
|
366
|
+
"mod": "index/legacyServiceUser",
|
|
367
|
+
"fqn": "pulumi_snowflake",
|
|
368
|
+
"classes": {
|
|
369
|
+
"snowflake:index/legacyServiceUser:LegacyServiceUser": "LegacyServiceUser"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
360
372
|
{
|
|
361
373
|
"pkg": "snowflake",
|
|
362
374
|
"mod": "index/managedAccount",
|
|
@@ -541,6 +553,14 @@ _utilities.register(
|
|
|
541
553
|
"snowflake:index/sequence:Sequence": "Sequence"
|
|
542
554
|
}
|
|
543
555
|
},
|
|
556
|
+
{
|
|
557
|
+
"pkg": "snowflake",
|
|
558
|
+
"mod": "index/serviceUser",
|
|
559
|
+
"fqn": "pulumi_snowflake",
|
|
560
|
+
"classes": {
|
|
561
|
+
"snowflake:index/serviceUser:ServiceUser": "ServiceUser"
|
|
562
|
+
}
|
|
563
|
+
},
|
|
544
564
|
{
|
|
545
565
|
"pkg": "snowflake",
|
|
546
566
|
"mod": "index/sessionParameter",
|
|
@@ -589,6 +609,22 @@ _utilities.register(
|
|
|
589
609
|
"snowflake:index/stream:Stream": "Stream"
|
|
590
610
|
}
|
|
591
611
|
},
|
|
612
|
+
{
|
|
613
|
+
"pkg": "snowflake",
|
|
614
|
+
"mod": "index/streamOnExternalTable",
|
|
615
|
+
"fqn": "pulumi_snowflake",
|
|
616
|
+
"classes": {
|
|
617
|
+
"snowflake:index/streamOnExternalTable:StreamOnExternalTable": "StreamOnExternalTable"
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"pkg": "snowflake",
|
|
622
|
+
"mod": "index/streamOnTable",
|
|
623
|
+
"fqn": "pulumi_snowflake",
|
|
624
|
+
"classes": {
|
|
625
|
+
"snowflake:index/streamOnTable:StreamOnTable": "StreamOnTable"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
592
628
|
{
|
|
593
629
|
"pkg": "snowflake",
|
|
594
630
|
"mod": "index/streamlit",
|