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