@pulumi/databricks 1.72.0-alpha.1750139016 → 1.72.0-alpha.1752500848

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 (84) hide show
  1. package/accountNetworkPolicy.d.ts +2 -2
  2. package/accountNetworkPolicy.js +2 -2
  3. package/alertV2.d.ts +10 -4
  4. package/alertV2.js +8 -2
  5. package/alertV2.js.map +1 -1
  6. package/budgetPolicy.d.ts +2 -2
  7. package/budgetPolicy.js +2 -2
  8. package/cluster.d.ts +6 -0
  9. package/cluster.js +4 -0
  10. package/cluster.js.map +1 -1
  11. package/connection.d.ts +24 -29
  12. package/connection.js +3 -17
  13. package/connection.js.map +1 -1
  14. package/databaseInstance.d.ts +33 -31
  15. package/databaseInstance.js +18 -6
  16. package/databaseInstance.js.map +1 -1
  17. package/entitlements.d.ts +3 -3
  18. package/getAlertV2.d.ts +23 -1
  19. package/getAlertV2.js +22 -0
  20. package/getAlertV2.js.map +1 -1
  21. package/getAlertsV2.d.ts +38 -0
  22. package/getAlertsV2.js +38 -0
  23. package/getAlertsV2.js.map +1 -1
  24. package/getDatabaseInstance.d.ts +42 -28
  25. package/getDatabaseInstance.js +32 -4
  26. package/getDatabaseInstance.js.map +1 -1
  27. package/getDatabaseInstances.d.ts +32 -0
  28. package/getDatabaseInstances.js +32 -0
  29. package/getDatabaseInstances.js.map +1 -1
  30. package/getJobs.d.ts +63 -10
  31. package/getJobs.js +56 -10
  32. package/getJobs.js.map +1 -1
  33. package/getOnlineStore.d.ts +58 -0
  34. package/getOnlineStore.js +24 -0
  35. package/getOnlineStore.js.map +1 -0
  36. package/getOnlineStores.d.ts +14 -0
  37. package/getOnlineStores.js +18 -0
  38. package/getOnlineStores.js.map +1 -0
  39. package/getQualityMonitorV2.d.ts +95 -0
  40. package/getQualityMonitorV2.js +68 -0
  41. package/getQualityMonitorV2.js.map +1 -0
  42. package/getQualityMonitorsV2.d.ts +46 -0
  43. package/getQualityMonitorsV2.js +50 -0
  44. package/getQualityMonitorsV2.js.map +1 -0
  45. package/group.d.ts +3 -3
  46. package/index.d.ts +18 -0
  47. package/index.js +26 -4
  48. package/index.js.map +1 -1
  49. package/instancePool.d.ts +2 -0
  50. package/instancePool.js +2 -0
  51. package/instancePool.js.map +1 -1
  52. package/mwsNccPrivateEndpointRule.d.ts +91 -5
  53. package/mwsNccPrivateEndpointRule.js +37 -7
  54. package/mwsNccPrivateEndpointRule.js.map +1 -1
  55. package/mwsWorkspaces.d.ts +9 -9
  56. package/mwsWorkspaces.js +0 -6
  57. package/mwsWorkspaces.js.map +1 -1
  58. package/onlineStore.d.ts +105 -0
  59. package/onlineStore.js +78 -0
  60. package/onlineStore.js.map +1 -0
  61. package/package.json +2 -2
  62. package/pipeline.d.ts +21 -0
  63. package/pipeline.js +4 -0
  64. package/pipeline.js.map +1 -1
  65. package/qualityMonitorV2.d.ts +111 -0
  66. package/qualityMonitorV2.js +100 -0
  67. package/qualityMonitorV2.js.map +1 -0
  68. package/recipientFederationPolicy.d.ts +2 -2
  69. package/recipientFederationPolicy.js +2 -2
  70. package/schema.d.ts +8 -0
  71. package/schema.js +2 -0
  72. package/schema.js.map +1 -1
  73. package/servicePrincipal.d.ts +3 -3
  74. package/servicePrincipalRole.d.ts +19 -3
  75. package/servicePrincipalRole.js +16 -0
  76. package/servicePrincipalRole.js.map +1 -1
  77. package/servicePrincipalSecret.d.ts +29 -3
  78. package/servicePrincipalSecret.js +16 -0
  79. package/servicePrincipalSecret.js.map +1 -1
  80. package/types/input.d.ts +238 -51
  81. package/types/output.d.ts +284 -70
  82. package/user.d.ts +3 -3
  83. package/workspaceNetworkOption.d.ts +2 -2
  84. package/workspaceNetworkOption.js +2 -2
package/types/input.d.ts CHANGED
@@ -44,7 +44,7 @@ export interface AccountNetworkPolicyEgressNetworkAccess {
44
44
  */
45
45
  policyEnforcement?: pulumi.Input<inputs.AccountNetworkPolicyEgressNetworkAccessPolicyEnforcement>;
46
46
  /**
47
- * The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
47
+ * The restriction mode that controls how serverless workloads can access the internet. Possible values are: `FULL_ACCESS`, `RESTRICTED_ACCESS`
48
48
  */
49
49
  restrictionMode: pulumi.Input<string>;
50
50
  }
@@ -54,7 +54,7 @@ export interface AccountNetworkPolicyEgressNetworkAccessAllowedInternetDestinati
54
54
  */
55
55
  destination?: pulumi.Input<string>;
56
56
  /**
57
- * The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
57
+ * The type of internet destination. Currently only DNS_NAME is supported. Possible values are: `DNS_NAME`
58
58
  */
59
59
  internetDestinationType?: pulumi.Input<string>;
60
60
  }
@@ -68,12 +68,9 @@ export interface AccountNetworkPolicyEgressNetworkAccessAllowedStorageDestinatio
68
68
  */
69
69
  azureStorageService?: pulumi.Input<string>;
70
70
  bucketName?: pulumi.Input<string>;
71
- /**
72
- * The region of the S3 bucket
73
- */
74
71
  region?: pulumi.Input<string>;
75
72
  /**
76
- * The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE
73
+ * The type of storage destination. Possible values are: `AWS_S3`, `AZURE_STORAGE`, `GOOGLE_CLOUD_STORAGE`
77
74
  */
78
75
  storageDestinationType?: pulumi.Input<string>;
79
76
  }
@@ -86,7 +83,7 @@ export interface AccountNetworkPolicyEgressNetworkAccessPolicyEnforcement {
86
83
  /**
87
84
  * The mode of policy enforcement. ENFORCED blocks traffic that violates policy,
88
85
  * while DRY_RUN only logs violations without blocking. When not specified,
89
- * defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED
86
+ * defaults to ENFORCED. Possible values are: `DRY_RUN`, `ENFORCED`
90
87
  */
91
88
  enforcementMode?: pulumi.Input<string>;
92
89
  }
@@ -154,11 +151,11 @@ export interface AlertConditionThresholdValue {
154
151
  }
155
152
  export interface AlertV2Evaluation {
156
153
  /**
157
- * Operator used for comparison in alert evaluation. Possible values are: EQUAL, GREATER_THAN, GREATER_THAN_OR_EQUAL, IS_NOT_NULL, IS_NULL, LESS_THAN, LESS_THAN_OR_EQUAL, NOT_EQUAL
154
+ * Operator used for comparison in alert evaluation. Possible values are: `EQUAL`, `GREATER_THAN`, `GREATER_THAN_OR_EQUAL`, `IS_NOT_NULL`, `IS_NULL`, `LESS_THAN`, `LESS_THAN_OR_EQUAL`, `NOT_EQUAL`
158
155
  */
159
156
  comparisonOperator?: pulumi.Input<string>;
160
157
  /**
161
- * Alert state if result is empty. Possible values are: ERROR, OK, TRIGGERED, UNKNOWN
158
+ * Alert state if result is empty. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
162
159
  */
163
160
  emptyResultState?: pulumi.Input<string>;
164
161
  /**
@@ -174,7 +171,7 @@ export interface AlertV2Evaluation {
174
171
  */
175
172
  source?: pulumi.Input<inputs.AlertV2EvaluationSource>;
176
173
  /**
177
- * (string) - Latest state of alert evaluation. Possible values are: ERROR, OK, TRIGGERED, UNKNOWN
174
+ * (string) - Latest state of alert evaluation. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
178
175
  */
179
176
  state?: pulumi.Input<string>;
180
177
  /**
@@ -199,7 +196,7 @@ export interface AlertV2EvaluationNotificationSubscription {
199
196
  }
200
197
  export interface AlertV2EvaluationSource {
201
198
  /**
202
- * . Possible values are: AVG, COUNT, COUNT_DISTINCT, MAX, MEDIAN, MIN, STDDEV, SUM
199
+ * . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
203
200
  */
204
201
  aggregation?: pulumi.Input<string>;
205
202
  display?: pulumi.Input<string>;
@@ -211,7 +208,7 @@ export interface AlertV2EvaluationThreshold {
211
208
  }
212
209
  export interface AlertV2EvaluationThresholdColumn {
213
210
  /**
214
- * . Possible values are: AVG, COUNT, COUNT_DISTINCT, MAX, MEDIAN, MIN, STDDEV, SUM
211
+ * . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
215
212
  */
216
213
  aggregation?: pulumi.Input<string>;
217
214
  display?: pulumi.Input<string>;
@@ -224,7 +221,7 @@ export interface AlertV2EvaluationThresholdValue {
224
221
  }
225
222
  export interface AlertV2Schedule {
226
223
  /**
227
- * Indicate whether this schedule is paused or not. Possible values are: PAUSED, UNPAUSED
224
+ * Indicate whether this schedule is paused or not. Possible values are: `PAUSED`, `UNPAUSED`
228
225
  */
229
226
  pauseStatus?: pulumi.Input<string>;
230
227
  /**
@@ -350,6 +347,9 @@ export interface AppResource {
350
347
  * attribute
351
348
  */
352
349
  sqlWarehouse?: pulumi.Input<inputs.AppResourceSqlWarehouse>;
350
+ /**
351
+ * attribute (see the [API docs](https://docs.databricks.com/api/workspace/apps/create#resources-uc_securable) for full list of supported UC objects)
352
+ */
353
353
  ucSecurable?: pulumi.Input<inputs.AppResourceUcSecurable>;
354
354
  }
355
355
  export interface AppResourceJob {
@@ -397,8 +397,17 @@ export interface AppResourceSqlWarehouse {
397
397
  permission: pulumi.Input<string>;
398
398
  }
399
399
  export interface AppResourceUcSecurable {
400
+ /**
401
+ * Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
402
+ */
400
403
  permission: pulumi.Input<string>;
404
+ /**
405
+ * the full name of UC securable, i.e. `my-catalog.my-schema.my-volume`.
406
+ */
401
407
  securableFullName: pulumi.Input<string>;
408
+ /**
409
+ * the type of UC securable, i.e. `VOLUME`.
410
+ */
402
411
  securableType: pulumi.Input<string>;
403
412
  }
404
413
  export interface ArtifactAllowlistArtifactMatcher {
@@ -514,11 +523,11 @@ export interface BudgetPolicyCustomTag {
514
523
  * The key of the tag.
515
524
  * - Must be unique among all custom tags of the same policy
516
525
  * - Cannot be “budget-policy-name”, “budget-policy-id” or "budget-policy-resolution-result" -
517
- * these tags are preserved.
526
+ * these tags are preserved
518
527
  */
519
528
  key: pulumi.Input<string>;
520
529
  /**
521
- * The value of the tag.
530
+ * The value of the tag
522
531
  */
523
532
  value?: pulumi.Input<string>;
524
533
  }
@@ -1136,7 +1145,7 @@ export interface GetAccountNetworkPolicyEgressNetworkAccess {
1136
1145
  */
1137
1146
  policyEnforcement?: inputs.GetAccountNetworkPolicyEgressNetworkAccessPolicyEnforcement;
1138
1147
  /**
1139
- * (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
1148
+ * (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: `FULL_ACCESS`, `RESTRICTED_ACCESS`
1140
1149
  */
1141
1150
  restrictionMode: string;
1142
1151
  }
@@ -1154,7 +1163,7 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessArgs {
1154
1163
  */
1155
1164
  policyEnforcement?: pulumi.Input<inputs.GetAccountNetworkPolicyEgressNetworkAccessPolicyEnforcementArgs>;
1156
1165
  /**
1157
- * (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
1166
+ * (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: `FULL_ACCESS`, `RESTRICTED_ACCESS`
1158
1167
  */
1159
1168
  restrictionMode: pulumi.Input<string>;
1160
1169
  }
@@ -1164,7 +1173,7 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessAllowedInternetDestin
1164
1173
  */
1165
1174
  destination?: string;
1166
1175
  /**
1167
- * (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
1176
+ * (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: `DNS_NAME`
1168
1177
  */
1169
1178
  internetDestinationType?: string;
1170
1179
  }
@@ -1174,7 +1183,7 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessAllowedInternetDestin
1174
1183
  */
1175
1184
  destination?: pulumi.Input<string>;
1176
1185
  /**
1177
- * (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
1186
+ * (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: `DNS_NAME`
1178
1187
  */
1179
1188
  internetDestinationType?: pulumi.Input<string>;
1180
1189
  }
@@ -1192,11 +1201,11 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessAllowedStorageDestina
1192
1201
  */
1193
1202
  bucketName?: string;
1194
1203
  /**
1195
- * (string) - The region of the S3 bucket
1204
+ * (string) -
1196
1205
  */
1197
1206
  region?: string;
1198
1207
  /**
1199
- * (string) - The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE
1208
+ * (string) - The type of storage destination. Possible values are: `AWS_S3`, `AZURE_STORAGE`, `GOOGLE_CLOUD_STORAGE`
1200
1209
  */
1201
1210
  storageDestinationType?: string;
1202
1211
  }
@@ -1214,11 +1223,11 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessAllowedStorageDestina
1214
1223
  */
1215
1224
  bucketName?: pulumi.Input<string>;
1216
1225
  /**
1217
- * (string) - The region of the S3 bucket
1226
+ * (string) -
1218
1227
  */
1219
1228
  region?: pulumi.Input<string>;
1220
1229
  /**
1221
- * (string) - The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE
1230
+ * (string) - The type of storage destination. Possible values are: `AWS_S3`, `AZURE_STORAGE`, `GOOGLE_CLOUD_STORAGE`
1222
1231
  */
1223
1232
  storageDestinationType?: pulumi.Input<string>;
1224
1233
  }
@@ -1231,7 +1240,7 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessPolicyEnforcement {
1231
1240
  /**
1232
1241
  * (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy,
1233
1242
  * while DRY_RUN only logs violations without blocking. When not specified,
1234
- * defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED
1243
+ * defaults to ENFORCED. Possible values are: `DRY_RUN`, `ENFORCED`
1235
1244
  */
1236
1245
  enforcementMode?: string;
1237
1246
  }
@@ -1244,17 +1253,17 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessPolicyEnforcementArgs
1244
1253
  /**
1245
1254
  * (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy,
1246
1255
  * while DRY_RUN only logs violations without blocking. When not specified,
1247
- * defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED
1256
+ * defaults to ENFORCED. Possible values are: `DRY_RUN`, `ENFORCED`
1248
1257
  */
1249
1258
  enforcementMode?: pulumi.Input<string>;
1250
1259
  }
1251
1260
  export interface GetAlertV2Evaluation {
1252
1261
  /**
1253
- * (string) - Operator used for comparison in alert evaluation. Possible values are: EQUAL, GREATER_THAN, GREATER_THAN_OR_EQUAL, IS_NOT_NULL, IS_NULL, LESS_THAN, LESS_THAN_OR_EQUAL, NOT_EQUAL
1262
+ * (string) - Operator used for comparison in alert evaluation. Possible values are: `EQUAL`, `GREATER_THAN`, `GREATER_THAN_OR_EQUAL`, `IS_NOT_NULL`, `IS_NULL`, `LESS_THAN`, `LESS_THAN_OR_EQUAL`, `NOT_EQUAL`
1254
1263
  */
1255
1264
  comparisonOperator?: string;
1256
1265
  /**
1257
- * (string) - Alert state if result is empty. Possible values are: ERROR, OK, TRIGGERED, UNKNOWN
1266
+ * (string) - Alert state if result is empty. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
1258
1267
  */
1259
1268
  emptyResultState?: string;
1260
1269
  /**
@@ -1270,7 +1279,7 @@ export interface GetAlertV2Evaluation {
1270
1279
  */
1271
1280
  source?: inputs.GetAlertV2EvaluationSource;
1272
1281
  /**
1273
- * (string) - Latest state of alert evaluation. Possible values are: ERROR, OK, TRIGGERED, UNKNOWN
1282
+ * (string) - Latest state of alert evaluation. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
1274
1283
  */
1275
1284
  state?: string;
1276
1285
  /**
@@ -1280,11 +1289,11 @@ export interface GetAlertV2Evaluation {
1280
1289
  }
1281
1290
  export interface GetAlertV2EvaluationArgs {
1282
1291
  /**
1283
- * (string) - Operator used for comparison in alert evaluation. Possible values are: EQUAL, GREATER_THAN, GREATER_THAN_OR_EQUAL, IS_NOT_NULL, IS_NULL, LESS_THAN, LESS_THAN_OR_EQUAL, NOT_EQUAL
1292
+ * (string) - Operator used for comparison in alert evaluation. Possible values are: `EQUAL`, `GREATER_THAN`, `GREATER_THAN_OR_EQUAL`, `IS_NOT_NULL`, `IS_NULL`, `LESS_THAN`, `LESS_THAN_OR_EQUAL`, `NOT_EQUAL`
1284
1293
  */
1285
1294
  comparisonOperator?: pulumi.Input<string>;
1286
1295
  /**
1287
- * (string) - Alert state if result is empty. Possible values are: ERROR, OK, TRIGGERED, UNKNOWN
1296
+ * (string) - Alert state if result is empty. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
1288
1297
  */
1289
1298
  emptyResultState?: pulumi.Input<string>;
1290
1299
  /**
@@ -1300,7 +1309,7 @@ export interface GetAlertV2EvaluationArgs {
1300
1309
  */
1301
1310
  source?: pulumi.Input<inputs.GetAlertV2EvaluationSourceArgs>;
1302
1311
  /**
1303
- * (string) - Latest state of alert evaluation. Possible values are: ERROR, OK, TRIGGERED, UNKNOWN
1312
+ * (string) - Latest state of alert evaluation. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
1304
1313
  */
1305
1314
  state?: pulumi.Input<string>;
1306
1315
  /**
@@ -1358,7 +1367,7 @@ export interface GetAlertV2EvaluationNotificationSubscriptionArgs {
1358
1367
  }
1359
1368
  export interface GetAlertV2EvaluationSource {
1360
1369
  /**
1361
- * (string) - . Possible values are: AVG, COUNT, COUNT_DISTINCT, MAX, MEDIAN, MIN, STDDEV, SUM
1370
+ * (string) - . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
1362
1371
  */
1363
1372
  aggregation?: string;
1364
1373
  /**
@@ -1372,7 +1381,7 @@ export interface GetAlertV2EvaluationSource {
1372
1381
  }
1373
1382
  export interface GetAlertV2EvaluationSourceArgs {
1374
1383
  /**
1375
- * (string) - . Possible values are: AVG, COUNT, COUNT_DISTINCT, MAX, MEDIAN, MIN, STDDEV, SUM
1384
+ * (string) - . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
1376
1385
  */
1377
1386
  aggregation?: pulumi.Input<string>;
1378
1387
  /**
@@ -1406,7 +1415,7 @@ export interface GetAlertV2EvaluationThresholdArgs {
1406
1415
  }
1407
1416
  export interface GetAlertV2EvaluationThresholdColumn {
1408
1417
  /**
1409
- * (string) - . Possible values are: AVG, COUNT, COUNT_DISTINCT, MAX, MEDIAN, MIN, STDDEV, SUM
1418
+ * (string) - . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
1410
1419
  */
1411
1420
  aggregation?: string;
1412
1421
  /**
@@ -1420,7 +1429,7 @@ export interface GetAlertV2EvaluationThresholdColumn {
1420
1429
  }
1421
1430
  export interface GetAlertV2EvaluationThresholdColumnArgs {
1422
1431
  /**
1423
- * (string) - . Possible values are: AVG, COUNT, COUNT_DISTINCT, MAX, MEDIAN, MIN, STDDEV, SUM
1432
+ * (string) - . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
1424
1433
  */
1425
1434
  aggregation?: pulumi.Input<string>;
1426
1435
  /**
@@ -1462,7 +1471,7 @@ export interface GetAlertV2EvaluationThresholdValueArgs {
1462
1471
  }
1463
1472
  export interface GetAlertV2Schedule {
1464
1473
  /**
1465
- * (string) - Indicate whether this schedule is paused or not. Possible values are: PAUSED, UNPAUSED
1474
+ * (string) - Indicate whether this schedule is paused or not. Possible values are: `PAUSED`, `UNPAUSED`
1466
1475
  */
1467
1476
  pauseStatus?: string;
1468
1477
  /**
@@ -1479,7 +1488,7 @@ export interface GetAlertV2Schedule {
1479
1488
  }
1480
1489
  export interface GetAlertV2ScheduleArgs {
1481
1490
  /**
1482
- * (string) - Indicate whether this schedule is paused or not. Possible values are: PAUSED, UNPAUSED
1491
+ * (string) - Indicate whether this schedule is paused or not. Possible values are: `PAUSED`, `UNPAUSED`
1483
1492
  */
1484
1493
  pauseStatus?: pulumi.Input<string>;
1485
1494
  /**
@@ -1499,11 +1508,11 @@ export interface GetBudgetPolicyCustomTag {
1499
1508
  * (string) - The key of the tag.
1500
1509
  * - Must be unique among all custom tags of the same policy
1501
1510
  * - Cannot be “budget-policy-name”, “budget-policy-id” or "budget-policy-resolution-result" -
1502
- * these tags are preserved.
1511
+ * these tags are preserved
1503
1512
  */
1504
1513
  key: string;
1505
1514
  /**
1506
- * (string) - The value of the tag.
1515
+ * (string) - The value of the tag
1507
1516
  */
1508
1517
  value?: string;
1509
1518
  }
@@ -1512,11 +1521,11 @@ export interface GetBudgetPolicyCustomTagArgs {
1512
1521
  * (string) - The key of the tag.
1513
1522
  * - Must be unique among all custom tags of the same policy
1514
1523
  * - Cannot be “budget-policy-name”, “budget-policy-id” or "budget-policy-resolution-result" -
1515
- * these tags are preserved.
1524
+ * these tags are preserved
1516
1525
  */
1517
1526
  key: pulumi.Input<string>;
1518
1527
  /**
1519
- * (string) - The value of the tag.
1528
+ * (string) - The value of the tag
1520
1529
  */
1521
1530
  value?: pulumi.Input<string>;
1522
1531
  }
@@ -1794,6 +1803,7 @@ export interface GetClusterClusterInfo {
1794
1803
  * Identifier of Cluster Policy to validate cluster and preset certain defaults.
1795
1804
  */
1796
1805
  policyId?: string;
1806
+ remoteDiskThroughput?: number;
1797
1807
  /**
1798
1808
  * The type of runtime of the cluster
1799
1809
  */
@@ -1829,6 +1839,7 @@ export interface GetClusterClusterInfo {
1829
1839
  stateMessage?: string;
1830
1840
  terminatedTime?: number;
1831
1841
  terminationReason?: inputs.GetClusterClusterInfoTerminationReason;
1842
+ totalInitialRemoteDiskSize?: number;
1832
1843
  useMlRuntime?: boolean;
1833
1844
  workloadType?: inputs.GetClusterClusterInfoWorkloadType;
1834
1845
  }
@@ -1906,6 +1917,7 @@ export interface GetClusterClusterInfoArgs {
1906
1917
  * Identifier of Cluster Policy to validate cluster and preset certain defaults.
1907
1918
  */
1908
1919
  policyId?: pulumi.Input<string>;
1920
+ remoteDiskThroughput?: pulumi.Input<number>;
1909
1921
  /**
1910
1922
  * The type of runtime of the cluster
1911
1923
  */
@@ -1941,6 +1953,7 @@ export interface GetClusterClusterInfoArgs {
1941
1953
  stateMessage?: pulumi.Input<string>;
1942
1954
  terminatedTime?: pulumi.Input<number>;
1943
1955
  terminationReason?: pulumi.Input<inputs.GetClusterClusterInfoTerminationReasonArgs>;
1956
+ totalInitialRemoteDiskSize?: pulumi.Input<number>;
1944
1957
  useMlRuntime?: pulumi.Input<boolean>;
1945
1958
  workloadType?: pulumi.Input<inputs.GetClusterClusterInfoWorkloadTypeArgs>;
1946
1959
  }
@@ -2260,6 +2273,7 @@ export interface GetClusterClusterInfoSpec {
2260
2273
  * Identifier of Cluster Policy to validate cluster and preset certain defaults.
2261
2274
  */
2262
2275
  policyId?: string;
2276
+ remoteDiskThroughput?: number;
2263
2277
  /**
2264
2278
  * The type of runtime of the cluster
2265
2279
  */
@@ -2288,6 +2302,7 @@ export interface GetClusterClusterInfoSpec {
2288
2302
  * SSH public key contents that will be added to each Spark node in this cluster.
2289
2303
  */
2290
2304
  sshPublicKeys?: string[];
2305
+ totalInitialRemoteDiskSize?: number;
2291
2306
  useMlRuntime?: boolean;
2292
2307
  workloadType?: inputs.GetClusterClusterInfoSpecWorkloadType;
2293
2308
  }
@@ -2355,6 +2370,7 @@ export interface GetClusterClusterInfoSpecArgs {
2355
2370
  * Identifier of Cluster Policy to validate cluster and preset certain defaults.
2356
2371
  */
2357
2372
  policyId?: pulumi.Input<string>;
2373
+ remoteDiskThroughput?: pulumi.Input<number>;
2358
2374
  /**
2359
2375
  * The type of runtime of the cluster
2360
2376
  */
@@ -2383,6 +2399,7 @@ export interface GetClusterClusterInfoSpecArgs {
2383
2399
  * SSH public key contents that will be added to each Spark node in this cluster.
2384
2400
  */
2385
2401
  sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
2402
+ totalInitialRemoteDiskSize?: pulumi.Input<number>;
2386
2403
  useMlRuntime?: pulumi.Input<boolean>;
2387
2404
  workloadType?: pulumi.Input<inputs.GetClusterClusterInfoSpecWorkloadTypeArgs>;
2388
2405
  }
@@ -3919,13 +3936,13 @@ export interface GetJobJobSettingsSettingsEnvironmentArgs {
3919
3936
  spec?: pulumi.Input<inputs.GetJobJobSettingsSettingsEnvironmentSpecArgs>;
3920
3937
  }
3921
3938
  export interface GetJobJobSettingsSettingsEnvironmentSpec {
3922
- client: string;
3939
+ client?: string;
3923
3940
  dependencies?: string[];
3924
3941
  environmentVersion?: string;
3925
3942
  jarDependencies?: string[];
3926
3943
  }
3927
3944
  export interface GetJobJobSettingsSettingsEnvironmentSpecArgs {
3928
- client: pulumi.Input<string>;
3945
+ client?: pulumi.Input<string>;
3929
3946
  dependencies?: pulumi.Input<pulumi.Input<string>[]>;
3930
3947
  environmentVersion?: pulumi.Input<string>;
3931
3948
  jarDependencies?: pulumi.Input<pulumi.Input<string>[]>;
@@ -6617,17 +6634,97 @@ export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureSer
6617
6634
  targetServices?: pulumi.Input<pulumi.Input<string>[]>;
6618
6635
  }
6619
6636
  export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRules {
6637
+ awsPrivateEndpointRules?: inputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRule[];
6620
6638
  /**
6621
6639
  * Array of private endpoint rule objects.
6622
6640
  */
6623
6641
  azurePrivateEndpointRules?: inputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule[];
6624
6642
  }
6625
6643
  export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesArgs {
6644
+ awsPrivateEndpointRules?: pulumi.Input<pulumi.Input<inputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRuleArgs>[]>;
6626
6645
  /**
6627
6646
  * Array of private endpoint rule objects.
6628
6647
  */
6629
6648
  azurePrivateEndpointRules?: pulumi.Input<pulumi.Input<inputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRuleArgs>[]>;
6630
6649
  }
6650
+ export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRule {
6651
+ /**
6652
+ * The Databricks account ID associated with this network configuration.
6653
+ */
6654
+ accountId?: string;
6655
+ /**
6656
+ * The current status of this private endpoint.
6657
+ */
6658
+ connectionState?: string;
6659
+ /**
6660
+ * Time in epoch milliseconds when this object was created.
6661
+ */
6662
+ creationTime?: number;
6663
+ /**
6664
+ * Whether this private endpoint is deactivated.
6665
+ */
6666
+ deactivated?: boolean;
6667
+ /**
6668
+ * Time in epoch milliseconds when this object was deactivated.
6669
+ */
6670
+ deactivatedAt?: number;
6671
+ domainNames?: string[];
6672
+ enabled?: boolean;
6673
+ endpointService?: string;
6674
+ /**
6675
+ * The Databricks network connectivity configuration ID.
6676
+ */
6677
+ networkConnectivityConfigId?: string;
6678
+ resourceNames?: string[];
6679
+ /**
6680
+ * The ID of a private endpoint rule.
6681
+ */
6682
+ ruleId?: string;
6683
+ /**
6684
+ * Time in epoch milliseconds when the network was updated.
6685
+ */
6686
+ updatedTime?: number;
6687
+ vpcEndpointId?: string;
6688
+ }
6689
+ export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRuleArgs {
6690
+ /**
6691
+ * The Databricks account ID associated with this network configuration.
6692
+ */
6693
+ accountId?: pulumi.Input<string>;
6694
+ /**
6695
+ * The current status of this private endpoint.
6696
+ */
6697
+ connectionState?: pulumi.Input<string>;
6698
+ /**
6699
+ * Time in epoch milliseconds when this object was created.
6700
+ */
6701
+ creationTime?: pulumi.Input<number>;
6702
+ /**
6703
+ * Whether this private endpoint is deactivated.
6704
+ */
6705
+ deactivated?: pulumi.Input<boolean>;
6706
+ /**
6707
+ * Time in epoch milliseconds when this object was deactivated.
6708
+ */
6709
+ deactivatedAt?: pulumi.Input<number>;
6710
+ domainNames?: pulumi.Input<pulumi.Input<string>[]>;
6711
+ enabled?: pulumi.Input<boolean>;
6712
+ endpointService?: pulumi.Input<string>;
6713
+ /**
6714
+ * The Databricks network connectivity configuration ID.
6715
+ */
6716
+ networkConnectivityConfigId?: pulumi.Input<string>;
6717
+ resourceNames?: pulumi.Input<pulumi.Input<string>[]>;
6718
+ /**
6719
+ * The ID of a private endpoint rule.
6720
+ */
6721
+ ruleId?: pulumi.Input<string>;
6722
+ /**
6723
+ * Time in epoch milliseconds when the network was updated.
6724
+ */
6725
+ updatedTime?: pulumi.Input<number>;
6726
+ vpcEndpointId?: pulumi.Input<string>;
6727
+ }
6631
6728
  export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule {
6632
6729
  /**
6633
6730
  * The current status of this private endpoint.
@@ -7182,7 +7279,7 @@ export interface GetSchemaSchemaInfo {
7182
7279
  [key: string]: string;
7183
7280
  };
7184
7281
  /**
7185
- * the unique identifier of the volume
7282
+ * the unique identifier of the schema
7186
7283
  */
7187
7284
  schemaId?: string;
7188
7285
  /**
@@ -7258,7 +7355,7 @@ export interface GetSchemaSchemaInfoArgs {
7258
7355
  [key: string]: pulumi.Input<string>;
7259
7356
  }>;
7260
7357
  /**
7261
- * the unique identifier of the volume
7358
+ * the unique identifier of the schema
7262
7359
  */
7263
7360
  schemaId?: pulumi.Input<string>;
7264
7361
  /**
@@ -7300,6 +7397,7 @@ export interface GetServingEndpointsEndpoint {
7300
7397
  configs?: inputs.GetServingEndpointsEndpointConfig[];
7301
7398
  creationTimestamp?: number;
7302
7399
  creator?: string;
7400
+ description?: string;
7303
7401
  id?: string;
7304
7402
  lastUpdatedTimestamp?: number;
7305
7403
  /**
@@ -7325,6 +7423,7 @@ export interface GetServingEndpointsEndpointArgs {
7325
7423
  configs?: pulumi.Input<pulumi.Input<inputs.GetServingEndpointsEndpointConfigArgs>[]>;
7326
7424
  creationTimestamp?: pulumi.Input<number>;
7327
7425
  creator?: pulumi.Input<string>;
7426
+ description?: pulumi.Input<string>;
7328
7427
  id?: pulumi.Input<string>;
7329
7428
  lastUpdatedTimestamp?: pulumi.Input<number>;
7330
7429
  /**
@@ -8682,7 +8781,7 @@ export interface JobEnvironmentSpec {
8682
8781
  /**
8683
8782
  * client version used by the environment.
8684
8783
  */
8685
- client: pulumi.Input<string>;
8784
+ client?: pulumi.Input<string>;
8686
8785
  /**
8687
8786
  * List of pip dependencies, as supported by the version of pip in this environment. Each dependency is a pip requirement file line. See [API docs](https://docs.databricks.com/api/workspace/jobs/create#environments-spec-dependencies) for more information.
8688
8787
  */
@@ -8783,6 +8882,7 @@ export interface JobJobClusterNewCluster {
8783
8882
  nodeTypeId?: pulumi.Input<string>;
8784
8883
  numWorkers?: pulumi.Input<number>;
8785
8884
  policyId?: pulumi.Input<string>;
8885
+ remoteDiskThroughput?: pulumi.Input<number>;
8786
8886
  runtimeEngine?: pulumi.Input<string>;
8787
8887
  singleUserName?: pulumi.Input<string>;
8788
8888
  sparkConf?: pulumi.Input<{
@@ -8793,6 +8893,7 @@ export interface JobJobClusterNewCluster {
8793
8893
  }>;
8794
8894
  sparkVersion?: pulumi.Input<string>;
8795
8895
  sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
8896
+ totalInitialRemoteDiskSize?: pulumi.Input<number>;
8796
8897
  useMlRuntime?: pulumi.Input<boolean>;
8797
8898
  /**
8798
8899
  * isn't supported
@@ -8997,6 +9098,7 @@ export interface JobNewCluster {
8997
9098
  nodeTypeId?: pulumi.Input<string>;
8998
9099
  numWorkers?: pulumi.Input<number>;
8999
9100
  policyId?: pulumi.Input<string>;
9101
+ remoteDiskThroughput?: pulumi.Input<number>;
9000
9102
  runtimeEngine?: pulumi.Input<string>;
9001
9103
  singleUserName?: pulumi.Input<string>;
9002
9104
  sparkConf?: pulumi.Input<{
@@ -9007,6 +9109,7 @@ export interface JobNewCluster {
9007
9109
  }>;
9008
9110
  sparkVersion?: pulumi.Input<string>;
9009
9111
  sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
9112
+ totalInitialRemoteDiskSize?: pulumi.Input<number>;
9010
9113
  useMlRuntime?: pulumi.Input<boolean>;
9011
9114
  /**
9012
9115
  * isn't supported
@@ -9324,6 +9427,8 @@ export interface JobTask {
9324
9427
  cleanRoomsNotebookTask?: pulumi.Input<inputs.JobTaskCleanRoomsNotebookTask>;
9325
9428
  conditionTask?: pulumi.Input<inputs.JobTaskConditionTask>;
9326
9429
  dashboardTask?: pulumi.Input<inputs.JobTaskDashboardTask>;
9430
+ dbtCloudTask?: pulumi.Input<inputs.JobTaskDbtCloudTask>;
9431
+ dbtPlatformTask?: pulumi.Input<inputs.JobTaskDbtPlatformTask>;
9327
9432
  dbtTask?: pulumi.Input<inputs.JobTaskDbtTask>;
9328
9433
  /**
9329
9434
  * block specifying dependency(-ies) for a given task.
@@ -9486,6 +9591,20 @@ export interface JobTaskDashboardTaskSubscriptionSubscriber {
9486
9591
  */
9487
9592
  userName?: pulumi.Input<string>;
9488
9593
  }
9594
+ export interface JobTaskDbtCloudTask {
9595
+ /**
9596
+ * The resource name of the UC connection to authenticate from Databricks to Power BI
9597
+ */
9598
+ connectionResourceName?: pulumi.Input<string>;
9599
+ dbtCloudJobId?: pulumi.Input<number>;
9600
+ }
9601
+ export interface JobTaskDbtPlatformTask {
9602
+ /**
9603
+ * The resource name of the UC connection to authenticate from Databricks to Power BI
9604
+ */
9605
+ connectionResourceName?: pulumi.Input<string>;
9606
+ dbtPlatformJobId?: pulumi.Input<string>;
9607
+ }
9489
9608
  export interface JobTaskDbtTask {
9490
9609
  /**
9491
9610
  * The name of the catalog to use inside Unity Catalog.
@@ -9578,6 +9697,8 @@ export interface JobTaskForEachTaskTask {
9578
9697
  cleanRoomsNotebookTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskCleanRoomsNotebookTask>;
9579
9698
  conditionTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskConditionTask>;
9580
9699
  dashboardTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskDashboardTask>;
9700
+ dbtCloudTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskDbtCloudTask>;
9701
+ dbtPlatformTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskDbtPlatformTask>;
9581
9702
  dbtTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskDbtTask>;
9582
9703
  /**
9583
9704
  * block specifying dependency(-ies) for a given task.
@@ -9739,6 +9860,20 @@ export interface JobTaskForEachTaskTaskDashboardTaskSubscriptionSubscriber {
9739
9860
  */
9740
9861
  userName?: pulumi.Input<string>;
9741
9862
  }
9863
+ export interface JobTaskForEachTaskTaskDbtCloudTask {
9864
+ /**
9865
+ * The resource name of the UC connection to authenticate from Databricks to Power BI
9866
+ */
9867
+ connectionResourceName?: pulumi.Input<string>;
9868
+ dbtCloudJobId?: pulumi.Input<number>;
9869
+ }
9870
+ export interface JobTaskForEachTaskTaskDbtPlatformTask {
9871
+ /**
9872
+ * The resource name of the UC connection to authenticate from Databricks to Power BI
9873
+ */
9874
+ connectionResourceName?: pulumi.Input<string>;
9875
+ dbtPlatformJobId?: pulumi.Input<string>;
9876
+ }
9742
9877
  export interface JobTaskForEachTaskTaskDbtTask {
9743
9878
  /**
9744
9879
  * The name of the catalog to use inside Unity Catalog.
@@ -9901,6 +10036,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
9901
10036
  nodeTypeId?: pulumi.Input<string>;
9902
10037
  numWorkers?: pulumi.Input<number>;
9903
10038
  policyId?: pulumi.Input<string>;
10039
+ remoteDiskThroughput?: pulumi.Input<number>;
9904
10040
  runtimeEngine?: pulumi.Input<string>;
9905
10041
  singleUserName?: pulumi.Input<string>;
9906
10042
  sparkConf?: pulumi.Input<{
@@ -9911,6 +10047,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
9911
10047
  }>;
9912
10048
  sparkVersion?: pulumi.Input<string>;
9913
10049
  sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
10050
+ totalInitialRemoteDiskSize?: pulumi.Input<number>;
9914
10051
  useMlRuntime?: pulumi.Input<boolean>;
9915
10052
  /**
9916
10053
  * isn't supported
@@ -10537,6 +10674,7 @@ export interface JobTaskNewCluster {
10537
10674
  nodeTypeId?: pulumi.Input<string>;
10538
10675
  numWorkers?: pulumi.Input<number>;
10539
10676
  policyId?: pulumi.Input<string>;
10677
+ remoteDiskThroughput?: pulumi.Input<number>;
10540
10678
  runtimeEngine?: pulumi.Input<string>;
10541
10679
  singleUserName?: pulumi.Input<string>;
10542
10680
  sparkConf?: pulumi.Input<{
@@ -10547,6 +10685,7 @@ export interface JobTaskNewCluster {
10547
10685
  }>;
10548
10686
  sparkVersion?: pulumi.Input<string>;
10549
10687
  sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
10688
+ totalInitialRemoteDiskSize?: pulumi.Input<number>;
10550
10689
  useMlRuntime?: pulumi.Input<boolean>;
10551
10690
  /**
10552
10691
  * isn't supported
@@ -11566,10 +11705,18 @@ export interface ModelServingConfigServedEntity {
11566
11705
  * ARN of the instance profile that the served entity uses to access AWS resources.
11567
11706
  */
11568
11707
  instanceProfileArn?: pulumi.Input<string>;
11708
+ /**
11709
+ * The maximum provisioned concurrency that the endpoint can scale up to. Conflicts with `workloadSize`.
11710
+ */
11711
+ maxProvisionedConcurrency?: pulumi.Input<number>;
11569
11712
  /**
11570
11713
  * The maximum tokens per second that the endpoint can scale up to.
11571
11714
  */
11572
11715
  maxProvisionedThroughput?: pulumi.Input<number>;
11716
+ /**
11717
+ * The minimum provisioned concurrency that the endpoint can scale down to. Conflicts with `workloadSize`.
11718
+ */
11719
+ minProvisionedConcurrency?: pulumi.Input<number>;
11573
11720
  /**
11574
11721
  * The minimum tokens per second that the endpoint can scale down to.
11575
11722
  */
@@ -11584,7 +11731,7 @@ export interface ModelServingConfigServedEntity {
11584
11731
  */
11585
11732
  scaleToZeroEnabled?: pulumi.Input<boolean>;
11586
11733
  /**
11587
- * The workload size of the served entity. The workload size corresponds to a range of provisioned concurrency that the compute autoscales between. A single unit of provisioned concurrency can process one request at a time. Valid workload sizes are `Small` (4 - 4 provisioned concurrency), `Medium` (8 - 16 provisioned concurrency), and `Large` (16 - 64 provisioned concurrency). If `scale-to-zero` is enabled, the lower bound of the provisioned concurrency for each workload size is 0.
11734
+ * The workload size of the served entity. The workload size corresponds to a range of provisioned concurrency that the compute autoscales between. A single unit of provisioned concurrency can process one request at a time. Valid workload sizes are `Small` (4 - 4 provisioned concurrency), `Medium` (8 - 16 provisioned concurrency), and `Large` (16 - 64 provisioned concurrency). If `scale-to-zero` is enabled, the lower bound of the provisioned concurrency for each workload size is 0. Conflicts with `minProvisionedConcurrency` and `maxProvisionedConcurrency`.
11588
11735
  */
11589
11736
  workloadSize?: pulumi.Input<string>;
11590
11737
  /**
@@ -11831,10 +11978,18 @@ export interface ModelServingConfigServedModel {
11831
11978
  * ARN of the instance profile that the served model will use to access AWS resources.
11832
11979
  */
11833
11980
  instanceProfileArn?: pulumi.Input<string>;
11981
+ /**
11982
+ * The maximum provisioned concurrency that the endpoint can scale up to. Conflicts with `workloadSize`.
11983
+ */
11984
+ maxProvisionedConcurrency?: pulumi.Input<number>;
11834
11985
  /**
11835
11986
  * The maximum tokens per second that the endpoint can scale up to.
11836
11987
  */
11837
11988
  maxProvisionedThroughput?: pulumi.Input<number>;
11989
+ /**
11990
+ * The minimum provisioned concurrency that the endpoint can scale down to. Conflicts with `workloadSize`.
11991
+ */
11992
+ minProvisionedConcurrency?: pulumi.Input<number>;
11838
11993
  /**
11839
11994
  * The minimum tokens per second that the endpoint can scale down to.
11840
11995
  */
@@ -12155,11 +12310,30 @@ export interface MwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServic
12155
12310
  targetServices?: pulumi.Input<pulumi.Input<string>[]>;
12156
12311
  }
12157
12312
  export interface MwsNetworkConnectivityConfigEgressConfigTargetRules {
12313
+ awsPrivateEndpointRules?: pulumi.Input<pulumi.Input<inputs.MwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRule>[]>;
12158
12314
  /**
12159
12315
  * (Azure only) - list containing information about configure Azure Private Endpoints.
12160
12316
  */
12161
12317
  azurePrivateEndpointRules?: pulumi.Input<pulumi.Input<inputs.MwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule>[]>;
12162
12318
  }
12319
+ export interface MwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRule {
12320
+ accountId?: pulumi.Input<string>;
12321
+ connectionState?: pulumi.Input<string>;
12322
+ creationTime?: pulumi.Input<number>;
12323
+ deactivated?: pulumi.Input<boolean>;
12324
+ deactivatedAt?: pulumi.Input<number>;
12325
+ domainNames?: pulumi.Input<pulumi.Input<string>[]>;
12326
+ enabled?: pulumi.Input<boolean>;
12327
+ endpointService?: pulumi.Input<string>;
12328
+ /**
12329
+ * Canonical unique identifier of Network Connectivity Config in Databricks Account
12330
+ */
12331
+ networkConnectivityConfigId?: pulumi.Input<string>;
12332
+ resourceNames?: pulumi.Input<pulumi.Input<string>[]>;
12333
+ ruleId?: pulumi.Input<string>;
12334
+ updatedTime?: pulumi.Input<number>;
12335
+ vpcEndpointId?: pulumi.Input<string>;
12336
+ }
12163
12337
  export interface MwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule {
12164
12338
  connectionState?: pulumi.Input<string>;
12165
12339
  creationTime?: pulumi.Input<number>;
@@ -12186,11 +12360,11 @@ export interface MwsNetworksGcpNetworkInfo {
12186
12360
  */
12187
12361
  networkProjectId: pulumi.Input<string>;
12188
12362
  /**
12189
- * @deprecated gcp_network_info.pod_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.82.0/docs/guides/gcp-workspace#creating-a-vpc
12363
+ * @deprecated gcp_network_info.pod_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.84.0/docs/guides/gcp-workspace#creating-a-vpc
12190
12364
  */
12191
12365
  podIpRangeName?: pulumi.Input<string>;
12192
12366
  /**
12193
- * @deprecated gcp_network_info.service_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.82.0/docs/guides/gcp-workspace#creating-a-vpc
12367
+ * @deprecated gcp_network_info.service_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.84.0/docs/guides/gcp-workspace#creating-a-vpc
12194
12368
  */
12195
12369
  serviceIpRangeName?: pulumi.Input<string>;
12196
12370
  /**
@@ -12251,11 +12425,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
12251
12425
  }
12252
12426
  export interface MwsWorkspacesGcpManagedNetworkConfig {
12253
12427
  /**
12254
- * @deprecated gcp_managed_network_config.gke_cluster_pod_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.82.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
12428
+ * @deprecated gcp_managed_network_config.gke_cluster_pod_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.84.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
12255
12429
  */
12256
12430
  gkeClusterPodIpRange?: pulumi.Input<string>;
12257
12431
  /**
12258
- * @deprecated gcp_managed_network_config.gke_cluster_service_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.82.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
12432
+ * @deprecated gcp_managed_network_config.gke_cluster_service_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.84.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
12259
12433
  */
12260
12434
  gkeClusterServiceIpRange?: pulumi.Input<string>;
12261
12435
  subnetCidr: pulumi.Input<string>;
@@ -12582,6 +12756,9 @@ export interface PipelineDeployment {
12582
12756
  */
12583
12757
  metadataFilePath?: pulumi.Input<string>;
12584
12758
  }
12759
+ export interface PipelineEnvironment {
12760
+ dependencies?: pulumi.Input<pulumi.Input<string>[]>;
12761
+ }
12585
12762
  export interface PipelineEventLog {
12586
12763
  /**
12587
12764
  * The UC catalog the event log is published under.
@@ -12864,6 +13041,16 @@ export interface QualityMonitorTimeSeries {
12864
13041
  */
12865
13042
  timestampCol: pulumi.Input<string>;
12866
13043
  }
13044
+ export interface QualityMonitorV2AnomalyDetectionConfig {
13045
+ /**
13046
+ * (string) - Run id of the last run of the workflow
13047
+ */
13048
+ lastRunId?: pulumi.Input<string>;
13049
+ /**
13050
+ * (string) - The status of the last run of the workflow. Possible values are: `ANOMALY_DETECTION_RUN_STATUS_CANCELED`, `ANOMALY_DETECTION_RUN_STATUS_FAILED`, `ANOMALY_DETECTION_RUN_STATUS_JOB_DELETED`, `ANOMALY_DETECTION_RUN_STATUS_PENDING`, `ANOMALY_DETECTION_RUN_STATUS_RUNNING`, `ANOMALY_DETECTION_RUN_STATUS_SUCCESS`, `ANOMALY_DETECTION_RUN_STATUS_UNKNOWN`, `ANOMALY_DETECTION_RUN_STATUS_WORKSPACE_MISMATCH_ERROR`
13051
+ */
13052
+ latestRunStatus?: pulumi.Input<string>;
13053
+ }
12867
13054
  export interface QueryParameter {
12868
13055
  /**
12869
13056
  * Date-range query parameter value. Consists of following attributes (Can only specify one of `dynamicDateRangeValue` or `dateRangeValue`):