pulumi-snowflake 0.50.3a1710160126__py3-none-any.whl → 1.2.0a1736835738__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 +224 -172
- pulumi_snowflake/_inputs.py +52857 -1665
- pulumi_snowflake/_utilities.py +41 -5
- pulumi_snowflake/account.py +188 -218
- pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
- pulumi_snowflake/account_parameter.py +21 -48
- pulumi_snowflake/account_password_policy_attachment.py +7 -32
- pulumi_snowflake/account_role.py +250 -0
- pulumi_snowflake/alert.py +38 -47
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +704 -0
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +657 -0
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +692 -0
- pulumi_snowflake/api_integration.py +33 -52
- pulumi_snowflake/authentication_policy.py +622 -0
- pulumi_snowflake/config/__init__.pyi +76 -99
- pulumi_snowflake/config/outputs.py +5 -0
- pulumi_snowflake/config/vars.py +93 -124
- pulumi_snowflake/cortex_search_service.py +596 -0
- pulumi_snowflake/database.py +819 -213
- pulumi_snowflake/database_role.py +81 -44
- pulumi_snowflake/dynamic_table.py +42 -49
- pulumi_snowflake/email_notification_integration.py +33 -28
- pulumi_snowflake/{unsafe_execute.py → execute.py} +36 -39
- pulumi_snowflake/external_function.py +54 -75
- pulumi_snowflake/external_oauth_integration.py +593 -542
- pulumi_snowflake/external_table.py +67 -90
- pulumi_snowflake/external_volume.py +382 -0
- pulumi_snowflake/failover_group.py +57 -98
- pulumi_snowflake/file_format.py +33 -28
- pulumi_snowflake/function_java.py +1211 -0
- pulumi_snowflake/function_javascript.py +882 -0
- pulumi_snowflake/function_python.py +1212 -0
- pulumi_snowflake/function_scala.py +1212 -0
- pulumi_snowflake/function_sql.py +835 -0
- pulumi_snowflake/get_account_roles.py +129 -0
- pulumi_snowflake/get_accounts.py +53 -22
- pulumi_snowflake/get_alerts.py +22 -9
- pulumi_snowflake/get_connections.py +109 -0
- pulumi_snowflake/get_cortex_search_services.py +216 -0
- pulumi_snowflake/get_current_account.py +24 -13
- pulumi_snowflake/get_current_role.py +14 -7
- pulumi_snowflake/get_database.py +25 -9
- pulumi_snowflake/get_database_role.py +162 -0
- pulumi_snowflake/get_database_roles.py +79 -47
- pulumi_snowflake/get_databases.py +91 -73
- pulumi_snowflake/get_dynamic_tables.py +36 -19
- pulumi_snowflake/get_external_functions.py +28 -9
- pulumi_snowflake/get_external_tables.py +28 -9
- pulumi_snowflake/get_failover_groups.py +18 -7
- pulumi_snowflake/get_file_formats.py +28 -9
- pulumi_snowflake/get_functions.py +28 -9
- pulumi_snowflake/get_grants.py +207 -84
- pulumi_snowflake/get_masking_policies.py +91 -51
- pulumi_snowflake/get_materialized_views.py +28 -9
- pulumi_snowflake/get_network_policies.py +129 -0
- pulumi_snowflake/get_parameters.py +38 -15
- pulumi_snowflake/get_pipes.py +28 -9
- pulumi_snowflake/get_procedures.py +28 -9
- pulumi_snowflake/get_resource_monitors.py +37 -24
- pulumi_snowflake/get_row_access_policies.py +91 -51
- pulumi_snowflake/get_schemas.py +145 -41
- pulumi_snowflake/get_secrets.py +200 -0
- pulumi_snowflake/get_security_integrations.py +129 -0
- pulumi_snowflake/get_sequences.py +28 -9
- pulumi_snowflake/get_shares.py +18 -9
- pulumi_snowflake/get_stages.py +28 -9
- pulumi_snowflake/get_storage_integrations.py +16 -9
- pulumi_snowflake/get_streamlits.py +170 -0
- pulumi_snowflake/get_streams.py +114 -54
- pulumi_snowflake/get_system_generate_scim_access_token.py +18 -9
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +32 -7
- pulumi_snowflake/get_system_get_private_link_config.py +120 -5
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +15 -7
- pulumi_snowflake/get_tables.py +28 -9
- pulumi_snowflake/get_tags.py +130 -0
- pulumi_snowflake/get_tasks.py +134 -54
- pulumi_snowflake/get_users.py +116 -44
- pulumi_snowflake/get_views.py +114 -54
- pulumi_snowflake/get_warehouses.py +79 -26
- pulumi_snowflake/grant_account_role.py +28 -75
- pulumi_snowflake/grant_application_role.py +257 -0
- pulumi_snowflake/grant_database_role.py +35 -94
- pulumi_snowflake/grant_ownership.py +382 -0
- pulumi_snowflake/grant_privileges_to_account_role.py +42 -78
- pulumi_snowflake/grant_privileges_to_database_role.py +37 -383
- pulumi_snowflake/grant_privileges_to_share.py +96 -44
- pulumi_snowflake/legacy_service_user.py +3670 -0
- pulumi_snowflake/managed_account.py +40 -11
- pulumi_snowflake/masking_policy.py +213 -310
- pulumi_snowflake/materialized_view.py +62 -71
- pulumi_snowflake/network_policy.py +217 -61
- pulumi_snowflake/network_policy_attachment.py +5 -34
- pulumi_snowflake/network_rule.py +473 -0
- pulumi_snowflake/notification_integration.py +49 -84
- pulumi_snowflake/oauth_integration_for_custom_clients.py +906 -0
- pulumi_snowflake/{oauth_integration.py → oauth_integration_for_partner_applications.py} +191 -192
- pulumi_snowflake/object_parameter.py +10 -101
- pulumi_snowflake/outputs.py +49200 -2928
- pulumi_snowflake/password_policy.py +41 -28
- pulumi_snowflake/pipe.py +33 -4
- pulumi_snowflake/primary_connection.py +330 -0
- pulumi_snowflake/procedure_java.py +1273 -0
- pulumi_snowflake/procedure_javascript.py +895 -0
- pulumi_snowflake/procedure_python.py +1226 -0
- pulumi_snowflake/procedure_scala.py +1273 -0
- pulumi_snowflake/procedure_sql.py +895 -0
- pulumi_snowflake/provider.py +378 -613
- pulumi_snowflake/pulumi-plugin.json +2 -1
- pulumi_snowflake/resource_monitor.py +118 -327
- pulumi_snowflake/row_access_policy.py +200 -149
- pulumi_snowflake/{saml_integration.py → saml2_integration.py} +356 -299
- pulumi_snowflake/schema.py +949 -178
- pulumi_snowflake/scim_integration.py +286 -109
- pulumi_snowflake/secondary_connection.py +339 -0
- pulumi_snowflake/secondary_database.py +1080 -0
- pulumi_snowflake/secret_with_authorization_code_grant.py +548 -0
- pulumi_snowflake/secret_with_basic_authentication.py +500 -0
- pulumi_snowflake/secret_with_client_credentials.py +511 -0
- pulumi_snowflake/secret_with_generic_string.py +452 -0
- pulumi_snowflake/sequence.py +9 -34
- pulumi_snowflake/service_user.py +3585 -0
- pulumi_snowflake/share.py +33 -28
- pulumi_snowflake/shared_database.py +939 -0
- pulumi_snowflake/stage.py +95 -84
- pulumi_snowflake/storage_integration.py +46 -4
- pulumi_snowflake/stream_on_directory_table.py +517 -0
- pulumi_snowflake/stream_on_external_table.py +632 -0
- pulumi_snowflake/stream_on_table.py +666 -0
- pulumi_snowflake/stream_on_view.py +666 -0
- pulumi_snowflake/streamlit.py +671 -0
- pulumi_snowflake/table.py +86 -97
- pulumi_snowflake/table_column_masking_policy_application.py +7 -14
- pulumi_snowflake/table_constraint.py +29 -172
- pulumi_snowflake/tag.py +142 -74
- pulumi_snowflake/tag_association.py +40 -215
- pulumi_snowflake/task.py +3048 -418
- pulumi_snowflake/user.py +3351 -384
- pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
- pulumi_snowflake/user_password_policy_attachment.py +5 -4
- pulumi_snowflake/user_public_keys.py +5 -0
- pulumi_snowflake/view.py +466 -215
- pulumi_snowflake/warehouse.py +184 -168
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/METADATA +7 -6
- pulumi_snowflake-1.2.0a1736835738.dist-info/RECORD +148 -0
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/WHEEL +1 -1
- pulumi_snowflake/account_grant.py +0 -343
- pulumi_snowflake/database_grant.py +0 -495
- pulumi_snowflake/external_table_grant.py +0 -690
- pulumi_snowflake/failover_group_grant.py +0 -388
- pulumi_snowflake/file_format_grant.py +0 -635
- pulumi_snowflake/function.py +0 -872
- pulumi_snowflake/function_grant.py +0 -745
- pulumi_snowflake/get_role.py +0 -121
- pulumi_snowflake/get_roles.py +0 -120
- pulumi_snowflake/grant_privileges_to_role.py +0 -825
- pulumi_snowflake/integration_grant.py +0 -440
- pulumi_snowflake/masking_policy_grant.py +0 -542
- pulumi_snowflake/materialized_view_grant.py +0 -689
- pulumi_snowflake/pipe_grant.py +0 -587
- pulumi_snowflake/procedure.py +0 -887
- pulumi_snowflake/procedure_grant.py +0 -745
- pulumi_snowflake/resource_monitor_grant.py +0 -387
- pulumi_snowflake/role.py +0 -273
- pulumi_snowflake/role_grants.py +0 -352
- pulumi_snowflake/role_ownership_grant.py +0 -338
- pulumi_snowflake/row_access_policy_grant.py +0 -540
- pulumi_snowflake/schema_grant.py +0 -647
- pulumi_snowflake/sequence_grant.py +0 -635
- pulumi_snowflake/session_parameter.py +0 -332
- pulumi_snowflake/stage_grant.py +0 -635
- pulumi_snowflake/stream.py +0 -614
- pulumi_snowflake/stream_grant.py +0 -635
- pulumi_snowflake/table_grant.py +0 -677
- pulumi_snowflake/tag_grant.py +0 -532
- pulumi_snowflake/tag_masking_policy_association.py +0 -210
- pulumi_snowflake/task_grant.py +0 -635
- pulumi_snowflake/user_grant.py +0 -394
- pulumi_snowflake/user_ownership_grant.py +0 -286
- pulumi_snowflake/view_grant.py +0 -705
- pulumi_snowflake/warehouse_grant.py +0 -440
- pulumi_snowflake-0.50.3a1710160126.dist-info/RECORD +0 -136
- {pulumi_snowflake-0.50.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/top_level.txt +0 -0
pulumi_snowflake/__init__.py
CHANGED
|
@@ -6,31 +6,42 @@ from . import _utilities
|
|
|
6
6
|
import typing
|
|
7
7
|
# Export this package's modules as members:
|
|
8
8
|
from .account import *
|
|
9
|
-
from .
|
|
9
|
+
from .account_authentication_policy_attachment import *
|
|
10
10
|
from .account_parameter import *
|
|
11
11
|
from .account_password_policy_attachment import *
|
|
12
|
+
from .account_role import *
|
|
12
13
|
from .alert import *
|
|
14
|
+
from .api_authentication_integration_with_authorization_code_grant import *
|
|
15
|
+
from .api_authentication_integration_with_client_credentials import *
|
|
16
|
+
from .api_authentication_integration_with_jwt_bearer import *
|
|
13
17
|
from .api_integration import *
|
|
18
|
+
from .authentication_policy import *
|
|
19
|
+
from .cortex_search_service import *
|
|
14
20
|
from .database import *
|
|
15
|
-
from .database_grant import *
|
|
16
21
|
from .database_role import *
|
|
17
22
|
from .dynamic_table import *
|
|
18
23
|
from .email_notification_integration import *
|
|
24
|
+
from .execute import *
|
|
19
25
|
from .external_function import *
|
|
20
26
|
from .external_oauth_integration import *
|
|
21
27
|
from .external_table import *
|
|
22
|
-
from .
|
|
28
|
+
from .external_volume import *
|
|
23
29
|
from .failover_group import *
|
|
24
|
-
from .failover_group_grant import *
|
|
25
30
|
from .file_format import *
|
|
26
|
-
from .
|
|
27
|
-
from .
|
|
28
|
-
from .
|
|
31
|
+
from .function_java import *
|
|
32
|
+
from .function_javascript import *
|
|
33
|
+
from .function_python import *
|
|
34
|
+
from .function_scala import *
|
|
35
|
+
from .function_sql import *
|
|
36
|
+
from .get_account_roles import *
|
|
29
37
|
from .get_accounts import *
|
|
30
38
|
from .get_alerts import *
|
|
39
|
+
from .get_connections import *
|
|
40
|
+
from .get_cortex_search_services import *
|
|
31
41
|
from .get_current_account import *
|
|
32
42
|
from .get_current_role import *
|
|
33
43
|
from .get_database import *
|
|
44
|
+
from .get_database_role import *
|
|
34
45
|
from .get_database_roles import *
|
|
35
46
|
from .get_databases import *
|
|
36
47
|
from .get_dynamic_tables import *
|
|
@@ -42,91 +53,92 @@ from .get_functions import *
|
|
|
42
53
|
from .get_grants import *
|
|
43
54
|
from .get_masking_policies import *
|
|
44
55
|
from .get_materialized_views import *
|
|
56
|
+
from .get_network_policies import *
|
|
45
57
|
from .get_parameters import *
|
|
46
58
|
from .get_pipes import *
|
|
47
59
|
from .get_procedures import *
|
|
48
60
|
from .get_resource_monitors import *
|
|
49
|
-
from .get_role import *
|
|
50
|
-
from .get_roles import *
|
|
51
61
|
from .get_row_access_policies import *
|
|
52
62
|
from .get_schemas import *
|
|
63
|
+
from .get_secrets import *
|
|
64
|
+
from .get_security_integrations import *
|
|
53
65
|
from .get_sequences import *
|
|
54
66
|
from .get_shares import *
|
|
55
67
|
from .get_stages import *
|
|
56
68
|
from .get_storage_integrations import *
|
|
69
|
+
from .get_streamlits import *
|
|
57
70
|
from .get_streams import *
|
|
58
71
|
from .get_system_generate_scim_access_token import *
|
|
59
72
|
from .get_system_get_aws_sns_iam_policy import *
|
|
60
73
|
from .get_system_get_private_link_config import *
|
|
61
74
|
from .get_system_get_snowflake_platform_info import *
|
|
62
75
|
from .get_tables import *
|
|
76
|
+
from .get_tags import *
|
|
63
77
|
from .get_tasks import *
|
|
64
78
|
from .get_users import *
|
|
65
79
|
from .get_views import *
|
|
66
80
|
from .get_warehouses import *
|
|
67
81
|
from .grant_account_role import *
|
|
82
|
+
from .grant_application_role import *
|
|
68
83
|
from .grant_database_role import *
|
|
84
|
+
from .grant_ownership import *
|
|
69
85
|
from .grant_privileges_to_account_role import *
|
|
70
86
|
from .grant_privileges_to_database_role import *
|
|
71
|
-
from .grant_privileges_to_role import *
|
|
72
87
|
from .grant_privileges_to_share import *
|
|
73
|
-
from .
|
|
88
|
+
from .legacy_service_user import *
|
|
74
89
|
from .managed_account import *
|
|
75
90
|
from .masking_policy import *
|
|
76
|
-
from .masking_policy_grant import *
|
|
77
91
|
from .materialized_view import *
|
|
78
|
-
from .materialized_view_grant import *
|
|
79
92
|
from .network_policy import *
|
|
80
93
|
from .network_policy_attachment import *
|
|
94
|
+
from .network_rule import *
|
|
81
95
|
from .notification_integration import *
|
|
82
|
-
from .
|
|
96
|
+
from .oauth_integration_for_custom_clients import *
|
|
97
|
+
from .oauth_integration_for_partner_applications import *
|
|
83
98
|
from .object_parameter import *
|
|
84
99
|
from .password_policy import *
|
|
85
100
|
from .pipe import *
|
|
86
|
-
from .
|
|
87
|
-
from .
|
|
88
|
-
from .
|
|
101
|
+
from .primary_connection import *
|
|
102
|
+
from .procedure_java import *
|
|
103
|
+
from .procedure_javascript import *
|
|
104
|
+
from .procedure_python import *
|
|
105
|
+
from .procedure_scala import *
|
|
106
|
+
from .procedure_sql import *
|
|
89
107
|
from .provider import *
|
|
90
108
|
from .resource_monitor import *
|
|
91
|
-
from .resource_monitor_grant import *
|
|
92
|
-
from .role import *
|
|
93
|
-
from .role_grants import *
|
|
94
|
-
from .role_ownership_grant import *
|
|
95
109
|
from .row_access_policy import *
|
|
96
|
-
from .
|
|
97
|
-
from .saml_integration import *
|
|
110
|
+
from .saml2_integration import *
|
|
98
111
|
from .schema import *
|
|
99
|
-
from .schema_grant import *
|
|
100
112
|
from .scim_integration import *
|
|
113
|
+
from .secondary_connection import *
|
|
114
|
+
from .secondary_database import *
|
|
115
|
+
from .secret_with_authorization_code_grant import *
|
|
116
|
+
from .secret_with_basic_authentication import *
|
|
117
|
+
from .secret_with_client_credentials import *
|
|
118
|
+
from .secret_with_generic_string import *
|
|
101
119
|
from .sequence import *
|
|
102
|
-
from .
|
|
103
|
-
from .session_parameter import *
|
|
120
|
+
from .service_user import *
|
|
104
121
|
from .share import *
|
|
122
|
+
from .shared_database import *
|
|
105
123
|
from .stage import *
|
|
106
|
-
from .stage_grant import *
|
|
107
124
|
from .storage_integration import *
|
|
108
|
-
from .
|
|
109
|
-
from .
|
|
125
|
+
from .stream_on_directory_table import *
|
|
126
|
+
from .stream_on_external_table import *
|
|
127
|
+
from .stream_on_table import *
|
|
128
|
+
from .stream_on_view import *
|
|
129
|
+
from .streamlit import *
|
|
110
130
|
from .table import *
|
|
111
131
|
from .table_column_masking_policy_application import *
|
|
112
132
|
from .table_constraint import *
|
|
113
|
-
from .table_grant import *
|
|
114
133
|
from .tag import *
|
|
115
134
|
from .tag_association import *
|
|
116
|
-
from .tag_grant import *
|
|
117
|
-
from .tag_masking_policy_association import *
|
|
118
135
|
from .task import *
|
|
119
|
-
from .task_grant import *
|
|
120
|
-
from .unsafe_execute import *
|
|
121
136
|
from .user import *
|
|
122
|
-
from .
|
|
123
|
-
from .user_ownership_grant import *
|
|
137
|
+
from .user_authentication_policy_attachment import *
|
|
124
138
|
from .user_password_policy_attachment import *
|
|
125
139
|
from .user_public_keys import *
|
|
126
140
|
from .view import *
|
|
127
|
-
from .view_grant import *
|
|
128
141
|
from .warehouse import *
|
|
129
|
-
from .warehouse_grant import *
|
|
130
142
|
from ._inputs import *
|
|
131
143
|
from . import outputs
|
|
132
144
|
|
|
@@ -150,10 +162,10 @@ _utilities.register(
|
|
|
150
162
|
},
|
|
151
163
|
{
|
|
152
164
|
"pkg": "snowflake",
|
|
153
|
-
"mod": "index/
|
|
165
|
+
"mod": "index/accountAuthenticationPolicyAttachment",
|
|
154
166
|
"fqn": "pulumi_snowflake",
|
|
155
167
|
"classes": {
|
|
156
|
-
"snowflake:index/
|
|
168
|
+
"snowflake:index/accountAuthenticationPolicyAttachment:AccountAuthenticationPolicyAttachment": "AccountAuthenticationPolicyAttachment"
|
|
157
169
|
}
|
|
158
170
|
},
|
|
159
171
|
{
|
|
@@ -172,6 +184,14 @@ _utilities.register(
|
|
|
172
184
|
"snowflake:index/accountPasswordPolicyAttachment:AccountPasswordPolicyAttachment": "AccountPasswordPolicyAttachment"
|
|
173
185
|
}
|
|
174
186
|
},
|
|
187
|
+
{
|
|
188
|
+
"pkg": "snowflake",
|
|
189
|
+
"mod": "index/accountRole",
|
|
190
|
+
"fqn": "pulumi_snowflake",
|
|
191
|
+
"classes": {
|
|
192
|
+
"snowflake:index/accountRole:AccountRole": "AccountRole"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
175
195
|
{
|
|
176
196
|
"pkg": "snowflake",
|
|
177
197
|
"mod": "index/alert",
|
|
@@ -180,6 +200,30 @@ _utilities.register(
|
|
|
180
200
|
"snowflake:index/alert:Alert": "Alert"
|
|
181
201
|
}
|
|
182
202
|
},
|
|
203
|
+
{
|
|
204
|
+
"pkg": "snowflake",
|
|
205
|
+
"mod": "index/apiAuthenticationIntegrationWithAuthorizationCodeGrant",
|
|
206
|
+
"fqn": "pulumi_snowflake",
|
|
207
|
+
"classes": {
|
|
208
|
+
"snowflake:index/apiAuthenticationIntegrationWithAuthorizationCodeGrant:ApiAuthenticationIntegrationWithAuthorizationCodeGrant": "ApiAuthenticationIntegrationWithAuthorizationCodeGrant"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"pkg": "snowflake",
|
|
213
|
+
"mod": "index/apiAuthenticationIntegrationWithClientCredentials",
|
|
214
|
+
"fqn": "pulumi_snowflake",
|
|
215
|
+
"classes": {
|
|
216
|
+
"snowflake:index/apiAuthenticationIntegrationWithClientCredentials:ApiAuthenticationIntegrationWithClientCredentials": "ApiAuthenticationIntegrationWithClientCredentials"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"pkg": "snowflake",
|
|
221
|
+
"mod": "index/apiAuthenticationIntegrationWithJwtBearer",
|
|
222
|
+
"fqn": "pulumi_snowflake",
|
|
223
|
+
"classes": {
|
|
224
|
+
"snowflake:index/apiAuthenticationIntegrationWithJwtBearer:ApiAuthenticationIntegrationWithJwtBearer": "ApiAuthenticationIntegrationWithJwtBearer"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
183
227
|
{
|
|
184
228
|
"pkg": "snowflake",
|
|
185
229
|
"mod": "index/apiIntegration",
|
|
@@ -190,18 +234,26 @@ _utilities.register(
|
|
|
190
234
|
},
|
|
191
235
|
{
|
|
192
236
|
"pkg": "snowflake",
|
|
193
|
-
"mod": "index/
|
|
237
|
+
"mod": "index/authenticationPolicy",
|
|
194
238
|
"fqn": "pulumi_snowflake",
|
|
195
239
|
"classes": {
|
|
196
|
-
"snowflake:index/
|
|
240
|
+
"snowflake:index/authenticationPolicy:AuthenticationPolicy": "AuthenticationPolicy"
|
|
197
241
|
}
|
|
198
242
|
},
|
|
199
243
|
{
|
|
200
244
|
"pkg": "snowflake",
|
|
201
|
-
"mod": "index/
|
|
245
|
+
"mod": "index/cortexSearchService",
|
|
202
246
|
"fqn": "pulumi_snowflake",
|
|
203
247
|
"classes": {
|
|
204
|
-
"snowflake:index/
|
|
248
|
+
"snowflake:index/cortexSearchService:CortexSearchService": "CortexSearchService"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"pkg": "snowflake",
|
|
253
|
+
"mod": "index/database",
|
|
254
|
+
"fqn": "pulumi_snowflake",
|
|
255
|
+
"classes": {
|
|
256
|
+
"snowflake:index/database:Database": "Database"
|
|
205
257
|
}
|
|
206
258
|
},
|
|
207
259
|
{
|
|
@@ -228,6 +280,14 @@ _utilities.register(
|
|
|
228
280
|
"snowflake:index/emailNotificationIntegration:EmailNotificationIntegration": "EmailNotificationIntegration"
|
|
229
281
|
}
|
|
230
282
|
},
|
|
283
|
+
{
|
|
284
|
+
"pkg": "snowflake",
|
|
285
|
+
"mod": "index/execute",
|
|
286
|
+
"fqn": "pulumi_snowflake",
|
|
287
|
+
"classes": {
|
|
288
|
+
"snowflake:index/execute:Execute": "Execute"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
231
291
|
{
|
|
232
292
|
"pkg": "snowflake",
|
|
233
293
|
"mod": "index/externalFunction",
|
|
@@ -254,10 +314,10 @@ _utilities.register(
|
|
|
254
314
|
},
|
|
255
315
|
{
|
|
256
316
|
"pkg": "snowflake",
|
|
257
|
-
"mod": "index/
|
|
317
|
+
"mod": "index/externalVolume",
|
|
258
318
|
"fqn": "pulumi_snowflake",
|
|
259
319
|
"classes": {
|
|
260
|
-
"snowflake:index/
|
|
320
|
+
"snowflake:index/externalVolume:ExternalVolume": "ExternalVolume"
|
|
261
321
|
}
|
|
262
322
|
},
|
|
263
323
|
{
|
|
@@ -270,42 +330,50 @@ _utilities.register(
|
|
|
270
330
|
},
|
|
271
331
|
{
|
|
272
332
|
"pkg": "snowflake",
|
|
273
|
-
"mod": "index/
|
|
333
|
+
"mod": "index/fileFormat",
|
|
274
334
|
"fqn": "pulumi_snowflake",
|
|
275
335
|
"classes": {
|
|
276
|
-
"snowflake:index/
|
|
336
|
+
"snowflake:index/fileFormat:FileFormat": "FileFormat"
|
|
277
337
|
}
|
|
278
338
|
},
|
|
279
339
|
{
|
|
280
340
|
"pkg": "snowflake",
|
|
281
|
-
"mod": "index/
|
|
341
|
+
"mod": "index/functionJava",
|
|
282
342
|
"fqn": "pulumi_snowflake",
|
|
283
343
|
"classes": {
|
|
284
|
-
"snowflake:index/
|
|
344
|
+
"snowflake:index/functionJava:FunctionJava": "FunctionJava"
|
|
285
345
|
}
|
|
286
346
|
},
|
|
287
347
|
{
|
|
288
348
|
"pkg": "snowflake",
|
|
289
|
-
"mod": "index/
|
|
349
|
+
"mod": "index/functionJavascript",
|
|
290
350
|
"fqn": "pulumi_snowflake",
|
|
291
351
|
"classes": {
|
|
292
|
-
"snowflake:index/
|
|
352
|
+
"snowflake:index/functionJavascript:FunctionJavascript": "FunctionJavascript"
|
|
293
353
|
}
|
|
294
354
|
},
|
|
295
355
|
{
|
|
296
356
|
"pkg": "snowflake",
|
|
297
|
-
"mod": "index/
|
|
357
|
+
"mod": "index/functionPython",
|
|
298
358
|
"fqn": "pulumi_snowflake",
|
|
299
359
|
"classes": {
|
|
300
|
-
"snowflake:index/
|
|
360
|
+
"snowflake:index/functionPython:FunctionPython": "FunctionPython"
|
|
301
361
|
}
|
|
302
362
|
},
|
|
303
363
|
{
|
|
304
364
|
"pkg": "snowflake",
|
|
305
|
-
"mod": "index/
|
|
365
|
+
"mod": "index/functionScala",
|
|
306
366
|
"fqn": "pulumi_snowflake",
|
|
307
367
|
"classes": {
|
|
308
|
-
"snowflake:index/
|
|
368
|
+
"snowflake:index/functionScala:FunctionScala": "FunctionScala"
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"pkg": "snowflake",
|
|
373
|
+
"mod": "index/functionSql",
|
|
374
|
+
"fqn": "pulumi_snowflake",
|
|
375
|
+
"classes": {
|
|
376
|
+
"snowflake:index/functionSql:FunctionSql": "FunctionSql"
|
|
309
377
|
}
|
|
310
378
|
},
|
|
311
379
|
{
|
|
@@ -316,6 +384,14 @@ _utilities.register(
|
|
|
316
384
|
"snowflake:index/grantAccountRole:GrantAccountRole": "GrantAccountRole"
|
|
317
385
|
}
|
|
318
386
|
},
|
|
387
|
+
{
|
|
388
|
+
"pkg": "snowflake",
|
|
389
|
+
"mod": "index/grantApplicationRole",
|
|
390
|
+
"fqn": "pulumi_snowflake",
|
|
391
|
+
"classes": {
|
|
392
|
+
"snowflake:index/grantApplicationRole:GrantApplicationRole": "GrantApplicationRole"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
319
395
|
{
|
|
320
396
|
"pkg": "snowflake",
|
|
321
397
|
"mod": "index/grantDatabaseRole",
|
|
@@ -326,26 +402,26 @@ _utilities.register(
|
|
|
326
402
|
},
|
|
327
403
|
{
|
|
328
404
|
"pkg": "snowflake",
|
|
329
|
-
"mod": "index/
|
|
405
|
+
"mod": "index/grantOwnership",
|
|
330
406
|
"fqn": "pulumi_snowflake",
|
|
331
407
|
"classes": {
|
|
332
|
-
"snowflake:index/
|
|
408
|
+
"snowflake:index/grantOwnership:GrantOwnership": "GrantOwnership"
|
|
333
409
|
}
|
|
334
410
|
},
|
|
335
411
|
{
|
|
336
412
|
"pkg": "snowflake",
|
|
337
|
-
"mod": "index/
|
|
413
|
+
"mod": "index/grantPrivilegesToAccountRole",
|
|
338
414
|
"fqn": "pulumi_snowflake",
|
|
339
415
|
"classes": {
|
|
340
|
-
"snowflake:index/
|
|
416
|
+
"snowflake:index/grantPrivilegesToAccountRole:GrantPrivilegesToAccountRole": "GrantPrivilegesToAccountRole"
|
|
341
417
|
}
|
|
342
418
|
},
|
|
343
419
|
{
|
|
344
420
|
"pkg": "snowflake",
|
|
345
|
-
"mod": "index/
|
|
421
|
+
"mod": "index/grantPrivilegesToDatabaseRole",
|
|
346
422
|
"fqn": "pulumi_snowflake",
|
|
347
423
|
"classes": {
|
|
348
|
-
"snowflake:index/
|
|
424
|
+
"snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole": "GrantPrivilegesToDatabaseRole"
|
|
349
425
|
}
|
|
350
426
|
},
|
|
351
427
|
{
|
|
@@ -358,10 +434,10 @@ _utilities.register(
|
|
|
358
434
|
},
|
|
359
435
|
{
|
|
360
436
|
"pkg": "snowflake",
|
|
361
|
-
"mod": "index/
|
|
437
|
+
"mod": "index/legacyServiceUser",
|
|
362
438
|
"fqn": "pulumi_snowflake",
|
|
363
439
|
"classes": {
|
|
364
|
-
"snowflake:index/
|
|
440
|
+
"snowflake:index/legacyServiceUser:LegacyServiceUser": "LegacyServiceUser"
|
|
365
441
|
}
|
|
366
442
|
},
|
|
367
443
|
{
|
|
@@ -382,58 +458,58 @@ _utilities.register(
|
|
|
382
458
|
},
|
|
383
459
|
{
|
|
384
460
|
"pkg": "snowflake",
|
|
385
|
-
"mod": "index/
|
|
461
|
+
"mod": "index/materializedView",
|
|
386
462
|
"fqn": "pulumi_snowflake",
|
|
387
463
|
"classes": {
|
|
388
|
-
"snowflake:index/
|
|
464
|
+
"snowflake:index/materializedView:MaterializedView": "MaterializedView"
|
|
389
465
|
}
|
|
390
466
|
},
|
|
391
467
|
{
|
|
392
468
|
"pkg": "snowflake",
|
|
393
|
-
"mod": "index/
|
|
469
|
+
"mod": "index/networkPolicy",
|
|
394
470
|
"fqn": "pulumi_snowflake",
|
|
395
471
|
"classes": {
|
|
396
|
-
"snowflake:index/
|
|
472
|
+
"snowflake:index/networkPolicy:NetworkPolicy": "NetworkPolicy"
|
|
397
473
|
}
|
|
398
474
|
},
|
|
399
475
|
{
|
|
400
476
|
"pkg": "snowflake",
|
|
401
|
-
"mod": "index/
|
|
477
|
+
"mod": "index/networkPolicyAttachment",
|
|
402
478
|
"fqn": "pulumi_snowflake",
|
|
403
479
|
"classes": {
|
|
404
|
-
"snowflake:index/
|
|
480
|
+
"snowflake:index/networkPolicyAttachment:NetworkPolicyAttachment": "NetworkPolicyAttachment"
|
|
405
481
|
}
|
|
406
482
|
},
|
|
407
483
|
{
|
|
408
484
|
"pkg": "snowflake",
|
|
409
|
-
"mod": "index/
|
|
485
|
+
"mod": "index/networkRule",
|
|
410
486
|
"fqn": "pulumi_snowflake",
|
|
411
487
|
"classes": {
|
|
412
|
-
"snowflake:index/
|
|
488
|
+
"snowflake:index/networkRule:NetworkRule": "NetworkRule"
|
|
413
489
|
}
|
|
414
490
|
},
|
|
415
491
|
{
|
|
416
492
|
"pkg": "snowflake",
|
|
417
|
-
"mod": "index/
|
|
493
|
+
"mod": "index/notificationIntegration",
|
|
418
494
|
"fqn": "pulumi_snowflake",
|
|
419
495
|
"classes": {
|
|
420
|
-
"snowflake:index/
|
|
496
|
+
"snowflake:index/notificationIntegration:NotificationIntegration": "NotificationIntegration"
|
|
421
497
|
}
|
|
422
498
|
},
|
|
423
499
|
{
|
|
424
500
|
"pkg": "snowflake",
|
|
425
|
-
"mod": "index/
|
|
501
|
+
"mod": "index/oauthIntegrationForCustomClients",
|
|
426
502
|
"fqn": "pulumi_snowflake",
|
|
427
503
|
"classes": {
|
|
428
|
-
"snowflake:index/
|
|
504
|
+
"snowflake:index/oauthIntegrationForCustomClients:OauthIntegrationForCustomClients": "OauthIntegrationForCustomClients"
|
|
429
505
|
}
|
|
430
506
|
},
|
|
431
507
|
{
|
|
432
508
|
"pkg": "snowflake",
|
|
433
|
-
"mod": "index/
|
|
509
|
+
"mod": "index/oauthIntegrationForPartnerApplications",
|
|
434
510
|
"fqn": "pulumi_snowflake",
|
|
435
511
|
"classes": {
|
|
436
|
-
"snowflake:index/
|
|
512
|
+
"snowflake:index/oauthIntegrationForPartnerApplications:OauthIntegrationForPartnerApplications": "OauthIntegrationForPartnerApplications"
|
|
437
513
|
}
|
|
438
514
|
},
|
|
439
515
|
{
|
|
@@ -462,66 +538,58 @@ _utilities.register(
|
|
|
462
538
|
},
|
|
463
539
|
{
|
|
464
540
|
"pkg": "snowflake",
|
|
465
|
-
"mod": "index/
|
|
466
|
-
"fqn": "pulumi_snowflake",
|
|
467
|
-
"classes": {
|
|
468
|
-
"snowflake:index/pipeGrant:PipeGrant": "PipeGrant"
|
|
469
|
-
}
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
"pkg": "snowflake",
|
|
473
|
-
"mod": "index/procedure",
|
|
541
|
+
"mod": "index/primaryConnection",
|
|
474
542
|
"fqn": "pulumi_snowflake",
|
|
475
543
|
"classes": {
|
|
476
|
-
"snowflake:index/
|
|
544
|
+
"snowflake:index/primaryConnection:PrimaryConnection": "PrimaryConnection"
|
|
477
545
|
}
|
|
478
546
|
},
|
|
479
547
|
{
|
|
480
548
|
"pkg": "snowflake",
|
|
481
|
-
"mod": "index/
|
|
549
|
+
"mod": "index/procedureJava",
|
|
482
550
|
"fqn": "pulumi_snowflake",
|
|
483
551
|
"classes": {
|
|
484
|
-
"snowflake:index/
|
|
552
|
+
"snowflake:index/procedureJava:ProcedureJava": "ProcedureJava"
|
|
485
553
|
}
|
|
486
554
|
},
|
|
487
555
|
{
|
|
488
556
|
"pkg": "snowflake",
|
|
489
|
-
"mod": "index/
|
|
557
|
+
"mod": "index/procedureJavascript",
|
|
490
558
|
"fqn": "pulumi_snowflake",
|
|
491
559
|
"classes": {
|
|
492
|
-
"snowflake:index/
|
|
560
|
+
"snowflake:index/procedureJavascript:ProcedureJavascript": "ProcedureJavascript"
|
|
493
561
|
}
|
|
494
562
|
},
|
|
495
563
|
{
|
|
496
564
|
"pkg": "snowflake",
|
|
497
|
-
"mod": "index/
|
|
565
|
+
"mod": "index/procedurePython",
|
|
498
566
|
"fqn": "pulumi_snowflake",
|
|
499
567
|
"classes": {
|
|
500
|
-
"snowflake:index/
|
|
568
|
+
"snowflake:index/procedurePython:ProcedurePython": "ProcedurePython"
|
|
501
569
|
}
|
|
502
570
|
},
|
|
503
571
|
{
|
|
504
572
|
"pkg": "snowflake",
|
|
505
|
-
"mod": "index/
|
|
573
|
+
"mod": "index/procedureScala",
|
|
506
574
|
"fqn": "pulumi_snowflake",
|
|
507
575
|
"classes": {
|
|
508
|
-
"snowflake:index/
|
|
576
|
+
"snowflake:index/procedureScala:ProcedureScala": "ProcedureScala"
|
|
509
577
|
}
|
|
510
578
|
},
|
|
511
579
|
{
|
|
512
580
|
"pkg": "snowflake",
|
|
513
|
-
"mod": "index/
|
|
581
|
+
"mod": "index/procedureSql",
|
|
514
582
|
"fqn": "pulumi_snowflake",
|
|
515
583
|
"classes": {
|
|
516
|
-
"snowflake:index/
|
|
584
|
+
"snowflake:index/procedureSql:ProcedureSql": "ProcedureSql"
|
|
517
585
|
}
|
|
518
586
|
},
|
|
519
587
|
{
|
|
520
588
|
"pkg": "snowflake",
|
|
521
|
-
"mod": "index/
|
|
589
|
+
"mod": "index/resourceMonitor",
|
|
522
590
|
"fqn": "pulumi_snowflake",
|
|
523
591
|
"classes": {
|
|
524
|
-
"snowflake:index/
|
|
592
|
+
"snowflake:index/resourceMonitor:ResourceMonitor": "ResourceMonitor"
|
|
525
593
|
}
|
|
526
594
|
},
|
|
527
595
|
{
|
|
@@ -534,226 +602,226 @@ _utilities.register(
|
|
|
534
602
|
},
|
|
535
603
|
{
|
|
536
604
|
"pkg": "snowflake",
|
|
537
|
-
"mod": "index/
|
|
605
|
+
"mod": "index/saml2Integration",
|
|
538
606
|
"fqn": "pulumi_snowflake",
|
|
539
607
|
"classes": {
|
|
540
|
-
"snowflake:index/
|
|
608
|
+
"snowflake:index/saml2Integration:Saml2Integration": "Saml2Integration"
|
|
541
609
|
}
|
|
542
610
|
},
|
|
543
611
|
{
|
|
544
612
|
"pkg": "snowflake",
|
|
545
|
-
"mod": "index/
|
|
613
|
+
"mod": "index/schema",
|
|
546
614
|
"fqn": "pulumi_snowflake",
|
|
547
615
|
"classes": {
|
|
548
|
-
"snowflake:index/
|
|
616
|
+
"snowflake:index/schema:Schema": "Schema"
|
|
549
617
|
}
|
|
550
618
|
},
|
|
551
619
|
{
|
|
552
620
|
"pkg": "snowflake",
|
|
553
|
-
"mod": "index/
|
|
621
|
+
"mod": "index/scimIntegration",
|
|
554
622
|
"fqn": "pulumi_snowflake",
|
|
555
623
|
"classes": {
|
|
556
|
-
"snowflake:index/
|
|
624
|
+
"snowflake:index/scimIntegration:ScimIntegration": "ScimIntegration"
|
|
557
625
|
}
|
|
558
626
|
},
|
|
559
627
|
{
|
|
560
628
|
"pkg": "snowflake",
|
|
561
|
-
"mod": "index/
|
|
629
|
+
"mod": "index/secondaryConnection",
|
|
562
630
|
"fqn": "pulumi_snowflake",
|
|
563
631
|
"classes": {
|
|
564
|
-
"snowflake:index/
|
|
632
|
+
"snowflake:index/secondaryConnection:SecondaryConnection": "SecondaryConnection"
|
|
565
633
|
}
|
|
566
634
|
},
|
|
567
635
|
{
|
|
568
636
|
"pkg": "snowflake",
|
|
569
|
-
"mod": "index/
|
|
637
|
+
"mod": "index/secondaryDatabase",
|
|
570
638
|
"fqn": "pulumi_snowflake",
|
|
571
639
|
"classes": {
|
|
572
|
-
"snowflake:index/
|
|
640
|
+
"snowflake:index/secondaryDatabase:SecondaryDatabase": "SecondaryDatabase"
|
|
573
641
|
}
|
|
574
642
|
},
|
|
575
643
|
{
|
|
576
644
|
"pkg": "snowflake",
|
|
577
|
-
"mod": "index/
|
|
645
|
+
"mod": "index/secretWithAuthorizationCodeGrant",
|
|
578
646
|
"fqn": "pulumi_snowflake",
|
|
579
647
|
"classes": {
|
|
580
|
-
"snowflake:index/
|
|
648
|
+
"snowflake:index/secretWithAuthorizationCodeGrant:SecretWithAuthorizationCodeGrant": "SecretWithAuthorizationCodeGrant"
|
|
581
649
|
}
|
|
582
650
|
},
|
|
583
651
|
{
|
|
584
652
|
"pkg": "snowflake",
|
|
585
|
-
"mod": "index/
|
|
653
|
+
"mod": "index/secretWithBasicAuthentication",
|
|
586
654
|
"fqn": "pulumi_snowflake",
|
|
587
655
|
"classes": {
|
|
588
|
-
"snowflake:index/
|
|
656
|
+
"snowflake:index/secretWithBasicAuthentication:SecretWithBasicAuthentication": "SecretWithBasicAuthentication"
|
|
589
657
|
}
|
|
590
658
|
},
|
|
591
659
|
{
|
|
592
660
|
"pkg": "snowflake",
|
|
593
|
-
"mod": "index/
|
|
661
|
+
"mod": "index/secretWithClientCredentials",
|
|
594
662
|
"fqn": "pulumi_snowflake",
|
|
595
663
|
"classes": {
|
|
596
|
-
"snowflake:index/
|
|
664
|
+
"snowflake:index/secretWithClientCredentials:SecretWithClientCredentials": "SecretWithClientCredentials"
|
|
597
665
|
}
|
|
598
666
|
},
|
|
599
667
|
{
|
|
600
668
|
"pkg": "snowflake",
|
|
601
|
-
"mod": "index/
|
|
669
|
+
"mod": "index/secretWithGenericString",
|
|
602
670
|
"fqn": "pulumi_snowflake",
|
|
603
671
|
"classes": {
|
|
604
|
-
"snowflake:index/
|
|
672
|
+
"snowflake:index/secretWithGenericString:SecretWithGenericString": "SecretWithGenericString"
|
|
605
673
|
}
|
|
606
674
|
},
|
|
607
675
|
{
|
|
608
676
|
"pkg": "snowflake",
|
|
609
|
-
"mod": "index/
|
|
677
|
+
"mod": "index/sequence",
|
|
610
678
|
"fqn": "pulumi_snowflake",
|
|
611
679
|
"classes": {
|
|
612
|
-
"snowflake:index/
|
|
680
|
+
"snowflake:index/sequence:Sequence": "Sequence"
|
|
613
681
|
}
|
|
614
682
|
},
|
|
615
683
|
{
|
|
616
684
|
"pkg": "snowflake",
|
|
617
|
-
"mod": "index/
|
|
685
|
+
"mod": "index/serviceUser",
|
|
618
686
|
"fqn": "pulumi_snowflake",
|
|
619
687
|
"classes": {
|
|
620
|
-
"snowflake:index/
|
|
688
|
+
"snowflake:index/serviceUser:ServiceUser": "ServiceUser"
|
|
621
689
|
}
|
|
622
690
|
},
|
|
623
691
|
{
|
|
624
692
|
"pkg": "snowflake",
|
|
625
|
-
"mod": "index/
|
|
693
|
+
"mod": "index/share",
|
|
626
694
|
"fqn": "pulumi_snowflake",
|
|
627
695
|
"classes": {
|
|
628
|
-
"snowflake:index/
|
|
696
|
+
"snowflake:index/share:Share": "Share"
|
|
629
697
|
}
|
|
630
698
|
},
|
|
631
699
|
{
|
|
632
700
|
"pkg": "snowflake",
|
|
633
|
-
"mod": "index/
|
|
701
|
+
"mod": "index/sharedDatabase",
|
|
634
702
|
"fqn": "pulumi_snowflake",
|
|
635
703
|
"classes": {
|
|
636
|
-
"snowflake:index/
|
|
704
|
+
"snowflake:index/sharedDatabase:SharedDatabase": "SharedDatabase"
|
|
637
705
|
}
|
|
638
706
|
},
|
|
639
707
|
{
|
|
640
708
|
"pkg": "snowflake",
|
|
641
|
-
"mod": "index/
|
|
709
|
+
"mod": "index/stage",
|
|
642
710
|
"fqn": "pulumi_snowflake",
|
|
643
711
|
"classes": {
|
|
644
|
-
"snowflake:index/
|
|
712
|
+
"snowflake:index/stage:Stage": "Stage"
|
|
645
713
|
}
|
|
646
714
|
},
|
|
647
715
|
{
|
|
648
716
|
"pkg": "snowflake",
|
|
649
|
-
"mod": "index/
|
|
717
|
+
"mod": "index/storageIntegration",
|
|
650
718
|
"fqn": "pulumi_snowflake",
|
|
651
719
|
"classes": {
|
|
652
|
-
"snowflake:index/
|
|
720
|
+
"snowflake:index/storageIntegration:StorageIntegration": "StorageIntegration"
|
|
653
721
|
}
|
|
654
722
|
},
|
|
655
723
|
{
|
|
656
724
|
"pkg": "snowflake",
|
|
657
|
-
"mod": "index/
|
|
725
|
+
"mod": "index/streamOnDirectoryTable",
|
|
658
726
|
"fqn": "pulumi_snowflake",
|
|
659
727
|
"classes": {
|
|
660
|
-
"snowflake:index/
|
|
728
|
+
"snowflake:index/streamOnDirectoryTable:StreamOnDirectoryTable": "StreamOnDirectoryTable"
|
|
661
729
|
}
|
|
662
730
|
},
|
|
663
731
|
{
|
|
664
732
|
"pkg": "snowflake",
|
|
665
|
-
"mod": "index/
|
|
733
|
+
"mod": "index/streamOnExternalTable",
|
|
666
734
|
"fqn": "pulumi_snowflake",
|
|
667
735
|
"classes": {
|
|
668
|
-
"snowflake:index/
|
|
736
|
+
"snowflake:index/streamOnExternalTable:StreamOnExternalTable": "StreamOnExternalTable"
|
|
669
737
|
}
|
|
670
738
|
},
|
|
671
739
|
{
|
|
672
740
|
"pkg": "snowflake",
|
|
673
|
-
"mod": "index/
|
|
741
|
+
"mod": "index/streamOnTable",
|
|
674
742
|
"fqn": "pulumi_snowflake",
|
|
675
743
|
"classes": {
|
|
676
|
-
"snowflake:index/
|
|
744
|
+
"snowflake:index/streamOnTable:StreamOnTable": "StreamOnTable"
|
|
677
745
|
}
|
|
678
746
|
},
|
|
679
747
|
{
|
|
680
748
|
"pkg": "snowflake",
|
|
681
|
-
"mod": "index/
|
|
749
|
+
"mod": "index/streamOnView",
|
|
682
750
|
"fqn": "pulumi_snowflake",
|
|
683
751
|
"classes": {
|
|
684
|
-
"snowflake:index/
|
|
752
|
+
"snowflake:index/streamOnView:StreamOnView": "StreamOnView"
|
|
685
753
|
}
|
|
686
754
|
},
|
|
687
755
|
{
|
|
688
756
|
"pkg": "snowflake",
|
|
689
|
-
"mod": "index/
|
|
757
|
+
"mod": "index/streamlit",
|
|
690
758
|
"fqn": "pulumi_snowflake",
|
|
691
759
|
"classes": {
|
|
692
|
-
"snowflake:index/
|
|
760
|
+
"snowflake:index/streamlit:Streamlit": "Streamlit"
|
|
693
761
|
}
|
|
694
762
|
},
|
|
695
763
|
{
|
|
696
764
|
"pkg": "snowflake",
|
|
697
|
-
"mod": "index/
|
|
765
|
+
"mod": "index/table",
|
|
698
766
|
"fqn": "pulumi_snowflake",
|
|
699
767
|
"classes": {
|
|
700
|
-
"snowflake:index/
|
|
768
|
+
"snowflake:index/table:Table": "Table"
|
|
701
769
|
}
|
|
702
770
|
},
|
|
703
771
|
{
|
|
704
772
|
"pkg": "snowflake",
|
|
705
|
-
"mod": "index/
|
|
773
|
+
"mod": "index/tableColumnMaskingPolicyApplication",
|
|
706
774
|
"fqn": "pulumi_snowflake",
|
|
707
775
|
"classes": {
|
|
708
|
-
"snowflake:index/
|
|
776
|
+
"snowflake:index/tableColumnMaskingPolicyApplication:TableColumnMaskingPolicyApplication": "TableColumnMaskingPolicyApplication"
|
|
709
777
|
}
|
|
710
778
|
},
|
|
711
779
|
{
|
|
712
780
|
"pkg": "snowflake",
|
|
713
|
-
"mod": "index/
|
|
781
|
+
"mod": "index/tableConstraint",
|
|
714
782
|
"fqn": "pulumi_snowflake",
|
|
715
783
|
"classes": {
|
|
716
|
-
"snowflake:index/
|
|
784
|
+
"snowflake:index/tableConstraint:TableConstraint": "TableConstraint"
|
|
717
785
|
}
|
|
718
786
|
},
|
|
719
787
|
{
|
|
720
788
|
"pkg": "snowflake",
|
|
721
|
-
"mod": "index/
|
|
789
|
+
"mod": "index/tag",
|
|
722
790
|
"fqn": "pulumi_snowflake",
|
|
723
791
|
"classes": {
|
|
724
|
-
"snowflake:index/
|
|
792
|
+
"snowflake:index/tag:Tag": "Tag"
|
|
725
793
|
}
|
|
726
794
|
},
|
|
727
795
|
{
|
|
728
796
|
"pkg": "snowflake",
|
|
729
|
-
"mod": "index/
|
|
797
|
+
"mod": "index/tagAssociation",
|
|
730
798
|
"fqn": "pulumi_snowflake",
|
|
731
799
|
"classes": {
|
|
732
|
-
"snowflake:index/
|
|
800
|
+
"snowflake:index/tagAssociation:TagAssociation": "TagAssociation"
|
|
733
801
|
}
|
|
734
802
|
},
|
|
735
803
|
{
|
|
736
804
|
"pkg": "snowflake",
|
|
737
|
-
"mod": "index/
|
|
805
|
+
"mod": "index/task",
|
|
738
806
|
"fqn": "pulumi_snowflake",
|
|
739
807
|
"classes": {
|
|
740
|
-
"snowflake:index/
|
|
808
|
+
"snowflake:index/task:Task": "Task"
|
|
741
809
|
}
|
|
742
810
|
},
|
|
743
811
|
{
|
|
744
812
|
"pkg": "snowflake",
|
|
745
|
-
"mod": "index/
|
|
813
|
+
"mod": "index/user",
|
|
746
814
|
"fqn": "pulumi_snowflake",
|
|
747
815
|
"classes": {
|
|
748
|
-
"snowflake:index/
|
|
816
|
+
"snowflake:index/user:User": "User"
|
|
749
817
|
}
|
|
750
818
|
},
|
|
751
819
|
{
|
|
752
820
|
"pkg": "snowflake",
|
|
753
|
-
"mod": "index/
|
|
821
|
+
"mod": "index/userAuthenticationPolicyAttachment",
|
|
754
822
|
"fqn": "pulumi_snowflake",
|
|
755
823
|
"classes": {
|
|
756
|
-
"snowflake:index/
|
|
824
|
+
"snowflake:index/userAuthenticationPolicyAttachment:UserAuthenticationPolicyAttachment": "UserAuthenticationPolicyAttachment"
|
|
757
825
|
}
|
|
758
826
|
},
|
|
759
827
|
{
|
|
@@ -780,14 +848,6 @@ _utilities.register(
|
|
|
780
848
|
"snowflake:index/view:View": "View"
|
|
781
849
|
}
|
|
782
850
|
},
|
|
783
|
-
{
|
|
784
|
-
"pkg": "snowflake",
|
|
785
|
-
"mod": "index/viewGrant",
|
|
786
|
-
"fqn": "pulumi_snowflake",
|
|
787
|
-
"classes": {
|
|
788
|
-
"snowflake:index/viewGrant:ViewGrant": "ViewGrant"
|
|
789
|
-
}
|
|
790
|
-
},
|
|
791
851
|
{
|
|
792
852
|
"pkg": "snowflake",
|
|
793
853
|
"mod": "index/warehouse",
|
|
@@ -795,14 +855,6 @@ _utilities.register(
|
|
|
795
855
|
"classes": {
|
|
796
856
|
"snowflake:index/warehouse:Warehouse": "Warehouse"
|
|
797
857
|
}
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
"pkg": "snowflake",
|
|
801
|
-
"mod": "index/warehouseGrant",
|
|
802
|
-
"fqn": "pulumi_snowflake",
|
|
803
|
-
"classes": {
|
|
804
|
-
"snowflake:index/warehouseGrant:WarehouseGrant": "WarehouseGrant"
|
|
805
|
-
}
|
|
806
858
|
}
|
|
807
859
|
]
|
|
808
860
|
""",
|