@pulumi/databricks 1.35.0-alpha.1711603543 → 1.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/catalogWorkspaceBinding.d.ts +5 -1
- package/catalogWorkspaceBinding.js +5 -1
- package/catalogWorkspaceBinding.js.map +1 -1
- package/getAwsCrossAccountPolicy.d.ts +47 -0
- package/getAwsCrossAccountPolicy.js +5 -0
- package/getAwsCrossAccountPolicy.js.map +1 -1
- package/getStorageCredentials.d.ts +11 -2
- package/getStorageCredentials.js +2 -2
- package/getStorageCredentials.js.map +1 -1
- package/index.d.ts +9 -0
- package/index.js +17 -2
- package/index.js.map +1 -1
- package/job.d.ts +3 -3
- package/lakehouseMonitor.d.ts +301 -0
- package/lakehouseMonitor.js +145 -0
- package/lakehouseMonitor.js.map +1 -0
- package/modelServing.d.ts +25 -5
- package/modelServing.js +7 -5
- package/modelServing.js.map +1 -1
- package/onlineTable.d.ts +100 -0
- package/onlineTable.js +83 -0
- package/onlineTable.js.map +1 -0
- package/package.json +1 -1
- package/registeredModel.d.ts +12 -0
- package/registeredModel.js +2 -0
- package/registeredModel.js.map +1 -1
- package/servicePrincipal.d.ts +32 -25
- package/servicePrincipal.js +26 -19
- package/servicePrincipal.js.map +1 -1
- package/types/input.d.ts +577 -75
- package/types/output.d.ts +549 -56
- package/user.d.ts +6 -4
- package/user.js +3 -1
- package/user.js.map +1 -1
- package/vectorSearchEndpoint.d.ts +10 -10
- package/vectorSearchIndex.d.ts +164 -0
- package/vectorSearchIndex.js +110 -0
- package/vectorSearchIndex.js.map +1 -0
package/types/input.d.ts
CHANGED
|
@@ -2222,14 +2222,14 @@ export interface GetJobJobSettingsSettingsTaskArgs {
|
|
|
2222
2222
|
webhookNotifications?: pulumi.Input<inputs.GetJobJobSettingsSettingsTaskWebhookNotificationsArgs>;
|
|
2223
2223
|
}
|
|
2224
2224
|
export interface GetJobJobSettingsSettingsTaskConditionTask {
|
|
2225
|
-
left
|
|
2226
|
-
op
|
|
2227
|
-
right
|
|
2225
|
+
left: string;
|
|
2226
|
+
op: string;
|
|
2227
|
+
right: string;
|
|
2228
2228
|
}
|
|
2229
2229
|
export interface GetJobJobSettingsSettingsTaskConditionTaskArgs {
|
|
2230
|
-
left
|
|
2231
|
-
op
|
|
2232
|
-
right
|
|
2230
|
+
left: pulumi.Input<string>;
|
|
2231
|
+
op: pulumi.Input<string>;
|
|
2232
|
+
right: pulumi.Input<string>;
|
|
2233
2233
|
}
|
|
2234
2234
|
export interface GetJobJobSettingsSettingsTaskDbtTask {
|
|
2235
2235
|
catalog?: string;
|
|
@@ -2258,12 +2258,14 @@ export interface GetJobJobSettingsSettingsTaskDependsOnArgs {
|
|
|
2258
2258
|
taskKey: pulumi.Input<string>;
|
|
2259
2259
|
}
|
|
2260
2260
|
export interface GetJobJobSettingsSettingsTaskEmailNotifications {
|
|
2261
|
+
noAlertForSkippedRuns?: boolean;
|
|
2261
2262
|
onDurationWarningThresholdExceededs?: string[];
|
|
2262
2263
|
onFailures?: string[];
|
|
2263
2264
|
onStarts?: string[];
|
|
2264
2265
|
onSuccesses?: string[];
|
|
2265
2266
|
}
|
|
2266
2267
|
export interface GetJobJobSettingsSettingsTaskEmailNotificationsArgs {
|
|
2268
|
+
noAlertForSkippedRuns?: pulumi.Input<boolean>;
|
|
2267
2269
|
onDurationWarningThresholdExceededs?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2268
2270
|
onFailures?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2269
2271
|
onStarts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -2338,14 +2340,14 @@ export interface GetJobJobSettingsSettingsTaskForEachTaskTaskArgs {
|
|
|
2338
2340
|
webhookNotifications?: pulumi.Input<inputs.GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsArgs>;
|
|
2339
2341
|
}
|
|
2340
2342
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskConditionTask {
|
|
2341
|
-
left
|
|
2342
|
-
op
|
|
2343
|
-
right
|
|
2343
|
+
left: string;
|
|
2344
|
+
op: string;
|
|
2345
|
+
right: string;
|
|
2344
2346
|
}
|
|
2345
2347
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskConditionTaskArgs {
|
|
2346
|
-
left
|
|
2347
|
-
op
|
|
2348
|
-
right
|
|
2348
|
+
left: pulumi.Input<string>;
|
|
2349
|
+
op: pulumi.Input<string>;
|
|
2350
|
+
right: pulumi.Input<string>;
|
|
2349
2351
|
}
|
|
2350
2352
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskDbtTask {
|
|
2351
2353
|
catalog?: string;
|
|
@@ -2374,12 +2376,14 @@ export interface GetJobJobSettingsSettingsTaskForEachTaskTaskDependsOnArgs {
|
|
|
2374
2376
|
taskKey: pulumi.Input<string>;
|
|
2375
2377
|
}
|
|
2376
2378
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskEmailNotifications {
|
|
2379
|
+
noAlertForSkippedRuns?: boolean;
|
|
2377
2380
|
onDurationWarningThresholdExceededs?: string[];
|
|
2378
2381
|
onFailures?: string[];
|
|
2379
2382
|
onStarts?: string[];
|
|
2380
2383
|
onSuccesses?: string[];
|
|
2381
2384
|
}
|
|
2382
2385
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskEmailNotificationsArgs {
|
|
2386
|
+
noAlertForSkippedRuns?: pulumi.Input<boolean>;
|
|
2383
2387
|
onDurationWarningThresholdExceededs?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2384
2388
|
onFailures?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2385
2389
|
onStarts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -2899,49 +2903,49 @@ export interface GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotification
|
|
|
2899
2903
|
/**
|
|
2900
2904
|
* the id of databricks.Job if the resource was matched by name.
|
|
2901
2905
|
*/
|
|
2902
|
-
id
|
|
2906
|
+
id: string;
|
|
2903
2907
|
}
|
|
2904
2908
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnDurationWarningThresholdExceededArgs {
|
|
2905
2909
|
/**
|
|
2906
2910
|
* the id of databricks.Job if the resource was matched by name.
|
|
2907
2911
|
*/
|
|
2908
|
-
id
|
|
2912
|
+
id: pulumi.Input<string>;
|
|
2909
2913
|
}
|
|
2910
2914
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnFailure {
|
|
2911
2915
|
/**
|
|
2912
2916
|
* the id of databricks.Job if the resource was matched by name.
|
|
2913
2917
|
*/
|
|
2914
|
-
id
|
|
2918
|
+
id: string;
|
|
2915
2919
|
}
|
|
2916
2920
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnFailureArgs {
|
|
2917
2921
|
/**
|
|
2918
2922
|
* the id of databricks.Job if the resource was matched by name.
|
|
2919
2923
|
*/
|
|
2920
|
-
id
|
|
2924
|
+
id: pulumi.Input<string>;
|
|
2921
2925
|
}
|
|
2922
2926
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnStart {
|
|
2923
2927
|
/**
|
|
2924
2928
|
* the id of databricks.Job if the resource was matched by name.
|
|
2925
2929
|
*/
|
|
2926
|
-
id
|
|
2930
|
+
id: string;
|
|
2927
2931
|
}
|
|
2928
2932
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnStartArgs {
|
|
2929
2933
|
/**
|
|
2930
2934
|
* the id of databricks.Job if the resource was matched by name.
|
|
2931
2935
|
*/
|
|
2932
|
-
id
|
|
2936
|
+
id: pulumi.Input<string>;
|
|
2933
2937
|
}
|
|
2934
2938
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnSuccess {
|
|
2935
2939
|
/**
|
|
2936
2940
|
* the id of databricks.Job if the resource was matched by name.
|
|
2937
2941
|
*/
|
|
2938
|
-
id
|
|
2942
|
+
id: string;
|
|
2939
2943
|
}
|
|
2940
2944
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnSuccessArgs {
|
|
2941
2945
|
/**
|
|
2942
2946
|
* the id of databricks.Job if the resource was matched by name.
|
|
2943
2947
|
*/
|
|
2944
|
-
id
|
|
2948
|
+
id: pulumi.Input<string>;
|
|
2945
2949
|
}
|
|
2946
2950
|
export interface GetJobJobSettingsSettingsTaskHealth {
|
|
2947
2951
|
rules: inputs.GetJobJobSettingsSettingsTaskHealthRule[];
|
|
@@ -3457,57 +3461,59 @@ export interface GetJobJobSettingsSettingsTaskWebhookNotificationsOnDurationWarn
|
|
|
3457
3461
|
/**
|
|
3458
3462
|
* the id of databricks.Job if the resource was matched by name.
|
|
3459
3463
|
*/
|
|
3460
|
-
id
|
|
3464
|
+
id: string;
|
|
3461
3465
|
}
|
|
3462
3466
|
export interface GetJobJobSettingsSettingsTaskWebhookNotificationsOnDurationWarningThresholdExceededArgs {
|
|
3463
3467
|
/**
|
|
3464
3468
|
* the id of databricks.Job if the resource was matched by name.
|
|
3465
3469
|
*/
|
|
3466
|
-
id
|
|
3470
|
+
id: pulumi.Input<string>;
|
|
3467
3471
|
}
|
|
3468
3472
|
export interface GetJobJobSettingsSettingsTaskWebhookNotificationsOnFailure {
|
|
3469
3473
|
/**
|
|
3470
3474
|
* the id of databricks.Job if the resource was matched by name.
|
|
3471
3475
|
*/
|
|
3472
|
-
id
|
|
3476
|
+
id: string;
|
|
3473
3477
|
}
|
|
3474
3478
|
export interface GetJobJobSettingsSettingsTaskWebhookNotificationsOnFailureArgs {
|
|
3475
3479
|
/**
|
|
3476
3480
|
* the id of databricks.Job if the resource was matched by name.
|
|
3477
3481
|
*/
|
|
3478
|
-
id
|
|
3482
|
+
id: pulumi.Input<string>;
|
|
3479
3483
|
}
|
|
3480
3484
|
export interface GetJobJobSettingsSettingsTaskWebhookNotificationsOnStart {
|
|
3481
3485
|
/**
|
|
3482
3486
|
* the id of databricks.Job if the resource was matched by name.
|
|
3483
3487
|
*/
|
|
3484
|
-
id
|
|
3488
|
+
id: string;
|
|
3485
3489
|
}
|
|
3486
3490
|
export interface GetJobJobSettingsSettingsTaskWebhookNotificationsOnStartArgs {
|
|
3487
3491
|
/**
|
|
3488
3492
|
* the id of databricks.Job if the resource was matched by name.
|
|
3489
3493
|
*/
|
|
3490
|
-
id
|
|
3494
|
+
id: pulumi.Input<string>;
|
|
3491
3495
|
}
|
|
3492
3496
|
export interface GetJobJobSettingsSettingsTaskWebhookNotificationsOnSuccess {
|
|
3493
3497
|
/**
|
|
3494
3498
|
* the id of databricks.Job if the resource was matched by name.
|
|
3495
3499
|
*/
|
|
3496
|
-
id
|
|
3500
|
+
id: string;
|
|
3497
3501
|
}
|
|
3498
3502
|
export interface GetJobJobSettingsSettingsTaskWebhookNotificationsOnSuccessArgs {
|
|
3499
3503
|
/**
|
|
3500
3504
|
* the id of databricks.Job if the resource was matched by name.
|
|
3501
3505
|
*/
|
|
3502
|
-
id
|
|
3506
|
+
id: pulumi.Input<string>;
|
|
3503
3507
|
}
|
|
3504
3508
|
export interface GetJobJobSettingsSettingsTrigger {
|
|
3505
|
-
fileArrival
|
|
3509
|
+
fileArrival?: inputs.GetJobJobSettingsSettingsTriggerFileArrival;
|
|
3506
3510
|
pauseStatus?: string;
|
|
3511
|
+
tableUpdate?: inputs.GetJobJobSettingsSettingsTriggerTableUpdate;
|
|
3507
3512
|
}
|
|
3508
3513
|
export interface GetJobJobSettingsSettingsTriggerArgs {
|
|
3509
|
-
fileArrival
|
|
3514
|
+
fileArrival?: pulumi.Input<inputs.GetJobJobSettingsSettingsTriggerFileArrivalArgs>;
|
|
3510
3515
|
pauseStatus?: pulumi.Input<string>;
|
|
3516
|
+
tableUpdate?: pulumi.Input<inputs.GetJobJobSettingsSettingsTriggerTableUpdateArgs>;
|
|
3511
3517
|
}
|
|
3512
3518
|
export interface GetJobJobSettingsSettingsTriggerFileArrival {
|
|
3513
3519
|
minTimeBetweenTriggersSeconds?: number;
|
|
@@ -3519,6 +3525,18 @@ export interface GetJobJobSettingsSettingsTriggerFileArrivalArgs {
|
|
|
3519
3525
|
url: pulumi.Input<string>;
|
|
3520
3526
|
waitAfterLastChangeSeconds?: pulumi.Input<number>;
|
|
3521
3527
|
}
|
|
3528
|
+
export interface GetJobJobSettingsSettingsTriggerTableUpdate {
|
|
3529
|
+
condition?: string;
|
|
3530
|
+
minTimeBetweenTriggersSeconds?: number;
|
|
3531
|
+
tableNames: string[];
|
|
3532
|
+
waitAfterLastChangeSeconds?: number;
|
|
3533
|
+
}
|
|
3534
|
+
export interface GetJobJobSettingsSettingsTriggerTableUpdateArgs {
|
|
3535
|
+
condition?: pulumi.Input<string>;
|
|
3536
|
+
minTimeBetweenTriggersSeconds?: pulumi.Input<number>;
|
|
3537
|
+
tableNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
3538
|
+
waitAfterLastChangeSeconds?: pulumi.Input<number>;
|
|
3539
|
+
}
|
|
3522
3540
|
export interface GetJobJobSettingsSettingsWebhookNotifications {
|
|
3523
3541
|
onDurationWarningThresholdExceededs?: inputs.GetJobJobSettingsSettingsWebhookNotificationsOnDurationWarningThresholdExceeded[];
|
|
3524
3542
|
onFailures?: inputs.GetJobJobSettingsSettingsWebhookNotificationsOnFailure[];
|
|
@@ -3535,49 +3553,49 @@ export interface GetJobJobSettingsSettingsWebhookNotificationsOnDurationWarningT
|
|
|
3535
3553
|
/**
|
|
3536
3554
|
* the id of databricks.Job if the resource was matched by name.
|
|
3537
3555
|
*/
|
|
3538
|
-
id
|
|
3556
|
+
id: string;
|
|
3539
3557
|
}
|
|
3540
3558
|
export interface GetJobJobSettingsSettingsWebhookNotificationsOnDurationWarningThresholdExceededArgs {
|
|
3541
3559
|
/**
|
|
3542
3560
|
* the id of databricks.Job if the resource was matched by name.
|
|
3543
3561
|
*/
|
|
3544
|
-
id
|
|
3562
|
+
id: pulumi.Input<string>;
|
|
3545
3563
|
}
|
|
3546
3564
|
export interface GetJobJobSettingsSettingsWebhookNotificationsOnFailure {
|
|
3547
3565
|
/**
|
|
3548
3566
|
* the id of databricks.Job if the resource was matched by name.
|
|
3549
3567
|
*/
|
|
3550
|
-
id
|
|
3568
|
+
id: string;
|
|
3551
3569
|
}
|
|
3552
3570
|
export interface GetJobJobSettingsSettingsWebhookNotificationsOnFailureArgs {
|
|
3553
3571
|
/**
|
|
3554
3572
|
* the id of databricks.Job if the resource was matched by name.
|
|
3555
3573
|
*/
|
|
3556
|
-
id
|
|
3574
|
+
id: pulumi.Input<string>;
|
|
3557
3575
|
}
|
|
3558
3576
|
export interface GetJobJobSettingsSettingsWebhookNotificationsOnStart {
|
|
3559
3577
|
/**
|
|
3560
3578
|
* the id of databricks.Job if the resource was matched by name.
|
|
3561
3579
|
*/
|
|
3562
|
-
id
|
|
3580
|
+
id: string;
|
|
3563
3581
|
}
|
|
3564
3582
|
export interface GetJobJobSettingsSettingsWebhookNotificationsOnStartArgs {
|
|
3565
3583
|
/**
|
|
3566
3584
|
* the id of databricks.Job if the resource was matched by name.
|
|
3567
3585
|
*/
|
|
3568
|
-
id
|
|
3586
|
+
id: pulumi.Input<string>;
|
|
3569
3587
|
}
|
|
3570
3588
|
export interface GetJobJobSettingsSettingsWebhookNotificationsOnSuccess {
|
|
3571
3589
|
/**
|
|
3572
3590
|
* the id of databricks.Job if the resource was matched by name.
|
|
3573
3591
|
*/
|
|
3574
|
-
id
|
|
3592
|
+
id: string;
|
|
3575
3593
|
}
|
|
3576
3594
|
export interface GetJobJobSettingsSettingsWebhookNotificationsOnSuccessArgs {
|
|
3577
3595
|
/**
|
|
3578
3596
|
* the id of databricks.Job if the resource was matched by name.
|
|
3579
3597
|
*/
|
|
3580
|
-
id
|
|
3598
|
+
id: pulumi.Input<string>;
|
|
3581
3599
|
}
|
|
3582
3600
|
export interface GetMetastoreMetastoreInfo {
|
|
3583
3601
|
cloud?: string;
|
|
@@ -4764,7 +4782,7 @@ export interface JobTask {
|
|
|
4764
4782
|
*/
|
|
4765
4783
|
jobClusterKey?: pulumi.Input<string>;
|
|
4766
4784
|
/**
|
|
4767
|
-
* (Set) An optional list of libraries to be installed on the cluster that will execute the job.
|
|
4785
|
+
* (Set) An optional list of libraries to be installed on the cluster that will execute the job.
|
|
4768
4786
|
*/
|
|
4769
4787
|
libraries?: pulumi.Input<pulumi.Input<inputs.JobTaskLibrary>[]>;
|
|
4770
4788
|
/**
|
|
@@ -4817,17 +4835,17 @@ export interface JobTaskConditionTask {
|
|
|
4817
4835
|
/**
|
|
4818
4836
|
* The left operand of the condition task. It could be a string value, job state, or a parameter reference.
|
|
4819
4837
|
*/
|
|
4820
|
-
left
|
|
4838
|
+
left: pulumi.Input<string>;
|
|
4821
4839
|
/**
|
|
4822
4840
|
* The string specifying the operation used to compare operands. Currently, following operators are supported: `EQUAL_TO`, `GREATER_THAN`, `GREATER_THAN_OR_EQUAL`, `LESS_THAN`, `LESS_THAN_OR_EQUAL`, `NOT_EQUAL`. (Check the [API docs](https://docs.databricks.com/api/workspace/jobs/create) for the latest information).
|
|
4823
4841
|
*
|
|
4824
4842
|
* This task does not require a cluster to execute and does not support retries or notifications.
|
|
4825
4843
|
*/
|
|
4826
|
-
op
|
|
4844
|
+
op: pulumi.Input<string>;
|
|
4827
4845
|
/**
|
|
4828
4846
|
* The right operand of the condition task. It could be a string value, job state, or parameter reference.
|
|
4829
4847
|
*/
|
|
4830
|
-
right
|
|
4848
|
+
right: pulumi.Input<string>;
|
|
4831
4849
|
}
|
|
4832
4850
|
export interface JobTaskDbtTask {
|
|
4833
4851
|
/**
|
|
@@ -4874,6 +4892,10 @@ export interface JobTaskDependsOn {
|
|
|
4874
4892
|
taskKey: pulumi.Input<string>;
|
|
4875
4893
|
}
|
|
4876
4894
|
export interface JobTaskEmailNotifications {
|
|
4895
|
+
/**
|
|
4896
|
+
* (Bool) don't send alert for skipped runs. (It's recommended to use the corresponding setting in the `notificationSettings` configuration block).
|
|
4897
|
+
*/
|
|
4898
|
+
noAlertForSkippedRuns?: pulumi.Input<boolean>;
|
|
4877
4899
|
/**
|
|
4878
4900
|
* (List) list of emails to notify when the duration of a run exceeds the threshold specified by the `RUN_DURATION_SECONDS` metric in the `health` block.
|
|
4879
4901
|
*/
|
|
@@ -4931,7 +4953,7 @@ export interface JobTaskForEachTaskTask {
|
|
|
4931
4953
|
*/
|
|
4932
4954
|
jobClusterKey?: pulumi.Input<string>;
|
|
4933
4955
|
/**
|
|
4934
|
-
* (Set) An optional list of libraries to be installed on the cluster that will execute the job.
|
|
4956
|
+
* (Set) An optional list of libraries to be installed on the cluster that will execute the job.
|
|
4935
4957
|
*/
|
|
4936
4958
|
libraries?: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskLibrary>[]>;
|
|
4937
4959
|
/**
|
|
@@ -4984,17 +5006,17 @@ export interface JobTaskForEachTaskTaskConditionTask {
|
|
|
4984
5006
|
/**
|
|
4985
5007
|
* The left operand of the condition task. It could be a string value, job state, or a parameter reference.
|
|
4986
5008
|
*/
|
|
4987
|
-
left
|
|
5009
|
+
left: pulumi.Input<string>;
|
|
4988
5010
|
/**
|
|
4989
5011
|
* The string specifying the operation used to compare operands. Currently, following operators are supported: `EQUAL_TO`, `GREATER_THAN`, `GREATER_THAN_OR_EQUAL`, `LESS_THAN`, `LESS_THAN_OR_EQUAL`, `NOT_EQUAL`. (Check the [API docs](https://docs.databricks.com/api/workspace/jobs/create) for the latest information).
|
|
4990
5012
|
*
|
|
4991
5013
|
* This task does not require a cluster to execute and does not support retries or notifications.
|
|
4992
5014
|
*/
|
|
4993
|
-
op
|
|
5015
|
+
op: pulumi.Input<string>;
|
|
4994
5016
|
/**
|
|
4995
5017
|
* The right operand of the condition task. It could be a string value, job state, or parameter reference.
|
|
4996
5018
|
*/
|
|
4997
|
-
right
|
|
5019
|
+
right: pulumi.Input<string>;
|
|
4998
5020
|
}
|
|
4999
5021
|
export interface JobTaskForEachTaskTaskDbtTask {
|
|
5000
5022
|
/**
|
|
@@ -5041,6 +5063,10 @@ export interface JobTaskForEachTaskTaskDependsOn {
|
|
|
5041
5063
|
taskKey: pulumi.Input<string>;
|
|
5042
5064
|
}
|
|
5043
5065
|
export interface JobTaskForEachTaskTaskEmailNotifications {
|
|
5066
|
+
/**
|
|
5067
|
+
* (Bool) don't send alert for skipped runs. (It's recommended to use the corresponding setting in the `notificationSettings` configuration block).
|
|
5068
|
+
*/
|
|
5069
|
+
noAlertForSkippedRuns?: pulumi.Input<boolean>;
|
|
5044
5070
|
/**
|
|
5045
5071
|
* (List) list of emails to notify when the duration of a run exceeds the threshold specified by the `RUN_DURATION_SECONDS` metric in the `health` block.
|
|
5046
5072
|
*/
|
|
@@ -5519,7 +5545,7 @@ export interface JobTaskForEachTaskTaskWebhookNotificationsOnDurationWarningThre
|
|
|
5519
5545
|
*
|
|
5520
5546
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
5521
5547
|
*/
|
|
5522
|
-
id
|
|
5548
|
+
id: pulumi.Input<string>;
|
|
5523
5549
|
}
|
|
5524
5550
|
export interface JobTaskForEachTaskTaskWebhookNotificationsOnFailure {
|
|
5525
5551
|
/**
|
|
@@ -5527,7 +5553,7 @@ export interface JobTaskForEachTaskTaskWebhookNotificationsOnFailure {
|
|
|
5527
5553
|
*
|
|
5528
5554
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
5529
5555
|
*/
|
|
5530
|
-
id
|
|
5556
|
+
id: pulumi.Input<string>;
|
|
5531
5557
|
}
|
|
5532
5558
|
export interface JobTaskForEachTaskTaskWebhookNotificationsOnStart {
|
|
5533
5559
|
/**
|
|
@@ -5535,7 +5561,7 @@ export interface JobTaskForEachTaskTaskWebhookNotificationsOnStart {
|
|
|
5535
5561
|
*
|
|
5536
5562
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
5537
5563
|
*/
|
|
5538
|
-
id
|
|
5564
|
+
id: pulumi.Input<string>;
|
|
5539
5565
|
}
|
|
5540
5566
|
export interface JobTaskForEachTaskTaskWebhookNotificationsOnSuccess {
|
|
5541
5567
|
/**
|
|
@@ -5543,7 +5569,7 @@ export interface JobTaskForEachTaskTaskWebhookNotificationsOnSuccess {
|
|
|
5543
5569
|
*
|
|
5544
5570
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
5545
5571
|
*/
|
|
5546
|
-
id
|
|
5572
|
+
id: pulumi.Input<string>;
|
|
5547
5573
|
}
|
|
5548
5574
|
export interface JobTaskHealth {
|
|
5549
5575
|
/**
|
|
@@ -6009,7 +6035,7 @@ export interface JobTaskWebhookNotificationsOnDurationWarningThresholdExceeded {
|
|
|
6009
6035
|
*
|
|
6010
6036
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
6011
6037
|
*/
|
|
6012
|
-
id
|
|
6038
|
+
id: pulumi.Input<string>;
|
|
6013
6039
|
}
|
|
6014
6040
|
export interface JobTaskWebhookNotificationsOnFailure {
|
|
6015
6041
|
/**
|
|
@@ -6017,7 +6043,7 @@ export interface JobTaskWebhookNotificationsOnFailure {
|
|
|
6017
6043
|
*
|
|
6018
6044
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
6019
6045
|
*/
|
|
6020
|
-
id
|
|
6046
|
+
id: pulumi.Input<string>;
|
|
6021
6047
|
}
|
|
6022
6048
|
export interface JobTaskWebhookNotificationsOnStart {
|
|
6023
6049
|
/**
|
|
@@ -6025,7 +6051,7 @@ export interface JobTaskWebhookNotificationsOnStart {
|
|
|
6025
6051
|
*
|
|
6026
6052
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
6027
6053
|
*/
|
|
6028
|
-
id
|
|
6054
|
+
id: pulumi.Input<string>;
|
|
6029
6055
|
}
|
|
6030
6056
|
export interface JobTaskWebhookNotificationsOnSuccess {
|
|
6031
6057
|
/**
|
|
@@ -6033,17 +6059,21 @@ export interface JobTaskWebhookNotificationsOnSuccess {
|
|
|
6033
6059
|
*
|
|
6034
6060
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
6035
6061
|
*/
|
|
6036
|
-
id
|
|
6062
|
+
id: pulumi.Input<string>;
|
|
6037
6063
|
}
|
|
6038
6064
|
export interface JobTrigger {
|
|
6039
6065
|
/**
|
|
6040
6066
|
* configuration block to define a trigger for [File Arrival events](https://learn.microsoft.com/en-us/azure/databricks/workflows/jobs/file-arrival-triggers) consisting of following attributes:
|
|
6041
6067
|
*/
|
|
6042
|
-
fileArrival
|
|
6068
|
+
fileArrival?: pulumi.Input<inputs.JobTriggerFileArrival>;
|
|
6043
6069
|
/**
|
|
6044
6070
|
* Indicate whether this trigger is paused or not. Either `PAUSED` or `UNPAUSED`. When the `pauseStatus` field is omitted in the block, the server will default to using `UNPAUSED` as a value for `pauseStatus`.
|
|
6045
6071
|
*/
|
|
6046
6072
|
pauseStatus?: pulumi.Input<string>;
|
|
6073
|
+
/**
|
|
6074
|
+
* configuration block to define a trigger for Table Update events consisting of following attributes:
|
|
6075
|
+
*/
|
|
6076
|
+
tableUpdate?: pulumi.Input<inputs.JobTriggerTableUpdate>;
|
|
6047
6077
|
}
|
|
6048
6078
|
export interface JobTriggerFileArrival {
|
|
6049
6079
|
/**
|
|
@@ -6059,6 +6089,24 @@ export interface JobTriggerFileArrival {
|
|
|
6059
6089
|
*/
|
|
6060
6090
|
waitAfterLastChangeSeconds?: pulumi.Input<number>;
|
|
6061
6091
|
}
|
|
6092
|
+
export interface JobTriggerTableUpdate {
|
|
6093
|
+
/**
|
|
6094
|
+
* The table(s) condition based on which to trigger a job run. Valid values are `ANY_UPDATED` or `ALL_UPDATED`.
|
|
6095
|
+
*/
|
|
6096
|
+
condition?: pulumi.Input<string>;
|
|
6097
|
+
/**
|
|
6098
|
+
* If set, the trigger starts a run only after the specified amount of time passed since the last time the trigger fired. The minimum allowed value is 60 seconds.
|
|
6099
|
+
*/
|
|
6100
|
+
minTimeBetweenTriggersSeconds?: pulumi.Input<number>;
|
|
6101
|
+
/**
|
|
6102
|
+
* A list of Delta tables to monitor for changes. The table name must be in the format `catalog_name.schema_name.table_name`.
|
|
6103
|
+
*/
|
|
6104
|
+
tableNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
6105
|
+
/**
|
|
6106
|
+
* If set, the trigger starts a run only after no file activity has occurred for the specified amount of time. This makes it possible to wait for a batch of incoming files to arrive before triggering a run. The minimum allowed value is 60 seconds.
|
|
6107
|
+
*/
|
|
6108
|
+
waitAfterLastChangeSeconds?: pulumi.Input<number>;
|
|
6109
|
+
}
|
|
6062
6110
|
export interface JobWebhookNotifications {
|
|
6063
6111
|
/**
|
|
6064
6112
|
* (List) list of notification IDs to call when the duration of a run exceeds the threshold specified by the `RUN_DURATION_SECONDS` metric in the `health` block.
|
|
@@ -6093,7 +6141,7 @@ export interface JobWebhookNotificationsOnDurationWarningThresholdExceeded {
|
|
|
6093
6141
|
*
|
|
6094
6142
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
6095
6143
|
*/
|
|
6096
|
-
id
|
|
6144
|
+
id: pulumi.Input<string>;
|
|
6097
6145
|
}
|
|
6098
6146
|
export interface JobWebhookNotificationsOnFailure {
|
|
6099
6147
|
/**
|
|
@@ -6101,7 +6149,7 @@ export interface JobWebhookNotificationsOnFailure {
|
|
|
6101
6149
|
*
|
|
6102
6150
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
6103
6151
|
*/
|
|
6104
|
-
id
|
|
6152
|
+
id: pulumi.Input<string>;
|
|
6105
6153
|
}
|
|
6106
6154
|
export interface JobWebhookNotificationsOnStart {
|
|
6107
6155
|
/**
|
|
@@ -6109,7 +6157,7 @@ export interface JobWebhookNotificationsOnStart {
|
|
|
6109
6157
|
*
|
|
6110
6158
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
6111
6159
|
*/
|
|
6112
|
-
id
|
|
6160
|
+
id: pulumi.Input<string>;
|
|
6113
6161
|
}
|
|
6114
6162
|
export interface JobWebhookNotificationsOnSuccess {
|
|
6115
6163
|
/**
|
|
@@ -6117,7 +6165,85 @@ export interface JobWebhookNotificationsOnSuccess {
|
|
|
6117
6165
|
*
|
|
6118
6166
|
* > **Note** The following configuration blocks can be standalone or nested inside a `task` block
|
|
6119
6167
|
*/
|
|
6120
|
-
id
|
|
6168
|
+
id: pulumi.Input<string>;
|
|
6169
|
+
}
|
|
6170
|
+
export interface LakehouseMonitorCustomMetric {
|
|
6171
|
+
/**
|
|
6172
|
+
* [create metric definition]: https://docs.databricks.com/en/lakehouse-monitoring/custom-metrics.html#create-definition
|
|
6173
|
+
*/
|
|
6174
|
+
definition?: pulumi.Input<string>;
|
|
6175
|
+
/**
|
|
6176
|
+
* Columns on the monitored table to apply the custom metrics to.
|
|
6177
|
+
*/
|
|
6178
|
+
inputColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6179
|
+
/**
|
|
6180
|
+
* Name of the custom metric.
|
|
6181
|
+
*/
|
|
6182
|
+
name?: pulumi.Input<string>;
|
|
6183
|
+
/**
|
|
6184
|
+
* The output type of the custom metric.
|
|
6185
|
+
*/
|
|
6186
|
+
outputDataType?: pulumi.Input<string>;
|
|
6187
|
+
/**
|
|
6188
|
+
* The type of the custom metric.
|
|
6189
|
+
*/
|
|
6190
|
+
type?: pulumi.Input<string>;
|
|
6191
|
+
}
|
|
6192
|
+
export interface LakehouseMonitorDataClassificationConfig {
|
|
6193
|
+
enabled?: pulumi.Input<boolean>;
|
|
6194
|
+
}
|
|
6195
|
+
export interface LakehouseMonitorInferenceLog {
|
|
6196
|
+
/**
|
|
6197
|
+
* List of granularities to use when aggregating data into time windows based on their timestamp.
|
|
6198
|
+
*/
|
|
6199
|
+
granularities?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6200
|
+
/**
|
|
6201
|
+
* Column of the model label
|
|
6202
|
+
*/
|
|
6203
|
+
labelCol?: pulumi.Input<string>;
|
|
6204
|
+
/**
|
|
6205
|
+
* Column of the model id or version
|
|
6206
|
+
*/
|
|
6207
|
+
modelIdCol?: pulumi.Input<string>;
|
|
6208
|
+
/**
|
|
6209
|
+
* Column of the model prediction
|
|
6210
|
+
*/
|
|
6211
|
+
predictionCol?: pulumi.Input<string>;
|
|
6212
|
+
/**
|
|
6213
|
+
* Column of the model prediction probabilities
|
|
6214
|
+
*/
|
|
6215
|
+
predictionProbaCol?: pulumi.Input<string>;
|
|
6216
|
+
/**
|
|
6217
|
+
* Problem type the model aims to solve. Either `PROBLEM_TYPE_CLASSIFICATION` or `PROBLEM_TYPE_REGRESSION`
|
|
6218
|
+
*/
|
|
6219
|
+
problemType?: pulumi.Input<string>;
|
|
6220
|
+
/**
|
|
6221
|
+
* Column of the timestamp of predictions
|
|
6222
|
+
*/
|
|
6223
|
+
timestampCol?: pulumi.Input<string>;
|
|
6224
|
+
}
|
|
6225
|
+
export interface LakehouseMonitorNotifications {
|
|
6226
|
+
onFailure?: pulumi.Input<inputs.LakehouseMonitorNotificationsOnFailure>;
|
|
6227
|
+
}
|
|
6228
|
+
export interface LakehouseMonitorNotificationsOnFailure {
|
|
6229
|
+
emailAddresses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6230
|
+
}
|
|
6231
|
+
export interface LakehouseMonitorSchedule {
|
|
6232
|
+
pauseStatus?: pulumi.Input<string>;
|
|
6233
|
+
quartzCronExpression?: pulumi.Input<string>;
|
|
6234
|
+
timezoneId?: pulumi.Input<string>;
|
|
6235
|
+
}
|
|
6236
|
+
export interface LakehouseMonitorSnapshot {
|
|
6237
|
+
}
|
|
6238
|
+
export interface LakehouseMonitorTimeSeries {
|
|
6239
|
+
/**
|
|
6240
|
+
* List of granularities to use when aggregating data into time windows based on their timestamp.
|
|
6241
|
+
*/
|
|
6242
|
+
granularities?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6243
|
+
/**
|
|
6244
|
+
* Column of the timestamp of predictions
|
|
6245
|
+
*/
|
|
6246
|
+
timestampCol?: pulumi.Input<string>;
|
|
6121
6247
|
}
|
|
6122
6248
|
export interface LibraryCran {
|
|
6123
6249
|
package: pulumi.Input<string>;
|
|
@@ -6193,9 +6319,18 @@ export interface MlflowWebhookJobSpec {
|
|
|
6193
6319
|
workspaceUrl?: pulumi.Input<string>;
|
|
6194
6320
|
}
|
|
6195
6321
|
export interface ModelServingConfig {
|
|
6322
|
+
/**
|
|
6323
|
+
* Configuration for Inference Tables which automatically logs requests and responses to Unity Catalog.
|
|
6324
|
+
*/
|
|
6196
6325
|
autoCaptureConfig?: pulumi.Input<inputs.ModelServingConfigAutoCaptureConfig>;
|
|
6326
|
+
/**
|
|
6327
|
+
* A list of served entities for the endpoint to serve. A serving endpoint can have up to 10 served entities.
|
|
6328
|
+
*/
|
|
6329
|
+
servedEntities?: pulumi.Input<pulumi.Input<inputs.ModelServingConfigServedEntity>[]>;
|
|
6197
6330
|
/**
|
|
6198
6331
|
* Each block represents a served model for the endpoint to serve. A model serving endpoint can have up to 10 served models.
|
|
6332
|
+
*
|
|
6333
|
+
* @deprecated Please use 'config.served_entities' instead of 'config.served_models'.
|
|
6199
6334
|
*/
|
|
6200
6335
|
servedModels?: pulumi.Input<pulumi.Input<inputs.ModelServingConfigServedModel>[]>;
|
|
6201
6336
|
/**
|
|
@@ -6204,11 +6339,192 @@ export interface ModelServingConfig {
|
|
|
6204
6339
|
trafficConfig?: pulumi.Input<inputs.ModelServingConfigTrafficConfig>;
|
|
6205
6340
|
}
|
|
6206
6341
|
export interface ModelServingConfigAutoCaptureConfig {
|
|
6342
|
+
/**
|
|
6343
|
+
* The name of the catalog in Unity Catalog. NOTE: On update, you cannot change the catalog name if it was already set.
|
|
6344
|
+
*/
|
|
6207
6345
|
catalogName?: pulumi.Input<string>;
|
|
6346
|
+
/**
|
|
6347
|
+
* If inference tables are enabled or not. NOTE: If you have already disabled payload logging once, you cannot enable again.
|
|
6348
|
+
*/
|
|
6208
6349
|
enabled?: pulumi.Input<boolean>;
|
|
6350
|
+
/**
|
|
6351
|
+
* The name of the schema in Unity Catalog. NOTE: On update, you cannot change the schema name if it was already set.
|
|
6352
|
+
*/
|
|
6209
6353
|
schemaName?: pulumi.Input<string>;
|
|
6354
|
+
/**
|
|
6355
|
+
* The prefix of the table in Unity Catalog. NOTE: On update, you cannot change the prefix name if it was already set.
|
|
6356
|
+
*/
|
|
6210
6357
|
tableNamePrefix?: pulumi.Input<string>;
|
|
6211
6358
|
}
|
|
6359
|
+
export interface ModelServingConfigServedEntity {
|
|
6360
|
+
/**
|
|
6361
|
+
* The name of the entity to be served. The entity may be a model in the Databricks Model Registry, a model in the Unity Catalog (UC), or a function of type `FEATURE_SPEC` in the UC. If it is a UC object, the full name of the object should be given in the form of `catalog_name.schema_name.model_name`.
|
|
6362
|
+
*/
|
|
6363
|
+
entityName?: pulumi.Input<string>;
|
|
6364
|
+
/**
|
|
6365
|
+
* The version of the model in Databricks Model Registry to be served or empty if the entity is a `FEATURE_SPEC`.
|
|
6366
|
+
*/
|
|
6367
|
+
entityVersion?: pulumi.Input<string>;
|
|
6368
|
+
/**
|
|
6369
|
+
* An object containing a set of optional, user-specified environment variable key-value pairs used for serving this entity. Note: this is an experimental feature and subject to change. Example entity environment variables that refer to Databricks secrets: ```{"OPENAI_API_KEY": "{{secrets/my_scope/my_key}}", "DATABRICKS_TOKEN": "{{secrets/my_scope2/my_key2}}"}```
|
|
6370
|
+
*/
|
|
6371
|
+
environmentVars?: pulumi.Input<{
|
|
6372
|
+
[key: string]: any;
|
|
6373
|
+
}>;
|
|
6374
|
+
/**
|
|
6375
|
+
* The external model to be served. NOTE: Only one of `externalModel` and (`entityName`, `entityVersion`, `workloadSize`, `workloadType`, and `scaleToZeroEnabled`) can be specified with the latter set being used for custom model serving for a Databricks registered model. When an `externalModel` is present, the served entities list can only have one `servedEntity` object. For an existing endpoint with `externalModel`, it can not be updated to an endpoint without `externalModel`. If the endpoint is created without `externalModel`, users cannot update it to add `externalModel` later.
|
|
6376
|
+
*/
|
|
6377
|
+
externalModel?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModel>;
|
|
6378
|
+
/**
|
|
6379
|
+
* ARN of the instance profile that the served entity uses to access AWS resources.
|
|
6380
|
+
*/
|
|
6381
|
+
instanceProfileArn?: pulumi.Input<string>;
|
|
6382
|
+
/**
|
|
6383
|
+
* The maximum tokens per second that the endpoint can scale up to.
|
|
6384
|
+
*/
|
|
6385
|
+
maxProvisionedThroughput?: pulumi.Input<number>;
|
|
6386
|
+
/**
|
|
6387
|
+
* The minimum tokens per second that the endpoint can scale down to.
|
|
6388
|
+
*/
|
|
6389
|
+
minProvisionedThroughput?: pulumi.Input<number>;
|
|
6390
|
+
/**
|
|
6391
|
+
* The name of the external model.
|
|
6392
|
+
*/
|
|
6393
|
+
name?: pulumi.Input<string>;
|
|
6394
|
+
/**
|
|
6395
|
+
* Whether the compute resources for the served entity should scale down to zero.
|
|
6396
|
+
*/
|
|
6397
|
+
scaleToZeroEnabled?: pulumi.Input<boolean>;
|
|
6398
|
+
/**
|
|
6399
|
+
* 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.
|
|
6400
|
+
*/
|
|
6401
|
+
workloadSize?: pulumi.Input<string>;
|
|
6402
|
+
/**
|
|
6403
|
+
* The workload type of the served entity. The workload type selects which type of compute to use in the endpoint. The default value for this parameter is `CPU`. For deep learning workloads, GPU acceleration is available by selecting workload types like `GPU_SMALL` and others. See the available [GPU types](https://docs.databricks.com/machine-learning/model-serving/create-manage-serving-endpoints.html#gpu-workload-types).
|
|
6404
|
+
*/
|
|
6405
|
+
workloadType?: pulumi.Input<string>;
|
|
6406
|
+
}
|
|
6407
|
+
export interface ModelServingConfigServedEntityExternalModel {
|
|
6408
|
+
/**
|
|
6409
|
+
* AI21Labs Config
|
|
6410
|
+
*/
|
|
6411
|
+
ai21labsConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelAi21labsConfig>;
|
|
6412
|
+
/**
|
|
6413
|
+
* Amazon Bedrock Config
|
|
6414
|
+
*/
|
|
6415
|
+
amazonBedrockConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelAmazonBedrockConfig>;
|
|
6416
|
+
/**
|
|
6417
|
+
* Anthropic Config
|
|
6418
|
+
*/
|
|
6419
|
+
anthropicConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelAnthropicConfig>;
|
|
6420
|
+
/**
|
|
6421
|
+
* Cohere Config
|
|
6422
|
+
*/
|
|
6423
|
+
cohereConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelCohereConfig>;
|
|
6424
|
+
/**
|
|
6425
|
+
* Databricks Model Serving Config
|
|
6426
|
+
*/
|
|
6427
|
+
databricksModelServingConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelDatabricksModelServingConfig>;
|
|
6428
|
+
/**
|
|
6429
|
+
* The name of the model serving endpoint. This field is required and must be unique across a workspace. An endpoint name can consist of alphanumeric characters, dashes, and underscores. NOTE: Changing this name will delete the existing endpoint and create a new endpoint with the update name.
|
|
6430
|
+
*/
|
|
6431
|
+
name: pulumi.Input<string>;
|
|
6432
|
+
/**
|
|
6433
|
+
* OpenAI Config
|
|
6434
|
+
*/
|
|
6435
|
+
openaiConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelOpenaiConfig>;
|
|
6436
|
+
/**
|
|
6437
|
+
* PaLM Config
|
|
6438
|
+
*/
|
|
6439
|
+
palmConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelPalmConfig>;
|
|
6440
|
+
/**
|
|
6441
|
+
* The name of the provider for the external model. Currently, the supported providers are `ai21labs`, `anthropic`, `amazon-bedrock`, `cohere`, `databricks-model-serving`, `openai`, and `palm`.
|
|
6442
|
+
*/
|
|
6443
|
+
provider: pulumi.Input<string>;
|
|
6444
|
+
/**
|
|
6445
|
+
* The task type of the external model.
|
|
6446
|
+
*/
|
|
6447
|
+
task: pulumi.Input<string>;
|
|
6448
|
+
}
|
|
6449
|
+
export interface ModelServingConfigServedEntityExternalModelAi21labsConfig {
|
|
6450
|
+
/**
|
|
6451
|
+
* The Databricks secret key reference for an AI21Labs API key.
|
|
6452
|
+
*/
|
|
6453
|
+
ai21labsApiKey: pulumi.Input<string>;
|
|
6454
|
+
}
|
|
6455
|
+
export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig {
|
|
6456
|
+
/**
|
|
6457
|
+
* The Databricks secret key reference for an AWS Access Key ID with permissions to interact with Bedrock services.
|
|
6458
|
+
*/
|
|
6459
|
+
awsAccessKeyId: pulumi.Input<string>;
|
|
6460
|
+
/**
|
|
6461
|
+
* The AWS region to use. Bedrock has to be enabled there.
|
|
6462
|
+
*/
|
|
6463
|
+
awsRegion: pulumi.Input<string>;
|
|
6464
|
+
/**
|
|
6465
|
+
* The Databricks secret key reference for an AWS Secret Access Key paired with the access key ID, with permissions to interact with Bedrock services.
|
|
6466
|
+
*/
|
|
6467
|
+
awsSecretAccessKey: pulumi.Input<string>;
|
|
6468
|
+
/**
|
|
6469
|
+
* The underlying provider in Amazon Bedrock. Supported values (case insensitive) include: `Anthropic`, `Cohere`, `AI21Labs`, `Amazon`.
|
|
6470
|
+
*/
|
|
6471
|
+
bedrockProvider: pulumi.Input<string>;
|
|
6472
|
+
}
|
|
6473
|
+
export interface ModelServingConfigServedEntityExternalModelAnthropicConfig {
|
|
6474
|
+
/**
|
|
6475
|
+
* The Databricks secret key reference for an Anthropic API key.
|
|
6476
|
+
* The Databricks secret key reference for an Anthropic API key.
|
|
6477
|
+
*/
|
|
6478
|
+
anthropicApiKey: pulumi.Input<string>;
|
|
6479
|
+
}
|
|
6480
|
+
export interface ModelServingConfigServedEntityExternalModelCohereConfig {
|
|
6481
|
+
/**
|
|
6482
|
+
* The Databricks secret key reference for a Cohere API key.
|
|
6483
|
+
*/
|
|
6484
|
+
cohereApiKey: pulumi.Input<string>;
|
|
6485
|
+
}
|
|
6486
|
+
export interface ModelServingConfigServedEntityExternalModelDatabricksModelServingConfig {
|
|
6487
|
+
/**
|
|
6488
|
+
* The Databricks secret key reference for a Databricks API token that corresponds to a user or service principal with Can Query access to the model serving endpoint pointed to by this external model.
|
|
6489
|
+
*/
|
|
6490
|
+
databricksApiToken: pulumi.Input<string>;
|
|
6491
|
+
/**
|
|
6492
|
+
* The URL of the Databricks workspace containing the model serving endpoint pointed to by this external model.
|
|
6493
|
+
*/
|
|
6494
|
+
databricksWorkspaceUrl: pulumi.Input<string>;
|
|
6495
|
+
}
|
|
6496
|
+
export interface ModelServingConfigServedEntityExternalModelOpenaiConfig {
|
|
6497
|
+
/**
|
|
6498
|
+
* This is the base URL for the OpenAI API (default: "https://api.openai.com/v1"). For Azure OpenAI, this field is required, and is the base URL for the Azure OpenAI API service provided by Azure.
|
|
6499
|
+
*/
|
|
6500
|
+
openaiApiBase?: pulumi.Input<string>;
|
|
6501
|
+
/**
|
|
6502
|
+
* The Databricks secret key reference for an OpenAI or Azure OpenAI API key.
|
|
6503
|
+
*/
|
|
6504
|
+
openaiApiKey: pulumi.Input<string>;
|
|
6505
|
+
/**
|
|
6506
|
+
* This is an optional field to specify the type of OpenAI API to use. For Azure OpenAI, this field is required, and adjust this parameter to represent the preferred security access validation protocol. For access token validation, use azure. For authentication using Azure Active Directory (Azure AD) use, azuread.
|
|
6507
|
+
*/
|
|
6508
|
+
openaiApiType?: pulumi.Input<string>;
|
|
6509
|
+
/**
|
|
6510
|
+
* This is an optional field to specify the OpenAI API version. For Azure OpenAI, this field is required, and is the version of the Azure OpenAI service to utilize, specified by a date.
|
|
6511
|
+
*/
|
|
6512
|
+
openaiApiVersion?: pulumi.Input<string>;
|
|
6513
|
+
/**
|
|
6514
|
+
* This field is only required for Azure OpenAI and is the name of the deployment resource for the Azure OpenAI service.
|
|
6515
|
+
*/
|
|
6516
|
+
openaiDeploymentName?: pulumi.Input<string>;
|
|
6517
|
+
/**
|
|
6518
|
+
* This is an optional field to specify the organization in OpenAI or Azure OpenAI.
|
|
6519
|
+
*/
|
|
6520
|
+
openaiOrganization?: pulumi.Input<string>;
|
|
6521
|
+
}
|
|
6522
|
+
export interface ModelServingConfigServedEntityExternalModelPalmConfig {
|
|
6523
|
+
/**
|
|
6524
|
+
* The Databricks secret key reference for a PaLM API key.
|
|
6525
|
+
*/
|
|
6526
|
+
palmApiKey: pulumi.Input<string>;
|
|
6527
|
+
}
|
|
6212
6528
|
export interface ModelServingConfigServedModel {
|
|
6213
6529
|
/**
|
|
6214
6530
|
* a map of environment variable name/values that will be used for serving this model. Environment variables may refer to Databricks secrets using the standard syntax: `{{secrets/secret_scope/secret_key}}`.
|
|
@@ -6233,11 +6549,11 @@ export interface ModelServingConfigServedModel {
|
|
|
6233
6549
|
*/
|
|
6234
6550
|
name?: pulumi.Input<string>;
|
|
6235
6551
|
/**
|
|
6236
|
-
* Whether the compute resources for the served model should scale down to zero. If scale-to-zero is enabled, the lower bound of the provisioned concurrency for each workload size will be 0. The default value is `true`.
|
|
6552
|
+
* Whether the compute resources for the served model should scale down to zero. If `scale-to-zero` is enabled, the lower bound of the provisioned concurrency for each workload size will be 0. The default value is `true`.
|
|
6237
6553
|
*/
|
|
6238
6554
|
scaleToZeroEnabled?: pulumi.Input<boolean>;
|
|
6239
6555
|
/**
|
|
6240
|
-
* The workload size of the served model. The workload size corresponds to a range of provisioned concurrency that the compute will autoscale between. A single unit of provisioned concurrency can process one request at a time. Valid workload sizes are
|
|
6556
|
+
* The workload size of the served model. The workload size corresponds to a range of provisioned concurrency that the compute will autoscale 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).
|
|
6241
6557
|
*/
|
|
6242
6558
|
workloadSize: pulumi.Input<string>;
|
|
6243
6559
|
/**
|
|
@@ -6247,14 +6563,11 @@ export interface ModelServingConfigServedModel {
|
|
|
6247
6563
|
}
|
|
6248
6564
|
export interface ModelServingConfigTrafficConfig {
|
|
6249
6565
|
/**
|
|
6250
|
-
* Each block represents a route that defines traffic to each served
|
|
6566
|
+
* Each block represents a route that defines traffic to each served entity. Each `servedEntity` block needs to have a corresponding `routes` block.
|
|
6251
6567
|
*/
|
|
6252
6568
|
routes?: pulumi.Input<pulumi.Input<inputs.ModelServingConfigTrafficConfigRoute>[]>;
|
|
6253
6569
|
}
|
|
6254
6570
|
export interface ModelServingConfigTrafficConfigRoute {
|
|
6255
|
-
/**
|
|
6256
|
-
* The name of the served model this route configures traffic for. This needs to match the name of a `servedModels` block
|
|
6257
|
-
*/
|
|
6258
6571
|
servedModelName: pulumi.Input<string>;
|
|
6259
6572
|
/**
|
|
6260
6573
|
* The percentage of endpoint traffic to send to this route. It must be an integer between 0 and 100 inclusive.
|
|
@@ -6262,12 +6575,27 @@ export interface ModelServingConfigTrafficConfigRoute {
|
|
|
6262
6575
|
trafficPercentage: pulumi.Input<number>;
|
|
6263
6576
|
}
|
|
6264
6577
|
export interface ModelServingRateLimit {
|
|
6578
|
+
/**
|
|
6579
|
+
* Used to specify how many calls are allowed for a key within the renewal_period.
|
|
6580
|
+
*/
|
|
6265
6581
|
calls: pulumi.Input<number>;
|
|
6582
|
+
/**
|
|
6583
|
+
* Key field for a serving endpoint rate limit. Currently, only `user` and `endpoint` are supported, with `endpoint` being the default if not specified.
|
|
6584
|
+
*/
|
|
6266
6585
|
key?: pulumi.Input<string>;
|
|
6586
|
+
/**
|
|
6587
|
+
* Renewal period field for a serving endpoint rate limit. Currently, only `minute` is supported.
|
|
6588
|
+
*/
|
|
6267
6589
|
renewalPeriod: pulumi.Input<string>;
|
|
6268
6590
|
}
|
|
6269
6591
|
export interface ModelServingTag {
|
|
6592
|
+
/**
|
|
6593
|
+
* The key field for a tag.
|
|
6594
|
+
*/
|
|
6270
6595
|
key: pulumi.Input<string>;
|
|
6596
|
+
/**
|
|
6597
|
+
* The value field for a tag.
|
|
6598
|
+
*/
|
|
6271
6599
|
value?: pulumi.Input<string>;
|
|
6272
6600
|
}
|
|
6273
6601
|
export interface MountAbfs {
|
|
@@ -6422,6 +6750,92 @@ export interface MwsWorkspacesToken {
|
|
|
6422
6750
|
tokenId?: pulumi.Input<string>;
|
|
6423
6751
|
tokenValue?: pulumi.Input<string>;
|
|
6424
6752
|
}
|
|
6753
|
+
export interface OnlineTableSpec {
|
|
6754
|
+
/**
|
|
6755
|
+
* Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of the source table upon initialization and does not process any change data feeds (CDFs) afterwards. The pipeline can still be manually triggered afterwards, but it always perform a full copy of the source table and there are no incremental updates. This mode is useful for syncing views or tables without CDFs to online tables. Note that the full-copy pipeline only supports "triggered" scheduling policy.
|
|
6756
|
+
*/
|
|
6757
|
+
performFullCopy?: pulumi.Input<boolean>;
|
|
6758
|
+
/**
|
|
6759
|
+
* ID of the associated Delta Live Table pipeline.
|
|
6760
|
+
*/
|
|
6761
|
+
pipelineId?: pulumi.Input<string>;
|
|
6762
|
+
/**
|
|
6763
|
+
* list of the columns comprising the primary key.
|
|
6764
|
+
*/
|
|
6765
|
+
primaryKeyColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6766
|
+
/**
|
|
6767
|
+
* empty block that specifies that pipeline runs continuously after generating the initial data. Conflicts with `runTriggered`.
|
|
6768
|
+
*/
|
|
6769
|
+
runContinuously?: pulumi.Input<inputs.OnlineTableSpecRunContinuously>;
|
|
6770
|
+
/**
|
|
6771
|
+
* empty block that specifies that pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers).
|
|
6772
|
+
*/
|
|
6773
|
+
runTriggered?: pulumi.Input<inputs.OnlineTableSpecRunTriggered>;
|
|
6774
|
+
/**
|
|
6775
|
+
* full name of the source table.
|
|
6776
|
+
*/
|
|
6777
|
+
sourceTableFullName?: pulumi.Input<string>;
|
|
6778
|
+
/**
|
|
6779
|
+
* Time series key to deduplicate (tie-break) rows with the same primary key.
|
|
6780
|
+
*/
|
|
6781
|
+
timeseriesKey?: pulumi.Input<string>;
|
|
6782
|
+
}
|
|
6783
|
+
export interface OnlineTableSpecRunContinuously {
|
|
6784
|
+
}
|
|
6785
|
+
export interface OnlineTableSpecRunTriggered {
|
|
6786
|
+
}
|
|
6787
|
+
export interface OnlineTableStatus {
|
|
6788
|
+
continuousUpdateStatus?: pulumi.Input<inputs.OnlineTableStatusContinuousUpdateStatus>;
|
|
6789
|
+
/**
|
|
6790
|
+
* The state of the online table.
|
|
6791
|
+
*/
|
|
6792
|
+
detailedState?: pulumi.Input<string>;
|
|
6793
|
+
failedStatus?: pulumi.Input<inputs.OnlineTableStatusFailedStatus>;
|
|
6794
|
+
/**
|
|
6795
|
+
* A text description of the current state of the online table.
|
|
6796
|
+
*/
|
|
6797
|
+
message?: pulumi.Input<string>;
|
|
6798
|
+
provisioningStatus?: pulumi.Input<inputs.OnlineTableStatusProvisioningStatus>;
|
|
6799
|
+
triggeredUpdateStatus?: pulumi.Input<inputs.OnlineTableStatusTriggeredUpdateStatus>;
|
|
6800
|
+
}
|
|
6801
|
+
export interface OnlineTableStatusContinuousUpdateStatus {
|
|
6802
|
+
initialPipelineSyncProgress?: pulumi.Input<inputs.OnlineTableStatusContinuousUpdateStatusInitialPipelineSyncProgress>;
|
|
6803
|
+
lastProcessedCommitVersion?: pulumi.Input<number>;
|
|
6804
|
+
timestamp?: pulumi.Input<string>;
|
|
6805
|
+
}
|
|
6806
|
+
export interface OnlineTableStatusContinuousUpdateStatusInitialPipelineSyncProgress {
|
|
6807
|
+
estimatedCompletionTimeSeconds?: pulumi.Input<number>;
|
|
6808
|
+
latestVersionCurrentlyProcessing?: pulumi.Input<number>;
|
|
6809
|
+
syncProgressCompletion?: pulumi.Input<number>;
|
|
6810
|
+
syncedRowCount?: pulumi.Input<number>;
|
|
6811
|
+
totalRowCount?: pulumi.Input<number>;
|
|
6812
|
+
}
|
|
6813
|
+
export interface OnlineTableStatusFailedStatus {
|
|
6814
|
+
lastProcessedCommitVersion?: pulumi.Input<number>;
|
|
6815
|
+
timestamp?: pulumi.Input<string>;
|
|
6816
|
+
}
|
|
6817
|
+
export interface OnlineTableStatusProvisioningStatus {
|
|
6818
|
+
initialPipelineSyncProgress?: pulumi.Input<inputs.OnlineTableStatusProvisioningStatusInitialPipelineSyncProgress>;
|
|
6819
|
+
}
|
|
6820
|
+
export interface OnlineTableStatusProvisioningStatusInitialPipelineSyncProgress {
|
|
6821
|
+
estimatedCompletionTimeSeconds?: pulumi.Input<number>;
|
|
6822
|
+
latestVersionCurrentlyProcessing?: pulumi.Input<number>;
|
|
6823
|
+
syncProgressCompletion?: pulumi.Input<number>;
|
|
6824
|
+
syncedRowCount?: pulumi.Input<number>;
|
|
6825
|
+
totalRowCount?: pulumi.Input<number>;
|
|
6826
|
+
}
|
|
6827
|
+
export interface OnlineTableStatusTriggeredUpdateStatus {
|
|
6828
|
+
lastProcessedCommitVersion?: pulumi.Input<number>;
|
|
6829
|
+
timestamp?: pulumi.Input<string>;
|
|
6830
|
+
triggeredUpdateProgress?: pulumi.Input<inputs.OnlineTableStatusTriggeredUpdateStatusTriggeredUpdateProgress>;
|
|
6831
|
+
}
|
|
6832
|
+
export interface OnlineTableStatusTriggeredUpdateStatusTriggeredUpdateProgress {
|
|
6833
|
+
estimatedCompletionTimeSeconds?: pulumi.Input<number>;
|
|
6834
|
+
latestVersionCurrentlyProcessing?: pulumi.Input<number>;
|
|
6835
|
+
syncProgressCompletion?: pulumi.Input<number>;
|
|
6836
|
+
syncedRowCount?: pulumi.Input<number>;
|
|
6837
|
+
totalRowCount?: pulumi.Input<number>;
|
|
6838
|
+
}
|
|
6425
6839
|
export interface PermissionsAccessControl {
|
|
6426
6840
|
/**
|
|
6427
6841
|
* name of the group. We recommend setting permissions on groups.
|
|
@@ -6652,7 +7066,7 @@ export interface ShareObject {
|
|
|
6652
7066
|
*/
|
|
6653
7067
|
comment?: pulumi.Input<string>;
|
|
6654
7068
|
/**
|
|
6655
|
-
* Type of the data object, currently `TABLE`, `SCHEMA`, `VOLUME`, `
|
|
7069
|
+
* Type of the data object, currently `TABLE`, `SCHEMA`, `VOLUME`, and `MODEL` are supported.
|
|
6656
7070
|
*/
|
|
6657
7071
|
dataObjectType: pulumi.Input<string>;
|
|
6658
7072
|
/**
|
|
@@ -6662,7 +7076,7 @@ export interface ShareObject {
|
|
|
6662
7076
|
*/
|
|
6663
7077
|
historyDataSharingStatus?: pulumi.Input<string>;
|
|
6664
7078
|
/**
|
|
6665
|
-
* Full name of the object, e.g. `catalog.schema.name` for a
|
|
7079
|
+
* Full name of the object, e.g. `catalog.schema.name` for a tables, volumes and models, or `catalog.schema` for schemas.
|
|
6666
7080
|
*/
|
|
6667
7081
|
name: pulumi.Input<string>;
|
|
6668
7082
|
partitions?: pulumi.Input<pulumi.Input<inputs.ShareObjectPartition>[]>;
|
|
@@ -6950,19 +7364,13 @@ export interface SqlWidgetPosition {
|
|
|
6950
7364
|
sizeY: pulumi.Input<number>;
|
|
6951
7365
|
}
|
|
6952
7366
|
export interface StorageCredentialAwsIamRole {
|
|
6953
|
-
/**
|
|
6954
|
-
* The external ID used in role assumption to prevent confused deputy problem.
|
|
6955
|
-
*/
|
|
6956
7367
|
externalId?: pulumi.Input<string>;
|
|
6957
7368
|
/**
|
|
6958
7369
|
* The Amazon Resource Name (ARN) of the AWS IAM role for S3 data access, of the form `arn:aws:iam::1234567890:role/MyRole-AJJHDSKSDF`
|
|
6959
|
-
*/
|
|
6960
|
-
roleArn: pulumi.Input<string>;
|
|
6961
|
-
/**
|
|
6962
|
-
* The Amazon Resource Name (ARN) of the AWS IAM user managed by Databricks. This is the identity that is going to assume the AWS IAM role.
|
|
6963
7370
|
*
|
|
6964
7371
|
* `azureManagedIdentity` optional configuration block for using managed identity as credential details for Azure (recommended over service principal):
|
|
6965
7372
|
*/
|
|
7373
|
+
roleArn: pulumi.Input<string>;
|
|
6966
7374
|
unityCatalogIamArn?: pulumi.Input<string>;
|
|
6967
7375
|
}
|
|
6968
7376
|
export interface StorageCredentialAzureManagedIdentity {
|
|
@@ -7030,7 +7438,101 @@ export interface VectorSearchEndpointEndpointStatus {
|
|
|
7030
7438
|
*/
|
|
7031
7439
|
message?: pulumi.Input<string>;
|
|
7032
7440
|
/**
|
|
7033
|
-
* Current state of the endpoint. Currently following values are supported: `PROVISIONING`, `ONLINE`, `OFFLINE`.
|
|
7441
|
+
* Current state of the endpoint. Currently following values are supported: `PROVISIONING`, `ONLINE`, and `OFFLINE`.
|
|
7034
7442
|
*/
|
|
7035
7443
|
state?: pulumi.Input<string>;
|
|
7036
7444
|
}
|
|
7445
|
+
export interface VectorSearchIndexDeltaSyncIndexSpec {
|
|
7446
|
+
/**
|
|
7447
|
+
* array of objects representing columns that contain the embedding source. Each entry consists of:
|
|
7448
|
+
*/
|
|
7449
|
+
embeddingSourceColumns?: pulumi.Input<pulumi.Input<inputs.VectorSearchIndexDeltaSyncIndexSpecEmbeddingSourceColumn>[]>;
|
|
7450
|
+
/**
|
|
7451
|
+
* array of objects representing columns that contain the embedding vectors. Each entry consists of:
|
|
7452
|
+
*/
|
|
7453
|
+
embeddingVectorColumns?: pulumi.Input<pulumi.Input<inputs.VectorSearchIndexDeltaSyncIndexSpecEmbeddingVectorColumn>[]>;
|
|
7454
|
+
/**
|
|
7455
|
+
* ID of the associated Delta Live Table pipeline.
|
|
7456
|
+
*/
|
|
7457
|
+
pipelineId?: pulumi.Input<string>;
|
|
7458
|
+
/**
|
|
7459
|
+
* Pipeline execution mode. Possible values are:
|
|
7460
|
+
*/
|
|
7461
|
+
pipelineType?: pulumi.Input<string>;
|
|
7462
|
+
/**
|
|
7463
|
+
* The name of the source table.
|
|
7464
|
+
*/
|
|
7465
|
+
sourceTable?: pulumi.Input<string>;
|
|
7466
|
+
}
|
|
7467
|
+
export interface VectorSearchIndexDeltaSyncIndexSpecEmbeddingSourceColumn {
|
|
7468
|
+
/**
|
|
7469
|
+
* The name of the embedding model endpoint
|
|
7470
|
+
*/
|
|
7471
|
+
embeddingModelEndpointName?: pulumi.Input<string>;
|
|
7472
|
+
/**
|
|
7473
|
+
* The name of the column.
|
|
7474
|
+
*/
|
|
7475
|
+
name?: pulumi.Input<string>;
|
|
7476
|
+
}
|
|
7477
|
+
export interface VectorSearchIndexDeltaSyncIndexSpecEmbeddingVectorColumn {
|
|
7478
|
+
/**
|
|
7479
|
+
* Dimension of the embedding vector.
|
|
7480
|
+
*/
|
|
7481
|
+
embeddingDimension?: pulumi.Input<number>;
|
|
7482
|
+
/**
|
|
7483
|
+
* The name of the column.
|
|
7484
|
+
*/
|
|
7485
|
+
name?: pulumi.Input<string>;
|
|
7486
|
+
}
|
|
7487
|
+
export interface VectorSearchIndexDirectAccessIndexSpec {
|
|
7488
|
+
/**
|
|
7489
|
+
* array of objects representing columns that contain the embedding source. Each entry consists of:
|
|
7490
|
+
*/
|
|
7491
|
+
embeddingSourceColumns?: pulumi.Input<pulumi.Input<inputs.VectorSearchIndexDirectAccessIndexSpecEmbeddingSourceColumn>[]>;
|
|
7492
|
+
/**
|
|
7493
|
+
* array of objects representing columns that contain the embedding vectors. Each entry consists of:
|
|
7494
|
+
*/
|
|
7495
|
+
embeddingVectorColumns?: pulumi.Input<pulumi.Input<inputs.VectorSearchIndexDirectAccessIndexSpecEmbeddingVectorColumn>[]>;
|
|
7496
|
+
/**
|
|
7497
|
+
* The schema of the index in JSON format. Check the [API documentation](https://docs.databricks.com/api/workspace/vectorsearchindexes/createindex#direct_access_index_spec-schema_json) for a list of supported data types.
|
|
7498
|
+
*/
|
|
7499
|
+
schemaJson?: pulumi.Input<string>;
|
|
7500
|
+
}
|
|
7501
|
+
export interface VectorSearchIndexDirectAccessIndexSpecEmbeddingSourceColumn {
|
|
7502
|
+
/**
|
|
7503
|
+
* The name of the embedding model endpoint
|
|
7504
|
+
*/
|
|
7505
|
+
embeddingModelEndpointName?: pulumi.Input<string>;
|
|
7506
|
+
/**
|
|
7507
|
+
* The name of the column.
|
|
7508
|
+
*/
|
|
7509
|
+
name?: pulumi.Input<string>;
|
|
7510
|
+
}
|
|
7511
|
+
export interface VectorSearchIndexDirectAccessIndexSpecEmbeddingVectorColumn {
|
|
7512
|
+
/**
|
|
7513
|
+
* Dimension of the embedding vector.
|
|
7514
|
+
*/
|
|
7515
|
+
embeddingDimension?: pulumi.Input<number>;
|
|
7516
|
+
/**
|
|
7517
|
+
* The name of the column.
|
|
7518
|
+
*/
|
|
7519
|
+
name?: pulumi.Input<string>;
|
|
7520
|
+
}
|
|
7521
|
+
export interface VectorSearchIndexStatus {
|
|
7522
|
+
/**
|
|
7523
|
+
* Index API Url to be used to perform operations on the index
|
|
7524
|
+
*/
|
|
7525
|
+
indexUrl?: pulumi.Input<string>;
|
|
7526
|
+
/**
|
|
7527
|
+
* Number of rows indexed
|
|
7528
|
+
*/
|
|
7529
|
+
indexedRowCount?: pulumi.Input<number>;
|
|
7530
|
+
/**
|
|
7531
|
+
* Message associated with the index status
|
|
7532
|
+
*/
|
|
7533
|
+
message?: pulumi.Input<string>;
|
|
7534
|
+
/**
|
|
7535
|
+
* Whether the index is ready for search
|
|
7536
|
+
*/
|
|
7537
|
+
ready?: pulumi.Input<boolean>;
|
|
7538
|
+
}
|