@pulumi/snowflake 0.57.0-alpha.1722063098 → 0.57.0

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 (66) hide show
  1. package/accountRole.d.ts +70 -0
  2. package/accountRole.js +71 -0
  3. package/accountRole.js.map +1 -0
  4. package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.d.ts +2 -0
  5. package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js +2 -0
  6. package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js.map +1 -1
  7. package/apiAuthenticationIntegrationWithClientCredentials.d.ts +2 -0
  8. package/apiAuthenticationIntegrationWithClientCredentials.js +2 -0
  9. package/apiAuthenticationIntegrationWithClientCredentials.js.map +1 -1
  10. package/apiAuthenticationIntegrationWithJwtBearer.d.ts +2 -0
  11. package/apiAuthenticationIntegrationWithJwtBearer.js +2 -0
  12. package/apiAuthenticationIntegrationWithJwtBearer.js.map +1 -1
  13. package/database.d.ts +27 -27
  14. package/externalOauthIntegration.d.ts +1 -1
  15. package/externalOauthIntegration.js +1 -1
  16. package/getNetworkPolicies.d.ts +61 -0
  17. package/getNetworkPolicies.js +31 -0
  18. package/getNetworkPolicies.js.map +1 -0
  19. package/getRoles.d.ts +23 -27
  20. package/getRoles.js +6 -21
  21. package/getRoles.js.map +1 -1
  22. package/getSchemas.d.ts +74 -31
  23. package/getSchemas.js +9 -21
  24. package/getSchemas.js.map +1 -1
  25. package/getStreamlits.d.ts +86 -0
  26. package/getStreamlits.js +33 -0
  27. package/getStreamlits.js.map +1 -0
  28. package/index.d.ts +12 -0
  29. package/index.js +20 -4
  30. package/index.js.map +1 -1
  31. package/networkPolicy.d.ts +39 -8
  32. package/networkPolicy.js +22 -5
  33. package/networkPolicy.js.map +1 -1
  34. package/oauthIntegrationForCustomClients.d.ts +8 -6
  35. package/oauthIntegrationForCustomClients.js +2 -0
  36. package/oauthIntegrationForCustomClients.js.map +1 -1
  37. package/oauthIntegrationForPartnerApplications.d.ts +8 -6
  38. package/oauthIntegrationForPartnerApplications.js +2 -0
  39. package/oauthIntegrationForPartnerApplications.js.map +1 -1
  40. package/package.json +2 -2
  41. package/role.d.ts +16 -27
  42. package/role.js +14 -15
  43. package/role.js.map +1 -1
  44. package/saml2Integration.d.ts +14 -12
  45. package/saml2Integration.js +2 -0
  46. package/saml2Integration.js.map +1 -1
  47. package/schema.d.ts +229 -45
  48. package/schema.js +43 -21
  49. package/schema.js.map +1 -1
  50. package/scimIntegration.d.ts +11 -9
  51. package/scimIntegration.js +2 -0
  52. package/scimIntegration.js.map +1 -1
  53. package/secondaryDatabase.d.ts +27 -27
  54. package/sharedDatabase.d.ts +27 -27
  55. package/streamlit.d.ts +187 -0
  56. package/streamlit.js +96 -0
  57. package/streamlit.js.map +1 -0
  58. package/table.d.ts +0 -63
  59. package/table.js +0 -63
  60. package/table.js.map +1 -1
  61. package/tableConstraint.d.ts +1 -1
  62. package/tableConstraint.js +1 -1
  63. package/types/input.d.ts +329 -41
  64. package/types/output.d.ts +511 -46
  65. package/unsafeExecute.d.ts +4 -4
  66. package/unsafeExecute.js +4 -4
package/types/output.d.ts CHANGED
@@ -1,4 +1,16 @@
1
1
  import * as outputs from "../types/output";
2
+ export interface AccountRoleShowOutput {
3
+ assignedToUsers: number;
4
+ comment: string;
5
+ createdOn: string;
6
+ grantedRoles: number;
7
+ grantedToRoles: number;
8
+ isCurrent: boolean;
9
+ isDefault: boolean;
10
+ isInherited: boolean;
11
+ name: string;
12
+ owner: string;
13
+ }
2
14
  export interface AlertAlertSchedule {
3
15
  /**
4
16
  * Specifies the cron expression for the alert. The cron expression must be in the following format: "minute hour day-of-month month day-of-week". The following values are supported: minute: 0-59 hour: 0-23 day-of-month: 1-31 month: 1-12 day-of-week: 0-6 (0 is Sunday)
@@ -1214,6 +1226,31 @@ export interface GetMaterializedViewsMaterializedView {
1214
1226
  name: string;
1215
1227
  schema: string;
1216
1228
  }
1229
+ export interface GetNetworkPoliciesNetworkPolicy {
1230
+ /**
1231
+ * Holds the output of DESCRIBE NETWORK POLICIES.
1232
+ */
1233
+ describeOutputs: outputs.GetNetworkPoliciesNetworkPolicyDescribeOutput[];
1234
+ /**
1235
+ * Holds the output of SHOW NETWORK POLICIES.
1236
+ */
1237
+ showOutputs: outputs.GetNetworkPoliciesNetworkPolicyShowOutput[];
1238
+ }
1239
+ export interface GetNetworkPoliciesNetworkPolicyDescribeOutput {
1240
+ allowedIpList: string;
1241
+ allowedNetworkRuleList: string;
1242
+ blockedIpList: string;
1243
+ blockedNetworkRuleList: string;
1244
+ }
1245
+ export interface GetNetworkPoliciesNetworkPolicyShowOutput {
1246
+ comment: string;
1247
+ createdOn: string;
1248
+ entriesInAllowedIpList: number;
1249
+ entriesInAllowedNetworkRules: number;
1250
+ entriesInBlockedIpList: number;
1251
+ entriesInBlockedNetworkRules: number;
1252
+ name: string;
1253
+ }
1217
1254
  export interface GetParametersParameter {
1218
1255
  /**
1219
1256
  * The default value of the parameter
@@ -1259,16 +1296,20 @@ export interface GetResourceMonitorsResourceMonitor {
1259
1296
  }
1260
1297
  export interface GetRolesRole {
1261
1298
  /**
1262
- * The comment on the role
1299
+ * Holds the output of SHOW ROLES.
1263
1300
  */
1301
+ showOutputs: outputs.GetRolesRoleShowOutput[];
1302
+ }
1303
+ export interface GetRolesRoleShowOutput {
1304
+ assignedToUsers: number;
1264
1305
  comment: string;
1265
- /**
1266
- * Identifier for the role.
1267
- */
1306
+ createdOn: string;
1307
+ grantedRoles: number;
1308
+ grantedToRoles: number;
1309
+ isCurrent: boolean;
1310
+ isDefault: boolean;
1311
+ isInherited: boolean;
1268
1312
  name: string;
1269
- /**
1270
- * The owner of the role
1271
- */
1272
1313
  owner: string;
1273
1314
  }
1274
1315
  export interface GetRowAccessPoliciesRowAccessPolicy {
@@ -1277,10 +1318,203 @@ export interface GetRowAccessPoliciesRowAccessPolicy {
1277
1318
  name: string;
1278
1319
  schema: string;
1279
1320
  }
1321
+ export interface GetSchemasIn {
1322
+ /**
1323
+ * Returns records for the entire account.
1324
+ */
1325
+ account?: boolean;
1326
+ /**
1327
+ * Returns records for the specified application.
1328
+ */
1329
+ application?: string;
1330
+ /**
1331
+ * Returns records for the specified application package.
1332
+ */
1333
+ applicationPackage?: string;
1334
+ /**
1335
+ * Returns records for the current database in use or for a specified database (db_name).
1336
+ */
1337
+ database?: string;
1338
+ }
1339
+ export interface GetSchemasLimit {
1340
+ /**
1341
+ * Specifies a **case-sensitive** pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
1342
+ */
1343
+ from?: string;
1344
+ /**
1345
+ * The maximum number of rows to return.
1346
+ */
1347
+ rows: number;
1348
+ }
1280
1349
  export interface GetSchemasSchema {
1350
+ /**
1351
+ * Holds the output of DESCRIBE SCHEMA.
1352
+ */
1353
+ describeOutputs: outputs.GetSchemasSchemaDescribeOutput[];
1354
+ /**
1355
+ * Holds the output of SHOW PARAMETERS FOR SCHEMA.
1356
+ */
1357
+ parameters: outputs.GetSchemasSchemaParameter[];
1358
+ /**
1359
+ * Holds the output of SHOW SCHEMAS.
1360
+ */
1361
+ showOutputs: outputs.GetSchemasSchemaShowOutput[];
1362
+ }
1363
+ export interface GetSchemasSchemaDescribeOutput {
1364
+ createdOn: string;
1365
+ kind: string;
1366
+ name: string;
1367
+ }
1368
+ export interface GetSchemasSchemaParameter {
1369
+ catalogs: outputs.GetSchemasSchemaParameterCatalog[];
1370
+ dataRetentionTimeInDays: outputs.GetSchemasSchemaParameterDataRetentionTimeInDay[];
1371
+ defaultDdlCollations: outputs.GetSchemasSchemaParameterDefaultDdlCollation[];
1372
+ enableConsoleOutputs: outputs.GetSchemasSchemaParameterEnableConsoleOutput[];
1373
+ externalVolumes: outputs.GetSchemasSchemaParameterExternalVolume[];
1374
+ logLevels: outputs.GetSchemasSchemaParameterLogLevel[];
1375
+ maxDataExtensionTimeInDays: outputs.GetSchemasSchemaParameterMaxDataExtensionTimeInDay[];
1376
+ pipeExecutionPauseds: outputs.GetSchemasSchemaParameterPipeExecutionPaused[];
1377
+ quotedIdentifiersIgnoreCases: outputs.GetSchemasSchemaParameterQuotedIdentifiersIgnoreCase[];
1378
+ replaceInvalidCharacters: outputs.GetSchemasSchemaParameterReplaceInvalidCharacter[];
1379
+ storageSerializationPolicies: outputs.GetSchemasSchemaParameterStorageSerializationPolicy[];
1380
+ suspendTaskAfterNumFailures: outputs.GetSchemasSchemaParameterSuspendTaskAfterNumFailure[];
1381
+ taskAutoRetryAttempts: outputs.GetSchemasSchemaParameterTaskAutoRetryAttempt[];
1382
+ traceLevels: outputs.GetSchemasSchemaParameterTraceLevel[];
1383
+ userTaskManagedInitialWarehouseSizes: outputs.GetSchemasSchemaParameterUserTaskManagedInitialWarehouseSize[];
1384
+ userTaskMinimumTriggerIntervalInSeconds: outputs.GetSchemasSchemaParameterUserTaskMinimumTriggerIntervalInSecond[];
1385
+ userTaskTimeoutMs: outputs.GetSchemasSchemaParameterUserTaskTimeoutM[];
1386
+ }
1387
+ export interface GetSchemasSchemaParameterCatalog {
1388
+ default: string;
1389
+ description: string;
1390
+ key: string;
1391
+ level: string;
1392
+ value: string;
1393
+ }
1394
+ export interface GetSchemasSchemaParameterDataRetentionTimeInDay {
1395
+ default: string;
1396
+ description: string;
1397
+ key: string;
1398
+ level: string;
1399
+ value: string;
1400
+ }
1401
+ export interface GetSchemasSchemaParameterDefaultDdlCollation {
1402
+ default: string;
1403
+ description: string;
1404
+ key: string;
1405
+ level: string;
1406
+ value: string;
1407
+ }
1408
+ export interface GetSchemasSchemaParameterEnableConsoleOutput {
1409
+ default: string;
1410
+ description: string;
1411
+ key: string;
1412
+ level: string;
1413
+ value: string;
1414
+ }
1415
+ export interface GetSchemasSchemaParameterExternalVolume {
1416
+ default: string;
1417
+ description: string;
1418
+ key: string;
1419
+ level: string;
1420
+ value: string;
1421
+ }
1422
+ export interface GetSchemasSchemaParameterLogLevel {
1423
+ default: string;
1424
+ description: string;
1425
+ key: string;
1426
+ level: string;
1427
+ value: string;
1428
+ }
1429
+ export interface GetSchemasSchemaParameterMaxDataExtensionTimeInDay {
1430
+ default: string;
1431
+ description: string;
1432
+ key: string;
1433
+ level: string;
1434
+ value: string;
1435
+ }
1436
+ export interface GetSchemasSchemaParameterPipeExecutionPaused {
1437
+ default: string;
1438
+ description: string;
1439
+ key: string;
1440
+ level: string;
1441
+ value: string;
1442
+ }
1443
+ export interface GetSchemasSchemaParameterQuotedIdentifiersIgnoreCase {
1444
+ default: string;
1445
+ description: string;
1446
+ key: string;
1447
+ level: string;
1448
+ value: string;
1449
+ }
1450
+ export interface GetSchemasSchemaParameterReplaceInvalidCharacter {
1451
+ default: string;
1452
+ description: string;
1453
+ key: string;
1454
+ level: string;
1455
+ value: string;
1456
+ }
1457
+ export interface GetSchemasSchemaParameterStorageSerializationPolicy {
1458
+ default: string;
1459
+ description: string;
1460
+ key: string;
1461
+ level: string;
1462
+ value: string;
1463
+ }
1464
+ export interface GetSchemasSchemaParameterSuspendTaskAfterNumFailure {
1465
+ default: string;
1466
+ description: string;
1467
+ key: string;
1468
+ level: string;
1469
+ value: string;
1470
+ }
1471
+ export interface GetSchemasSchemaParameterTaskAutoRetryAttempt {
1472
+ default: string;
1473
+ description: string;
1474
+ key: string;
1475
+ level: string;
1476
+ value: string;
1477
+ }
1478
+ export interface GetSchemasSchemaParameterTraceLevel {
1479
+ default: string;
1480
+ description: string;
1481
+ key: string;
1482
+ level: string;
1483
+ value: string;
1484
+ }
1485
+ export interface GetSchemasSchemaParameterUserTaskManagedInitialWarehouseSize {
1486
+ default: string;
1487
+ description: string;
1488
+ key: string;
1489
+ level: string;
1490
+ value: string;
1491
+ }
1492
+ export interface GetSchemasSchemaParameterUserTaskMinimumTriggerIntervalInSecond {
1493
+ default: string;
1494
+ description: string;
1495
+ key: string;
1496
+ level: string;
1497
+ value: string;
1498
+ }
1499
+ export interface GetSchemasSchemaParameterUserTaskTimeoutM {
1500
+ default: string;
1501
+ description: string;
1502
+ key: string;
1503
+ level: string;
1504
+ value: string;
1505
+ }
1506
+ export interface GetSchemasSchemaShowOutput {
1281
1507
  comment: string;
1282
- database: string;
1508
+ createdOn: string;
1509
+ databaseName: string;
1510
+ droppedOn: string;
1511
+ isCurrent: boolean;
1512
+ isDefault: boolean;
1283
1513
  name: string;
1514
+ options: string;
1515
+ owner: string;
1516
+ ownerRoleType: string;
1517
+ retentionTime: string;
1284
1518
  }
1285
1519
  export interface GetSecurityIntegrationsSecurityIntegration {
1286
1520
  /**
@@ -1735,6 +1969,65 @@ export interface GetStorageIntegrationsStorageIntegration {
1735
1969
  name: string;
1736
1970
  type: string;
1737
1971
  }
1972
+ export interface GetStreamlitsIn {
1973
+ /**
1974
+ * Returns records for the entire account.
1975
+ */
1976
+ account?: boolean;
1977
+ /**
1978
+ * Returns records for the current database in use or for a specified database (db_name).
1979
+ */
1980
+ database?: string;
1981
+ /**
1982
+ * Returns records for the current schema in use or a specified schema (schema_name).
1983
+ */
1984
+ schema?: string;
1985
+ }
1986
+ export interface GetStreamlitsLimit {
1987
+ /**
1988
+ * Specifies a **case-sensitive** pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
1989
+ */
1990
+ from?: string;
1991
+ /**
1992
+ * The maximum number of rows to return.
1993
+ */
1994
+ rows: number;
1995
+ }
1996
+ export interface GetStreamlitsStreamlit {
1997
+ /**
1998
+ * Holds the output of DESCRIBE STREAMLITS.
1999
+ */
2000
+ describeOutputs: outputs.GetStreamlitsStreamlitDescribeOutput[];
2001
+ /**
2002
+ * Holds the output of SHOW STREAMLITS.
2003
+ */
2004
+ showOutputs: outputs.GetStreamlitsStreamlitShowOutput[];
2005
+ }
2006
+ export interface GetStreamlitsStreamlitDescribeOutput {
2007
+ defaultPackages: string;
2008
+ externalAccessIntegrations: string[];
2009
+ externalAccessSecrets: string;
2010
+ importUrls: string[];
2011
+ mainFile: string;
2012
+ name: string;
2013
+ queryWarehouse: string;
2014
+ rootLocation: string;
2015
+ title: string;
2016
+ urlId: string;
2017
+ userPackages: string[];
2018
+ }
2019
+ export interface GetStreamlitsStreamlitShowOutput {
2020
+ comment: string;
2021
+ createdOn: string;
2022
+ databaseName: string;
2023
+ name: string;
2024
+ owner: string;
2025
+ ownerRoleType: string;
2026
+ queryWarehouse: string;
2027
+ schemaName: string;
2028
+ title: string;
2029
+ urlId: string;
2030
+ }
1738
2031
  export interface GetStreamsStream {
1739
2032
  comment: string;
1740
2033
  database: string;
@@ -1934,7 +2227,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObject {
1934
2227
  */
1935
2228
  objectName?: string;
1936
2229
  /**
1937
- * The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | VIEW | STREAMLIT
2230
+ * The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | STAGE | STREAM | TABLE | TAG | TASK | VIEW | STREAMLIT
1938
2231
  */
1939
2232
  objectType?: string;
1940
2233
  }
@@ -1942,7 +2235,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObjectAll {
1942
2235
  inDatabase?: string;
1943
2236
  inSchema?: string;
1944
2237
  /**
1945
- * The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | VIEWS | STREAMLITS.
2238
+ * The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS | TABLES | TAGS | TASKS | VIEWS | STREAMLITS.
1946
2239
  */
1947
2240
  objectTypePlural: string;
1948
2241
  }
@@ -1950,7 +2243,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObjectFuture {
1950
2243
  inDatabase?: string;
1951
2244
  inSchema?: string;
1952
2245
  /**
1953
- * The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | STAGES | STREAMS | TABLES | TASKS | VIEWS.
2246
+ * The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS | TABLES | TASKS | VIEWS.
1954
2247
  */
1955
2248
  objectTypePlural: string;
1956
2249
  }
@@ -1982,7 +2275,7 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObject {
1982
2275
  */
1983
2276
  objectName?: string;
1984
2277
  /**
1985
- * The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | VIEW | STREAMLIT
2278
+ * The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | STAGE | STREAM | TABLE | TAG | TASK | VIEW | STREAMLIT
1986
2279
  */
1987
2280
  objectType?: string;
1988
2281
  }
@@ -1996,7 +2289,7 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObjectAll {
1996
2289
  */
1997
2290
  inSchema?: string;
1998
2291
  /**
1999
- * The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | VIEWS | STREAMLITS.
2292
+ * The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS | TABLES | TAGS | TASKS | VIEWS | STREAMLITS.
2000
2293
  */
2001
2294
  objectTypePlural: string;
2002
2295
  }
@@ -2010,7 +2303,7 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObjectFuture {
2010
2303
  */
2011
2304
  inSchema?: string;
2012
2305
  /**
2013
- * The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | STAGES | STREAMS | TABLES | TASKS | VIEWS.
2306
+ * The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS | TABLES | TASKS | VIEWS.
2014
2307
  */
2015
2308
  objectTypePlural: string;
2016
2309
  }
@@ -2045,6 +2338,21 @@ export interface MaterializedViewTag {
2045
2338
  */
2046
2339
  value: string;
2047
2340
  }
2341
+ export interface NetworkPolicyDescribeOutput {
2342
+ allowedIpList: string;
2343
+ allowedNetworkRuleList: string;
2344
+ blockedIpList: string;
2345
+ blockedNetworkRuleList: string;
2346
+ }
2347
+ export interface NetworkPolicyShowOutput {
2348
+ comment: string;
2349
+ createdOn: string;
2350
+ entriesInAllowedIpList: number;
2351
+ entriesInAllowedNetworkRules: number;
2352
+ entriesInBlockedIpList: number;
2353
+ entriesInBlockedNetworkRules: number;
2354
+ name: string;
2355
+ }
2048
2356
  export interface OauthIntegrationForCustomClientsDescribeOutput {
2049
2357
  blockedRolesLists: outputs.OauthIntegrationForCustomClientsDescribeOutputBlockedRolesList[];
2050
2358
  comments: outputs.OauthIntegrationForCustomClientsDescribeOutputComment[];
@@ -2355,23 +2663,17 @@ export interface ProcedureArgument {
2355
2663
  */
2356
2664
  type: string;
2357
2665
  }
2358
- export interface RoleTag {
2359
- /**
2360
- * Name of the database that the tag was created in.
2361
- */
2362
- database?: string;
2363
- /**
2364
- * Tag name, e.g. department.
2365
- */
2666
+ export interface RoleShowOutput {
2667
+ assignedToUsers: number;
2668
+ comment: string;
2669
+ createdOn: string;
2670
+ grantedRoles: number;
2671
+ grantedToRoles: number;
2672
+ isCurrent: boolean;
2673
+ isDefault: boolean;
2674
+ isInherited: boolean;
2366
2675
  name: string;
2367
- /**
2368
- * Name of the schema that the tag was created in.
2369
- */
2370
- schema?: string;
2371
- /**
2372
- * Tag value, e.g. marketing_info.
2373
- */
2374
- value: string;
2676
+ owner: string;
2375
2677
  }
2376
2678
  export interface Saml2IntegrationDescribeOutput {
2377
2679
  allowedEmailPatterns: outputs.Saml2IntegrationDescribeOutputAllowedEmailPattern[];
@@ -2516,24 +2818,162 @@ export interface Saml2IntegrationShowOutput {
2516
2818
  integrationType: string;
2517
2819
  name: string;
2518
2820
  }
2519
- export interface SchemaTag {
2520
- /**
2521
- * Name of the database that the tag was created in.
2522
- */
2523
- database?: string;
2524
- /**
2525
- * Tag name, e.g. department.
2526
- */
2821
+ export interface SchemaDescribeOutput {
2822
+ createdOn: string;
2823
+ kind: string;
2527
2824
  name: string;
2528
- /**
2529
- * Name of the schema that the tag was created in.
2530
- */
2531
- schema?: string;
2532
- /**
2533
- * Tag value, e.g. marketing_info.
2534
- */
2825
+ }
2826
+ export interface SchemaParameter {
2827
+ catalogs: outputs.SchemaParameterCatalog[];
2828
+ dataRetentionTimeInDays: outputs.SchemaParameterDataRetentionTimeInDay[];
2829
+ defaultDdlCollations: outputs.SchemaParameterDefaultDdlCollation[];
2830
+ enableConsoleOutputs: outputs.SchemaParameterEnableConsoleOutput[];
2831
+ externalVolumes: outputs.SchemaParameterExternalVolume[];
2832
+ logLevels: outputs.SchemaParameterLogLevel[];
2833
+ maxDataExtensionTimeInDays: outputs.SchemaParameterMaxDataExtensionTimeInDay[];
2834
+ pipeExecutionPauseds: outputs.SchemaParameterPipeExecutionPaused[];
2835
+ quotedIdentifiersIgnoreCases: outputs.SchemaParameterQuotedIdentifiersIgnoreCase[];
2836
+ replaceInvalidCharacters: outputs.SchemaParameterReplaceInvalidCharacter[];
2837
+ storageSerializationPolicies: outputs.SchemaParameterStorageSerializationPolicy[];
2838
+ suspendTaskAfterNumFailures: outputs.SchemaParameterSuspendTaskAfterNumFailure[];
2839
+ taskAutoRetryAttempts: outputs.SchemaParameterTaskAutoRetryAttempt[];
2840
+ traceLevels: outputs.SchemaParameterTraceLevel[];
2841
+ userTaskManagedInitialWarehouseSizes: outputs.SchemaParameterUserTaskManagedInitialWarehouseSize[];
2842
+ userTaskMinimumTriggerIntervalInSeconds: outputs.SchemaParameterUserTaskMinimumTriggerIntervalInSecond[];
2843
+ userTaskTimeoutMs: outputs.SchemaParameterUserTaskTimeoutM[];
2844
+ }
2845
+ export interface SchemaParameterCatalog {
2846
+ default: string;
2847
+ description: string;
2848
+ key: string;
2849
+ level: string;
2535
2850
  value: string;
2536
2851
  }
2852
+ export interface SchemaParameterDataRetentionTimeInDay {
2853
+ default: string;
2854
+ description: string;
2855
+ key: string;
2856
+ level: string;
2857
+ value: string;
2858
+ }
2859
+ export interface SchemaParameterDefaultDdlCollation {
2860
+ default: string;
2861
+ description: string;
2862
+ key: string;
2863
+ level: string;
2864
+ value: string;
2865
+ }
2866
+ export interface SchemaParameterEnableConsoleOutput {
2867
+ default: string;
2868
+ description: string;
2869
+ key: string;
2870
+ level: string;
2871
+ value: string;
2872
+ }
2873
+ export interface SchemaParameterExternalVolume {
2874
+ default: string;
2875
+ description: string;
2876
+ key: string;
2877
+ level: string;
2878
+ value: string;
2879
+ }
2880
+ export interface SchemaParameterLogLevel {
2881
+ default: string;
2882
+ description: string;
2883
+ key: string;
2884
+ level: string;
2885
+ value: string;
2886
+ }
2887
+ export interface SchemaParameterMaxDataExtensionTimeInDay {
2888
+ default: string;
2889
+ description: string;
2890
+ key: string;
2891
+ level: string;
2892
+ value: string;
2893
+ }
2894
+ export interface SchemaParameterPipeExecutionPaused {
2895
+ default: string;
2896
+ description: string;
2897
+ key: string;
2898
+ level: string;
2899
+ value: string;
2900
+ }
2901
+ export interface SchemaParameterQuotedIdentifiersIgnoreCase {
2902
+ default: string;
2903
+ description: string;
2904
+ key: string;
2905
+ level: string;
2906
+ value: string;
2907
+ }
2908
+ export interface SchemaParameterReplaceInvalidCharacter {
2909
+ default: string;
2910
+ description: string;
2911
+ key: string;
2912
+ level: string;
2913
+ value: string;
2914
+ }
2915
+ export interface SchemaParameterStorageSerializationPolicy {
2916
+ default: string;
2917
+ description: string;
2918
+ key: string;
2919
+ level: string;
2920
+ value: string;
2921
+ }
2922
+ export interface SchemaParameterSuspendTaskAfterNumFailure {
2923
+ default: string;
2924
+ description: string;
2925
+ key: string;
2926
+ level: string;
2927
+ value: string;
2928
+ }
2929
+ export interface SchemaParameterTaskAutoRetryAttempt {
2930
+ default: string;
2931
+ description: string;
2932
+ key: string;
2933
+ level: string;
2934
+ value: string;
2935
+ }
2936
+ export interface SchemaParameterTraceLevel {
2937
+ default: string;
2938
+ description: string;
2939
+ key: string;
2940
+ level: string;
2941
+ value: string;
2942
+ }
2943
+ export interface SchemaParameterUserTaskManagedInitialWarehouseSize {
2944
+ default: string;
2945
+ description: string;
2946
+ key: string;
2947
+ level: string;
2948
+ value: string;
2949
+ }
2950
+ export interface SchemaParameterUserTaskMinimumTriggerIntervalInSecond {
2951
+ default: string;
2952
+ description: string;
2953
+ key: string;
2954
+ level: string;
2955
+ value: string;
2956
+ }
2957
+ export interface SchemaParameterUserTaskTimeoutM {
2958
+ default: string;
2959
+ description: string;
2960
+ key: string;
2961
+ level: string;
2962
+ value: string;
2963
+ }
2964
+ export interface SchemaShowOutput {
2965
+ comment: string;
2966
+ createdOn: string;
2967
+ databaseName: string;
2968
+ droppedOn: string;
2969
+ isCurrent: boolean;
2970
+ isDefault: boolean;
2971
+ name: string;
2972
+ options: string;
2973
+ owner: string;
2974
+ ownerRoleType: string;
2975
+ retentionTime: string;
2976
+ }
2537
2977
  export interface ScimIntegrationDescribeOutput {
2538
2978
  comments: outputs.ScimIntegrationDescribeOutputComment[];
2539
2979
  enableds: outputs.ScimIntegrationDescribeOutputEnabled[];
@@ -2597,6 +3037,31 @@ export interface StageTag {
2597
3037
  */
2598
3038
  value: string;
2599
3039
  }
3040
+ export interface StreamlitDescribeOutput {
3041
+ defaultPackages: string;
3042
+ externalAccessIntegrations: string[];
3043
+ externalAccessSecrets: string;
3044
+ importUrls: string[];
3045
+ mainFile: string;
3046
+ name: string;
3047
+ queryWarehouse: string;
3048
+ rootLocation: string;
3049
+ title: string;
3050
+ urlId: string;
3051
+ userPackages: string[];
3052
+ }
3053
+ export interface StreamlitShowOutput {
3054
+ comment: string;
3055
+ createdOn: string;
3056
+ databaseName: string;
3057
+ name: string;
3058
+ owner: string;
3059
+ ownerRoleType: string;
3060
+ queryWarehouse: string;
3061
+ schemaName: string;
3062
+ title: string;
3063
+ urlId: string;
3064
+ }
2600
3065
  export interface TableColumn {
2601
3066
  /**
2602
3067
  * Column collation, e.g. utf8
@@ -2631,7 +3096,7 @@ export interface TableColumn {
2631
3096
  */
2632
3097
  schemaEvolutionRecord: string;
2633
3098
  /**
2634
- * Column type, e.g. VARIANT
3099
+ * Column type, e.g. VARIANT. For a full list of column types, see [Summary of Data Types](https://docs.snowflake.com/en/sql-reference/intro-summary-data-types).
2635
3100
  */
2636
3101
  type: string;
2637
3102
  }
@@ -1,14 +1,14 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * !> **Warning** This is a dangerous resource that allows executing **ANY** SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources. Will be deleted in the upcoming versions. Use at your own risk.
3
+ * !> **Warning** This is a dangerous resource that allows executing **ANY** SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources. Use at your own risk.
4
+ *
5
+ * > **Note** This resource will be included in the V1 (check here.
4
6
  *
5
7
  * > **Note** It can be theoretically used to manage resource that are not supported by the provider. This is risky and may brake other resources if used incorrectly.
6
8
  *
7
9
  * > **Note** Use `query` parameter with caution. It will fetch **ALL** the results returned by the query provided. Try to limit the number of results by writing query with filters. Query failure does not stop resource creation; it simply results in `queryResults` being empty.
8
10
  *
9
- * > **Deprecation** Experimental resource. Will be deleted in the upcoming versions. Use at your own risk. <deprecation>
10
- *
11
- * Experimental resource used for testing purposes only. Allows to execute ANY SQL statement.
11
+ * Experimental resource allowing execution of ANY SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources. Use at your own risk.
12
12
  */
13
13
  export declare class UnsafeExecute extends pulumi.CustomResource {
14
14
  /**