@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.
- package/accountNetworkPolicy.d.ts +2 -2
- package/accountNetworkPolicy.js +2 -2
- package/alertV2.d.ts +10 -4
- package/alertV2.js +8 -2
- package/alertV2.js.map +1 -1
- package/budgetPolicy.d.ts +2 -2
- package/budgetPolicy.js +2 -2
- package/cluster.d.ts +6 -0
- package/cluster.js +4 -0
- package/cluster.js.map +1 -1
- package/connection.d.ts +24 -29
- package/connection.js +3 -17
- package/connection.js.map +1 -1
- package/databaseInstance.d.ts +33 -31
- package/databaseInstance.js +18 -6
- package/databaseInstance.js.map +1 -1
- package/entitlements.d.ts +3 -3
- package/getAlertV2.d.ts +23 -1
- package/getAlertV2.js +22 -0
- package/getAlertV2.js.map +1 -1
- package/getAlertsV2.d.ts +38 -0
- package/getAlertsV2.js +38 -0
- package/getAlertsV2.js.map +1 -1
- package/getDatabaseInstance.d.ts +42 -28
- package/getDatabaseInstance.js +32 -4
- package/getDatabaseInstance.js.map +1 -1
- package/getDatabaseInstances.d.ts +32 -0
- package/getDatabaseInstances.js +32 -0
- package/getDatabaseInstances.js.map +1 -1
- package/getJobs.d.ts +63 -10
- package/getJobs.js +56 -10
- package/getJobs.js.map +1 -1
- package/getOnlineStore.d.ts +58 -0
- package/getOnlineStore.js +24 -0
- package/getOnlineStore.js.map +1 -0
- package/getOnlineStores.d.ts +14 -0
- package/getOnlineStores.js +18 -0
- package/getOnlineStores.js.map +1 -0
- package/getQualityMonitorV2.d.ts +95 -0
- package/getQualityMonitorV2.js +68 -0
- package/getQualityMonitorV2.js.map +1 -0
- package/getQualityMonitorsV2.d.ts +46 -0
- package/getQualityMonitorsV2.js +50 -0
- package/getQualityMonitorsV2.js.map +1 -0
- package/group.d.ts +3 -3
- package/index.d.ts +18 -0
- package/index.js +26 -4
- package/index.js.map +1 -1
- package/instancePool.d.ts +2 -0
- package/instancePool.js +2 -0
- package/instancePool.js.map +1 -1
- package/mwsNccPrivateEndpointRule.d.ts +91 -5
- package/mwsNccPrivateEndpointRule.js +37 -7
- package/mwsNccPrivateEndpointRule.js.map +1 -1
- package/mwsWorkspaces.d.ts +9 -9
- package/mwsWorkspaces.js +0 -6
- package/mwsWorkspaces.js.map +1 -1
- package/onlineStore.d.ts +105 -0
- package/onlineStore.js +78 -0
- package/onlineStore.js.map +1 -0
- package/package.json +2 -2
- package/pipeline.d.ts +21 -0
- package/pipeline.js +4 -0
- package/pipeline.js.map +1 -1
- package/qualityMonitorV2.d.ts +111 -0
- package/qualityMonitorV2.js +100 -0
- package/qualityMonitorV2.js.map +1 -0
- package/recipientFederationPolicy.d.ts +2 -2
- package/recipientFederationPolicy.js +2 -2
- package/schema.d.ts +8 -0
- package/schema.js +2 -0
- package/schema.js.map +1 -1
- package/servicePrincipal.d.ts +3 -3
- package/servicePrincipalRole.d.ts +19 -3
- package/servicePrincipalRole.js +16 -0
- package/servicePrincipalRole.js.map +1 -1
- package/servicePrincipalSecret.d.ts +29 -3
- package/servicePrincipalSecret.js +16 -0
- package/servicePrincipalSecret.js.map +1 -1
- package/types/input.d.ts +238 -51
- package/types/output.d.ts +284 -70
- package/user.d.ts +3 -3
- package/workspaceNetworkOption.d.ts +2 -2
- package/workspaceNetworkOption.js +2 -2
package/types/output.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export interface AccountNetworkPolicyEgressNetworkAccess {
|
|
|
43
43
|
*/
|
|
44
44
|
policyEnforcement?: outputs.AccountNetworkPolicyEgressNetworkAccessPolicyEnforcement;
|
|
45
45
|
/**
|
|
46
|
-
* The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS
|
|
46
|
+
* The restriction mode that controls how serverless workloads can access the internet. Possible values are: `FULL_ACCESS`, `RESTRICTED_ACCESS`
|
|
47
47
|
*/
|
|
48
48
|
restrictionMode: string;
|
|
49
49
|
}
|
|
@@ -53,7 +53,7 @@ export interface AccountNetworkPolicyEgressNetworkAccessAllowedInternetDestinati
|
|
|
53
53
|
*/
|
|
54
54
|
destination?: string;
|
|
55
55
|
/**
|
|
56
|
-
* The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
|
|
56
|
+
* The type of internet destination. Currently only DNS_NAME is supported. Possible values are: `DNS_NAME`
|
|
57
57
|
*/
|
|
58
58
|
internetDestinationType?: string;
|
|
59
59
|
}
|
|
@@ -67,12 +67,9 @@ export interface AccountNetworkPolicyEgressNetworkAccessAllowedStorageDestinatio
|
|
|
67
67
|
*/
|
|
68
68
|
azureStorageService?: string;
|
|
69
69
|
bucketName?: string;
|
|
70
|
-
/**
|
|
71
|
-
* The region of the S3 bucket
|
|
72
|
-
*/
|
|
73
70
|
region?: string;
|
|
74
71
|
/**
|
|
75
|
-
* The type of storage destination. Possible values are: AWS_S3
|
|
72
|
+
* The type of storage destination. Possible values are: `AWS_S3`, `AZURE_STORAGE`, `GOOGLE_CLOUD_STORAGE`
|
|
76
73
|
*/
|
|
77
74
|
storageDestinationType?: string;
|
|
78
75
|
}
|
|
@@ -85,7 +82,7 @@ export interface AccountNetworkPolicyEgressNetworkAccessPolicyEnforcement {
|
|
|
85
82
|
/**
|
|
86
83
|
* The mode of policy enforcement. ENFORCED blocks traffic that violates policy,
|
|
87
84
|
* while DRY_RUN only logs violations without blocking. When not specified,
|
|
88
|
-
* defaults to ENFORCED. Possible values are: DRY_RUN
|
|
85
|
+
* defaults to ENFORCED. Possible values are: `DRY_RUN`, `ENFORCED`
|
|
89
86
|
*/
|
|
90
87
|
enforcementMode?: string;
|
|
91
88
|
}
|
|
@@ -153,11 +150,11 @@ export interface AlertConditionThresholdValue {
|
|
|
153
150
|
}
|
|
154
151
|
export interface AlertV2Evaluation {
|
|
155
152
|
/**
|
|
156
|
-
* Operator used for comparison in alert evaluation. Possible values are: EQUAL
|
|
153
|
+
* 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`
|
|
157
154
|
*/
|
|
158
155
|
comparisonOperator?: string;
|
|
159
156
|
/**
|
|
160
|
-
* Alert state if result is empty. Possible values are: ERROR
|
|
157
|
+
* Alert state if result is empty. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
|
|
161
158
|
*/
|
|
162
159
|
emptyResultState?: string;
|
|
163
160
|
/**
|
|
@@ -173,7 +170,7 @@ export interface AlertV2Evaluation {
|
|
|
173
170
|
*/
|
|
174
171
|
source?: outputs.AlertV2EvaluationSource;
|
|
175
172
|
/**
|
|
176
|
-
* (string) - Latest state of alert evaluation. Possible values are: ERROR
|
|
173
|
+
* (string) - Latest state of alert evaluation. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
|
|
177
174
|
*/
|
|
178
175
|
state: string;
|
|
179
176
|
/**
|
|
@@ -198,7 +195,7 @@ export interface AlertV2EvaluationNotificationSubscription {
|
|
|
198
195
|
}
|
|
199
196
|
export interface AlertV2EvaluationSource {
|
|
200
197
|
/**
|
|
201
|
-
* . Possible values are: AVG
|
|
198
|
+
* . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
|
|
202
199
|
*/
|
|
203
200
|
aggregation?: string;
|
|
204
201
|
display?: string;
|
|
@@ -210,7 +207,7 @@ export interface AlertV2EvaluationThreshold {
|
|
|
210
207
|
}
|
|
211
208
|
export interface AlertV2EvaluationThresholdColumn {
|
|
212
209
|
/**
|
|
213
|
-
* . Possible values are: AVG
|
|
210
|
+
* . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
|
|
214
211
|
*/
|
|
215
212
|
aggregation?: string;
|
|
216
213
|
display?: string;
|
|
@@ -223,7 +220,7 @@ export interface AlertV2EvaluationThresholdValue {
|
|
|
223
220
|
}
|
|
224
221
|
export interface AlertV2Schedule {
|
|
225
222
|
/**
|
|
226
|
-
* Indicate whether this schedule is paused or not. Possible values are: PAUSED
|
|
223
|
+
* Indicate whether this schedule is paused or not. Possible values are: `PAUSED`, `UNPAUSED`
|
|
227
224
|
*/
|
|
228
225
|
pauseStatus?: string;
|
|
229
226
|
/**
|
|
@@ -349,6 +346,9 @@ export interface AppResource {
|
|
|
349
346
|
* attribute
|
|
350
347
|
*/
|
|
351
348
|
sqlWarehouse?: outputs.AppResourceSqlWarehouse;
|
|
349
|
+
/**
|
|
350
|
+
* attribute (see the [API docs](https://docs.databricks.com/api/workspace/apps/create#resources-uc_securable) for full list of supported UC objects)
|
|
351
|
+
*/
|
|
352
352
|
ucSecurable?: outputs.AppResourceUcSecurable;
|
|
353
353
|
}
|
|
354
354
|
export interface AppResourceJob {
|
|
@@ -396,8 +396,17 @@ export interface AppResourceSqlWarehouse {
|
|
|
396
396
|
permission: string;
|
|
397
397
|
}
|
|
398
398
|
export interface AppResourceUcSecurable {
|
|
399
|
+
/**
|
|
400
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
401
|
+
*/
|
|
399
402
|
permission: string;
|
|
403
|
+
/**
|
|
404
|
+
* the full name of UC securable, i.e. `my-catalog.my-schema.my-volume`.
|
|
405
|
+
*/
|
|
400
406
|
securableFullName: string;
|
|
407
|
+
/**
|
|
408
|
+
* the type of UC securable, i.e. `VOLUME`.
|
|
409
|
+
*/
|
|
401
410
|
securableType: string;
|
|
402
411
|
}
|
|
403
412
|
export interface ArtifactAllowlistArtifactMatcher {
|
|
@@ -513,11 +522,11 @@ export interface BudgetPolicyCustomTag {
|
|
|
513
522
|
* The key of the tag.
|
|
514
523
|
* - Must be unique among all custom tags of the same policy
|
|
515
524
|
* - Cannot be “budget-policy-name”, “budget-policy-id” or "budget-policy-resolution-result" -
|
|
516
|
-
* these tags are preserved
|
|
525
|
+
* these tags are preserved
|
|
517
526
|
*/
|
|
518
527
|
key: string;
|
|
519
528
|
/**
|
|
520
|
-
* The value of the tag
|
|
529
|
+
* The value of the tag
|
|
521
530
|
*/
|
|
522
531
|
value?: string;
|
|
523
532
|
}
|
|
@@ -1143,7 +1152,7 @@ export interface GetAccountNetworkPoliciesItemEgressNetworkAccess {
|
|
|
1143
1152
|
*/
|
|
1144
1153
|
policyEnforcement?: outputs.GetAccountNetworkPoliciesItemEgressNetworkAccessPolicyEnforcement;
|
|
1145
1154
|
/**
|
|
1146
|
-
* (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS
|
|
1155
|
+
* (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: `FULL_ACCESS`, `RESTRICTED_ACCESS`
|
|
1147
1156
|
*/
|
|
1148
1157
|
restrictionMode: string;
|
|
1149
1158
|
}
|
|
@@ -1153,7 +1162,7 @@ export interface GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedInternet
|
|
|
1153
1162
|
*/
|
|
1154
1163
|
destination?: string;
|
|
1155
1164
|
/**
|
|
1156
|
-
* (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
|
|
1165
|
+
* (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: `DNS_NAME`
|
|
1157
1166
|
*/
|
|
1158
1167
|
internetDestinationType?: string;
|
|
1159
1168
|
}
|
|
@@ -1171,11 +1180,11 @@ export interface GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedStorageD
|
|
|
1171
1180
|
*/
|
|
1172
1181
|
bucketName?: string;
|
|
1173
1182
|
/**
|
|
1174
|
-
* (string) -
|
|
1183
|
+
* (string) -
|
|
1175
1184
|
*/
|
|
1176
1185
|
region?: string;
|
|
1177
1186
|
/**
|
|
1178
|
-
* (string) - The type of storage destination. Possible values are: AWS_S3
|
|
1187
|
+
* (string) - The type of storage destination. Possible values are: `AWS_S3`, `AZURE_STORAGE`, `GOOGLE_CLOUD_STORAGE`
|
|
1179
1188
|
*/
|
|
1180
1189
|
storageDestinationType?: string;
|
|
1181
1190
|
}
|
|
@@ -1188,7 +1197,7 @@ export interface GetAccountNetworkPoliciesItemEgressNetworkAccessPolicyEnforceme
|
|
|
1188
1197
|
/**
|
|
1189
1198
|
* (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy,
|
|
1190
1199
|
* while DRY_RUN only logs violations without blocking. When not specified,
|
|
1191
|
-
* defaults to ENFORCED. Possible values are: DRY_RUN
|
|
1200
|
+
* defaults to ENFORCED. Possible values are: `DRY_RUN`, `ENFORCED`
|
|
1192
1201
|
*/
|
|
1193
1202
|
enforcementMode?: string;
|
|
1194
1203
|
}
|
|
@@ -1212,7 +1221,7 @@ export interface GetAccountNetworkPolicyEgressNetworkAccess {
|
|
|
1212
1221
|
*/
|
|
1213
1222
|
policyEnforcement?: outputs.GetAccountNetworkPolicyEgressNetworkAccessPolicyEnforcement;
|
|
1214
1223
|
/**
|
|
1215
|
-
* (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS
|
|
1224
|
+
* (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: `FULL_ACCESS`, `RESTRICTED_ACCESS`
|
|
1216
1225
|
*/
|
|
1217
1226
|
restrictionMode: string;
|
|
1218
1227
|
}
|
|
@@ -1222,7 +1231,7 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessAllowedInternetDestin
|
|
|
1222
1231
|
*/
|
|
1223
1232
|
destination?: string;
|
|
1224
1233
|
/**
|
|
1225
|
-
* (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
|
|
1234
|
+
* (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: `DNS_NAME`
|
|
1226
1235
|
*/
|
|
1227
1236
|
internetDestinationType?: string;
|
|
1228
1237
|
}
|
|
@@ -1240,11 +1249,11 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessAllowedStorageDestina
|
|
|
1240
1249
|
*/
|
|
1241
1250
|
bucketName?: string;
|
|
1242
1251
|
/**
|
|
1243
|
-
* (string) -
|
|
1252
|
+
* (string) -
|
|
1244
1253
|
*/
|
|
1245
1254
|
region?: string;
|
|
1246
1255
|
/**
|
|
1247
|
-
* (string) - The type of storage destination. Possible values are: AWS_S3
|
|
1256
|
+
* (string) - The type of storage destination. Possible values are: `AWS_S3`, `AZURE_STORAGE`, `GOOGLE_CLOUD_STORAGE`
|
|
1248
1257
|
*/
|
|
1249
1258
|
storageDestinationType?: string;
|
|
1250
1259
|
}
|
|
@@ -1257,17 +1266,17 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessPolicyEnforcement {
|
|
|
1257
1266
|
/**
|
|
1258
1267
|
* (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy,
|
|
1259
1268
|
* while DRY_RUN only logs violations without blocking. When not specified,
|
|
1260
|
-
* defaults to ENFORCED. Possible values are: DRY_RUN
|
|
1269
|
+
* defaults to ENFORCED. Possible values are: `DRY_RUN`, `ENFORCED`
|
|
1261
1270
|
*/
|
|
1262
1271
|
enforcementMode?: string;
|
|
1263
1272
|
}
|
|
1264
1273
|
export interface GetAlertV2Evaluation {
|
|
1265
1274
|
/**
|
|
1266
|
-
* (string) - Operator used for comparison in alert evaluation. Possible values are: EQUAL
|
|
1275
|
+
* (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`
|
|
1267
1276
|
*/
|
|
1268
1277
|
comparisonOperator?: string;
|
|
1269
1278
|
/**
|
|
1270
|
-
* (string) - Alert state if result is empty. Possible values are: ERROR
|
|
1279
|
+
* (string) - Alert state if result is empty. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
|
|
1271
1280
|
*/
|
|
1272
1281
|
emptyResultState?: string;
|
|
1273
1282
|
/**
|
|
@@ -1283,7 +1292,7 @@ export interface GetAlertV2Evaluation {
|
|
|
1283
1292
|
*/
|
|
1284
1293
|
source?: outputs.GetAlertV2EvaluationSource;
|
|
1285
1294
|
/**
|
|
1286
|
-
* (string) - Latest state of alert evaluation. Possible values are: ERROR
|
|
1295
|
+
* (string) - Latest state of alert evaluation. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
|
|
1287
1296
|
*/
|
|
1288
1297
|
state: string;
|
|
1289
1298
|
/**
|
|
@@ -1317,7 +1326,7 @@ export interface GetAlertV2EvaluationNotificationSubscription {
|
|
|
1317
1326
|
}
|
|
1318
1327
|
export interface GetAlertV2EvaluationSource {
|
|
1319
1328
|
/**
|
|
1320
|
-
* (string) - . Possible values are: AVG
|
|
1329
|
+
* (string) - . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
|
|
1321
1330
|
*/
|
|
1322
1331
|
aggregation?: string;
|
|
1323
1332
|
/**
|
|
@@ -1341,7 +1350,7 @@ export interface GetAlertV2EvaluationThreshold {
|
|
|
1341
1350
|
}
|
|
1342
1351
|
export interface GetAlertV2EvaluationThresholdColumn {
|
|
1343
1352
|
/**
|
|
1344
|
-
* (string) - . Possible values are: AVG
|
|
1353
|
+
* (string) - . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
|
|
1345
1354
|
*/
|
|
1346
1355
|
aggregation?: string;
|
|
1347
1356
|
/**
|
|
@@ -1369,7 +1378,7 @@ export interface GetAlertV2EvaluationThresholdValue {
|
|
|
1369
1378
|
}
|
|
1370
1379
|
export interface GetAlertV2Schedule {
|
|
1371
1380
|
/**
|
|
1372
|
-
* (string) - Indicate whether this schedule is paused or not. Possible values are: PAUSED
|
|
1381
|
+
* (string) - Indicate whether this schedule is paused or not. Possible values are: `PAUSED`, `UNPAUSED`
|
|
1373
1382
|
*/
|
|
1374
1383
|
pauseStatus?: string;
|
|
1375
1384
|
/**
|
|
@@ -1410,7 +1419,7 @@ export interface GetAlertsV2Result {
|
|
|
1410
1419
|
*/
|
|
1411
1420
|
id: string;
|
|
1412
1421
|
/**
|
|
1413
|
-
* (string) - Indicates whether the query is trashed. Possible values are: ACTIVE
|
|
1422
|
+
* (string) - Indicates whether the query is trashed. Possible values are: `ACTIVE`, `TRASHED`
|
|
1414
1423
|
*/
|
|
1415
1424
|
lifecycleState: string;
|
|
1416
1425
|
/**
|
|
@@ -1444,11 +1453,11 @@ export interface GetAlertsV2Result {
|
|
|
1444
1453
|
}
|
|
1445
1454
|
export interface GetAlertsV2ResultEvaluation {
|
|
1446
1455
|
/**
|
|
1447
|
-
* (string) - Operator used for comparison in alert evaluation. Possible values are: EQUAL
|
|
1456
|
+
* (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`
|
|
1448
1457
|
*/
|
|
1449
1458
|
comparisonOperator?: string;
|
|
1450
1459
|
/**
|
|
1451
|
-
* (string) - Alert state if result is empty. Possible values are: ERROR
|
|
1460
|
+
* (string) - Alert state if result is empty. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
|
|
1452
1461
|
*/
|
|
1453
1462
|
emptyResultState?: string;
|
|
1454
1463
|
/**
|
|
@@ -1464,7 +1473,7 @@ export interface GetAlertsV2ResultEvaluation {
|
|
|
1464
1473
|
*/
|
|
1465
1474
|
source?: outputs.GetAlertsV2ResultEvaluationSource;
|
|
1466
1475
|
/**
|
|
1467
|
-
* (string) - Latest state of alert evaluation. Possible values are: ERROR
|
|
1476
|
+
* (string) - Latest state of alert evaluation. Possible values are: `ERROR`, `OK`, `TRIGGERED`, `UNKNOWN`
|
|
1468
1477
|
*/
|
|
1469
1478
|
state: string;
|
|
1470
1479
|
/**
|
|
@@ -1498,7 +1507,7 @@ export interface GetAlertsV2ResultEvaluationNotificationSubscription {
|
|
|
1498
1507
|
}
|
|
1499
1508
|
export interface GetAlertsV2ResultEvaluationSource {
|
|
1500
1509
|
/**
|
|
1501
|
-
* (string) - . Possible values are: AVG
|
|
1510
|
+
* (string) - . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
|
|
1502
1511
|
*/
|
|
1503
1512
|
aggregation?: string;
|
|
1504
1513
|
/**
|
|
@@ -1522,7 +1531,7 @@ export interface GetAlertsV2ResultEvaluationThreshold {
|
|
|
1522
1531
|
}
|
|
1523
1532
|
export interface GetAlertsV2ResultEvaluationThresholdColumn {
|
|
1524
1533
|
/**
|
|
1525
|
-
* (string) - . Possible values are: AVG
|
|
1534
|
+
* (string) - . Possible values are: `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MEDIAN`, `MIN`, `STDDEV`, `SUM`
|
|
1526
1535
|
*/
|
|
1527
1536
|
aggregation?: string;
|
|
1528
1537
|
/**
|
|
@@ -1550,7 +1559,7 @@ export interface GetAlertsV2ResultEvaluationThresholdValue {
|
|
|
1550
1559
|
}
|
|
1551
1560
|
export interface GetAlertsV2ResultSchedule {
|
|
1552
1561
|
/**
|
|
1553
|
-
* (string) - Indicate whether this schedule is paused or not. Possible values are: PAUSED
|
|
1562
|
+
* (string) - Indicate whether this schedule is paused or not. Possible values are: `PAUSED`, `UNPAUSED`
|
|
1554
1563
|
*/
|
|
1555
1564
|
pauseStatus?: string;
|
|
1556
1565
|
/**
|
|
@@ -1750,6 +1759,9 @@ export interface GetAppAppResource {
|
|
|
1750
1759
|
* attribute
|
|
1751
1760
|
*/
|
|
1752
1761
|
sqlWarehouse?: outputs.GetAppAppResourceSqlWarehouse;
|
|
1762
|
+
/**
|
|
1763
|
+
* attribute
|
|
1764
|
+
*/
|
|
1753
1765
|
ucSecurable?: outputs.GetAppAppResourceUcSecurable;
|
|
1754
1766
|
}
|
|
1755
1767
|
export interface GetAppAppResourceJob {
|
|
@@ -1758,7 +1770,7 @@ export interface GetAppAppResourceJob {
|
|
|
1758
1770
|
*/
|
|
1759
1771
|
id: string;
|
|
1760
1772
|
/**
|
|
1761
|
-
* Permissions to grant on
|
|
1773
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
1762
1774
|
*/
|
|
1763
1775
|
permission: string;
|
|
1764
1776
|
}
|
|
@@ -1768,7 +1780,7 @@ export interface GetAppAppResourceSecret {
|
|
|
1768
1780
|
*/
|
|
1769
1781
|
key: string;
|
|
1770
1782
|
/**
|
|
1771
|
-
* Permissions to grant on
|
|
1783
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
1772
1784
|
*/
|
|
1773
1785
|
permission: string;
|
|
1774
1786
|
/**
|
|
@@ -1782,7 +1794,7 @@ export interface GetAppAppResourceServingEndpoint {
|
|
|
1782
1794
|
*/
|
|
1783
1795
|
name: string;
|
|
1784
1796
|
/**
|
|
1785
|
-
* Permissions to grant on
|
|
1797
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
1786
1798
|
*/
|
|
1787
1799
|
permission: string;
|
|
1788
1800
|
}
|
|
@@ -1792,16 +1804,22 @@ export interface GetAppAppResourceSqlWarehouse {
|
|
|
1792
1804
|
*/
|
|
1793
1805
|
id: string;
|
|
1794
1806
|
/**
|
|
1795
|
-
* Permissions to grant on
|
|
1807
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
1796
1808
|
*/
|
|
1797
1809
|
permission: string;
|
|
1798
1810
|
}
|
|
1799
1811
|
export interface GetAppAppResourceUcSecurable {
|
|
1800
1812
|
/**
|
|
1801
|
-
* Permissions to grant on
|
|
1813
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
1802
1814
|
*/
|
|
1803
1815
|
permission: string;
|
|
1816
|
+
/**
|
|
1817
|
+
* the full name of UC securable, i.e. `my-catalog.my-schema.my-volume`.
|
|
1818
|
+
*/
|
|
1804
1819
|
securableFullName: string;
|
|
1820
|
+
/**
|
|
1821
|
+
* the type of UC securable, i.e. `VOLUME`.
|
|
1822
|
+
*/
|
|
1805
1823
|
securableType: string;
|
|
1806
1824
|
}
|
|
1807
1825
|
export interface GetAppsApp {
|
|
@@ -1989,6 +2007,9 @@ export interface GetAppsAppResource {
|
|
|
1989
2007
|
* attribute
|
|
1990
2008
|
*/
|
|
1991
2009
|
sqlWarehouse?: outputs.GetAppsAppResourceSqlWarehouse;
|
|
2010
|
+
/**
|
|
2011
|
+
* attribute
|
|
2012
|
+
*/
|
|
1992
2013
|
ucSecurable?: outputs.GetAppsAppResourceUcSecurable;
|
|
1993
2014
|
}
|
|
1994
2015
|
export interface GetAppsAppResourceJob {
|
|
@@ -1997,7 +2018,7 @@ export interface GetAppsAppResourceJob {
|
|
|
1997
2018
|
*/
|
|
1998
2019
|
id: string;
|
|
1999
2020
|
/**
|
|
2000
|
-
* Permissions to grant on
|
|
2021
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
2001
2022
|
*/
|
|
2002
2023
|
permission: string;
|
|
2003
2024
|
}
|
|
@@ -2007,7 +2028,7 @@ export interface GetAppsAppResourceSecret {
|
|
|
2007
2028
|
*/
|
|
2008
2029
|
key: string;
|
|
2009
2030
|
/**
|
|
2010
|
-
* Permissions to grant on
|
|
2031
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
2011
2032
|
*/
|
|
2012
2033
|
permission: string;
|
|
2013
2034
|
/**
|
|
@@ -2021,7 +2042,7 @@ export interface GetAppsAppResourceServingEndpoint {
|
|
|
2021
2042
|
*/
|
|
2022
2043
|
name: string;
|
|
2023
2044
|
/**
|
|
2024
|
-
* Permissions to grant on
|
|
2045
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
2025
2046
|
*/
|
|
2026
2047
|
permission: string;
|
|
2027
2048
|
}
|
|
@@ -2031,16 +2052,22 @@ export interface GetAppsAppResourceSqlWarehouse {
|
|
|
2031
2052
|
*/
|
|
2032
2053
|
id: string;
|
|
2033
2054
|
/**
|
|
2034
|
-
* Permissions to grant on
|
|
2055
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
2035
2056
|
*/
|
|
2036
2057
|
permission: string;
|
|
2037
2058
|
}
|
|
2038
2059
|
export interface GetAppsAppResourceUcSecurable {
|
|
2039
2060
|
/**
|
|
2040
|
-
* Permissions to grant on
|
|
2061
|
+
* Permissions to grant on UC securable, i.e. `READ_VOLUME`, `WRITE_VOLUME`.
|
|
2041
2062
|
*/
|
|
2042
2063
|
permission: string;
|
|
2064
|
+
/**
|
|
2065
|
+
* the full name of UC securable, i.e. `my-catalog.my-schema.my-volume`.
|
|
2066
|
+
*/
|
|
2043
2067
|
securableFullName: string;
|
|
2068
|
+
/**
|
|
2069
|
+
* the type of UC securable, i.e. `VOLUME`.
|
|
2070
|
+
*/
|
|
2044
2071
|
securableType: string;
|
|
2045
2072
|
}
|
|
2046
2073
|
export interface GetBudgetPoliciesPolicy {
|
|
@@ -2070,11 +2097,11 @@ export interface GetBudgetPoliciesPolicyCustomTag {
|
|
|
2070
2097
|
* (string) - The key of the tag.
|
|
2071
2098
|
* - Must be unique among all custom tags of the same policy
|
|
2072
2099
|
* - Cannot be “budget-policy-name”, “budget-policy-id” or "budget-policy-resolution-result" -
|
|
2073
|
-
* these tags are preserved
|
|
2100
|
+
* these tags are preserved
|
|
2074
2101
|
*/
|
|
2075
2102
|
key: string;
|
|
2076
2103
|
/**
|
|
2077
|
-
* (string) - The value of the tag
|
|
2104
|
+
* (string) - The value of the tag
|
|
2078
2105
|
*/
|
|
2079
2106
|
value?: string;
|
|
2080
2107
|
}
|
|
@@ -2083,11 +2110,11 @@ export interface GetBudgetPolicyCustomTag {
|
|
|
2083
2110
|
* (string) - The key of the tag.
|
|
2084
2111
|
* - Must be unique among all custom tags of the same policy
|
|
2085
2112
|
* - Cannot be “budget-policy-name”, “budget-policy-id” or "budget-policy-resolution-result" -
|
|
2086
|
-
* these tags are preserved
|
|
2113
|
+
* these tags are preserved
|
|
2087
2114
|
*/
|
|
2088
2115
|
key: string;
|
|
2089
2116
|
/**
|
|
2090
|
-
* (string) - The value of the tag
|
|
2117
|
+
* (string) - The value of the tag
|
|
2091
2118
|
*/
|
|
2092
2119
|
value?: string;
|
|
2093
2120
|
}
|
|
@@ -2265,6 +2292,7 @@ export interface GetClusterClusterInfo {
|
|
|
2265
2292
|
* Identifier of Cluster Policy to validate cluster and preset certain defaults.
|
|
2266
2293
|
*/
|
|
2267
2294
|
policyId?: string;
|
|
2295
|
+
remoteDiskThroughput?: number;
|
|
2268
2296
|
/**
|
|
2269
2297
|
* The type of runtime of the cluster
|
|
2270
2298
|
*/
|
|
@@ -2300,6 +2328,7 @@ export interface GetClusterClusterInfo {
|
|
|
2300
2328
|
stateMessage?: string;
|
|
2301
2329
|
terminatedTime?: number;
|
|
2302
2330
|
terminationReason?: outputs.GetClusterClusterInfoTerminationReason;
|
|
2331
|
+
totalInitialRemoteDiskSize?: number;
|
|
2303
2332
|
useMlRuntime?: boolean;
|
|
2304
2333
|
workloadType?: outputs.GetClusterClusterInfoWorkloadType;
|
|
2305
2334
|
}
|
|
@@ -2493,6 +2522,7 @@ export interface GetClusterClusterInfoSpec {
|
|
|
2493
2522
|
* Identifier of Cluster Policy to validate cluster and preset certain defaults.
|
|
2494
2523
|
*/
|
|
2495
2524
|
policyId?: string;
|
|
2525
|
+
remoteDiskThroughput?: number;
|
|
2496
2526
|
/**
|
|
2497
2527
|
* The type of runtime of the cluster
|
|
2498
2528
|
*/
|
|
@@ -2521,6 +2551,7 @@ export interface GetClusterClusterInfoSpec {
|
|
|
2521
2551
|
* SSH public key contents that will be added to each Spark node in this cluster.
|
|
2522
2552
|
*/
|
|
2523
2553
|
sshPublicKeys?: string[];
|
|
2554
|
+
totalInitialRemoteDiskSize?: number;
|
|
2524
2555
|
useMlRuntime?: boolean;
|
|
2525
2556
|
workloadType?: outputs.GetClusterClusterInfoSpecWorkloadType;
|
|
2526
2557
|
}
|
|
@@ -2790,15 +2821,7 @@ export interface GetDashboardsDashboard {
|
|
|
2790
2821
|
}
|
|
2791
2822
|
export interface GetDatabaseInstancesDatabaseInstance {
|
|
2792
2823
|
/**
|
|
2793
|
-
* (string) -
|
|
2794
|
-
*/
|
|
2795
|
-
adminPassword?: string;
|
|
2796
|
-
/**
|
|
2797
|
-
* (string) - Name of the admin role for the instance. If not provided, defaults to 'databricks_admin'
|
|
2798
|
-
*/
|
|
2799
|
-
adminRolename?: string;
|
|
2800
|
-
/**
|
|
2801
|
-
* (string) - The sku of the instance. Valid values are "CU_1", "CU_2", "CU_4"
|
|
2824
|
+
* (string) - The sku of the instance. Valid values are "CU_1", "CU_2", "CU_4", "CU_8"
|
|
2802
2825
|
*/
|
|
2803
2826
|
capacity?: string;
|
|
2804
2827
|
/**
|
|
@@ -2809,6 +2832,12 @@ export interface GetDatabaseInstancesDatabaseInstance {
|
|
|
2809
2832
|
* (string) - The email of the creator of the instance
|
|
2810
2833
|
*/
|
|
2811
2834
|
creator: string;
|
|
2835
|
+
/**
|
|
2836
|
+
* (boolean) - xref AIP-129. `stopped` is owned by the client, while `effectiveStopped` is owned by the server.
|
|
2837
|
+
* `stopped` will only be set in Create/Update response messages if and only if the user provides the field via the request.
|
|
2838
|
+
* `effectiveStopped` on the other hand will always bet set in all response messages (Create/Update/Get/List)
|
|
2839
|
+
*/
|
|
2840
|
+
effectiveStopped: boolean;
|
|
2812
2841
|
/**
|
|
2813
2842
|
* (string) - The name of the instance. This is the unique identifier for the instance
|
|
2814
2843
|
*/
|
|
@@ -2822,7 +2851,7 @@ export interface GetDatabaseInstancesDatabaseInstance {
|
|
|
2822
2851
|
*/
|
|
2823
2852
|
readWriteDns: string;
|
|
2824
2853
|
/**
|
|
2825
|
-
* (string) - The current state of the instance. Possible values are: AVAILABLE
|
|
2854
|
+
* (string) - The current state of the instance. Possible values are: `AVAILABLE`, `DELETING`, `FAILING_OVER`, `STARTING`, `STOPPED`, `UPDATING`
|
|
2826
2855
|
*/
|
|
2827
2856
|
state: string;
|
|
2828
2857
|
/**
|
|
@@ -3365,7 +3394,7 @@ export interface GetJobJobSettingsSettingsEnvironment {
|
|
|
3365
3394
|
spec?: outputs.GetJobJobSettingsSettingsEnvironmentSpec;
|
|
3366
3395
|
}
|
|
3367
3396
|
export interface GetJobJobSettingsSettingsEnvironmentSpec {
|
|
3368
|
-
client
|
|
3397
|
+
client?: string;
|
|
3369
3398
|
dependencies?: string[];
|
|
3370
3399
|
environmentVersion?: string;
|
|
3371
3400
|
jarDependencies?: string[];
|
|
@@ -4714,11 +4743,51 @@ export interface GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureSer
|
|
|
4714
4743
|
targetServices?: string[];
|
|
4715
4744
|
}
|
|
4716
4745
|
export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRules {
|
|
4746
|
+
awsPrivateEndpointRules?: outputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRule[];
|
|
4717
4747
|
/**
|
|
4718
4748
|
* Array of private endpoint rule objects.
|
|
4719
4749
|
*/
|
|
4720
4750
|
azurePrivateEndpointRules?: outputs.GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule[];
|
|
4721
4751
|
}
|
|
4752
|
+
export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRule {
|
|
4753
|
+
/**
|
|
4754
|
+
* The Databricks account ID associated with this network configuration.
|
|
4755
|
+
*/
|
|
4756
|
+
accountId?: string;
|
|
4757
|
+
/**
|
|
4758
|
+
* The current status of this private endpoint.
|
|
4759
|
+
*/
|
|
4760
|
+
connectionState?: string;
|
|
4761
|
+
/**
|
|
4762
|
+
* Time in epoch milliseconds when this object was created.
|
|
4763
|
+
*/
|
|
4764
|
+
creationTime?: number;
|
|
4765
|
+
/**
|
|
4766
|
+
* Whether this private endpoint is deactivated.
|
|
4767
|
+
*/
|
|
4768
|
+
deactivated?: boolean;
|
|
4769
|
+
/**
|
|
4770
|
+
* Time in epoch milliseconds when this object was deactivated.
|
|
4771
|
+
*/
|
|
4772
|
+
deactivatedAt?: number;
|
|
4773
|
+
domainNames?: string[];
|
|
4774
|
+
enabled?: boolean;
|
|
4775
|
+
endpointService?: string;
|
|
4776
|
+
/**
|
|
4777
|
+
* The Databricks network connectivity configuration ID.
|
|
4778
|
+
*/
|
|
4779
|
+
networkConnectivityConfigId?: string;
|
|
4780
|
+
resourceNames?: string[];
|
|
4781
|
+
/**
|
|
4782
|
+
* The ID of a private endpoint rule.
|
|
4783
|
+
*/
|
|
4784
|
+
ruleId?: string;
|
|
4785
|
+
/**
|
|
4786
|
+
* Time in epoch milliseconds when the network was updated.
|
|
4787
|
+
*/
|
|
4788
|
+
updatedTime?: number;
|
|
4789
|
+
vpcEndpointId?: string;
|
|
4790
|
+
}
|
|
4722
4791
|
export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule {
|
|
4723
4792
|
/**
|
|
4724
4793
|
* The current status of this private endpoint.
|
|
@@ -4783,6 +4852,62 @@ export interface GetNotificationDestinationsNotificationDestination {
|
|
|
4783
4852
|
*/
|
|
4784
4853
|
id?: string;
|
|
4785
4854
|
}
|
|
4855
|
+
export interface GetOnlineStoresOnlineStore {
|
|
4856
|
+
/**
|
|
4857
|
+
* (string) - The capacity of the online store. Valid values are "CU_1", "CU_2", "CU_4", "CU_8"
|
|
4858
|
+
*/
|
|
4859
|
+
capacity?: string;
|
|
4860
|
+
/**
|
|
4861
|
+
* (string) - The timestamp when the online store was created
|
|
4862
|
+
*/
|
|
4863
|
+
creationTime: string;
|
|
4864
|
+
/**
|
|
4865
|
+
* (string) - The email of the creator of the online store
|
|
4866
|
+
*/
|
|
4867
|
+
creator: string;
|
|
4868
|
+
/**
|
|
4869
|
+
* (string) - The name of the online store. This is the unique identifier for the online store
|
|
4870
|
+
*/
|
|
4871
|
+
name: string;
|
|
4872
|
+
/**
|
|
4873
|
+
* (string) - The current state of the online store. Possible values are: `AVAILABLE`, `DELETING`, `FAILING_OVER`, `STARTING`, `STOPPED`, `UPDATING`
|
|
4874
|
+
*/
|
|
4875
|
+
state: string;
|
|
4876
|
+
}
|
|
4877
|
+
export interface GetQualityMonitorV2AnomalyDetectionConfig {
|
|
4878
|
+
/**
|
|
4879
|
+
* (string) - Run id of the last run of the workflow
|
|
4880
|
+
*/
|
|
4881
|
+
lastRunId: string;
|
|
4882
|
+
/**
|
|
4883
|
+
* (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`
|
|
4884
|
+
*/
|
|
4885
|
+
latestRunStatus: string;
|
|
4886
|
+
}
|
|
4887
|
+
export interface GetQualityMonitorsV2QualityMonitor {
|
|
4888
|
+
/**
|
|
4889
|
+
* (AnomalyDetectionConfig) -
|
|
4890
|
+
*/
|
|
4891
|
+
anomalyDetectionConfig: outputs.GetQualityMonitorsV2QualityMonitorAnomalyDetectionConfig;
|
|
4892
|
+
/**
|
|
4893
|
+
* (string) - The uuid of the request object. For example, schema id
|
|
4894
|
+
*/
|
|
4895
|
+
objectId: string;
|
|
4896
|
+
/**
|
|
4897
|
+
* (string) - The type of the monitored object. Can be one of the following: schema
|
|
4898
|
+
*/
|
|
4899
|
+
objectType: string;
|
|
4900
|
+
}
|
|
4901
|
+
export interface GetQualityMonitorsV2QualityMonitorAnomalyDetectionConfig {
|
|
4902
|
+
/**
|
|
4903
|
+
* (string) - Run id of the last run of the workflow
|
|
4904
|
+
*/
|
|
4905
|
+
lastRunId: string;
|
|
4906
|
+
/**
|
|
4907
|
+
* (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`
|
|
4908
|
+
*/
|
|
4909
|
+
latestRunStatus: string;
|
|
4910
|
+
}
|
|
4786
4911
|
export interface GetRecipientFederationPoliciesPolicy {
|
|
4787
4912
|
/**
|
|
4788
4913
|
* (string) - Description of the policy. This is a user-provided description
|
|
@@ -5103,7 +5228,7 @@ export interface GetSchemaSchemaInfo {
|
|
|
5103
5228
|
[key: string]: string;
|
|
5104
5229
|
};
|
|
5105
5230
|
/**
|
|
5106
|
-
* the unique identifier of the
|
|
5231
|
+
* the unique identifier of the schema
|
|
5107
5232
|
*/
|
|
5108
5233
|
schemaId?: string;
|
|
5109
5234
|
/**
|
|
@@ -5140,6 +5265,7 @@ export interface GetServingEndpointsEndpoint {
|
|
|
5140
5265
|
configs?: outputs.GetServingEndpointsEndpointConfig[];
|
|
5141
5266
|
creationTimestamp?: number;
|
|
5142
5267
|
creator?: string;
|
|
5268
|
+
description?: string;
|
|
5143
5269
|
id?: string;
|
|
5144
5270
|
lastUpdatedTimestamp?: number;
|
|
5145
5271
|
/**
|
|
@@ -5922,7 +6048,7 @@ export interface JobEnvironmentSpec {
|
|
|
5922
6048
|
/**
|
|
5923
6049
|
* client version used by the environment.
|
|
5924
6050
|
*/
|
|
5925
|
-
client
|
|
6051
|
+
client?: string;
|
|
5926
6052
|
/**
|
|
5927
6053
|
* 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.
|
|
5928
6054
|
*/
|
|
@@ -6023,6 +6149,7 @@ export interface JobJobClusterNewCluster {
|
|
|
6023
6149
|
nodeTypeId: string;
|
|
6024
6150
|
numWorkers?: number;
|
|
6025
6151
|
policyId?: string;
|
|
6152
|
+
remoteDiskThroughput?: number;
|
|
6026
6153
|
runtimeEngine?: string;
|
|
6027
6154
|
singleUserName?: string;
|
|
6028
6155
|
sparkConf?: {
|
|
@@ -6033,6 +6160,7 @@ export interface JobJobClusterNewCluster {
|
|
|
6033
6160
|
};
|
|
6034
6161
|
sparkVersion?: string;
|
|
6035
6162
|
sshPublicKeys?: string[];
|
|
6163
|
+
totalInitialRemoteDiskSize?: number;
|
|
6036
6164
|
useMlRuntime?: boolean;
|
|
6037
6165
|
/**
|
|
6038
6166
|
* isn't supported
|
|
@@ -6237,6 +6365,7 @@ export interface JobNewCluster {
|
|
|
6237
6365
|
nodeTypeId: string;
|
|
6238
6366
|
numWorkers?: number;
|
|
6239
6367
|
policyId?: string;
|
|
6368
|
+
remoteDiskThroughput?: number;
|
|
6240
6369
|
runtimeEngine?: string;
|
|
6241
6370
|
singleUserName?: string;
|
|
6242
6371
|
sparkConf?: {
|
|
@@ -6247,6 +6376,7 @@ export interface JobNewCluster {
|
|
|
6247
6376
|
};
|
|
6248
6377
|
sparkVersion?: string;
|
|
6249
6378
|
sshPublicKeys?: string[];
|
|
6379
|
+
totalInitialRemoteDiskSize?: number;
|
|
6250
6380
|
useMlRuntime?: boolean;
|
|
6251
6381
|
/**
|
|
6252
6382
|
* isn't supported
|
|
@@ -6564,6 +6694,8 @@ export interface JobTask {
|
|
|
6564
6694
|
cleanRoomsNotebookTask?: outputs.JobTaskCleanRoomsNotebookTask;
|
|
6565
6695
|
conditionTask?: outputs.JobTaskConditionTask;
|
|
6566
6696
|
dashboardTask?: outputs.JobTaskDashboardTask;
|
|
6697
|
+
dbtCloudTask?: outputs.JobTaskDbtCloudTask;
|
|
6698
|
+
dbtPlatformTask?: outputs.JobTaskDbtPlatformTask;
|
|
6567
6699
|
dbtTask?: outputs.JobTaskDbtTask;
|
|
6568
6700
|
/**
|
|
6569
6701
|
* block specifying dependency(-ies) for a given task.
|
|
@@ -6726,6 +6858,20 @@ export interface JobTaskDashboardTaskSubscriptionSubscriber {
|
|
|
6726
6858
|
*/
|
|
6727
6859
|
userName?: string;
|
|
6728
6860
|
}
|
|
6861
|
+
export interface JobTaskDbtCloudTask {
|
|
6862
|
+
/**
|
|
6863
|
+
* The resource name of the UC connection to authenticate from Databricks to Power BI
|
|
6864
|
+
*/
|
|
6865
|
+
connectionResourceName?: string;
|
|
6866
|
+
dbtCloudJobId?: number;
|
|
6867
|
+
}
|
|
6868
|
+
export interface JobTaskDbtPlatformTask {
|
|
6869
|
+
/**
|
|
6870
|
+
* The resource name of the UC connection to authenticate from Databricks to Power BI
|
|
6871
|
+
*/
|
|
6872
|
+
connectionResourceName?: string;
|
|
6873
|
+
dbtPlatformJobId?: string;
|
|
6874
|
+
}
|
|
6729
6875
|
export interface JobTaskDbtTask {
|
|
6730
6876
|
/**
|
|
6731
6877
|
* The name of the catalog to use inside Unity Catalog.
|
|
@@ -6818,6 +6964,8 @@ export interface JobTaskForEachTaskTask {
|
|
|
6818
6964
|
cleanRoomsNotebookTask?: outputs.JobTaskForEachTaskTaskCleanRoomsNotebookTask;
|
|
6819
6965
|
conditionTask?: outputs.JobTaskForEachTaskTaskConditionTask;
|
|
6820
6966
|
dashboardTask?: outputs.JobTaskForEachTaskTaskDashboardTask;
|
|
6967
|
+
dbtCloudTask?: outputs.JobTaskForEachTaskTaskDbtCloudTask;
|
|
6968
|
+
dbtPlatformTask?: outputs.JobTaskForEachTaskTaskDbtPlatformTask;
|
|
6821
6969
|
dbtTask?: outputs.JobTaskForEachTaskTaskDbtTask;
|
|
6822
6970
|
/**
|
|
6823
6971
|
* block specifying dependency(-ies) for a given task.
|
|
@@ -6979,6 +7127,20 @@ export interface JobTaskForEachTaskTaskDashboardTaskSubscriptionSubscriber {
|
|
|
6979
7127
|
*/
|
|
6980
7128
|
userName?: string;
|
|
6981
7129
|
}
|
|
7130
|
+
export interface JobTaskForEachTaskTaskDbtCloudTask {
|
|
7131
|
+
/**
|
|
7132
|
+
* The resource name of the UC connection to authenticate from Databricks to Power BI
|
|
7133
|
+
*/
|
|
7134
|
+
connectionResourceName?: string;
|
|
7135
|
+
dbtCloudJobId?: number;
|
|
7136
|
+
}
|
|
7137
|
+
export interface JobTaskForEachTaskTaskDbtPlatformTask {
|
|
7138
|
+
/**
|
|
7139
|
+
* The resource name of the UC connection to authenticate from Databricks to Power BI
|
|
7140
|
+
*/
|
|
7141
|
+
connectionResourceName?: string;
|
|
7142
|
+
dbtPlatformJobId?: string;
|
|
7143
|
+
}
|
|
6982
7144
|
export interface JobTaskForEachTaskTaskDbtTask {
|
|
6983
7145
|
/**
|
|
6984
7146
|
* The name of the catalog to use inside Unity Catalog.
|
|
@@ -7141,6 +7303,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
7141
7303
|
nodeTypeId: string;
|
|
7142
7304
|
numWorkers?: number;
|
|
7143
7305
|
policyId?: string;
|
|
7306
|
+
remoteDiskThroughput?: number;
|
|
7144
7307
|
runtimeEngine?: string;
|
|
7145
7308
|
singleUserName?: string;
|
|
7146
7309
|
sparkConf?: {
|
|
@@ -7151,6 +7314,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
7151
7314
|
};
|
|
7152
7315
|
sparkVersion?: string;
|
|
7153
7316
|
sshPublicKeys?: string[];
|
|
7317
|
+
totalInitialRemoteDiskSize?: number;
|
|
7154
7318
|
useMlRuntime?: boolean;
|
|
7155
7319
|
/**
|
|
7156
7320
|
* isn't supported
|
|
@@ -7777,6 +7941,7 @@ export interface JobTaskNewCluster {
|
|
|
7777
7941
|
nodeTypeId: string;
|
|
7778
7942
|
numWorkers?: number;
|
|
7779
7943
|
policyId?: string;
|
|
7944
|
+
remoteDiskThroughput?: number;
|
|
7780
7945
|
runtimeEngine?: string;
|
|
7781
7946
|
singleUserName?: string;
|
|
7782
7947
|
sparkConf?: {
|
|
@@ -7787,6 +7952,7 @@ export interface JobTaskNewCluster {
|
|
|
7787
7952
|
};
|
|
7788
7953
|
sparkVersion?: string;
|
|
7789
7954
|
sshPublicKeys?: string[];
|
|
7955
|
+
totalInitialRemoteDiskSize?: number;
|
|
7790
7956
|
useMlRuntime?: boolean;
|
|
7791
7957
|
/**
|
|
7792
7958
|
* isn't supported
|
|
@@ -8806,10 +8972,18 @@ export interface ModelServingConfigServedEntity {
|
|
|
8806
8972
|
* ARN of the instance profile that the served entity uses to access AWS resources.
|
|
8807
8973
|
*/
|
|
8808
8974
|
instanceProfileArn?: string;
|
|
8975
|
+
/**
|
|
8976
|
+
* The maximum provisioned concurrency that the endpoint can scale up to. Conflicts with `workloadSize`.
|
|
8977
|
+
*/
|
|
8978
|
+
maxProvisionedConcurrency?: number;
|
|
8809
8979
|
/**
|
|
8810
8980
|
* The maximum tokens per second that the endpoint can scale up to.
|
|
8811
8981
|
*/
|
|
8812
8982
|
maxProvisionedThroughput?: number;
|
|
8983
|
+
/**
|
|
8984
|
+
* The minimum provisioned concurrency that the endpoint can scale down to. Conflicts with `workloadSize`.
|
|
8985
|
+
*/
|
|
8986
|
+
minProvisionedConcurrency?: number;
|
|
8813
8987
|
/**
|
|
8814
8988
|
* The minimum tokens per second that the endpoint can scale down to.
|
|
8815
8989
|
*/
|
|
@@ -8824,7 +8998,7 @@ export interface ModelServingConfigServedEntity {
|
|
|
8824
8998
|
*/
|
|
8825
8999
|
scaleToZeroEnabled?: boolean;
|
|
8826
9000
|
/**
|
|
8827
|
-
* 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.
|
|
9001
|
+
* 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`.
|
|
8828
9002
|
*/
|
|
8829
9003
|
workloadSize: string;
|
|
8830
9004
|
/**
|
|
@@ -9071,10 +9245,18 @@ export interface ModelServingConfigServedModel {
|
|
|
9071
9245
|
* ARN of the instance profile that the served model will use to access AWS resources.
|
|
9072
9246
|
*/
|
|
9073
9247
|
instanceProfileArn?: string;
|
|
9248
|
+
/**
|
|
9249
|
+
* The maximum provisioned concurrency that the endpoint can scale up to. Conflicts with `workloadSize`.
|
|
9250
|
+
*/
|
|
9251
|
+
maxProvisionedConcurrency?: number;
|
|
9074
9252
|
/**
|
|
9075
9253
|
* The maximum tokens per second that the endpoint can scale up to.
|
|
9076
9254
|
*/
|
|
9077
9255
|
maxProvisionedThroughput?: number;
|
|
9256
|
+
/**
|
|
9257
|
+
* The minimum provisioned concurrency that the endpoint can scale down to. Conflicts with `workloadSize`.
|
|
9258
|
+
*/
|
|
9259
|
+
minProvisionedConcurrency?: number;
|
|
9078
9260
|
/**
|
|
9079
9261
|
* The minimum tokens per second that the endpoint can scale down to.
|
|
9080
9262
|
*/
|
|
@@ -9395,11 +9577,30 @@ export interface MwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServic
|
|
|
9395
9577
|
targetServices?: string[];
|
|
9396
9578
|
}
|
|
9397
9579
|
export interface MwsNetworkConnectivityConfigEgressConfigTargetRules {
|
|
9580
|
+
awsPrivateEndpointRules?: outputs.MwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRule[];
|
|
9398
9581
|
/**
|
|
9399
9582
|
* (Azure only) - list containing information about configure Azure Private Endpoints.
|
|
9400
9583
|
*/
|
|
9401
9584
|
azurePrivateEndpointRules?: outputs.MwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule[];
|
|
9402
9585
|
}
|
|
9586
|
+
export interface MwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEndpointRule {
|
|
9587
|
+
accountId?: string;
|
|
9588
|
+
connectionState?: string;
|
|
9589
|
+
creationTime?: number;
|
|
9590
|
+
deactivated?: boolean;
|
|
9591
|
+
deactivatedAt?: number;
|
|
9592
|
+
domainNames?: string[];
|
|
9593
|
+
enabled?: boolean;
|
|
9594
|
+
endpointService?: string;
|
|
9595
|
+
/**
|
|
9596
|
+
* Canonical unique identifier of Network Connectivity Config in Databricks Account
|
|
9597
|
+
*/
|
|
9598
|
+
networkConnectivityConfigId?: string;
|
|
9599
|
+
resourceNames?: string[];
|
|
9600
|
+
ruleId?: string;
|
|
9601
|
+
updatedTime?: number;
|
|
9602
|
+
vpcEndpointId?: string;
|
|
9603
|
+
}
|
|
9403
9604
|
export interface MwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule {
|
|
9404
9605
|
connectionState?: string;
|
|
9405
9606
|
creationTime?: number;
|
|
@@ -9426,11 +9627,11 @@ export interface MwsNetworksGcpNetworkInfo {
|
|
|
9426
9627
|
*/
|
|
9427
9628
|
networkProjectId: string;
|
|
9428
9629
|
/**
|
|
9429
|
-
* @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.
|
|
9630
|
+
* @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
|
|
9430
9631
|
*/
|
|
9431
9632
|
podIpRangeName?: string;
|
|
9432
9633
|
/**
|
|
9433
|
-
* @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.
|
|
9634
|
+
* @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
|
|
9434
9635
|
*/
|
|
9435
9636
|
serviceIpRangeName?: string;
|
|
9436
9637
|
/**
|
|
@@ -9491,11 +9692,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
9491
9692
|
}
|
|
9492
9693
|
export interface MwsWorkspacesGcpManagedNetworkConfig {
|
|
9493
9694
|
/**
|
|
9494
|
-
* @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.
|
|
9695
|
+
* @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
|
|
9495
9696
|
*/
|
|
9496
9697
|
gkeClusterPodIpRange?: string;
|
|
9497
9698
|
/**
|
|
9498
|
-
* @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.
|
|
9699
|
+
* @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
|
|
9499
9700
|
*/
|
|
9500
9701
|
gkeClusterServiceIpRange?: string;
|
|
9501
9702
|
subnetCidr: string;
|
|
@@ -9822,6 +10023,9 @@ export interface PipelineDeployment {
|
|
|
9822
10023
|
*/
|
|
9823
10024
|
metadataFilePath?: string;
|
|
9824
10025
|
}
|
|
10026
|
+
export interface PipelineEnvironment {
|
|
10027
|
+
dependencies?: string[];
|
|
10028
|
+
}
|
|
9825
10029
|
export interface PipelineEventLog {
|
|
9826
10030
|
/**
|
|
9827
10031
|
* The UC catalog the event log is published under.
|
|
@@ -10104,6 +10308,16 @@ export interface QualityMonitorTimeSeries {
|
|
|
10104
10308
|
*/
|
|
10105
10309
|
timestampCol: string;
|
|
10106
10310
|
}
|
|
10311
|
+
export interface QualityMonitorV2AnomalyDetectionConfig {
|
|
10312
|
+
/**
|
|
10313
|
+
* (string) - Run id of the last run of the workflow
|
|
10314
|
+
*/
|
|
10315
|
+
lastRunId: string;
|
|
10316
|
+
/**
|
|
10317
|
+
* (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`
|
|
10318
|
+
*/
|
|
10319
|
+
latestRunStatus: string;
|
|
10320
|
+
}
|
|
10107
10321
|
export interface QueryParameter {
|
|
10108
10322
|
/**
|
|
10109
10323
|
* Date-range query parameter value. Consists of following attributes (Can only specify one of `dynamicDateRangeValue` or `dateRangeValue`):
|