pulumi-snowflake 0.56.0__py3-none-any.whl → 0.56.0a1718087540__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 +217 -66
- pulumi_snowflake/_inputs.py +1590 -10178
- pulumi_snowflake/_utilities.py +4 -38
- pulumi_snowflake/account_grant.py +319 -0
- pulumi_snowflake/database.py +232 -854
- pulumi_snowflake/database_grant.py +471 -0
- pulumi_snowflake/external_oauth_integration.py +534 -562
- pulumi_snowflake/external_table.py +9 -3
- pulumi_snowflake/external_table_grant.py +666 -0
- pulumi_snowflake/failover_group.py +2 -2
- pulumi_snowflake/failover_group_grant.py +368 -0
- pulumi_snowflake/file_format_grant.py +611 -0
- pulumi_snowflake/function_grant.py +721 -0
- pulumi_snowflake/get_databases.py +62 -71
- pulumi_snowflake/get_warehouses.py +18 -66
- pulumi_snowflake/grant_privileges_to_database_role.py +4 -0
- pulumi_snowflake/grant_privileges_to_role.py +821 -0
- pulumi_snowflake/integration_grant.py +416 -0
- pulumi_snowflake/managed_account.py +7 -7
- pulumi_snowflake/masking_policy_grant.py +518 -0
- pulumi_snowflake/materialized_view.py +9 -3
- pulumi_snowflake/materialized_view_grant.py +665 -0
- pulumi_snowflake/notification_integration.py +48 -16
- pulumi_snowflake/oauth_integration.py +0 -4
- pulumi_snowflake/outputs.py +2887 -13017
- pulumi_snowflake/pipe_grant.py +563 -0
- pulumi_snowflake/procedure.py +9 -3
- pulumi_snowflake/procedure_grant.py +721 -0
- pulumi_snowflake/provider.py +60 -20
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/resource_monitor.py +18 -6
- pulumi_snowflake/resource_monitor_grant.py +363 -0
- pulumi_snowflake/role.py +9 -3
- pulumi_snowflake/role_grants.py +340 -0
- pulumi_snowflake/role_ownership_grant.py +329 -0
- pulumi_snowflake/row_access_policy_grant.py +516 -0
- pulumi_snowflake/saml_integration.py +0 -4
- pulumi_snowflake/schema.py +9 -3
- pulumi_snowflake/schema_grant.py +603 -0
- pulumi_snowflake/scim_integration.py +105 -255
- pulumi_snowflake/sequence.py +6 -6
- pulumi_snowflake/sequence_grant.py +611 -0
- pulumi_snowflake/share.py +2 -2
- pulumi_snowflake/stage.py +9 -3
- pulumi_snowflake/stage_grant.py +611 -0
- pulumi_snowflake/stream_grant.py +611 -0
- pulumi_snowflake/table.py +18 -6
- pulumi_snowflake/table_constraint.py +9 -3
- pulumi_snowflake/table_grant.py +653 -0
- pulumi_snowflake/tag_association.py +47 -41
- pulumi_snowflake/tag_grant.py +508 -0
- pulumi_snowflake/task_grant.py +611 -0
- pulumi_snowflake/user_grant.py +370 -0
- pulumi_snowflake/user_ownership_grant.py +275 -0
- pulumi_snowflake/user_password_policy_attachment.py +0 -32
- pulumi_snowflake/view.py +9 -3
- pulumi_snowflake/view_grant.py +685 -0
- pulumi_snowflake/warehouse.py +126 -143
- pulumi_snowflake/warehouse_grant.py +416 -0
- {pulumi_snowflake-0.56.0.dist-info → pulumi_snowflake-0.56.0a1718087540.dist-info}/METADATA +1 -1
- {pulumi_snowflake-0.56.0.dist-info → pulumi_snowflake-0.56.0a1718087540.dist-info}/RECORD +63 -48
- {pulumi_snowflake-0.56.0.dist-info → pulumi_snowflake-0.56.0a1718087540.dist-info}/WHEEL +1 -1
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +0 -688
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +0 -641
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +0 -676
- pulumi_snowflake/cortex_search_service.py +0 -563
- pulumi_snowflake/database_old.py +0 -556
- pulumi_snowflake/get_cortex_search_services.py +0 -197
- pulumi_snowflake/get_security_integrations.py +0 -122
- pulumi_snowflake/oauth_integration_for_custom_clients.py +0 -936
- pulumi_snowflake/oauth_integration_for_partner_applications.py +0 -580
- pulumi_snowflake/saml2_integration.py +0 -971
- pulumi_snowflake/secondary_database.py +0 -1059
- pulumi_snowflake/shared_database.py +0 -914
- {pulumi_snowflake-0.56.0.dist-info → pulumi_snowflake-0.56.0a1718087540.dist-info}/top_level.txt +0 -0
pulumi_snowflake/__init__.py
CHANGED
|
@@ -6,28 +6,28 @@ 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 *
|
|
9
10
|
from .account_parameter import *
|
|
10
11
|
from .account_password_policy_attachment import *
|
|
11
12
|
from .alert import *
|
|
12
|
-
from .api_authentication_integration_with_authorization_code_grant import *
|
|
13
|
-
from .api_authentication_integration_with_client_credentials import *
|
|
14
|
-
from .api_authentication_integration_with_jwt_bearer import *
|
|
15
13
|
from .api_integration import *
|
|
16
|
-
from .cortex_search_service import *
|
|
17
14
|
from .database import *
|
|
18
|
-
from .
|
|
15
|
+
from .database_grant import *
|
|
19
16
|
from .database_role import *
|
|
20
17
|
from .dynamic_table import *
|
|
21
18
|
from .email_notification_integration import *
|
|
22
19
|
from .external_function import *
|
|
23
20
|
from .external_oauth_integration import *
|
|
24
21
|
from .external_table import *
|
|
22
|
+
from .external_table_grant import *
|
|
25
23
|
from .failover_group import *
|
|
24
|
+
from .failover_group_grant import *
|
|
26
25
|
from .file_format import *
|
|
26
|
+
from .file_format_grant import *
|
|
27
27
|
from .function import *
|
|
28
|
+
from .function_grant import *
|
|
28
29
|
from .get_accounts import *
|
|
29
30
|
from .get_alerts import *
|
|
30
|
-
from .get_cortex_search_services import *
|
|
31
31
|
from .get_current_account import *
|
|
32
32
|
from .get_current_role import *
|
|
33
33
|
from .get_database import *
|
|
@@ -51,7 +51,6 @@ from .get_role import *
|
|
|
51
51
|
from .get_roles import *
|
|
52
52
|
from .get_row_access_policies import *
|
|
53
53
|
from .get_schemas import *
|
|
54
|
-
from .get_security_integrations import *
|
|
55
54
|
from .get_sequences import *
|
|
56
55
|
from .get_shares import *
|
|
57
56
|
from .get_stages import *
|
|
@@ -72,50 +71,66 @@ from .grant_database_role import *
|
|
|
72
71
|
from .grant_ownership import *
|
|
73
72
|
from .grant_privileges_to_account_role import *
|
|
74
73
|
from .grant_privileges_to_database_role import *
|
|
74
|
+
from .grant_privileges_to_role import *
|
|
75
75
|
from .grant_privileges_to_share import *
|
|
76
|
+
from .integration_grant import *
|
|
76
77
|
from .managed_account import *
|
|
77
78
|
from .masking_policy import *
|
|
79
|
+
from .masking_policy_grant import *
|
|
78
80
|
from .materialized_view import *
|
|
81
|
+
from .materialized_view_grant import *
|
|
79
82
|
from .network_policy import *
|
|
80
83
|
from .network_policy_attachment import *
|
|
81
84
|
from .network_rule import *
|
|
82
85
|
from .notification_integration import *
|
|
83
86
|
from .oauth_integration import *
|
|
84
|
-
from .oauth_integration_for_custom_clients import *
|
|
85
|
-
from .oauth_integration_for_partner_applications import *
|
|
86
87
|
from .object_parameter import *
|
|
87
88
|
from .password_policy import *
|
|
88
89
|
from .pipe import *
|
|
90
|
+
from .pipe_grant import *
|
|
89
91
|
from .procedure import *
|
|
92
|
+
from .procedure_grant import *
|
|
90
93
|
from .provider import *
|
|
91
94
|
from .resource_monitor import *
|
|
95
|
+
from .resource_monitor_grant import *
|
|
92
96
|
from .role import *
|
|
97
|
+
from .role_grants import *
|
|
98
|
+
from .role_ownership_grant import *
|
|
93
99
|
from .row_access_policy import *
|
|
94
|
-
from .
|
|
100
|
+
from .row_access_policy_grant import *
|
|
95
101
|
from .saml_integration import *
|
|
96
102
|
from .schema import *
|
|
103
|
+
from .schema_grant import *
|
|
97
104
|
from .scim_integration import *
|
|
98
|
-
from .secondary_database import *
|
|
99
105
|
from .sequence import *
|
|
106
|
+
from .sequence_grant import *
|
|
100
107
|
from .session_parameter import *
|
|
101
108
|
from .share import *
|
|
102
|
-
from .shared_database import *
|
|
103
109
|
from .stage import *
|
|
110
|
+
from .stage_grant import *
|
|
104
111
|
from .storage_integration import *
|
|
105
112
|
from .stream import *
|
|
113
|
+
from .stream_grant import *
|
|
106
114
|
from .table import *
|
|
107
115
|
from .table_column_masking_policy_application import *
|
|
108
116
|
from .table_constraint import *
|
|
117
|
+
from .table_grant import *
|
|
109
118
|
from .tag import *
|
|
110
119
|
from .tag_association import *
|
|
120
|
+
from .tag_grant import *
|
|
111
121
|
from .tag_masking_policy_association import *
|
|
112
122
|
from .task import *
|
|
123
|
+
from .task_grant import *
|
|
113
124
|
from .unsafe_execute import *
|
|
114
125
|
from .user import *
|
|
126
|
+
from .user_grant import *
|
|
127
|
+
from .user_ownership_grant import *
|
|
115
128
|
from .user_password_policy_attachment import *
|
|
116
129
|
from .user_public_keys import *
|
|
117
130
|
from .view import *
|
|
131
|
+
from .view_grant import *
|
|
118
132
|
from .warehouse import *
|
|
133
|
+
from .warehouse_grant import *
|
|
119
134
|
from ._inputs import *
|
|
120
135
|
from . import outputs
|
|
121
136
|
|
|
@@ -137,6 +152,14 @@ _utilities.register(
|
|
|
137
152
|
"snowflake:index/account:Account": "Account"
|
|
138
153
|
}
|
|
139
154
|
},
|
|
155
|
+
{
|
|
156
|
+
"pkg": "snowflake",
|
|
157
|
+
"mod": "index/accountGrant",
|
|
158
|
+
"fqn": "pulumi_snowflake",
|
|
159
|
+
"classes": {
|
|
160
|
+
"snowflake:index/accountGrant:AccountGrant": "AccountGrant"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
140
163
|
{
|
|
141
164
|
"pkg": "snowflake",
|
|
142
165
|
"mod": "index/accountParameter",
|
|
@@ -163,130 +186,130 @@ _utilities.register(
|
|
|
163
186
|
},
|
|
164
187
|
{
|
|
165
188
|
"pkg": "snowflake",
|
|
166
|
-
"mod": "index/
|
|
189
|
+
"mod": "index/apiIntegration",
|
|
167
190
|
"fqn": "pulumi_snowflake",
|
|
168
191
|
"classes": {
|
|
169
|
-
"snowflake:index/
|
|
192
|
+
"snowflake:index/apiIntegration:ApiIntegration": "ApiIntegration"
|
|
170
193
|
}
|
|
171
194
|
},
|
|
172
195
|
{
|
|
173
196
|
"pkg": "snowflake",
|
|
174
|
-
"mod": "index/
|
|
197
|
+
"mod": "index/database",
|
|
175
198
|
"fqn": "pulumi_snowflake",
|
|
176
199
|
"classes": {
|
|
177
|
-
"snowflake:index/
|
|
200
|
+
"snowflake:index/database:Database": "Database"
|
|
178
201
|
}
|
|
179
202
|
},
|
|
180
203
|
{
|
|
181
204
|
"pkg": "snowflake",
|
|
182
|
-
"mod": "index/
|
|
205
|
+
"mod": "index/databaseGrant",
|
|
183
206
|
"fqn": "pulumi_snowflake",
|
|
184
207
|
"classes": {
|
|
185
|
-
"snowflake:index/
|
|
208
|
+
"snowflake:index/databaseGrant:DatabaseGrant": "DatabaseGrant"
|
|
186
209
|
}
|
|
187
210
|
},
|
|
188
211
|
{
|
|
189
212
|
"pkg": "snowflake",
|
|
190
|
-
"mod": "index/
|
|
213
|
+
"mod": "index/databaseRole",
|
|
191
214
|
"fqn": "pulumi_snowflake",
|
|
192
215
|
"classes": {
|
|
193
|
-
"snowflake:index/
|
|
216
|
+
"snowflake:index/databaseRole:DatabaseRole": "DatabaseRole"
|
|
194
217
|
}
|
|
195
218
|
},
|
|
196
219
|
{
|
|
197
220
|
"pkg": "snowflake",
|
|
198
|
-
"mod": "index/
|
|
221
|
+
"mod": "index/dynamicTable",
|
|
199
222
|
"fqn": "pulumi_snowflake",
|
|
200
223
|
"classes": {
|
|
201
|
-
"snowflake:index/
|
|
224
|
+
"snowflake:index/dynamicTable:DynamicTable": "DynamicTable"
|
|
202
225
|
}
|
|
203
226
|
},
|
|
204
227
|
{
|
|
205
228
|
"pkg": "snowflake",
|
|
206
|
-
"mod": "index/
|
|
229
|
+
"mod": "index/emailNotificationIntegration",
|
|
207
230
|
"fqn": "pulumi_snowflake",
|
|
208
231
|
"classes": {
|
|
209
|
-
"snowflake:index/
|
|
232
|
+
"snowflake:index/emailNotificationIntegration:EmailNotificationIntegration": "EmailNotificationIntegration"
|
|
210
233
|
}
|
|
211
234
|
},
|
|
212
235
|
{
|
|
213
236
|
"pkg": "snowflake",
|
|
214
|
-
"mod": "index/
|
|
237
|
+
"mod": "index/externalFunction",
|
|
215
238
|
"fqn": "pulumi_snowflake",
|
|
216
239
|
"classes": {
|
|
217
|
-
"snowflake:index/
|
|
240
|
+
"snowflake:index/externalFunction:ExternalFunction": "ExternalFunction"
|
|
218
241
|
}
|
|
219
242
|
},
|
|
220
243
|
{
|
|
221
244
|
"pkg": "snowflake",
|
|
222
|
-
"mod": "index/
|
|
245
|
+
"mod": "index/externalOauthIntegration",
|
|
223
246
|
"fqn": "pulumi_snowflake",
|
|
224
247
|
"classes": {
|
|
225
|
-
"snowflake:index/
|
|
248
|
+
"snowflake:index/externalOauthIntegration:ExternalOauthIntegration": "ExternalOauthIntegration"
|
|
226
249
|
}
|
|
227
250
|
},
|
|
228
251
|
{
|
|
229
252
|
"pkg": "snowflake",
|
|
230
|
-
"mod": "index/
|
|
253
|
+
"mod": "index/externalTable",
|
|
231
254
|
"fqn": "pulumi_snowflake",
|
|
232
255
|
"classes": {
|
|
233
|
-
"snowflake:index/
|
|
256
|
+
"snowflake:index/externalTable:ExternalTable": "ExternalTable"
|
|
234
257
|
}
|
|
235
258
|
},
|
|
236
259
|
{
|
|
237
260
|
"pkg": "snowflake",
|
|
238
|
-
"mod": "index/
|
|
261
|
+
"mod": "index/externalTableGrant",
|
|
239
262
|
"fqn": "pulumi_snowflake",
|
|
240
263
|
"classes": {
|
|
241
|
-
"snowflake:index/
|
|
264
|
+
"snowflake:index/externalTableGrant:ExternalTableGrant": "ExternalTableGrant"
|
|
242
265
|
}
|
|
243
266
|
},
|
|
244
267
|
{
|
|
245
268
|
"pkg": "snowflake",
|
|
246
|
-
"mod": "index/
|
|
269
|
+
"mod": "index/failoverGroup",
|
|
247
270
|
"fqn": "pulumi_snowflake",
|
|
248
271
|
"classes": {
|
|
249
|
-
"snowflake:index/
|
|
272
|
+
"snowflake:index/failoverGroup:FailoverGroup": "FailoverGroup"
|
|
250
273
|
}
|
|
251
274
|
},
|
|
252
275
|
{
|
|
253
276
|
"pkg": "snowflake",
|
|
254
|
-
"mod": "index/
|
|
277
|
+
"mod": "index/failoverGroupGrant",
|
|
255
278
|
"fqn": "pulumi_snowflake",
|
|
256
279
|
"classes": {
|
|
257
|
-
"snowflake:index/
|
|
280
|
+
"snowflake:index/failoverGroupGrant:FailoverGroupGrant": "FailoverGroupGrant"
|
|
258
281
|
}
|
|
259
282
|
},
|
|
260
283
|
{
|
|
261
284
|
"pkg": "snowflake",
|
|
262
|
-
"mod": "index/
|
|
285
|
+
"mod": "index/fileFormat",
|
|
263
286
|
"fqn": "pulumi_snowflake",
|
|
264
287
|
"classes": {
|
|
265
|
-
"snowflake:index/
|
|
288
|
+
"snowflake:index/fileFormat:FileFormat": "FileFormat"
|
|
266
289
|
}
|
|
267
290
|
},
|
|
268
291
|
{
|
|
269
292
|
"pkg": "snowflake",
|
|
270
|
-
"mod": "index/
|
|
293
|
+
"mod": "index/fileFormatGrant",
|
|
271
294
|
"fqn": "pulumi_snowflake",
|
|
272
295
|
"classes": {
|
|
273
|
-
"snowflake:index/
|
|
296
|
+
"snowflake:index/fileFormatGrant:FileFormatGrant": "FileFormatGrant"
|
|
274
297
|
}
|
|
275
298
|
},
|
|
276
299
|
{
|
|
277
300
|
"pkg": "snowflake",
|
|
278
|
-
"mod": "index/
|
|
301
|
+
"mod": "index/function",
|
|
279
302
|
"fqn": "pulumi_snowflake",
|
|
280
303
|
"classes": {
|
|
281
|
-
"snowflake:index/
|
|
304
|
+
"snowflake:index/function:Function": "Function"
|
|
282
305
|
}
|
|
283
306
|
},
|
|
284
307
|
{
|
|
285
308
|
"pkg": "snowflake",
|
|
286
|
-
"mod": "index/
|
|
309
|
+
"mod": "index/functionGrant",
|
|
287
310
|
"fqn": "pulumi_snowflake",
|
|
288
311
|
"classes": {
|
|
289
|
-
"snowflake:index/
|
|
312
|
+
"snowflake:index/functionGrant:FunctionGrant": "FunctionGrant"
|
|
290
313
|
}
|
|
291
314
|
},
|
|
292
315
|
{
|
|
@@ -337,6 +360,14 @@ _utilities.register(
|
|
|
337
360
|
"snowflake:index/grantPrivilegesToDatabaseRole:GrantPrivilegesToDatabaseRole": "GrantPrivilegesToDatabaseRole"
|
|
338
361
|
}
|
|
339
362
|
},
|
|
363
|
+
{
|
|
364
|
+
"pkg": "snowflake",
|
|
365
|
+
"mod": "index/grantPrivilegesToRole",
|
|
366
|
+
"fqn": "pulumi_snowflake",
|
|
367
|
+
"classes": {
|
|
368
|
+
"snowflake:index/grantPrivilegesToRole:GrantPrivilegesToRole": "GrantPrivilegesToRole"
|
|
369
|
+
}
|
|
370
|
+
},
|
|
340
371
|
{
|
|
341
372
|
"pkg": "snowflake",
|
|
342
373
|
"mod": "index/grantPrivilegesToShare",
|
|
@@ -345,6 +376,14 @@ _utilities.register(
|
|
|
345
376
|
"snowflake:index/grantPrivilegesToShare:GrantPrivilegesToShare": "GrantPrivilegesToShare"
|
|
346
377
|
}
|
|
347
378
|
},
|
|
379
|
+
{
|
|
380
|
+
"pkg": "snowflake",
|
|
381
|
+
"mod": "index/integrationGrant",
|
|
382
|
+
"fqn": "pulumi_snowflake",
|
|
383
|
+
"classes": {
|
|
384
|
+
"snowflake:index/integrationGrant:IntegrationGrant": "IntegrationGrant"
|
|
385
|
+
}
|
|
386
|
+
},
|
|
348
387
|
{
|
|
349
388
|
"pkg": "snowflake",
|
|
350
389
|
"mod": "index/managedAccount",
|
|
@@ -361,6 +400,14 @@ _utilities.register(
|
|
|
361
400
|
"snowflake:index/maskingPolicy:MaskingPolicy": "MaskingPolicy"
|
|
362
401
|
}
|
|
363
402
|
},
|
|
403
|
+
{
|
|
404
|
+
"pkg": "snowflake",
|
|
405
|
+
"mod": "index/maskingPolicyGrant",
|
|
406
|
+
"fqn": "pulumi_snowflake",
|
|
407
|
+
"classes": {
|
|
408
|
+
"snowflake:index/maskingPolicyGrant:MaskingPolicyGrant": "MaskingPolicyGrant"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
364
411
|
{
|
|
365
412
|
"pkg": "snowflake",
|
|
366
413
|
"mod": "index/materializedView",
|
|
@@ -369,6 +416,14 @@ _utilities.register(
|
|
|
369
416
|
"snowflake:index/materializedView:MaterializedView": "MaterializedView"
|
|
370
417
|
}
|
|
371
418
|
},
|
|
419
|
+
{
|
|
420
|
+
"pkg": "snowflake",
|
|
421
|
+
"mod": "index/materializedViewGrant",
|
|
422
|
+
"fqn": "pulumi_snowflake",
|
|
423
|
+
"classes": {
|
|
424
|
+
"snowflake:index/materializedViewGrant:MaterializedViewGrant": "MaterializedViewGrant"
|
|
425
|
+
}
|
|
426
|
+
},
|
|
372
427
|
{
|
|
373
428
|
"pkg": "snowflake",
|
|
374
429
|
"mod": "index/networkPolicy",
|
|
@@ -411,50 +466,50 @@ _utilities.register(
|
|
|
411
466
|
},
|
|
412
467
|
{
|
|
413
468
|
"pkg": "snowflake",
|
|
414
|
-
"mod": "index/
|
|
469
|
+
"mod": "index/objectParameter",
|
|
415
470
|
"fqn": "pulumi_snowflake",
|
|
416
471
|
"classes": {
|
|
417
|
-
"snowflake:index/
|
|
472
|
+
"snowflake:index/objectParameter:ObjectParameter": "ObjectParameter"
|
|
418
473
|
}
|
|
419
474
|
},
|
|
420
475
|
{
|
|
421
476
|
"pkg": "snowflake",
|
|
422
|
-
"mod": "index/
|
|
477
|
+
"mod": "index/passwordPolicy",
|
|
423
478
|
"fqn": "pulumi_snowflake",
|
|
424
479
|
"classes": {
|
|
425
|
-
"snowflake:index/
|
|
480
|
+
"snowflake:index/passwordPolicy:PasswordPolicy": "PasswordPolicy"
|
|
426
481
|
}
|
|
427
482
|
},
|
|
428
483
|
{
|
|
429
484
|
"pkg": "snowflake",
|
|
430
|
-
"mod": "index/
|
|
485
|
+
"mod": "index/pipe",
|
|
431
486
|
"fqn": "pulumi_snowflake",
|
|
432
487
|
"classes": {
|
|
433
|
-
"snowflake:index/
|
|
488
|
+
"snowflake:index/pipe:Pipe": "Pipe"
|
|
434
489
|
}
|
|
435
490
|
},
|
|
436
491
|
{
|
|
437
492
|
"pkg": "snowflake",
|
|
438
|
-
"mod": "index/
|
|
493
|
+
"mod": "index/pipeGrant",
|
|
439
494
|
"fqn": "pulumi_snowflake",
|
|
440
495
|
"classes": {
|
|
441
|
-
"snowflake:index/
|
|
496
|
+
"snowflake:index/pipeGrant:PipeGrant": "PipeGrant"
|
|
442
497
|
}
|
|
443
498
|
},
|
|
444
499
|
{
|
|
445
500
|
"pkg": "snowflake",
|
|
446
|
-
"mod": "index/
|
|
501
|
+
"mod": "index/procedure",
|
|
447
502
|
"fqn": "pulumi_snowflake",
|
|
448
503
|
"classes": {
|
|
449
|
-
"snowflake:index/
|
|
504
|
+
"snowflake:index/procedure:Procedure": "Procedure"
|
|
450
505
|
}
|
|
451
506
|
},
|
|
452
507
|
{
|
|
453
508
|
"pkg": "snowflake",
|
|
454
|
-
"mod": "index/
|
|
509
|
+
"mod": "index/procedureGrant",
|
|
455
510
|
"fqn": "pulumi_snowflake",
|
|
456
511
|
"classes": {
|
|
457
|
-
"snowflake:index/
|
|
512
|
+
"snowflake:index/procedureGrant:ProcedureGrant": "ProcedureGrant"
|
|
458
513
|
}
|
|
459
514
|
},
|
|
460
515
|
{
|
|
@@ -465,6 +520,14 @@ _utilities.register(
|
|
|
465
520
|
"snowflake:index/resourceMonitor:ResourceMonitor": "ResourceMonitor"
|
|
466
521
|
}
|
|
467
522
|
},
|
|
523
|
+
{
|
|
524
|
+
"pkg": "snowflake",
|
|
525
|
+
"mod": "index/resourceMonitorGrant",
|
|
526
|
+
"fqn": "pulumi_snowflake",
|
|
527
|
+
"classes": {
|
|
528
|
+
"snowflake:index/resourceMonitorGrant:ResourceMonitorGrant": "ResourceMonitorGrant"
|
|
529
|
+
}
|
|
530
|
+
},
|
|
468
531
|
{
|
|
469
532
|
"pkg": "snowflake",
|
|
470
533
|
"mod": "index/role",
|
|
@@ -473,6 +536,22 @@ _utilities.register(
|
|
|
473
536
|
"snowflake:index/role:Role": "Role"
|
|
474
537
|
}
|
|
475
538
|
},
|
|
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
|
+
},
|
|
476
555
|
{
|
|
477
556
|
"pkg": "snowflake",
|
|
478
557
|
"mod": "index/rowAccessPolicy",
|
|
@@ -483,10 +562,10 @@ _utilities.register(
|
|
|
483
562
|
},
|
|
484
563
|
{
|
|
485
564
|
"pkg": "snowflake",
|
|
486
|
-
"mod": "index/
|
|
565
|
+
"mod": "index/rowAccessPolicyGrant",
|
|
487
566
|
"fqn": "pulumi_snowflake",
|
|
488
567
|
"classes": {
|
|
489
|
-
"snowflake:index/
|
|
568
|
+
"snowflake:index/rowAccessPolicyGrant:RowAccessPolicyGrant": "RowAccessPolicyGrant"
|
|
490
569
|
}
|
|
491
570
|
},
|
|
492
571
|
{
|
|
@@ -507,18 +586,18 @@ _utilities.register(
|
|
|
507
586
|
},
|
|
508
587
|
{
|
|
509
588
|
"pkg": "snowflake",
|
|
510
|
-
"mod": "index/
|
|
589
|
+
"mod": "index/schemaGrant",
|
|
511
590
|
"fqn": "pulumi_snowflake",
|
|
512
591
|
"classes": {
|
|
513
|
-
"snowflake:index/
|
|
592
|
+
"snowflake:index/schemaGrant:SchemaGrant": "SchemaGrant"
|
|
514
593
|
}
|
|
515
594
|
},
|
|
516
595
|
{
|
|
517
596
|
"pkg": "snowflake",
|
|
518
|
-
"mod": "index/
|
|
597
|
+
"mod": "index/scimIntegration",
|
|
519
598
|
"fqn": "pulumi_snowflake",
|
|
520
599
|
"classes": {
|
|
521
|
-
"snowflake:index/
|
|
600
|
+
"snowflake:index/scimIntegration:ScimIntegration": "ScimIntegration"
|
|
522
601
|
}
|
|
523
602
|
},
|
|
524
603
|
{
|
|
@@ -529,6 +608,14 @@ _utilities.register(
|
|
|
529
608
|
"snowflake:index/sequence:Sequence": "Sequence"
|
|
530
609
|
}
|
|
531
610
|
},
|
|
611
|
+
{
|
|
612
|
+
"pkg": "snowflake",
|
|
613
|
+
"mod": "index/sequenceGrant",
|
|
614
|
+
"fqn": "pulumi_snowflake",
|
|
615
|
+
"classes": {
|
|
616
|
+
"snowflake:index/sequenceGrant:SequenceGrant": "SequenceGrant"
|
|
617
|
+
}
|
|
618
|
+
},
|
|
532
619
|
{
|
|
533
620
|
"pkg": "snowflake",
|
|
534
621
|
"mod": "index/sessionParameter",
|
|
@@ -547,18 +634,18 @@ _utilities.register(
|
|
|
547
634
|
},
|
|
548
635
|
{
|
|
549
636
|
"pkg": "snowflake",
|
|
550
|
-
"mod": "index/
|
|
637
|
+
"mod": "index/stage",
|
|
551
638
|
"fqn": "pulumi_snowflake",
|
|
552
639
|
"classes": {
|
|
553
|
-
"snowflake:index/
|
|
640
|
+
"snowflake:index/stage:Stage": "Stage"
|
|
554
641
|
}
|
|
555
642
|
},
|
|
556
643
|
{
|
|
557
644
|
"pkg": "snowflake",
|
|
558
|
-
"mod": "index/
|
|
645
|
+
"mod": "index/stageGrant",
|
|
559
646
|
"fqn": "pulumi_snowflake",
|
|
560
647
|
"classes": {
|
|
561
|
-
"snowflake:index/
|
|
648
|
+
"snowflake:index/stageGrant:StageGrant": "StageGrant"
|
|
562
649
|
}
|
|
563
650
|
},
|
|
564
651
|
{
|
|
@@ -577,6 +664,14 @@ _utilities.register(
|
|
|
577
664
|
"snowflake:index/stream:Stream": "Stream"
|
|
578
665
|
}
|
|
579
666
|
},
|
|
667
|
+
{
|
|
668
|
+
"pkg": "snowflake",
|
|
669
|
+
"mod": "index/streamGrant",
|
|
670
|
+
"fqn": "pulumi_snowflake",
|
|
671
|
+
"classes": {
|
|
672
|
+
"snowflake:index/streamGrant:StreamGrant": "StreamGrant"
|
|
673
|
+
}
|
|
674
|
+
},
|
|
580
675
|
{
|
|
581
676
|
"pkg": "snowflake",
|
|
582
677
|
"mod": "index/table",
|
|
@@ -601,6 +696,14 @@ _utilities.register(
|
|
|
601
696
|
"snowflake:index/tableConstraint:TableConstraint": "TableConstraint"
|
|
602
697
|
}
|
|
603
698
|
},
|
|
699
|
+
{
|
|
700
|
+
"pkg": "snowflake",
|
|
701
|
+
"mod": "index/tableGrant",
|
|
702
|
+
"fqn": "pulumi_snowflake",
|
|
703
|
+
"classes": {
|
|
704
|
+
"snowflake:index/tableGrant:TableGrant": "TableGrant"
|
|
705
|
+
}
|
|
706
|
+
},
|
|
604
707
|
{
|
|
605
708
|
"pkg": "snowflake",
|
|
606
709
|
"mod": "index/tag",
|
|
@@ -617,6 +720,14 @@ _utilities.register(
|
|
|
617
720
|
"snowflake:index/tagAssociation:TagAssociation": "TagAssociation"
|
|
618
721
|
}
|
|
619
722
|
},
|
|
723
|
+
{
|
|
724
|
+
"pkg": "snowflake",
|
|
725
|
+
"mod": "index/tagGrant",
|
|
726
|
+
"fqn": "pulumi_snowflake",
|
|
727
|
+
"classes": {
|
|
728
|
+
"snowflake:index/tagGrant:TagGrant": "TagGrant"
|
|
729
|
+
}
|
|
730
|
+
},
|
|
620
731
|
{
|
|
621
732
|
"pkg": "snowflake",
|
|
622
733
|
"mod": "index/tagMaskingPolicyAssociation",
|
|
@@ -633,6 +744,14 @@ _utilities.register(
|
|
|
633
744
|
"snowflake:index/task:Task": "Task"
|
|
634
745
|
}
|
|
635
746
|
},
|
|
747
|
+
{
|
|
748
|
+
"pkg": "snowflake",
|
|
749
|
+
"mod": "index/taskGrant",
|
|
750
|
+
"fqn": "pulumi_snowflake",
|
|
751
|
+
"classes": {
|
|
752
|
+
"snowflake:index/taskGrant:TaskGrant": "TaskGrant"
|
|
753
|
+
}
|
|
754
|
+
},
|
|
636
755
|
{
|
|
637
756
|
"pkg": "snowflake",
|
|
638
757
|
"mod": "index/unsafeExecute",
|
|
@@ -649,6 +768,22 @@ _utilities.register(
|
|
|
649
768
|
"snowflake:index/user:User": "User"
|
|
650
769
|
}
|
|
651
770
|
},
|
|
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
|
+
},
|
|
652
787
|
{
|
|
653
788
|
"pkg": "snowflake",
|
|
654
789
|
"mod": "index/userPasswordPolicyAttachment",
|
|
@@ -673,6 +808,14 @@ _utilities.register(
|
|
|
673
808
|
"snowflake:index/view:View": "View"
|
|
674
809
|
}
|
|
675
810
|
},
|
|
811
|
+
{
|
|
812
|
+
"pkg": "snowflake",
|
|
813
|
+
"mod": "index/viewGrant",
|
|
814
|
+
"fqn": "pulumi_snowflake",
|
|
815
|
+
"classes": {
|
|
816
|
+
"snowflake:index/viewGrant:ViewGrant": "ViewGrant"
|
|
817
|
+
}
|
|
818
|
+
},
|
|
676
819
|
{
|
|
677
820
|
"pkg": "snowflake",
|
|
678
821
|
"mod": "index/warehouse",
|
|
@@ -680,6 +823,14 @@ _utilities.register(
|
|
|
680
823
|
"classes": {
|
|
681
824
|
"snowflake:index/warehouse:Warehouse": "Warehouse"
|
|
682
825
|
}
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"pkg": "snowflake",
|
|
829
|
+
"mod": "index/warehouseGrant",
|
|
830
|
+
"fqn": "pulumi_snowflake",
|
|
831
|
+
"classes": {
|
|
832
|
+
"snowflake:index/warehouseGrant:WarehouseGrant": "WarehouseGrant"
|
|
833
|
+
}
|
|
683
834
|
}
|
|
684
835
|
]
|
|
685
836
|
""",
|