@pulumi/snowflake 2.1.0-alpha.1750230214 → 2.1.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 (65) hide show
  1. package/account.d.ts +12 -0
  2. package/account.js +2 -0
  3. package/account.js.map +1 -1
  4. package/computePool.d.ts +177 -0
  5. package/computePool.js +87 -0
  6. package/computePool.js.map +1 -0
  7. package/config/vars.d.ts +4 -2
  8. package/config/vars.js.map +1 -1
  9. package/cortexSearchService.d.ts +22 -0
  10. package/cortexSearchService.js +4 -0
  11. package/cortexSearchService.js.map +1 -1
  12. package/currentAccount.d.ts +1512 -0
  13. package/currentAccount.js +302 -0
  14. package/currentAccount.js.map +1 -0
  15. package/database.d.ts +3 -3
  16. package/getComputePools.d.ts +86 -0
  17. package/getComputePools.js +40 -0
  18. package/getComputePools.js.map +1 -0
  19. package/getCortexSearchServices.d.ts +3 -3
  20. package/getDatabaseRoles.d.ts +3 -3
  21. package/getDatabases.d.ts +3 -3
  22. package/getGitRepositories.d.ts +86 -0
  23. package/getGitRepositories.js +40 -0
  24. package/getGitRepositories.js.map +1 -0
  25. package/getImageRepositories.d.ts +62 -0
  26. package/getImageRepositories.js +36 -0
  27. package/getImageRepositories.js.map +1 -0
  28. package/getMaskingPolicies.d.ts +3 -3
  29. package/getRowAccessPolicies.d.ts +3 -3
  30. package/getSchemas.d.ts +3 -3
  31. package/getServices.d.ts +110 -0
  32. package/getServices.js +44 -0
  33. package/getServices.js.map +1 -0
  34. package/getStreamlits.d.ts +3 -3
  35. package/getStreams.d.ts +3 -3
  36. package/getTables.d.ts +56 -43
  37. package/getTables.js +14 -30
  38. package/getTables.js.map +1 -1
  39. package/getTasks.d.ts +3 -3
  40. package/getUsers.d.ts +3 -3
  41. package/getViews.d.ts +3 -3
  42. package/gitRepository.d.ts +153 -0
  43. package/gitRepository.js +86 -0
  44. package/gitRepository.js.map +1 -0
  45. package/imageRepository.d.ts +109 -0
  46. package/imageRepository.js +72 -0
  47. package/imageRepository.js.map +1 -0
  48. package/index.d.ts +30 -0
  49. package/index.js +46 -4
  50. package/index.js.map +1 -1
  51. package/jobService.d.ts +185 -0
  52. package/jobService.js +89 -0
  53. package/jobService.js.map +1 -0
  54. package/package.json +2 -2
  55. package/provider.d.ts +8 -4
  56. package/provider.js.map +1 -1
  57. package/schema.d.ts +3 -3
  58. package/secondaryDatabase.d.ts +3 -3
  59. package/service.d.ts +245 -0
  60. package/service.js +99 -0
  61. package/service.js.map +1 -0
  62. package/sharedDatabase.d.ts +3 -3
  63. package/tagAssociation.d.ts +3 -3
  64. package/types/input.d.ts +540 -2
  65. package/types/output.d.ts +655 -4
package/types/input.d.ts CHANGED
@@ -344,6 +344,69 @@ export interface AuthenticationPolicyShowOutput {
344
344
  ownerRoleType?: pulumi.Input<string>;
345
345
  schemaName?: pulumi.Input<string>;
346
346
  }
347
+ export interface ComputePoolDescribeOutput {
348
+ activeNodes?: pulumi.Input<number>;
349
+ application?: pulumi.Input<string>;
350
+ autoResume?: pulumi.Input<boolean>;
351
+ autoSuspendSecs?: pulumi.Input<number>;
352
+ comment?: pulumi.Input<string>;
353
+ createdOn?: pulumi.Input<string>;
354
+ errorCode?: pulumi.Input<string>;
355
+ idleNodes?: pulumi.Input<number>;
356
+ instanceFamily?: pulumi.Input<string>;
357
+ isExclusive?: pulumi.Input<boolean>;
358
+ maxNodes?: pulumi.Input<number>;
359
+ minNodes?: pulumi.Input<number>;
360
+ name?: pulumi.Input<string>;
361
+ numJobs?: pulumi.Input<number>;
362
+ numServices?: pulumi.Input<number>;
363
+ owner?: pulumi.Input<string>;
364
+ resumedOn?: pulumi.Input<string>;
365
+ state?: pulumi.Input<string>;
366
+ statusMessage?: pulumi.Input<string>;
367
+ targetNodes?: pulumi.Input<number>;
368
+ updatedOn?: pulumi.Input<string>;
369
+ }
370
+ export interface ComputePoolShowOutput {
371
+ activeNodes?: pulumi.Input<number>;
372
+ application?: pulumi.Input<string>;
373
+ autoResume?: pulumi.Input<boolean>;
374
+ autoSuspendSecs?: pulumi.Input<number>;
375
+ comment?: pulumi.Input<string>;
376
+ createdOn?: pulumi.Input<string>;
377
+ idleNodes?: pulumi.Input<number>;
378
+ instanceFamily?: pulumi.Input<string>;
379
+ isExclusive?: pulumi.Input<boolean>;
380
+ maxNodes?: pulumi.Input<number>;
381
+ minNodes?: pulumi.Input<number>;
382
+ name?: pulumi.Input<string>;
383
+ numJobs?: pulumi.Input<number>;
384
+ numServices?: pulumi.Input<number>;
385
+ owner?: pulumi.Input<string>;
386
+ resumedOn?: pulumi.Input<string>;
387
+ state?: pulumi.Input<string>;
388
+ targetNodes?: pulumi.Input<number>;
389
+ updatedOn?: pulumi.Input<string>;
390
+ }
391
+ export interface CortexSearchServiceDescribeOutput {
392
+ attributeColumns?: pulumi.Input<pulumi.Input<string>[]>;
393
+ columns?: pulumi.Input<pulumi.Input<string>[]>;
394
+ comment?: pulumi.Input<string>;
395
+ createdOn?: pulumi.Input<string>;
396
+ dataTimestamp?: pulumi.Input<string>;
397
+ databaseName?: pulumi.Input<string>;
398
+ definition?: pulumi.Input<string>;
399
+ embeddingModel?: pulumi.Input<string>;
400
+ indexingError?: pulumi.Input<string>;
401
+ indexingState?: pulumi.Input<string>;
402
+ name?: pulumi.Input<string>;
403
+ schemaName?: pulumi.Input<string>;
404
+ searchColumn?: pulumi.Input<string>;
405
+ serviceQueryUrl?: pulumi.Input<string>;
406
+ sourceDataNumRows?: pulumi.Input<number>;
407
+ targetLag?: pulumi.Input<string>;
408
+ warehouse?: pulumi.Input<string>;
409
+ }
347
410
  export interface DatabaseReplication {
348
411
  /**
349
412
  * Entry to enable replication and optionally failover for a given account identifier.
@@ -1028,6 +1091,26 @@ export interface FunctionSqlShowOutput {
1028
1091
  secrets?: pulumi.Input<string>;
1029
1092
  validForClustering?: pulumi.Input<boolean>;
1030
1093
  }
1094
+ export interface GetComputePoolsLimit {
1095
+ /**
1096
+ * 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.
1097
+ */
1098
+ from?: string;
1099
+ /**
1100
+ * The maximum number of rows to return.
1101
+ */
1102
+ rows: number;
1103
+ }
1104
+ export interface GetComputePoolsLimitArgs {
1105
+ /**
1106
+ * 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.
1107
+ */
1108
+ from?: pulumi.Input<string>;
1109
+ /**
1110
+ * The maximum number of rows to return.
1111
+ */
1112
+ rows: pulumi.Input<number>;
1113
+ }
1031
1114
  export interface GetCortexSearchServicesIn {
1032
1115
  /**
1033
1116
  * Returns records for the entire account.
@@ -1176,6 +1259,54 @@ export interface GetDynamicTablesLimitArgs {
1176
1259
  */
1177
1260
  rows?: pulumi.Input<number>;
1178
1261
  }
1262
+ export interface GetGitRepositoriesIn {
1263
+ /**
1264
+ * Returns records for the entire account.
1265
+ */
1266
+ account?: boolean;
1267
+ /**
1268
+ * Returns records for the current database in use or for a specified database.
1269
+ */
1270
+ database?: string;
1271
+ /**
1272
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1273
+ */
1274
+ schema?: string;
1275
+ }
1276
+ export interface GetGitRepositoriesInArgs {
1277
+ /**
1278
+ * Returns records for the entire account.
1279
+ */
1280
+ account?: pulumi.Input<boolean>;
1281
+ /**
1282
+ * Returns records for the current database in use or for a specified database.
1283
+ */
1284
+ database?: pulumi.Input<string>;
1285
+ /**
1286
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1287
+ */
1288
+ schema?: pulumi.Input<string>;
1289
+ }
1290
+ export interface GetGitRepositoriesLimit {
1291
+ /**
1292
+ * 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.
1293
+ */
1294
+ from?: string;
1295
+ /**
1296
+ * The maximum number of rows to return.
1297
+ */
1298
+ rows: number;
1299
+ }
1300
+ export interface GetGitRepositoriesLimitArgs {
1301
+ /**
1302
+ * 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.
1303
+ */
1304
+ from?: pulumi.Input<string>;
1305
+ /**
1306
+ * The maximum number of rows to return.
1307
+ */
1308
+ rows: pulumi.Input<number>;
1309
+ }
1179
1310
  export interface GetGrantsFutureGrantsIn {
1180
1311
  /**
1181
1312
  * Lists all privileges on new (i.e. future) objects of a specified type in the database granted to a role.
@@ -1344,6 +1475,34 @@ export interface GetGrantsGrantsToShareArgs {
1344
1475
  */
1345
1476
  shareName: pulumi.Input<string>;
1346
1477
  }
1478
+ export interface GetImageRepositoriesIn {
1479
+ /**
1480
+ * Returns records for the entire account.
1481
+ */
1482
+ account?: boolean;
1483
+ /**
1484
+ * Returns records for the current database in use or for a specified database.
1485
+ */
1486
+ database?: string;
1487
+ /**
1488
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1489
+ */
1490
+ schema?: string;
1491
+ }
1492
+ export interface GetImageRepositoriesInArgs {
1493
+ /**
1494
+ * Returns records for the entire account.
1495
+ */
1496
+ account?: pulumi.Input<boolean>;
1497
+ /**
1498
+ * Returns records for the current database in use or for a specified database.
1499
+ */
1500
+ database?: pulumi.Input<string>;
1501
+ /**
1502
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1503
+ */
1504
+ schema?: pulumi.Input<string>;
1505
+ }
1347
1506
  export interface GetMaskingPoliciesIn {
1348
1507
  /**
1349
1508
  * Returns records for the entire account.
@@ -1572,6 +1731,62 @@ export interface GetSecretsInArgs {
1572
1731
  */
1573
1732
  schema?: pulumi.Input<string>;
1574
1733
  }
1734
+ export interface GetServicesIn {
1735
+ /**
1736
+ * Returns records for the entire account.
1737
+ */
1738
+ account?: boolean;
1739
+ /**
1740
+ * Returns records for the specified compute pool.
1741
+ */
1742
+ computePool?: string;
1743
+ /**
1744
+ * Returns records for the current database in use or for a specified database.
1745
+ */
1746
+ database?: string;
1747
+ /**
1748
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1749
+ */
1750
+ schema?: string;
1751
+ }
1752
+ export interface GetServicesInArgs {
1753
+ /**
1754
+ * Returns records for the entire account.
1755
+ */
1756
+ account?: pulumi.Input<boolean>;
1757
+ /**
1758
+ * Returns records for the specified compute pool.
1759
+ */
1760
+ computePool?: pulumi.Input<string>;
1761
+ /**
1762
+ * Returns records for the current database in use or for a specified database.
1763
+ */
1764
+ database?: pulumi.Input<string>;
1765
+ /**
1766
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1767
+ */
1768
+ schema?: pulumi.Input<string>;
1769
+ }
1770
+ export interface GetServicesLimit {
1771
+ /**
1772
+ * 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.
1773
+ */
1774
+ from?: string;
1775
+ /**
1776
+ * The maximum number of rows to return.
1777
+ */
1778
+ rows: number;
1779
+ }
1780
+ export interface GetServicesLimitArgs {
1781
+ /**
1782
+ * 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.
1783
+ */
1784
+ from?: pulumi.Input<string>;
1785
+ /**
1786
+ * The maximum number of rows to return.
1787
+ */
1788
+ rows: pulumi.Input<number>;
1789
+ }
1575
1790
  export interface GetStreamlitsIn {
1576
1791
  /**
1577
1792
  * Returns records for the entire account.
@@ -1684,6 +1899,70 @@ export interface GetStreamsLimitArgs {
1684
1899
  */
1685
1900
  rows: pulumi.Input<number>;
1686
1901
  }
1902
+ export interface GetTablesIn {
1903
+ /**
1904
+ * Returns records for the entire account.
1905
+ */
1906
+ account?: boolean;
1907
+ /**
1908
+ * Returns records for the specified application.
1909
+ */
1910
+ application?: string;
1911
+ /**
1912
+ * Returns records for the specified application package.
1913
+ */
1914
+ applicationPackage?: string;
1915
+ /**
1916
+ * Returns records for the current database in use or for a specified database.
1917
+ */
1918
+ database?: string;
1919
+ /**
1920
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1921
+ */
1922
+ schema?: string;
1923
+ }
1924
+ export interface GetTablesInArgs {
1925
+ /**
1926
+ * Returns records for the entire account.
1927
+ */
1928
+ account?: pulumi.Input<boolean>;
1929
+ /**
1930
+ * Returns records for the specified application.
1931
+ */
1932
+ application?: pulumi.Input<string>;
1933
+ /**
1934
+ * Returns records for the specified application package.
1935
+ */
1936
+ applicationPackage?: pulumi.Input<string>;
1937
+ /**
1938
+ * Returns records for the current database in use or for a specified database.
1939
+ */
1940
+ database?: pulumi.Input<string>;
1941
+ /**
1942
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1943
+ */
1944
+ schema?: pulumi.Input<string>;
1945
+ }
1946
+ export interface GetTablesLimit {
1947
+ /**
1948
+ * 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.
1949
+ */
1950
+ from?: string;
1951
+ /**
1952
+ * The maximum number of rows to return.
1953
+ */
1954
+ rows: number;
1955
+ }
1956
+ export interface GetTablesLimitArgs {
1957
+ /**
1958
+ * 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.
1959
+ */
1960
+ from?: pulumi.Input<string>;
1961
+ /**
1962
+ * The maximum number of rows to return.
1963
+ */
1964
+ rows: pulumi.Input<number>;
1965
+ }
1687
1966
  export interface GetTagsIn {
1688
1967
  /**
1689
1968
  * Returns records for the entire account.
@@ -1860,6 +2139,32 @@ export interface GetViewsLimitArgs {
1860
2139
  */
1861
2140
  rows: pulumi.Input<number>;
1862
2141
  }
2142
+ export interface GitRepositoryDescribeOutput {
2143
+ apiIntegration?: pulumi.Input<string>;
2144
+ comment?: pulumi.Input<string>;
2145
+ createdOn?: pulumi.Input<string>;
2146
+ databaseName?: pulumi.Input<string>;
2147
+ gitCredentials?: pulumi.Input<string>;
2148
+ lastFetchedAt?: pulumi.Input<string>;
2149
+ name?: pulumi.Input<string>;
2150
+ origin?: pulumi.Input<string>;
2151
+ owner?: pulumi.Input<string>;
2152
+ ownerRoleType?: pulumi.Input<string>;
2153
+ schemaName?: pulumi.Input<string>;
2154
+ }
2155
+ export interface GitRepositoryShowOutput {
2156
+ apiIntegration?: pulumi.Input<string>;
2157
+ comment?: pulumi.Input<string>;
2158
+ createdOn?: pulumi.Input<string>;
2159
+ databaseName?: pulumi.Input<string>;
2160
+ gitCredentials?: pulumi.Input<string>;
2161
+ lastFetchedAt?: pulumi.Input<string>;
2162
+ name?: pulumi.Input<string>;
2163
+ origin?: pulumi.Input<string>;
2164
+ owner?: pulumi.Input<string>;
2165
+ ownerRoleType?: pulumi.Input<string>;
2166
+ schemaName?: pulumi.Input<string>;
2167
+ }
1863
2168
  export interface GrantOwnershipOn {
1864
2169
  /**
1865
2170
  * Configures the privilege to be granted on all objects in either a database or schema.
@@ -1960,7 +2265,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObjectFuture {
1960
2265
  inDatabase?: pulumi.Input<string>;
1961
2266
  inSchema?: pulumi.Input<string>;
1962
2267
  /**
1963
- * 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 | STREAMLITS | DATASETS.
2268
+ * The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | 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 | STREAMLITS | DATASETS.
1964
2269
  */
1965
2270
  objectTypePlural: pulumi.Input<string>;
1966
2271
  }
@@ -2020,10 +2325,132 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObjectFuture {
2020
2325
  */
2021
2326
  inSchema?: pulumi.Input<string>;
2022
2327
  /**
2023
- * 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 | STREAMLITS | DATASETS.
2328
+ * The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | 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 | STREAMLITS | DATASETS.
2024
2329
  */
2025
2330
  objectTypePlural: pulumi.Input<string>;
2026
2331
  }
2332
+ export interface ImageRepositoryShowOutput {
2333
+ comment?: pulumi.Input<string>;
2334
+ createdOn?: pulumi.Input<string>;
2335
+ databaseName?: pulumi.Input<string>;
2336
+ name?: pulumi.Input<string>;
2337
+ owner?: pulumi.Input<string>;
2338
+ ownerRoleType?: pulumi.Input<string>;
2339
+ privatelinkRepositoryUrl?: pulumi.Input<string>;
2340
+ repositoryUrl?: pulumi.Input<string>;
2341
+ schemaName?: pulumi.Input<string>;
2342
+ }
2343
+ export interface JobServiceDescribeOutput {
2344
+ autoResume?: pulumi.Input<boolean>;
2345
+ autoSuspendSecs?: pulumi.Input<number>;
2346
+ comment?: pulumi.Input<string>;
2347
+ computePool?: pulumi.Input<string>;
2348
+ createdOn?: pulumi.Input<string>;
2349
+ currentInstances?: pulumi.Input<number>;
2350
+ databaseName?: pulumi.Input<string>;
2351
+ dnsName?: pulumi.Input<string>;
2352
+ externalAccessIntegrations?: pulumi.Input<pulumi.Input<string>[]>;
2353
+ isAsyncJob?: pulumi.Input<boolean>;
2354
+ isJob?: pulumi.Input<boolean>;
2355
+ isUpgrading?: pulumi.Input<boolean>;
2356
+ managingObjectDomain?: pulumi.Input<string>;
2357
+ managingObjectName?: pulumi.Input<string>;
2358
+ maxInstances?: pulumi.Input<number>;
2359
+ minInstances?: pulumi.Input<number>;
2360
+ minReadyInstances?: pulumi.Input<number>;
2361
+ name?: pulumi.Input<string>;
2362
+ owner?: pulumi.Input<string>;
2363
+ ownerRoleType?: pulumi.Input<string>;
2364
+ queryWarehouse?: pulumi.Input<string>;
2365
+ resumedOn?: pulumi.Input<string>;
2366
+ schemaName?: pulumi.Input<string>;
2367
+ spec?: pulumi.Input<string>;
2368
+ specDigest?: pulumi.Input<string>;
2369
+ status?: pulumi.Input<string>;
2370
+ suspendedOn?: pulumi.Input<string>;
2371
+ targetInstances?: pulumi.Input<number>;
2372
+ updatedOn?: pulumi.Input<string>;
2373
+ }
2374
+ export interface JobServiceFromSpecification {
2375
+ /**
2376
+ * The file name of the service specification. Example: `spec.yaml`.
2377
+ */
2378
+ file?: pulumi.Input<string>;
2379
+ /**
2380
+ * The path to the service specification file on the given stage. When the path is specified, the `/` character is automatically added as a path prefix. Example: `path/to/spec`.
2381
+ */
2382
+ path?: pulumi.Input<string>;
2383
+ /**
2384
+ * The fully qualified name of the stage containing the service specification file. At symbol (`@`) is added automatically. Example: `"\"<db_name>\".\"<schema_name>\".\"<stage_name>\""`. For more information about this resource, see docs.
2385
+ */
2386
+ stage?: pulumi.Input<string>;
2387
+ /**
2388
+ * The embedded text of the service specification.
2389
+ */
2390
+ text?: pulumi.Input<string>;
2391
+ }
2392
+ export interface JobServiceFromSpecificationTemplate {
2393
+ /**
2394
+ * The file name of the service specification template. Example: `spec.yaml`.
2395
+ */
2396
+ file?: pulumi.Input<string>;
2397
+ /**
2398
+ * The path to the service specification template file on the given stage. When the path is specified, the `/` character is automatically added as a path prefix. Example: `path/to/spec`.
2399
+ */
2400
+ path?: pulumi.Input<string>;
2401
+ /**
2402
+ * The fully qualified name of the stage containing the service specification template file. At symbol (`@`) is added automatically. Example: `"\"<db_name>\".\"<schema_name>\".\"<stage_name>\""`. For more information about this resource, see docs.
2403
+ */
2404
+ stage?: pulumi.Input<string>;
2405
+ /**
2406
+ * The embedded text of the service specification template.
2407
+ */
2408
+ text?: pulumi.Input<string>;
2409
+ /**
2410
+ * List of the specified template variables and the values of those variables.
2411
+ */
2412
+ usings: pulumi.Input<pulumi.Input<inputs.JobServiceFromSpecificationTemplateUsing>[]>;
2413
+ }
2414
+ export interface JobServiceFromSpecificationTemplateUsing {
2415
+ /**
2416
+ * The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
2417
+ */
2418
+ key: pulumi.Input<string>;
2419
+ /**
2420
+ * The value to assign to the variable in the template. The provider wraps it in `$$` by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.
2421
+ */
2422
+ value: pulumi.Input<string>;
2423
+ }
2424
+ export interface JobServiceShowOutput {
2425
+ autoResume?: pulumi.Input<boolean>;
2426
+ autoSuspendSecs?: pulumi.Input<number>;
2427
+ comment?: pulumi.Input<string>;
2428
+ computePool?: pulumi.Input<string>;
2429
+ createdOn?: pulumi.Input<string>;
2430
+ currentInstances?: pulumi.Input<number>;
2431
+ databaseName?: pulumi.Input<string>;
2432
+ dnsName?: pulumi.Input<string>;
2433
+ externalAccessIntegrations?: pulumi.Input<pulumi.Input<string>[]>;
2434
+ isAsyncJob?: pulumi.Input<boolean>;
2435
+ isJob?: pulumi.Input<boolean>;
2436
+ isUpgrading?: pulumi.Input<boolean>;
2437
+ managingObjectDomain?: pulumi.Input<string>;
2438
+ managingObjectName?: pulumi.Input<string>;
2439
+ maxInstances?: pulumi.Input<number>;
2440
+ minInstances?: pulumi.Input<number>;
2441
+ minReadyInstances?: pulumi.Input<number>;
2442
+ name?: pulumi.Input<string>;
2443
+ owner?: pulumi.Input<string>;
2444
+ ownerRoleType?: pulumi.Input<string>;
2445
+ queryWarehouse?: pulumi.Input<string>;
2446
+ resumedOn?: pulumi.Input<string>;
2447
+ schemaName?: pulumi.Input<string>;
2448
+ specDigest?: pulumi.Input<string>;
2449
+ status?: pulumi.Input<string>;
2450
+ suspendedOn?: pulumi.Input<string>;
2451
+ targetInstances?: pulumi.Input<number>;
2452
+ updatedOn?: pulumi.Input<string>;
2453
+ }
2027
2454
  export interface LegacyServiceUserParameter {
2028
2455
  abortDetachedQueries?: pulumi.Input<pulumi.Input<inputs.LegacyServiceUserParameterAbortDetachedQuery>[]>;
2029
2456
  autocommits?: pulumi.Input<pulumi.Input<inputs.LegacyServiceUserParameterAutocommit>[]>;
@@ -3782,6 +4209,117 @@ export interface SecretWithGenericStringShowOutput {
3782
4209
  schemaName?: pulumi.Input<string>;
3783
4210
  secretType?: pulumi.Input<string>;
3784
4211
  }
4212
+ export interface ServiceDescribeOutput {
4213
+ autoResume?: pulumi.Input<boolean>;
4214
+ autoSuspendSecs?: pulumi.Input<number>;
4215
+ comment?: pulumi.Input<string>;
4216
+ computePool?: pulumi.Input<string>;
4217
+ createdOn?: pulumi.Input<string>;
4218
+ currentInstances?: pulumi.Input<number>;
4219
+ databaseName?: pulumi.Input<string>;
4220
+ dnsName?: pulumi.Input<string>;
4221
+ externalAccessIntegrations?: pulumi.Input<pulumi.Input<string>[]>;
4222
+ isAsyncJob?: pulumi.Input<boolean>;
4223
+ isJob?: pulumi.Input<boolean>;
4224
+ isUpgrading?: pulumi.Input<boolean>;
4225
+ managingObjectDomain?: pulumi.Input<string>;
4226
+ managingObjectName?: pulumi.Input<string>;
4227
+ maxInstances?: pulumi.Input<number>;
4228
+ minInstances?: pulumi.Input<number>;
4229
+ minReadyInstances?: pulumi.Input<number>;
4230
+ name?: pulumi.Input<string>;
4231
+ owner?: pulumi.Input<string>;
4232
+ ownerRoleType?: pulumi.Input<string>;
4233
+ queryWarehouse?: pulumi.Input<string>;
4234
+ resumedOn?: pulumi.Input<string>;
4235
+ schemaName?: pulumi.Input<string>;
4236
+ spec?: pulumi.Input<string>;
4237
+ specDigest?: pulumi.Input<string>;
4238
+ status?: pulumi.Input<string>;
4239
+ suspendedOn?: pulumi.Input<string>;
4240
+ targetInstances?: pulumi.Input<number>;
4241
+ updatedOn?: pulumi.Input<string>;
4242
+ }
4243
+ export interface ServiceFromSpecification {
4244
+ /**
4245
+ * The file name of the service specification. Example: `spec.yaml`.
4246
+ */
4247
+ file?: pulumi.Input<string>;
4248
+ /**
4249
+ * The path to the service specification file on the given stage. When the path is specified, the `/` character is automatically added as a path prefix. Example: `path/to/spec`.
4250
+ */
4251
+ path?: pulumi.Input<string>;
4252
+ /**
4253
+ * The fully qualified name of the stage containing the service specification file. At symbol (`@`) is added automatically. Example: `"\"<db_name>\".\"<schema_name>\".\"<stage_name>\""`. For more information about this resource, see docs.
4254
+ */
4255
+ stage?: pulumi.Input<string>;
4256
+ /**
4257
+ * The embedded text of the service specification.
4258
+ */
4259
+ text?: pulumi.Input<string>;
4260
+ }
4261
+ export interface ServiceFromSpecificationTemplate {
4262
+ /**
4263
+ * The file name of the service specification template. Example: `spec.yaml`.
4264
+ */
4265
+ file?: pulumi.Input<string>;
4266
+ /**
4267
+ * The path to the service specification template file on the given stage. When the path is specified, the `/` character is automatically added as a path prefix. Example: `path/to/spec`.
4268
+ */
4269
+ path?: pulumi.Input<string>;
4270
+ /**
4271
+ * The fully qualified name of the stage containing the service specification template file. At symbol (`@`) is added automatically. Example: `"\"<db_name>\".\"<schema_name>\".\"<stage_name>\""`. For more information about this resource, see docs.
4272
+ */
4273
+ stage?: pulumi.Input<string>;
4274
+ /**
4275
+ * The embedded text of the service specification template.
4276
+ */
4277
+ text?: pulumi.Input<string>;
4278
+ /**
4279
+ * List of the specified template variables and the values of those variables.
4280
+ */
4281
+ usings: pulumi.Input<pulumi.Input<inputs.ServiceFromSpecificationTemplateUsing>[]>;
4282
+ }
4283
+ export interface ServiceFromSpecificationTemplateUsing {
4284
+ /**
4285
+ * The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
4286
+ */
4287
+ key: pulumi.Input<string>;
4288
+ /**
4289
+ * The value to assign to the variable in the template. The provider wraps it in `$$` by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.
4290
+ */
4291
+ value: pulumi.Input<string>;
4292
+ }
4293
+ export interface ServiceShowOutput {
4294
+ autoResume?: pulumi.Input<boolean>;
4295
+ autoSuspendSecs?: pulumi.Input<number>;
4296
+ comment?: pulumi.Input<string>;
4297
+ computePool?: pulumi.Input<string>;
4298
+ createdOn?: pulumi.Input<string>;
4299
+ currentInstances?: pulumi.Input<number>;
4300
+ databaseName?: pulumi.Input<string>;
4301
+ dnsName?: pulumi.Input<string>;
4302
+ externalAccessIntegrations?: pulumi.Input<pulumi.Input<string>[]>;
4303
+ isAsyncJob?: pulumi.Input<boolean>;
4304
+ isJob?: pulumi.Input<boolean>;
4305
+ isUpgrading?: pulumi.Input<boolean>;
4306
+ managingObjectDomain?: pulumi.Input<string>;
4307
+ managingObjectName?: pulumi.Input<string>;
4308
+ maxInstances?: pulumi.Input<number>;
4309
+ minInstances?: pulumi.Input<number>;
4310
+ minReadyInstances?: pulumi.Input<number>;
4311
+ name?: pulumi.Input<string>;
4312
+ owner?: pulumi.Input<string>;
4313
+ ownerRoleType?: pulumi.Input<string>;
4314
+ queryWarehouse?: pulumi.Input<string>;
4315
+ resumedOn?: pulumi.Input<string>;
4316
+ schemaName?: pulumi.Input<string>;
4317
+ specDigest?: pulumi.Input<string>;
4318
+ status?: pulumi.Input<string>;
4319
+ suspendedOn?: pulumi.Input<string>;
4320
+ targetInstances?: pulumi.Input<number>;
4321
+ updatedOn?: pulumi.Input<string>;
4322
+ }
3785
4323
  export interface ServiceUserParameter {
3786
4324
  abortDetachedQueries?: pulumi.Input<pulumi.Input<inputs.ServiceUserParameterAbortDetachedQuery>[]>;
3787
4325
  autocommits?: pulumi.Input<pulumi.Input<inputs.ServiceUserParameterAutocommit>[]>;