pulumi-snowflake 0.56.0a1721327760__py3-none-any.whl → 0.57.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.
- pulumi_snowflake/__init__.py +78 -209
- pulumi_snowflake/_inputs.py +12188 -1362
- pulumi_snowflake/_utilities.py +2 -0
- pulumi_snowflake/account_role.py +226 -0
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +692 -0
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +645 -0
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +680 -0
- pulumi_snowflake/cortex_search_service.py +563 -0
- pulumi_snowflake/database.py +854 -232
- pulumi_snowflake/database_old.py +556 -0
- pulumi_snowflake/external_oauth_integration.py +562 -534
- pulumi_snowflake/failover_group.py +2 -2
- pulumi_snowflake/get_cortex_search_services.py +197 -0
- pulumi_snowflake/get_databases.py +71 -62
- pulumi_snowflake/get_network_policies.py +122 -0
- pulumi_snowflake/get_roles.py +37 -31
- pulumi_snowflake/get_schemas.py +115 -38
- pulumi_snowflake/get_security_integrations.py +122 -0
- pulumi_snowflake/get_streamlits.py +159 -0
- pulumi_snowflake/get_warehouses.py +66 -18
- pulumi_snowflake/grant_privileges_to_database_role.py +0 -4
- pulumi_snowflake/managed_account.py +7 -7
- pulumi_snowflake/network_policy.py +103 -19
- pulumi_snowflake/oauth_integration.py +4 -0
- pulumi_snowflake/oauth_integration_for_custom_clients.py +940 -0
- pulumi_snowflake/oauth_integration_for_partner_applications.py +584 -0
- pulumi_snowflake/outputs.py +16178 -2927
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/role.py +44 -72
- pulumi_snowflake/saml2_integration.py +975 -0
- pulumi_snowflake/saml_integration.py +4 -0
- pulumi_snowflake/schema.py +905 -151
- pulumi_snowflake/scim_integration.py +257 -103
- pulumi_snowflake/secondary_database.py +1059 -0
- pulumi_snowflake/sequence.py +6 -6
- pulumi_snowflake/shared_database.py +914 -0
- pulumi_snowflake/streamlit.py +650 -0
- pulumi_snowflake/table.py +0 -120
- pulumi_snowflake/table_constraint.py +2 -2
- pulumi_snowflake/tag_association.py +38 -38
- pulumi_snowflake/unsafe_execute.py +8 -8
- pulumi_snowflake/user_password_policy_attachment.py +32 -0
- pulumi_snowflake/warehouse.py +143 -120
- {pulumi_snowflake-0.56.0a1721327760.dist-info → pulumi_snowflake-0.57.0.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.56.0a1721327760.dist-info → pulumi_snowflake-0.57.0.dist-info}/RECORD +47 -58
- {pulumi_snowflake-0.56.0a1721327760.dist-info → pulumi_snowflake-0.57.0.dist-info}/WHEEL +1 -1
- pulumi_snowflake/account_grant.py +0 -319
- pulumi_snowflake/database_grant.py +0 -471
- pulumi_snowflake/external_table_grant.py +0 -666
- pulumi_snowflake/failover_group_grant.py +0 -368
- pulumi_snowflake/file_format_grant.py +0 -611
- pulumi_snowflake/function_grant.py +0 -721
- pulumi_snowflake/grant_privileges_to_role.py +0 -821
- pulumi_snowflake/integration_grant.py +0 -416
- pulumi_snowflake/masking_policy_grant.py +0 -518
- pulumi_snowflake/materialized_view_grant.py +0 -665
- pulumi_snowflake/pipe_grant.py +0 -563
- pulumi_snowflake/procedure_grant.py +0 -721
- pulumi_snowflake/resource_monitor_grant.py +0 -363
- pulumi_snowflake/role_grants.py +0 -340
- pulumi_snowflake/role_ownership_grant.py +0 -329
- pulumi_snowflake/row_access_policy_grant.py +0 -516
- pulumi_snowflake/schema_grant.py +0 -603
- pulumi_snowflake/sequence_grant.py +0 -611
- pulumi_snowflake/stage_grant.py +0 -611
- pulumi_snowflake/stream_grant.py +0 -611
- pulumi_snowflake/table_grant.py +0 -653
- pulumi_snowflake/tag_grant.py +0 -508
- pulumi_snowflake/task_grant.py +0 -611
- pulumi_snowflake/user_grant.py +0 -370
- pulumi_snowflake/user_ownership_grant.py +0 -275
- pulumi_snowflake/view_grant.py +0 -685
- pulumi_snowflake/warehouse_grant.py +0 -416
- {pulumi_snowflake-0.56.0a1721327760.dist-info → pulumi_snowflake-0.57.0.dist-info}/top_level.txt +0 -0
pulumi_snowflake/__init__.py
CHANGED
|
@@ -6,28 +6,29 @@ from . import _utilities
|
|
|
6
6
|
import typing
|
|
7
7
|
# Export this package's modules as members:
|
|
8
8
|
from .account import *
|
|
9
|
-
from .account_grant import *
|
|
10
9
|
from .account_parameter import *
|
|
11
10
|
from .account_password_policy_attachment import *
|
|
11
|
+
from .account_role import *
|
|
12
12
|
from .alert import *
|
|
13
|
+
from .api_authentication_integration_with_authorization_code_grant import *
|
|
14
|
+
from .api_authentication_integration_with_client_credentials import *
|
|
15
|
+
from .api_authentication_integration_with_jwt_bearer import *
|
|
13
16
|
from .api_integration import *
|
|
17
|
+
from .cortex_search_service import *
|
|
14
18
|
from .database import *
|
|
15
|
-
from .
|
|
19
|
+
from .database_old import *
|
|
16
20
|
from .database_role import *
|
|
17
21
|
from .dynamic_table import *
|
|
18
22
|
from .email_notification_integration import *
|
|
19
23
|
from .external_function import *
|
|
20
24
|
from .external_oauth_integration import *
|
|
21
25
|
from .external_table import *
|
|
22
|
-
from .external_table_grant import *
|
|
23
26
|
from .failover_group import *
|
|
24
|
-
from .failover_group_grant import *
|
|
25
27
|
from .file_format import *
|
|
26
|
-
from .file_format_grant import *
|
|
27
28
|
from .function import *
|
|
28
|
-
from .function_grant import *
|
|
29
29
|
from .get_accounts import *
|
|
30
30
|
from .get_alerts import *
|
|
31
|
+
from .get_cortex_search_services import *
|
|
31
32
|
from .get_current_account import *
|
|
32
33
|
from .get_current_role import *
|
|
33
34
|
from .get_database import *
|
|
@@ -43,6 +44,7 @@ from .get_functions import *
|
|
|
43
44
|
from .get_grants import *
|
|
44
45
|
from .get_masking_policies import *
|
|
45
46
|
from .get_materialized_views import *
|
|
47
|
+
from .get_network_policies import *
|
|
46
48
|
from .get_parameters import *
|
|
47
49
|
from .get_pipes import *
|
|
48
50
|
from .get_procedures import *
|
|
@@ -51,10 +53,12 @@ from .get_role import *
|
|
|
51
53
|
from .get_roles import *
|
|
52
54
|
from .get_row_access_policies import *
|
|
53
55
|
from .get_schemas import *
|
|
56
|
+
from .get_security_integrations import *
|
|
54
57
|
from .get_sequences import *
|
|
55
58
|
from .get_shares import *
|
|
56
59
|
from .get_stages import *
|
|
57
60
|
from .get_storage_integrations import *
|
|
61
|
+
from .get_streamlits import *
|
|
58
62
|
from .get_streams import *
|
|
59
63
|
from .get_system_generate_scim_access_token import *
|
|
60
64
|
from .get_system_get_aws_sns_iam_policy import *
|
|
@@ -71,66 +75,51 @@ from .grant_database_role import *
|
|
|
71
75
|
from .grant_ownership import *
|
|
72
76
|
from .grant_privileges_to_account_role import *
|
|
73
77
|
from .grant_privileges_to_database_role import *
|
|
74
|
-
from .grant_privileges_to_role import *
|
|
75
78
|
from .grant_privileges_to_share import *
|
|
76
|
-
from .integration_grant import *
|
|
77
79
|
from .managed_account import *
|
|
78
80
|
from .masking_policy import *
|
|
79
|
-
from .masking_policy_grant import *
|
|
80
81
|
from .materialized_view import *
|
|
81
|
-
from .materialized_view_grant import *
|
|
82
82
|
from .network_policy import *
|
|
83
83
|
from .network_policy_attachment import *
|
|
84
84
|
from .network_rule import *
|
|
85
85
|
from .notification_integration import *
|
|
86
86
|
from .oauth_integration import *
|
|
87
|
+
from .oauth_integration_for_custom_clients import *
|
|
88
|
+
from .oauth_integration_for_partner_applications import *
|
|
87
89
|
from .object_parameter import *
|
|
88
90
|
from .password_policy import *
|
|
89
91
|
from .pipe import *
|
|
90
|
-
from .pipe_grant import *
|
|
91
92
|
from .procedure import *
|
|
92
|
-
from .procedure_grant import *
|
|
93
93
|
from .provider import *
|
|
94
94
|
from .resource_monitor import *
|
|
95
|
-
from .resource_monitor_grant import *
|
|
96
95
|
from .role import *
|
|
97
|
-
from .role_grants import *
|
|
98
|
-
from .role_ownership_grant import *
|
|
99
96
|
from .row_access_policy import *
|
|
100
|
-
from .
|
|
97
|
+
from .saml2_integration import *
|
|
101
98
|
from .saml_integration import *
|
|
102
99
|
from .schema import *
|
|
103
|
-
from .schema_grant import *
|
|
104
100
|
from .scim_integration import *
|
|
101
|
+
from .secondary_database import *
|
|
105
102
|
from .sequence import *
|
|
106
|
-
from .sequence_grant import *
|
|
107
103
|
from .session_parameter import *
|
|
108
104
|
from .share import *
|
|
105
|
+
from .shared_database import *
|
|
109
106
|
from .stage import *
|
|
110
|
-
from .stage_grant import *
|
|
111
107
|
from .storage_integration import *
|
|
112
108
|
from .stream import *
|
|
113
|
-
from .
|
|
109
|
+
from .streamlit import *
|
|
114
110
|
from .table import *
|
|
115
111
|
from .table_column_masking_policy_application import *
|
|
116
112
|
from .table_constraint import *
|
|
117
|
-
from .table_grant import *
|
|
118
113
|
from .tag import *
|
|
119
114
|
from .tag_association import *
|
|
120
|
-
from .tag_grant import *
|
|
121
115
|
from .tag_masking_policy_association import *
|
|
122
116
|
from .task import *
|
|
123
|
-
from .task_grant import *
|
|
124
117
|
from .unsafe_execute import *
|
|
125
118
|
from .user import *
|
|
126
|
-
from .user_grant import *
|
|
127
|
-
from .user_ownership_grant import *
|
|
128
119
|
from .user_password_policy_attachment import *
|
|
129
120
|
from .user_public_keys import *
|
|
130
121
|
from .view import *
|
|
131
|
-
from .view_grant import *
|
|
132
122
|
from .warehouse import *
|
|
133
|
-
from .warehouse_grant import *
|
|
134
123
|
from ._inputs import *
|
|
135
124
|
from . import outputs
|
|
136
125
|
|
|
@@ -154,26 +143,26 @@ _utilities.register(
|
|
|
154
143
|
},
|
|
155
144
|
{
|
|
156
145
|
"pkg": "snowflake",
|
|
157
|
-
"mod": "index/
|
|
146
|
+
"mod": "index/accountParameter",
|
|
158
147
|
"fqn": "pulumi_snowflake",
|
|
159
148
|
"classes": {
|
|
160
|
-
"snowflake:index/
|
|
149
|
+
"snowflake:index/accountParameter:AccountParameter": "AccountParameter"
|
|
161
150
|
}
|
|
162
151
|
},
|
|
163
152
|
{
|
|
164
153
|
"pkg": "snowflake",
|
|
165
|
-
"mod": "index/
|
|
154
|
+
"mod": "index/accountPasswordPolicyAttachment",
|
|
166
155
|
"fqn": "pulumi_snowflake",
|
|
167
156
|
"classes": {
|
|
168
|
-
"snowflake:index/
|
|
157
|
+
"snowflake:index/accountPasswordPolicyAttachment:AccountPasswordPolicyAttachment": "AccountPasswordPolicyAttachment"
|
|
169
158
|
}
|
|
170
159
|
},
|
|
171
160
|
{
|
|
172
161
|
"pkg": "snowflake",
|
|
173
|
-
"mod": "index/
|
|
162
|
+
"mod": "index/accountRole",
|
|
174
163
|
"fqn": "pulumi_snowflake",
|
|
175
164
|
"classes": {
|
|
176
|
-
"snowflake:index/
|
|
165
|
+
"snowflake:index/accountRole:AccountRole": "AccountRole"
|
|
177
166
|
}
|
|
178
167
|
},
|
|
179
168
|
{
|
|
@@ -186,130 +175,130 @@ _utilities.register(
|
|
|
186
175
|
},
|
|
187
176
|
{
|
|
188
177
|
"pkg": "snowflake",
|
|
189
|
-
"mod": "index/
|
|
178
|
+
"mod": "index/apiAuthenticationIntegrationWithAuthorizationCodeGrant",
|
|
190
179
|
"fqn": "pulumi_snowflake",
|
|
191
180
|
"classes": {
|
|
192
|
-
"snowflake:index/
|
|
181
|
+
"snowflake:index/apiAuthenticationIntegrationWithAuthorizationCodeGrant:ApiAuthenticationIntegrationWithAuthorizationCodeGrant": "ApiAuthenticationIntegrationWithAuthorizationCodeGrant"
|
|
193
182
|
}
|
|
194
183
|
},
|
|
195
184
|
{
|
|
196
185
|
"pkg": "snowflake",
|
|
197
|
-
"mod": "index/
|
|
186
|
+
"mod": "index/apiAuthenticationIntegrationWithClientCredentials",
|
|
198
187
|
"fqn": "pulumi_snowflake",
|
|
199
188
|
"classes": {
|
|
200
|
-
"snowflake:index/
|
|
189
|
+
"snowflake:index/apiAuthenticationIntegrationWithClientCredentials:ApiAuthenticationIntegrationWithClientCredentials": "ApiAuthenticationIntegrationWithClientCredentials"
|
|
201
190
|
}
|
|
202
191
|
},
|
|
203
192
|
{
|
|
204
193
|
"pkg": "snowflake",
|
|
205
|
-
"mod": "index/
|
|
194
|
+
"mod": "index/apiAuthenticationIntegrationWithJwtBearer",
|
|
206
195
|
"fqn": "pulumi_snowflake",
|
|
207
196
|
"classes": {
|
|
208
|
-
"snowflake:index/
|
|
197
|
+
"snowflake:index/apiAuthenticationIntegrationWithJwtBearer:ApiAuthenticationIntegrationWithJwtBearer": "ApiAuthenticationIntegrationWithJwtBearer"
|
|
209
198
|
}
|
|
210
199
|
},
|
|
211
200
|
{
|
|
212
201
|
"pkg": "snowflake",
|
|
213
|
-
"mod": "index/
|
|
202
|
+
"mod": "index/apiIntegration",
|
|
214
203
|
"fqn": "pulumi_snowflake",
|
|
215
204
|
"classes": {
|
|
216
|
-
"snowflake:index/
|
|
205
|
+
"snowflake:index/apiIntegration:ApiIntegration": "ApiIntegration"
|
|
217
206
|
}
|
|
218
207
|
},
|
|
219
208
|
{
|
|
220
209
|
"pkg": "snowflake",
|
|
221
|
-
"mod": "index/
|
|
210
|
+
"mod": "index/cortexSearchService",
|
|
222
211
|
"fqn": "pulumi_snowflake",
|
|
223
212
|
"classes": {
|
|
224
|
-
"snowflake:index/
|
|
213
|
+
"snowflake:index/cortexSearchService:CortexSearchService": "CortexSearchService"
|
|
225
214
|
}
|
|
226
215
|
},
|
|
227
216
|
{
|
|
228
217
|
"pkg": "snowflake",
|
|
229
|
-
"mod": "index/
|
|
218
|
+
"mod": "index/database",
|
|
230
219
|
"fqn": "pulumi_snowflake",
|
|
231
220
|
"classes": {
|
|
232
|
-
"snowflake:index/
|
|
221
|
+
"snowflake:index/database:Database": "Database"
|
|
233
222
|
}
|
|
234
223
|
},
|
|
235
224
|
{
|
|
236
225
|
"pkg": "snowflake",
|
|
237
|
-
"mod": "index/
|
|
226
|
+
"mod": "index/databaseOld",
|
|
238
227
|
"fqn": "pulumi_snowflake",
|
|
239
228
|
"classes": {
|
|
240
|
-
"snowflake:index/
|
|
229
|
+
"snowflake:index/databaseOld:DatabaseOld": "DatabaseOld"
|
|
241
230
|
}
|
|
242
231
|
},
|
|
243
232
|
{
|
|
244
233
|
"pkg": "snowflake",
|
|
245
|
-
"mod": "index/
|
|
234
|
+
"mod": "index/databaseRole",
|
|
246
235
|
"fqn": "pulumi_snowflake",
|
|
247
236
|
"classes": {
|
|
248
|
-
"snowflake:index/
|
|
237
|
+
"snowflake:index/databaseRole:DatabaseRole": "DatabaseRole"
|
|
249
238
|
}
|
|
250
239
|
},
|
|
251
240
|
{
|
|
252
241
|
"pkg": "snowflake",
|
|
253
|
-
"mod": "index/
|
|
242
|
+
"mod": "index/dynamicTable",
|
|
254
243
|
"fqn": "pulumi_snowflake",
|
|
255
244
|
"classes": {
|
|
256
|
-
"snowflake:index/
|
|
245
|
+
"snowflake:index/dynamicTable:DynamicTable": "DynamicTable"
|
|
257
246
|
}
|
|
258
247
|
},
|
|
259
248
|
{
|
|
260
249
|
"pkg": "snowflake",
|
|
261
|
-
"mod": "index/
|
|
250
|
+
"mod": "index/emailNotificationIntegration",
|
|
262
251
|
"fqn": "pulumi_snowflake",
|
|
263
252
|
"classes": {
|
|
264
|
-
"snowflake:index/
|
|
253
|
+
"snowflake:index/emailNotificationIntegration:EmailNotificationIntegration": "EmailNotificationIntegration"
|
|
265
254
|
}
|
|
266
255
|
},
|
|
267
256
|
{
|
|
268
257
|
"pkg": "snowflake",
|
|
269
|
-
"mod": "index/
|
|
258
|
+
"mod": "index/externalFunction",
|
|
270
259
|
"fqn": "pulumi_snowflake",
|
|
271
260
|
"classes": {
|
|
272
|
-
"snowflake:index/
|
|
261
|
+
"snowflake:index/externalFunction:ExternalFunction": "ExternalFunction"
|
|
273
262
|
}
|
|
274
263
|
},
|
|
275
264
|
{
|
|
276
265
|
"pkg": "snowflake",
|
|
277
|
-
"mod": "index/
|
|
266
|
+
"mod": "index/externalOauthIntegration",
|
|
278
267
|
"fqn": "pulumi_snowflake",
|
|
279
268
|
"classes": {
|
|
280
|
-
"snowflake:index/
|
|
269
|
+
"snowflake:index/externalOauthIntegration:ExternalOauthIntegration": "ExternalOauthIntegration"
|
|
281
270
|
}
|
|
282
271
|
},
|
|
283
272
|
{
|
|
284
273
|
"pkg": "snowflake",
|
|
285
|
-
"mod": "index/
|
|
274
|
+
"mod": "index/externalTable",
|
|
286
275
|
"fqn": "pulumi_snowflake",
|
|
287
276
|
"classes": {
|
|
288
|
-
"snowflake:index/
|
|
277
|
+
"snowflake:index/externalTable:ExternalTable": "ExternalTable"
|
|
289
278
|
}
|
|
290
279
|
},
|
|
291
280
|
{
|
|
292
281
|
"pkg": "snowflake",
|
|
293
|
-
"mod": "index/
|
|
282
|
+
"mod": "index/failoverGroup",
|
|
294
283
|
"fqn": "pulumi_snowflake",
|
|
295
284
|
"classes": {
|
|
296
|
-
"snowflake:index/
|
|
285
|
+
"snowflake:index/failoverGroup:FailoverGroup": "FailoverGroup"
|
|
297
286
|
}
|
|
298
287
|
},
|
|
299
288
|
{
|
|
300
289
|
"pkg": "snowflake",
|
|
301
|
-
"mod": "index/
|
|
290
|
+
"mod": "index/fileFormat",
|
|
302
291
|
"fqn": "pulumi_snowflake",
|
|
303
292
|
"classes": {
|
|
304
|
-
"snowflake:index/
|
|
293
|
+
"snowflake:index/fileFormat:FileFormat": "FileFormat"
|
|
305
294
|
}
|
|
306
295
|
},
|
|
307
296
|
{
|
|
308
297
|
"pkg": "snowflake",
|
|
309
|
-
"mod": "index/
|
|
298
|
+
"mod": "index/function",
|
|
310
299
|
"fqn": "pulumi_snowflake",
|
|
311
300
|
"classes": {
|
|
312
|
-
"snowflake:index/
|
|
301
|
+
"snowflake:index/function:Function": "Function"
|
|
313
302
|
}
|
|
314
303
|
},
|
|
315
304
|
{
|
|
@@ -360,14 +349,6 @@ _utilities.register(
|
|
|
360
349
|
"snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole": "GrantPrivilegesToDatabaseRole"
|
|
361
350
|
}
|
|
362
351
|
},
|
|
363
|
-
{
|
|
364
|
-
"pkg": "snowflake",
|
|
365
|
-
"mod": "index/grantPrivilegesToRole",
|
|
366
|
-
"fqn": "pulumi_snowflake",
|
|
367
|
-
"classes": {
|
|
368
|
-
"snowflake:index/grantPrivilegesToRole:GrantPrivilegesToRole": "GrantPrivilegesToRole"
|
|
369
|
-
}
|
|
370
|
-
},
|
|
371
352
|
{
|
|
372
353
|
"pkg": "snowflake",
|
|
373
354
|
"mod": "index/grantPrivilegesToShare",
|
|
@@ -376,14 +357,6 @@ _utilities.register(
|
|
|
376
357
|
"snowflake:index/grantPrivilegesToShare:GrantPrivilegesToShare": "GrantPrivilegesToShare"
|
|
377
358
|
}
|
|
378
359
|
},
|
|
379
|
-
{
|
|
380
|
-
"pkg": "snowflake",
|
|
381
|
-
"mod": "index/integrationGrant",
|
|
382
|
-
"fqn": "pulumi_snowflake",
|
|
383
|
-
"classes": {
|
|
384
|
-
"snowflake:index/integrationGrant:IntegrationGrant": "IntegrationGrant"
|
|
385
|
-
}
|
|
386
|
-
},
|
|
387
360
|
{
|
|
388
361
|
"pkg": "snowflake",
|
|
389
362
|
"mod": "index/managedAccount",
|
|
@@ -400,14 +373,6 @@ _utilities.register(
|
|
|
400
373
|
"snowflake:index/maskingPolicy:MaskingPolicy": "MaskingPolicy"
|
|
401
374
|
}
|
|
402
375
|
},
|
|
403
|
-
{
|
|
404
|
-
"pkg": "snowflake",
|
|
405
|
-
"mod": "index/maskingPolicyGrant",
|
|
406
|
-
"fqn": "pulumi_snowflake",
|
|
407
|
-
"classes": {
|
|
408
|
-
"snowflake:index/maskingPolicyGrant:MaskingPolicyGrant": "MaskingPolicyGrant"
|
|
409
|
-
}
|
|
410
|
-
},
|
|
411
376
|
{
|
|
412
377
|
"pkg": "snowflake",
|
|
413
378
|
"mod": "index/materializedView",
|
|
@@ -416,14 +381,6 @@ _utilities.register(
|
|
|
416
381
|
"snowflake:index/materializedView:MaterializedView": "MaterializedView"
|
|
417
382
|
}
|
|
418
383
|
},
|
|
419
|
-
{
|
|
420
|
-
"pkg": "snowflake",
|
|
421
|
-
"mod": "index/materializedViewGrant",
|
|
422
|
-
"fqn": "pulumi_snowflake",
|
|
423
|
-
"classes": {
|
|
424
|
-
"snowflake:index/materializedViewGrant:MaterializedViewGrant": "MaterializedViewGrant"
|
|
425
|
-
}
|
|
426
|
-
},
|
|
427
384
|
{
|
|
428
385
|
"pkg": "snowflake",
|
|
429
386
|
"mod": "index/networkPolicy",
|
|
@@ -466,50 +423,50 @@ _utilities.register(
|
|
|
466
423
|
},
|
|
467
424
|
{
|
|
468
425
|
"pkg": "snowflake",
|
|
469
|
-
"mod": "index/
|
|
426
|
+
"mod": "index/oauthIntegrationForCustomClients",
|
|
470
427
|
"fqn": "pulumi_snowflake",
|
|
471
428
|
"classes": {
|
|
472
|
-
"snowflake:index/
|
|
429
|
+
"snowflake:index/oauthIntegrationForCustomClients:OauthIntegrationForCustomClients": "OauthIntegrationForCustomClients"
|
|
473
430
|
}
|
|
474
431
|
},
|
|
475
432
|
{
|
|
476
433
|
"pkg": "snowflake",
|
|
477
|
-
"mod": "index/
|
|
434
|
+
"mod": "index/oauthIntegrationForPartnerApplications",
|
|
478
435
|
"fqn": "pulumi_snowflake",
|
|
479
436
|
"classes": {
|
|
480
|
-
"snowflake:index/
|
|
437
|
+
"snowflake:index/oauthIntegrationForPartnerApplications:OauthIntegrationForPartnerApplications": "OauthIntegrationForPartnerApplications"
|
|
481
438
|
}
|
|
482
439
|
},
|
|
483
440
|
{
|
|
484
441
|
"pkg": "snowflake",
|
|
485
|
-
"mod": "index/
|
|
442
|
+
"mod": "index/objectParameter",
|
|
486
443
|
"fqn": "pulumi_snowflake",
|
|
487
444
|
"classes": {
|
|
488
|
-
"snowflake:index/
|
|
445
|
+
"snowflake:index/objectParameter:ObjectParameter": "ObjectParameter"
|
|
489
446
|
}
|
|
490
447
|
},
|
|
491
448
|
{
|
|
492
449
|
"pkg": "snowflake",
|
|
493
|
-
"mod": "index/
|
|
450
|
+
"mod": "index/passwordPolicy",
|
|
494
451
|
"fqn": "pulumi_snowflake",
|
|
495
452
|
"classes": {
|
|
496
|
-
"snowflake:index/
|
|
453
|
+
"snowflake:index/passwordPolicy:PasswordPolicy": "PasswordPolicy"
|
|
497
454
|
}
|
|
498
455
|
},
|
|
499
456
|
{
|
|
500
457
|
"pkg": "snowflake",
|
|
501
|
-
"mod": "index/
|
|
458
|
+
"mod": "index/pipe",
|
|
502
459
|
"fqn": "pulumi_snowflake",
|
|
503
460
|
"classes": {
|
|
504
|
-
"snowflake:index/
|
|
461
|
+
"snowflake:index/pipe:Pipe": "Pipe"
|
|
505
462
|
}
|
|
506
463
|
},
|
|
507
464
|
{
|
|
508
465
|
"pkg": "snowflake",
|
|
509
|
-
"mod": "index/
|
|
466
|
+
"mod": "index/procedure",
|
|
510
467
|
"fqn": "pulumi_snowflake",
|
|
511
468
|
"classes": {
|
|
512
|
-
"snowflake:index/
|
|
469
|
+
"snowflake:index/procedure:Procedure": "Procedure"
|
|
513
470
|
}
|
|
514
471
|
},
|
|
515
472
|
{
|
|
@@ -520,14 +477,6 @@ _utilities.register(
|
|
|
520
477
|
"snowflake:index/resourceMonitor:ResourceMonitor": "ResourceMonitor"
|
|
521
478
|
}
|
|
522
479
|
},
|
|
523
|
-
{
|
|
524
|
-
"pkg": "snowflake",
|
|
525
|
-
"mod": "index/resourceMonitorGrant",
|
|
526
|
-
"fqn": "pulumi_snowflake",
|
|
527
|
-
"classes": {
|
|
528
|
-
"snowflake:index/resourceMonitorGrant:ResourceMonitorGrant": "ResourceMonitorGrant"
|
|
529
|
-
}
|
|
530
|
-
},
|
|
531
480
|
{
|
|
532
481
|
"pkg": "snowflake",
|
|
533
482
|
"mod": "index/role",
|
|
@@ -536,22 +485,6 @@ _utilities.register(
|
|
|
536
485
|
"snowflake:index/role:Role": "Role"
|
|
537
486
|
}
|
|
538
487
|
},
|
|
539
|
-
{
|
|
540
|
-
"pkg": "snowflake",
|
|
541
|
-
"mod": "index/roleGrants",
|
|
542
|
-
"fqn": "pulumi_snowflake",
|
|
543
|
-
"classes": {
|
|
544
|
-
"snowflake:index/roleGrants:RoleGrants": "RoleGrants"
|
|
545
|
-
}
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
"pkg": "snowflake",
|
|
549
|
-
"mod": "index/roleOwnershipGrant",
|
|
550
|
-
"fqn": "pulumi_snowflake",
|
|
551
|
-
"classes": {
|
|
552
|
-
"snowflake:index/roleOwnershipGrant:RoleOwnershipGrant": "RoleOwnershipGrant"
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
488
|
{
|
|
556
489
|
"pkg": "snowflake",
|
|
557
490
|
"mod": "index/rowAccessPolicy",
|
|
@@ -562,10 +495,10 @@ _utilities.register(
|
|
|
562
495
|
},
|
|
563
496
|
{
|
|
564
497
|
"pkg": "snowflake",
|
|
565
|
-
"mod": "index/
|
|
498
|
+
"mod": "index/saml2Integration",
|
|
566
499
|
"fqn": "pulumi_snowflake",
|
|
567
500
|
"classes": {
|
|
568
|
-
"snowflake:index/
|
|
501
|
+
"snowflake:index/saml2Integration:Saml2Integration": "Saml2Integration"
|
|
569
502
|
}
|
|
570
503
|
},
|
|
571
504
|
{
|
|
@@ -584,14 +517,6 @@ _utilities.register(
|
|
|
584
517
|
"snowflake:index/schema:Schema": "Schema"
|
|
585
518
|
}
|
|
586
519
|
},
|
|
587
|
-
{
|
|
588
|
-
"pkg": "snowflake",
|
|
589
|
-
"mod": "index/schemaGrant",
|
|
590
|
-
"fqn": "pulumi_snowflake",
|
|
591
|
-
"classes": {
|
|
592
|
-
"snowflake:index/schemaGrant:SchemaGrant": "SchemaGrant"
|
|
593
|
-
}
|
|
594
|
-
},
|
|
595
520
|
{
|
|
596
521
|
"pkg": "snowflake",
|
|
597
522
|
"mod": "index/scimIntegration",
|
|
@@ -602,18 +527,18 @@ _utilities.register(
|
|
|
602
527
|
},
|
|
603
528
|
{
|
|
604
529
|
"pkg": "snowflake",
|
|
605
|
-
"mod": "index/
|
|
530
|
+
"mod": "index/secondaryDatabase",
|
|
606
531
|
"fqn": "pulumi_snowflake",
|
|
607
532
|
"classes": {
|
|
608
|
-
"snowflake:index/
|
|
533
|
+
"snowflake:index/secondaryDatabase:SecondaryDatabase": "SecondaryDatabase"
|
|
609
534
|
}
|
|
610
535
|
},
|
|
611
536
|
{
|
|
612
537
|
"pkg": "snowflake",
|
|
613
|
-
"mod": "index/
|
|
538
|
+
"mod": "index/sequence",
|
|
614
539
|
"fqn": "pulumi_snowflake",
|
|
615
540
|
"classes": {
|
|
616
|
-
"snowflake:index/
|
|
541
|
+
"snowflake:index/sequence:Sequence": "Sequence"
|
|
617
542
|
}
|
|
618
543
|
},
|
|
619
544
|
{
|
|
@@ -634,18 +559,18 @@ _utilities.register(
|
|
|
634
559
|
},
|
|
635
560
|
{
|
|
636
561
|
"pkg": "snowflake",
|
|
637
|
-
"mod": "index/
|
|
562
|
+
"mod": "index/sharedDatabase",
|
|
638
563
|
"fqn": "pulumi_snowflake",
|
|
639
564
|
"classes": {
|
|
640
|
-
"snowflake:index/
|
|
565
|
+
"snowflake:index/sharedDatabase:SharedDatabase": "SharedDatabase"
|
|
641
566
|
}
|
|
642
567
|
},
|
|
643
568
|
{
|
|
644
569
|
"pkg": "snowflake",
|
|
645
|
-
"mod": "index/
|
|
570
|
+
"mod": "index/stage",
|
|
646
571
|
"fqn": "pulumi_snowflake",
|
|
647
572
|
"classes": {
|
|
648
|
-
"snowflake:index/
|
|
573
|
+
"snowflake:index/stage:Stage": "Stage"
|
|
649
574
|
}
|
|
650
575
|
},
|
|
651
576
|
{
|
|
@@ -666,10 +591,10 @@ _utilities.register(
|
|
|
666
591
|
},
|
|
667
592
|
{
|
|
668
593
|
"pkg": "snowflake",
|
|
669
|
-
"mod": "index/
|
|
594
|
+
"mod": "index/streamlit",
|
|
670
595
|
"fqn": "pulumi_snowflake",
|
|
671
596
|
"classes": {
|
|
672
|
-
"snowflake:index/
|
|
597
|
+
"snowflake:index/streamlit:Streamlit": "Streamlit"
|
|
673
598
|
}
|
|
674
599
|
},
|
|
675
600
|
{
|
|
@@ -696,14 +621,6 @@ _utilities.register(
|
|
|
696
621
|
"snowflake:index/tableConstraint:TableConstraint": "TableConstraint"
|
|
697
622
|
}
|
|
698
623
|
},
|
|
699
|
-
{
|
|
700
|
-
"pkg": "snowflake",
|
|
701
|
-
"mod": "index/tableGrant",
|
|
702
|
-
"fqn": "pulumi_snowflake",
|
|
703
|
-
"classes": {
|
|
704
|
-
"snowflake:index/tableGrant:TableGrant": "TableGrant"
|
|
705
|
-
}
|
|
706
|
-
},
|
|
707
624
|
{
|
|
708
625
|
"pkg": "snowflake",
|
|
709
626
|
"mod": "index/tag",
|
|
@@ -720,14 +637,6 @@ _utilities.register(
|
|
|
720
637
|
"snowflake:index/tagAssociation:TagAssociation": "TagAssociation"
|
|
721
638
|
}
|
|
722
639
|
},
|
|
723
|
-
{
|
|
724
|
-
"pkg": "snowflake",
|
|
725
|
-
"mod": "index/tagGrant",
|
|
726
|
-
"fqn": "pulumi_snowflake",
|
|
727
|
-
"classes": {
|
|
728
|
-
"snowflake:index/tagGrant:TagGrant": "TagGrant"
|
|
729
|
-
}
|
|
730
|
-
},
|
|
731
640
|
{
|
|
732
641
|
"pkg": "snowflake",
|
|
733
642
|
"mod": "index/tagMaskingPolicyAssociation",
|
|
@@ -744,14 +653,6 @@ _utilities.register(
|
|
|
744
653
|
"snowflake:index/task:Task": "Task"
|
|
745
654
|
}
|
|
746
655
|
},
|
|
747
|
-
{
|
|
748
|
-
"pkg": "snowflake",
|
|
749
|
-
"mod": "index/taskGrant",
|
|
750
|
-
"fqn": "pulumi_snowflake",
|
|
751
|
-
"classes": {
|
|
752
|
-
"snowflake:index/taskGrant:TaskGrant": "TaskGrant"
|
|
753
|
-
}
|
|
754
|
-
},
|
|
755
656
|
{
|
|
756
657
|
"pkg": "snowflake",
|
|
757
658
|
"mod": "index/unsafeExecute",
|
|
@@ -768,22 +669,6 @@ _utilities.register(
|
|
|
768
669
|
"snowflake:index/user:User": "User"
|
|
769
670
|
}
|
|
770
671
|
},
|
|
771
|
-
{
|
|
772
|
-
"pkg": "snowflake",
|
|
773
|
-
"mod": "index/userGrant",
|
|
774
|
-
"fqn": "pulumi_snowflake",
|
|
775
|
-
"classes": {
|
|
776
|
-
"snowflake:index/userGrant:UserGrant": "UserGrant"
|
|
777
|
-
}
|
|
778
|
-
},
|
|
779
|
-
{
|
|
780
|
-
"pkg": "snowflake",
|
|
781
|
-
"mod": "index/userOwnershipGrant",
|
|
782
|
-
"fqn": "pulumi_snowflake",
|
|
783
|
-
"classes": {
|
|
784
|
-
"snowflake:index/userOwnershipGrant:UserOwnershipGrant": "UserOwnershipGrant"
|
|
785
|
-
}
|
|
786
|
-
},
|
|
787
672
|
{
|
|
788
673
|
"pkg": "snowflake",
|
|
789
674
|
"mod": "index/userPasswordPolicyAttachment",
|
|
@@ -808,14 +693,6 @@ _utilities.register(
|
|
|
808
693
|
"snowflake:index/view:View": "View"
|
|
809
694
|
}
|
|
810
695
|
},
|
|
811
|
-
{
|
|
812
|
-
"pkg": "snowflake",
|
|
813
|
-
"mod": "index/viewGrant",
|
|
814
|
-
"fqn": "pulumi_snowflake",
|
|
815
|
-
"classes": {
|
|
816
|
-
"snowflake:index/viewGrant:ViewGrant": "ViewGrant"
|
|
817
|
-
}
|
|
818
|
-
},
|
|
819
696
|
{
|
|
820
697
|
"pkg": "snowflake",
|
|
821
698
|
"mod": "index/warehouse",
|
|
@@ -823,14 +700,6 @@ _utilities.register(
|
|
|
823
700
|
"classes": {
|
|
824
701
|
"snowflake:index/warehouse:Warehouse": "Warehouse"
|
|
825
702
|
}
|
|
826
|
-
},
|
|
827
|
-
{
|
|
828
|
-
"pkg": "snowflake",
|
|
829
|
-
"mod": "index/warehouseGrant",
|
|
830
|
-
"fqn": "pulumi_snowflake",
|
|
831
|
-
"classes": {
|
|
832
|
-
"snowflake:index/warehouseGrant:WarehouseGrant": "WarehouseGrant"
|
|
833
|
-
}
|
|
834
703
|
}
|
|
835
704
|
]
|
|
836
705
|
""",
|