@pulumi/databricks 1.50.0-alpha.1726291927 → 1.50.0-alpha.1726827873
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/accessControlRuleSet.d.ts +1 -1
- package/accessControlRuleSet.js +1 -1
- package/artifactAllowlist.d.ts +1 -1
- package/artifactAllowlist.js +1 -1
- package/catalog.d.ts +1 -1
- package/catalog.js +1 -1
- package/cluster.d.ts +18 -6
- package/cluster.js +2 -0
- package/cluster.js.map +1 -1
- package/connection.d.ts +4 -4
- package/connection.js +1 -1
- package/defaultNamespaceSetting.d.ts +1 -1
- package/defaultNamespaceSetting.js +1 -1
- package/externalLocation.d.ts +1 -1
- package/externalLocation.js +1 -1
- package/getAwsCrossAccountPolicy.d.ts +2 -2
- package/getAwsCrossAccountPolicy.js +2 -2
- package/getAwsUnityCatalogAssumeRolePolicy.d.ts +2 -2
- package/getAwsUnityCatalogAssumeRolePolicy.js +2 -2
- package/getCatalog.d.ts +2 -2
- package/getCatalog.js +2 -2
- package/getCatalogs.d.ts +2 -2
- package/getCatalogs.js +2 -2
- package/getClusters.d.ts +11 -0
- package/getClusters.js +1 -0
- package/getClusters.js.map +1 -1
- package/getExternalLocation.d.ts +2 -2
- package/getExternalLocation.js +2 -2
- package/getExternalLocations.d.ts +2 -2
- package/getExternalLocations.js +2 -2
- package/getMetastore.d.ts +2 -2
- package/getMetastore.js +2 -2
- package/getMetastores.d.ts +2 -2
- package/getMetastores.js +2 -2
- package/getSchemas.d.ts +2 -2
- package/getSchemas.js +2 -2
- package/getStorageCredential.d.ts +2 -2
- package/getStorageCredential.js +2 -2
- package/getStorageCredentials.d.ts +2 -2
- package/getStorageCredentials.js +2 -2
- package/getTable.d.ts +2 -2
- package/getTable.js +2 -2
- package/getTables.d.ts +2 -2
- package/getTables.js +2 -2
- package/getVolumes.d.ts +2 -2
- package/getVolumes.js +2 -2
- package/metastore.d.ts +1 -1
- package/metastore.js +1 -1
- package/metastoreAssignment.d.ts +1 -1
- package/metastoreAssignment.js +1 -1
- package/metastoreDataAccess.d.ts +1 -1
- package/metastoreDataAccess.js +1 -1
- package/metastoreProvider.d.ts +1 -1
- package/metastoreProvider.js +1 -1
- package/mwsCredentials.d.ts +3 -4
- package/mwsCredentials.js +0 -1
- package/mwsCredentials.js.map +1 -1
- package/onlineTable.d.ts +1 -1
- package/onlineTable.js +1 -1
- package/package.json +2 -2
- package/recipient.d.ts +1 -1
- package/recipient.js +1 -1
- package/registeredModel.d.ts +1 -1
- package/registeredModel.js +1 -1
- package/restrictWorkspaceAdminsSetting.d.ts +1 -1
- package/restrictWorkspaceAdminsSetting.js +1 -1
- package/schema.d.ts +1 -1
- package/schema.js +1 -1
- package/share.d.ts +16 -1
- package/share.js +11 -1
- package/share.js.map +1 -1
- package/sqlTable.d.ts +7 -1
- package/sqlTable.js +2 -0
- package/sqlTable.js.map +1 -1
- package/storageCredential.d.ts +1 -1
- package/storageCredential.js +1 -1
- package/systemSchema.d.ts +1 -1
- package/systemSchema.js +1 -1
- package/types/input.d.ts +72 -22
- package/types/output.d.ts +49 -19
- package/vectorSearchEndpoint.d.ts +9 -9
- package/vectorSearchEndpoint.js +3 -3
- package/vectorSearchIndex.d.ts +12 -12
- package/vectorSearchIndex.js +3 -3
- package/volume.d.ts +1 -1
- package/volume.js +1 -1
- package/workspaceBinding.d.ts +4 -4
- package/workspaceBinding.js +1 -1
package/sqlTable.d.ts
CHANGED
|
@@ -52,6 +52,9 @@ export declare class SqlTable extends pulumi.CustomResource {
|
|
|
52
52
|
* External tables are supported in multiple data source formats. The string constants identifying these formats are `DELTA`, `CSV`, `JSON`, `AVRO`, `PARQUET`, `ORC`, `TEXT`. Change forces creation of a new resource. Not supported for `MANAGED` tables or `VIEW`.
|
|
53
53
|
*/
|
|
54
54
|
readonly dataSourceFormat: pulumi.Output<string | undefined>;
|
|
55
|
+
readonly effectiveProperties: pulumi.Output<{
|
|
56
|
+
[key: string]: string;
|
|
57
|
+
}>;
|
|
55
58
|
/**
|
|
56
59
|
* Name of table relative to parent catalog and schema. Change forces creation of a new resource.
|
|
57
60
|
*/
|
|
@@ -75,7 +78,7 @@ export declare class SqlTable extends pulumi.CustomResource {
|
|
|
75
78
|
*/
|
|
76
79
|
readonly properties: pulumi.Output<{
|
|
77
80
|
[key: string]: string;
|
|
78
|
-
}>;
|
|
81
|
+
} | undefined>;
|
|
79
82
|
/**
|
|
80
83
|
* Name of parent Schema relative to parent Catalog. Change forces creation of a new resource.
|
|
81
84
|
*/
|
|
@@ -131,6 +134,9 @@ export interface SqlTableState {
|
|
|
131
134
|
* External tables are supported in multiple data source formats. The string constants identifying these formats are `DELTA`, `CSV`, `JSON`, `AVRO`, `PARQUET`, `ORC`, `TEXT`. Change forces creation of a new resource. Not supported for `MANAGED` tables or `VIEW`.
|
|
132
135
|
*/
|
|
133
136
|
dataSourceFormat?: pulumi.Input<string>;
|
|
137
|
+
effectiveProperties?: pulumi.Input<{
|
|
138
|
+
[key: string]: pulumi.Input<string>;
|
|
139
|
+
}>;
|
|
134
140
|
/**
|
|
135
141
|
* Name of table relative to parent catalog and schema. Change forces creation of a new resource.
|
|
136
142
|
*/
|
package/sqlTable.js
CHANGED
|
@@ -56,6 +56,7 @@ class SqlTable extends pulumi.CustomResource {
|
|
|
56
56
|
resourceInputs["columns"] = state ? state.columns : undefined;
|
|
57
57
|
resourceInputs["comment"] = state ? state.comment : undefined;
|
|
58
58
|
resourceInputs["dataSourceFormat"] = state ? state.dataSourceFormat : undefined;
|
|
59
|
+
resourceInputs["effectiveProperties"] = state ? state.effectiveProperties : undefined;
|
|
59
60
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
60
61
|
resourceInputs["options"] = state ? state.options : undefined;
|
|
61
62
|
resourceInputs["owner"] = state ? state.owner : undefined;
|
|
@@ -96,6 +97,7 @@ class SqlTable extends pulumi.CustomResource {
|
|
|
96
97
|
resourceInputs["tableType"] = args ? args.tableType : undefined;
|
|
97
98
|
resourceInputs["viewDefinition"] = args ? args.viewDefinition : undefined;
|
|
98
99
|
resourceInputs["warehouseId"] = args ? args.warehouseId : undefined;
|
|
100
|
+
resourceInputs["effectiveProperties"] = undefined /*out*/;
|
|
99
101
|
}
|
|
100
102
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
101
103
|
super(SqlTable.__pulumiType, name, resourceInputs, opts);
|
package/sqlTable.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sqlTable.js","sourceRoot":"","sources":["../sqlTable.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"sqlTable.js","sourceRoot":"","sources":["../sqlTable.ts"],"names":[],"mappings":"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"}
|
package/storageCredential.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
-
* > **Note** This resource
|
|
5
|
+
* > **Note** This resource can be used with an account or workspace-level provider.
|
|
6
6
|
*
|
|
7
7
|
* To work with external tables, Unity Catalog introduces two new objects to access and work with external cloud storage:
|
|
8
8
|
*
|
package/storageCredential.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.StorageCredential = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* > **Note** This resource
|
|
9
|
+
* > **Note** This resource can be used with an account or workspace-level provider.
|
|
10
10
|
*
|
|
11
11
|
* To work with external tables, Unity Catalog introduces two new objects to access and work with external cloud storage:
|
|
12
12
|
*
|
package/systemSchema.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* > **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
|
|
4
4
|
*
|
|
5
|
-
* > **Note** This resource
|
|
5
|
+
* > **Note** This resource can only be used with a workspace-level provider!
|
|
6
6
|
*
|
|
7
7
|
* Manages system tables enablement. System tables are a Databricks-hosted analytical store of your account’s operational data. System tables can be used for historical observability across your account. System tables must be enabled by an account admin.
|
|
8
8
|
*
|
package/systemSchema.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* > **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
|
|
10
10
|
*
|
|
11
|
-
* > **Note** This resource
|
|
11
|
+
* > **Note** This resource can only be used with a workspace-level provider!
|
|
12
12
|
*
|
|
13
13
|
* Manages system tables enablement. System tables are a Databricks-hosted analytical store of your account’s operational data. System tables can be used for historical observability across your account. System tables must be enabled by an account admin.
|
|
14
14
|
*
|
package/types/input.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export interface ArtifactAllowlistArtifactMatcher {
|
|
|
29
29
|
}
|
|
30
30
|
export interface AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspace {
|
|
31
31
|
canToggle?: pulumi.Input<boolean>;
|
|
32
|
-
enabled
|
|
32
|
+
enabled: pulumi.Input<boolean>;
|
|
33
33
|
enablementDetails?: pulumi.Input<inputs.AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceEnablementDetails>;
|
|
34
34
|
maintenanceWindow?: pulumi.Input<inputs.AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindow>;
|
|
35
35
|
restartEvenIfNoUpdatesAvailable?: pulumi.Input<boolean>;
|
|
@@ -43,13 +43,13 @@ export interface AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWor
|
|
|
43
43
|
weekDayBasedSchedule?: pulumi.Input<inputs.AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedSchedule>;
|
|
44
44
|
}
|
|
45
45
|
export interface AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedSchedule {
|
|
46
|
-
dayOfWeek
|
|
47
|
-
frequency
|
|
46
|
+
dayOfWeek: pulumi.Input<string>;
|
|
47
|
+
frequency: pulumi.Input<string>;
|
|
48
48
|
windowStartTime?: pulumi.Input<inputs.AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime>;
|
|
49
49
|
}
|
|
50
50
|
export interface AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime {
|
|
51
|
-
hours
|
|
52
|
-
minutes
|
|
51
|
+
hours: pulumi.Input<number>;
|
|
52
|
+
minutes: pulumi.Input<number>;
|
|
53
53
|
}
|
|
54
54
|
export interface ClusterAutoscale {
|
|
55
55
|
/**
|
|
@@ -445,8 +445,8 @@ export interface ClusterWorkloadTypeClients {
|
|
|
445
445
|
notebooks?: pulumi.Input<boolean>;
|
|
446
446
|
}
|
|
447
447
|
export interface ComplianceSecurityProfileWorkspaceSettingComplianceSecurityProfileWorkspace {
|
|
448
|
-
complianceStandards
|
|
449
|
-
isEnabled
|
|
448
|
+
complianceStandards: pulumi.Input<pulumi.Input<string>[]>;
|
|
449
|
+
isEnabled: pulumi.Input<boolean>;
|
|
450
450
|
}
|
|
451
451
|
export interface DefaultNamespaceSettingNamespace {
|
|
452
452
|
/**
|
|
@@ -455,7 +455,7 @@ export interface DefaultNamespaceSettingNamespace {
|
|
|
455
455
|
value?: pulumi.Input<string>;
|
|
456
456
|
}
|
|
457
457
|
export interface EnhancedSecurityMonitoringWorkspaceSettingEnhancedSecurityMonitoringWorkspace {
|
|
458
|
-
isEnabled
|
|
458
|
+
isEnabled: pulumi.Input<boolean>;
|
|
459
459
|
}
|
|
460
460
|
export interface ExternalLocationEncryptionDetails {
|
|
461
461
|
sseEncryptionDetails?: pulumi.Input<inputs.ExternalLocationEncryptionDetailsSseEncryptionDetails>;
|
|
@@ -1616,6 +1616,42 @@ export interface GetClusterClusterInfoWorkloadTypeClientsArgs {
|
|
|
1616
1616
|
jobs?: pulumi.Input<boolean>;
|
|
1617
1617
|
notebooks?: pulumi.Input<boolean>;
|
|
1618
1618
|
}
|
|
1619
|
+
export interface GetClustersFilterBy {
|
|
1620
|
+
/**
|
|
1621
|
+
* List of cluster sources to filter by. Possible values are `API`, `JOB`, `MODELS`, `PIPELINE`, `PIPELINE_MAINTENANCE`, `SQL`, and `UI`.
|
|
1622
|
+
*/
|
|
1623
|
+
clusterSources?: string[];
|
|
1624
|
+
/**
|
|
1625
|
+
* List of cluster states to filter by. Possible values are `RUNNING`, `PENDING`, `RESIZING`, `RESTARTING`, `TERMINATING`, `TERMINATED`, `ERROR`, and `UNKNOWN`.
|
|
1626
|
+
*/
|
|
1627
|
+
clusterStates?: string[];
|
|
1628
|
+
/**
|
|
1629
|
+
* Whether to filter by pinned clusters.
|
|
1630
|
+
*/
|
|
1631
|
+
isPinned?: boolean;
|
|
1632
|
+
/**
|
|
1633
|
+
* Filter by databricks.ClusterPolicy id.
|
|
1634
|
+
*/
|
|
1635
|
+
policyId?: string;
|
|
1636
|
+
}
|
|
1637
|
+
export interface GetClustersFilterByArgs {
|
|
1638
|
+
/**
|
|
1639
|
+
* List of cluster sources to filter by. Possible values are `API`, `JOB`, `MODELS`, `PIPELINE`, `PIPELINE_MAINTENANCE`, `SQL`, and `UI`.
|
|
1640
|
+
*/
|
|
1641
|
+
clusterSources?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1642
|
+
/**
|
|
1643
|
+
* List of cluster states to filter by. Possible values are `RUNNING`, `PENDING`, `RESIZING`, `RESTARTING`, `TERMINATING`, `TERMINATED`, `ERROR`, and `UNKNOWN`.
|
|
1644
|
+
*/
|
|
1645
|
+
clusterStates?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1646
|
+
/**
|
|
1647
|
+
* Whether to filter by pinned clusters.
|
|
1648
|
+
*/
|
|
1649
|
+
isPinned?: pulumi.Input<boolean>;
|
|
1650
|
+
/**
|
|
1651
|
+
* Filter by databricks.ClusterPolicy id.
|
|
1652
|
+
*/
|
|
1653
|
+
policyId?: pulumi.Input<string>;
|
|
1654
|
+
}
|
|
1619
1655
|
export interface GetCurrentMetastoreMetastoreInfo {
|
|
1620
1656
|
cloud?: string;
|
|
1621
1657
|
/**
|
|
@@ -3717,12 +3753,12 @@ export interface GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskArgs {
|
|
|
3717
3753
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlert {
|
|
3718
3754
|
alertId: string;
|
|
3719
3755
|
pauseSubscriptions?: boolean;
|
|
3720
|
-
subscriptions
|
|
3756
|
+
subscriptions?: inputs.GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlertSubscription[];
|
|
3721
3757
|
}
|
|
3722
3758
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlertArgs {
|
|
3723
3759
|
alertId: pulumi.Input<string>;
|
|
3724
3760
|
pauseSubscriptions?: pulumi.Input<boolean>;
|
|
3725
|
-
subscriptions
|
|
3761
|
+
subscriptions?: pulumi.Input<pulumi.Input<inputs.GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlertSubscriptionArgs>[]>;
|
|
3726
3762
|
}
|
|
3727
3763
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlertSubscription {
|
|
3728
3764
|
destinationId?: string;
|
|
@@ -4293,12 +4329,12 @@ export interface GetJobJobSettingsSettingsTaskSqlTaskArgs {
|
|
|
4293
4329
|
export interface GetJobJobSettingsSettingsTaskSqlTaskAlert {
|
|
4294
4330
|
alertId: string;
|
|
4295
4331
|
pauseSubscriptions?: boolean;
|
|
4296
|
-
subscriptions
|
|
4332
|
+
subscriptions?: inputs.GetJobJobSettingsSettingsTaskSqlTaskAlertSubscription[];
|
|
4297
4333
|
}
|
|
4298
4334
|
export interface GetJobJobSettingsSettingsTaskSqlTaskAlertArgs {
|
|
4299
4335
|
alertId: pulumi.Input<string>;
|
|
4300
4336
|
pauseSubscriptions?: pulumi.Input<boolean>;
|
|
4301
|
-
subscriptions
|
|
4337
|
+
subscriptions?: pulumi.Input<pulumi.Input<inputs.GetJobJobSettingsSettingsTaskSqlTaskAlertSubscriptionArgs>[]>;
|
|
4302
4338
|
}
|
|
4303
4339
|
export interface GetJobJobSettingsSettingsTaskSqlTaskAlertSubscription {
|
|
4304
4340
|
destinationId?: string;
|
|
@@ -4868,6 +4904,7 @@ export interface GetShareObject {
|
|
|
4868
4904
|
* Description about the object.
|
|
4869
4905
|
*/
|
|
4870
4906
|
comment?: string;
|
|
4907
|
+
content?: string;
|
|
4871
4908
|
/**
|
|
4872
4909
|
* Type of the object.
|
|
4873
4910
|
*/
|
|
@@ -4881,6 +4918,7 @@ export interface GetShareObject {
|
|
|
4881
4918
|
sharedAs?: string;
|
|
4882
4919
|
startVersion?: number;
|
|
4883
4920
|
status?: string;
|
|
4921
|
+
stringSharedAs?: string;
|
|
4884
4922
|
}
|
|
4885
4923
|
export interface GetShareObjectArgs {
|
|
4886
4924
|
addedAt?: pulumi.Input<number>;
|
|
@@ -4890,6 +4928,7 @@ export interface GetShareObjectArgs {
|
|
|
4890
4928
|
* Description about the object.
|
|
4891
4929
|
*/
|
|
4892
4930
|
comment?: pulumi.Input<string>;
|
|
4931
|
+
content?: pulumi.Input<string>;
|
|
4893
4932
|
/**
|
|
4894
4933
|
* Type of the object.
|
|
4895
4934
|
*/
|
|
@@ -4903,12 +4942,13 @@ export interface GetShareObjectArgs {
|
|
|
4903
4942
|
sharedAs?: pulumi.Input<string>;
|
|
4904
4943
|
startVersion?: pulumi.Input<number>;
|
|
4905
4944
|
status?: pulumi.Input<string>;
|
|
4945
|
+
stringSharedAs?: pulumi.Input<string>;
|
|
4906
4946
|
}
|
|
4907
4947
|
export interface GetShareObjectPartition {
|
|
4908
|
-
values
|
|
4948
|
+
values?: inputs.GetShareObjectPartitionValue[];
|
|
4909
4949
|
}
|
|
4910
4950
|
export interface GetShareObjectPartitionArgs {
|
|
4911
|
-
values
|
|
4951
|
+
values?: pulumi.Input<pulumi.Input<inputs.GetShareObjectPartitionValueArgs>[]>;
|
|
4912
4952
|
}
|
|
4913
4953
|
export interface GetShareObjectPartitionValue {
|
|
4914
4954
|
/**
|
|
@@ -7238,7 +7278,7 @@ export interface JobTaskForEachTaskTaskSqlTaskAlert {
|
|
|
7238
7278
|
/**
|
|
7239
7279
|
* a list of subscription blocks consisting out of one of the required fields: `userName` for user emails or `destinationId` - for Alert destination's identifier.
|
|
7240
7280
|
*/
|
|
7241
|
-
subscriptions
|
|
7281
|
+
subscriptions?: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskSqlTaskAlertSubscription>[]>;
|
|
7242
7282
|
}
|
|
7243
7283
|
export interface JobTaskForEachTaskTaskSqlTaskAlertSubscription {
|
|
7244
7284
|
destinationId?: pulumi.Input<string>;
|
|
@@ -7784,7 +7824,7 @@ export interface JobTaskSqlTaskAlert {
|
|
|
7784
7824
|
/**
|
|
7785
7825
|
* a list of subscription blocks consisting out of one of the required fields: `userName` for user emails or `destinationId` - for Alert destination's identifier.
|
|
7786
7826
|
*/
|
|
7787
|
-
subscriptions
|
|
7827
|
+
subscriptions?: pulumi.Input<pulumi.Input<inputs.JobTaskSqlTaskAlertSubscription>[]>;
|
|
7788
7828
|
}
|
|
7789
7829
|
export interface JobTaskSqlTaskAlertSubscription {
|
|
7790
7830
|
destinationId?: pulumi.Input<string>;
|
|
@@ -8460,6 +8500,14 @@ export interface ModelServingConfigServedModel {
|
|
|
8460
8500
|
* ARN of the instance profile that the served model will use to access AWS resources.
|
|
8461
8501
|
*/
|
|
8462
8502
|
instanceProfileArn?: pulumi.Input<string>;
|
|
8503
|
+
/**
|
|
8504
|
+
* The maximum tokens per second that the endpoint can scale up to.
|
|
8505
|
+
*/
|
|
8506
|
+
maxProvisionedThroughput?: pulumi.Input<number>;
|
|
8507
|
+
/**
|
|
8508
|
+
* The minimum tokens per second that the endpoint can scale down to.
|
|
8509
|
+
*/
|
|
8510
|
+
minProvisionedThroughput?: pulumi.Input<number>;
|
|
8463
8511
|
/**
|
|
8464
8512
|
* The name of the model in Databricks Model Registry to be served.
|
|
8465
8513
|
*/
|
|
@@ -8479,7 +8527,7 @@ export interface ModelServingConfigServedModel {
|
|
|
8479
8527
|
/**
|
|
8480
8528
|
* 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).
|
|
8481
8529
|
*/
|
|
8482
|
-
workloadSize
|
|
8530
|
+
workloadSize?: pulumi.Input<string>;
|
|
8483
8531
|
/**
|
|
8484
8532
|
* The workload type of the served model. The workload type selects which type of compute to use in the endpoint. For deep learning workloads, GPU acceleration is available by selecting workload types like `GPU_SMALL` and others. See documentation for all options. The default value is `CPU`.
|
|
8485
8533
|
*/
|
|
@@ -9323,6 +9371,7 @@ export interface ShareObject {
|
|
|
9323
9371
|
* Description about the object.
|
|
9324
9372
|
*/
|
|
9325
9373
|
comment?: pulumi.Input<string>;
|
|
9374
|
+
content?: pulumi.Input<string>;
|
|
9326
9375
|
/**
|
|
9327
9376
|
* Type of the data object, currently `TABLE`, `SCHEMA`, `VOLUME`, and `MODEL` are supported.
|
|
9328
9377
|
*/
|
|
@@ -9350,12 +9399,13 @@ export interface ShareObject {
|
|
|
9350
9399
|
* Status of the object, one of: `ACTIVE`, `PERMISSION_DENIED`.
|
|
9351
9400
|
*/
|
|
9352
9401
|
status?: pulumi.Input<string>;
|
|
9402
|
+
stringSharedAs?: pulumi.Input<string>;
|
|
9353
9403
|
}
|
|
9354
9404
|
export interface ShareObjectPartition {
|
|
9355
9405
|
/**
|
|
9356
9406
|
* The value of the partition column. When this value is not set, it means null value. When this field is set, field `recipientPropertyKey` can not be set.
|
|
9357
9407
|
*/
|
|
9358
|
-
values
|
|
9408
|
+
values?: pulumi.Input<pulumi.Input<inputs.ShareObjectPartitionValue>[]>;
|
|
9359
9409
|
}
|
|
9360
9410
|
export interface ShareObjectPartitionValue {
|
|
9361
9411
|
/**
|
|
@@ -9736,14 +9786,14 @@ export interface VectorSearchIndexDeltaSyncIndexSpec {
|
|
|
9736
9786
|
export interface VectorSearchIndexDeltaSyncIndexSpecEmbeddingSourceColumn {
|
|
9737
9787
|
embeddingModelEndpointName?: pulumi.Input<string>;
|
|
9738
9788
|
/**
|
|
9739
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
9789
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
9740
9790
|
*/
|
|
9741
9791
|
name?: pulumi.Input<string>;
|
|
9742
9792
|
}
|
|
9743
9793
|
export interface VectorSearchIndexDeltaSyncIndexSpecEmbeddingVectorColumn {
|
|
9744
9794
|
embeddingDimension?: pulumi.Input<number>;
|
|
9745
9795
|
/**
|
|
9746
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
9796
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
9747
9797
|
*/
|
|
9748
9798
|
name?: pulumi.Input<string>;
|
|
9749
9799
|
}
|
|
@@ -9761,14 +9811,14 @@ export interface VectorSearchIndexDirectAccessIndexSpec {
|
|
|
9761
9811
|
export interface VectorSearchIndexDirectAccessIndexSpecEmbeddingSourceColumn {
|
|
9762
9812
|
embeddingModelEndpointName?: pulumi.Input<string>;
|
|
9763
9813
|
/**
|
|
9764
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
9814
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
9765
9815
|
*/
|
|
9766
9816
|
name?: pulumi.Input<string>;
|
|
9767
9817
|
}
|
|
9768
9818
|
export interface VectorSearchIndexDirectAccessIndexSpecEmbeddingVectorColumn {
|
|
9769
9819
|
embeddingDimension?: pulumi.Input<number>;
|
|
9770
9820
|
/**
|
|
9771
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
9821
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
9772
9822
|
*/
|
|
9773
9823
|
name?: pulumi.Input<string>;
|
|
9774
9824
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export interface ArtifactAllowlistArtifactMatcher {
|
|
|
28
28
|
}
|
|
29
29
|
export interface AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspace {
|
|
30
30
|
canToggle?: boolean;
|
|
31
|
-
enabled
|
|
31
|
+
enabled: boolean;
|
|
32
32
|
enablementDetails: outputs.AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceEnablementDetails;
|
|
33
33
|
maintenanceWindow?: outputs.AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindow;
|
|
34
34
|
restartEvenIfNoUpdatesAvailable?: boolean;
|
|
@@ -42,13 +42,13 @@ export interface AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWor
|
|
|
42
42
|
weekDayBasedSchedule?: outputs.AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedSchedule;
|
|
43
43
|
}
|
|
44
44
|
export interface AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedSchedule {
|
|
45
|
-
dayOfWeek
|
|
46
|
-
frequency
|
|
45
|
+
dayOfWeek: string;
|
|
46
|
+
frequency: string;
|
|
47
47
|
windowStartTime?: outputs.AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime;
|
|
48
48
|
}
|
|
49
49
|
export interface AutomaticClusterUpdateWorkspaceSettingAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime {
|
|
50
|
-
hours
|
|
51
|
-
minutes
|
|
50
|
+
hours: number;
|
|
51
|
+
minutes: number;
|
|
52
52
|
}
|
|
53
53
|
export interface ClusterAutoscale {
|
|
54
54
|
/**
|
|
@@ -444,8 +444,8 @@ export interface ClusterWorkloadTypeClients {
|
|
|
444
444
|
notebooks?: boolean;
|
|
445
445
|
}
|
|
446
446
|
export interface ComplianceSecurityProfileWorkspaceSettingComplianceSecurityProfileWorkspace {
|
|
447
|
-
complianceStandards
|
|
448
|
-
isEnabled
|
|
447
|
+
complianceStandards: string[];
|
|
448
|
+
isEnabled: boolean;
|
|
449
449
|
}
|
|
450
450
|
export interface DefaultNamespaceSettingNamespace {
|
|
451
451
|
/**
|
|
@@ -454,7 +454,7 @@ export interface DefaultNamespaceSettingNamespace {
|
|
|
454
454
|
value?: string;
|
|
455
455
|
}
|
|
456
456
|
export interface EnhancedSecurityMonitoringWorkspaceSettingEnhancedSecurityMonitoringWorkspace {
|
|
457
|
-
isEnabled
|
|
457
|
+
isEnabled: boolean;
|
|
458
458
|
}
|
|
459
459
|
export interface ExternalLocationEncryptionDetails {
|
|
460
460
|
sseEncryptionDetails?: outputs.ExternalLocationEncryptionDetailsSseEncryptionDetails;
|
|
@@ -1039,6 +1039,24 @@ export interface GetClusterClusterInfoWorkloadTypeClients {
|
|
|
1039
1039
|
jobs?: boolean;
|
|
1040
1040
|
notebooks?: boolean;
|
|
1041
1041
|
}
|
|
1042
|
+
export interface GetClustersFilterBy {
|
|
1043
|
+
/**
|
|
1044
|
+
* List of cluster sources to filter by. Possible values are `API`, `JOB`, `MODELS`, `PIPELINE`, `PIPELINE_MAINTENANCE`, `SQL`, and `UI`.
|
|
1045
|
+
*/
|
|
1046
|
+
clusterSources?: string[];
|
|
1047
|
+
/**
|
|
1048
|
+
* List of cluster states to filter by. Possible values are `RUNNING`, `PENDING`, `RESIZING`, `RESTARTING`, `TERMINATING`, `TERMINATED`, `ERROR`, and `UNKNOWN`.
|
|
1049
|
+
*/
|
|
1050
|
+
clusterStates?: string[];
|
|
1051
|
+
/**
|
|
1052
|
+
* Whether to filter by pinned clusters.
|
|
1053
|
+
*/
|
|
1054
|
+
isPinned?: boolean;
|
|
1055
|
+
/**
|
|
1056
|
+
* Filter by databricks.ClusterPolicy id.
|
|
1057
|
+
*/
|
|
1058
|
+
policyId?: string;
|
|
1059
|
+
}
|
|
1042
1060
|
export interface GetCurrentMetastoreMetastoreInfo {
|
|
1043
1061
|
cloud?: string;
|
|
1044
1062
|
/**
|
|
@@ -2098,7 +2116,7 @@ export interface GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTask {
|
|
|
2098
2116
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlert {
|
|
2099
2117
|
alertId: string;
|
|
2100
2118
|
pauseSubscriptions?: boolean;
|
|
2101
|
-
subscriptions
|
|
2119
|
+
subscriptions?: outputs.GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlertSubscription[];
|
|
2102
2120
|
}
|
|
2103
2121
|
export interface GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlertSubscription {
|
|
2104
2122
|
destinationId?: string;
|
|
@@ -2386,7 +2404,7 @@ export interface GetJobJobSettingsSettingsTaskSqlTask {
|
|
|
2386
2404
|
export interface GetJobJobSettingsSettingsTaskSqlTaskAlert {
|
|
2387
2405
|
alertId: string;
|
|
2388
2406
|
pauseSubscriptions?: boolean;
|
|
2389
|
-
subscriptions
|
|
2407
|
+
subscriptions?: outputs.GetJobJobSettingsSettingsTaskSqlTaskAlertSubscription[];
|
|
2390
2408
|
}
|
|
2391
2409
|
export interface GetJobJobSettingsSettingsTaskSqlTaskAlertSubscription {
|
|
2392
2410
|
destinationId?: string;
|
|
@@ -2683,6 +2701,7 @@ export interface GetShareObject {
|
|
|
2683
2701
|
* Description about the object.
|
|
2684
2702
|
*/
|
|
2685
2703
|
comment?: string;
|
|
2704
|
+
content?: string;
|
|
2686
2705
|
/**
|
|
2687
2706
|
* Type of the object.
|
|
2688
2707
|
*/
|
|
@@ -2696,9 +2715,10 @@ export interface GetShareObject {
|
|
|
2696
2715
|
sharedAs?: string;
|
|
2697
2716
|
startVersion?: number;
|
|
2698
2717
|
status: string;
|
|
2718
|
+
stringSharedAs?: string;
|
|
2699
2719
|
}
|
|
2700
2720
|
export interface GetShareObjectPartition {
|
|
2701
|
-
values
|
|
2721
|
+
values?: outputs.GetShareObjectPartitionValue[];
|
|
2702
2722
|
}
|
|
2703
2723
|
export interface GetShareObjectPartitionValue {
|
|
2704
2724
|
/**
|
|
@@ -4651,7 +4671,7 @@ export interface JobTaskForEachTaskTaskSqlTaskAlert {
|
|
|
4651
4671
|
/**
|
|
4652
4672
|
* a list of subscription blocks consisting out of one of the required fields: `userName` for user emails or `destinationId` - for Alert destination's identifier.
|
|
4653
4673
|
*/
|
|
4654
|
-
subscriptions
|
|
4674
|
+
subscriptions?: outputs.JobTaskForEachTaskTaskSqlTaskAlertSubscription[];
|
|
4655
4675
|
}
|
|
4656
4676
|
export interface JobTaskForEachTaskTaskSqlTaskAlertSubscription {
|
|
4657
4677
|
destinationId?: string;
|
|
@@ -5197,7 +5217,7 @@ export interface JobTaskSqlTaskAlert {
|
|
|
5197
5217
|
/**
|
|
5198
5218
|
* a list of subscription blocks consisting out of one of the required fields: `userName` for user emails or `destinationId` - for Alert destination's identifier.
|
|
5199
5219
|
*/
|
|
5200
|
-
subscriptions
|
|
5220
|
+
subscriptions?: outputs.JobTaskSqlTaskAlertSubscription[];
|
|
5201
5221
|
}
|
|
5202
5222
|
export interface JobTaskSqlTaskAlertSubscription {
|
|
5203
5223
|
destinationId?: string;
|
|
@@ -5873,6 +5893,14 @@ export interface ModelServingConfigServedModel {
|
|
|
5873
5893
|
* ARN of the instance profile that the served model will use to access AWS resources.
|
|
5874
5894
|
*/
|
|
5875
5895
|
instanceProfileArn?: string;
|
|
5896
|
+
/**
|
|
5897
|
+
* The maximum tokens per second that the endpoint can scale up to.
|
|
5898
|
+
*/
|
|
5899
|
+
maxProvisionedThroughput?: number;
|
|
5900
|
+
/**
|
|
5901
|
+
* The minimum tokens per second that the endpoint can scale down to.
|
|
5902
|
+
*/
|
|
5903
|
+
minProvisionedThroughput?: number;
|
|
5876
5904
|
/**
|
|
5877
5905
|
* The name of the model in Databricks Model Registry to be served.
|
|
5878
5906
|
*/
|
|
@@ -5892,7 +5920,7 @@ export interface ModelServingConfigServedModel {
|
|
|
5892
5920
|
/**
|
|
5893
5921
|
* 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).
|
|
5894
5922
|
*/
|
|
5895
|
-
workloadSize
|
|
5923
|
+
workloadSize?: string;
|
|
5896
5924
|
/**
|
|
5897
5925
|
* The workload type of the served model. The workload type selects which type of compute to use in the endpoint. For deep learning workloads, GPU acceleration is available by selecting workload types like `GPU_SMALL` and others. See documentation for all options. The default value is `CPU`.
|
|
5898
5926
|
*/
|
|
@@ -6736,6 +6764,7 @@ export interface ShareObject {
|
|
|
6736
6764
|
* Description about the object.
|
|
6737
6765
|
*/
|
|
6738
6766
|
comment?: string;
|
|
6767
|
+
content?: string;
|
|
6739
6768
|
/**
|
|
6740
6769
|
* Type of the data object, currently `TABLE`, `SCHEMA`, `VOLUME`, and `MODEL` are supported.
|
|
6741
6770
|
*/
|
|
@@ -6763,12 +6792,13 @@ export interface ShareObject {
|
|
|
6763
6792
|
* Status of the object, one of: `ACTIVE`, `PERMISSION_DENIED`.
|
|
6764
6793
|
*/
|
|
6765
6794
|
status: string;
|
|
6795
|
+
stringSharedAs?: string;
|
|
6766
6796
|
}
|
|
6767
6797
|
export interface ShareObjectPartition {
|
|
6768
6798
|
/**
|
|
6769
6799
|
* The value of the partition column. When this value is not set, it means null value. When this field is set, field `recipientPropertyKey` can not be set.
|
|
6770
6800
|
*/
|
|
6771
|
-
values
|
|
6801
|
+
values?: outputs.ShareObjectPartitionValue[];
|
|
6772
6802
|
}
|
|
6773
6803
|
export interface ShareObjectPartitionValue {
|
|
6774
6804
|
/**
|
|
@@ -7149,14 +7179,14 @@ export interface VectorSearchIndexDeltaSyncIndexSpec {
|
|
|
7149
7179
|
export interface VectorSearchIndexDeltaSyncIndexSpecEmbeddingSourceColumn {
|
|
7150
7180
|
embeddingModelEndpointName?: string;
|
|
7151
7181
|
/**
|
|
7152
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
7182
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
7153
7183
|
*/
|
|
7154
7184
|
name?: string;
|
|
7155
7185
|
}
|
|
7156
7186
|
export interface VectorSearchIndexDeltaSyncIndexSpecEmbeddingVectorColumn {
|
|
7157
7187
|
embeddingDimension?: number;
|
|
7158
7188
|
/**
|
|
7159
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
7189
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
7160
7190
|
*/
|
|
7161
7191
|
name?: string;
|
|
7162
7192
|
}
|
|
@@ -7174,14 +7204,14 @@ export interface VectorSearchIndexDirectAccessIndexSpec {
|
|
|
7174
7204
|
export interface VectorSearchIndexDirectAccessIndexSpecEmbeddingSourceColumn {
|
|
7175
7205
|
embeddingModelEndpointName?: string;
|
|
7176
7206
|
/**
|
|
7177
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
7207
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
7178
7208
|
*/
|
|
7179
7209
|
name?: string;
|
|
7180
7210
|
}
|
|
7181
7211
|
export interface VectorSearchIndexDirectAccessIndexSpecEmbeddingVectorColumn {
|
|
7182
7212
|
embeddingDimension?: number;
|
|
7183
7213
|
/**
|
|
7184
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
7214
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
7185
7215
|
*/
|
|
7186
7216
|
name?: string;
|
|
7187
7217
|
}
|
|
@@ -2,9 +2,9 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
-
* > **Note** This resource
|
|
5
|
+
* > **Note** This resource can only be used on a Unity Catalog-enabled workspace!
|
|
6
6
|
*
|
|
7
|
-
* This resource allows you to create [Vector Search Endpoint](https://docs.databricks.com/en/generative-ai/vector-search.html) in Databricks. Vector Search is a serverless similarity search engine that allows you to store a vector representation of your data, including metadata, in a vector database. The Vector Search Endpoint is used to create and access vector search indexes.
|
|
7
|
+
* This resource allows you to create [Mosaic AI Vector Search Endpoint](https://docs.databricks.com/en/generative-ai/vector-search.html) in Databricks. Mosaic AI Vector Search is a serverless similarity search engine that allows you to store a vector representation of your data, including metadata, in a vector database. The Mosaic AI Vector Search Endpoint is used to create and access vector search indexes.
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -20,7 +20,7 @@ import * as outputs from "./types/output";
|
|
|
20
20
|
*
|
|
21
21
|
* ## Import
|
|
22
22
|
*
|
|
23
|
-
* The resource can be imported using the name of the Vector Search Endpoint
|
|
23
|
+
* The resource can be imported using the name of the Mosaic AI Vector Search Endpoint
|
|
24
24
|
*
|
|
25
25
|
* bash
|
|
26
26
|
*
|
|
@@ -61,7 +61,7 @@ export declare class VectorSearchEndpoint extends pulumi.CustomResource {
|
|
|
61
61
|
*/
|
|
62
62
|
readonly endpointStatuses: pulumi.Output<outputs.VectorSearchEndpointEndpointStatus[]>;
|
|
63
63
|
/**
|
|
64
|
-
* Type of Vector Search Endpoint. Currently only accepting single value: `STANDARD` (See [documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/createendpoint) for the list of currently supported values).
|
|
64
|
+
* Type of Mosaic AI Vector Search Endpoint. Currently only accepting single value: `STANDARD` (See [documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/createendpoint) for the list of currently supported values).
|
|
65
65
|
*/
|
|
66
66
|
readonly endpointType: pulumi.Output<string>;
|
|
67
67
|
/**
|
|
@@ -73,7 +73,7 @@ export declare class VectorSearchEndpoint extends pulumi.CustomResource {
|
|
|
73
73
|
*/
|
|
74
74
|
readonly lastUpdatedUser: pulumi.Output<string>;
|
|
75
75
|
/**
|
|
76
|
-
* Name of the Vector Search Endpoint to create.
|
|
76
|
+
* Name of the Mosaic AI Vector Search Endpoint to create.
|
|
77
77
|
*/
|
|
78
78
|
readonly name: pulumi.Output<string>;
|
|
79
79
|
/**
|
|
@@ -110,7 +110,7 @@ export interface VectorSearchEndpointState {
|
|
|
110
110
|
*/
|
|
111
111
|
endpointStatuses?: pulumi.Input<pulumi.Input<inputs.VectorSearchEndpointEndpointStatus>[]>;
|
|
112
112
|
/**
|
|
113
|
-
* Type of Vector Search Endpoint. Currently only accepting single value: `STANDARD` (See [documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/createendpoint) for the list of currently supported values).
|
|
113
|
+
* Type of Mosaic AI Vector Search Endpoint. Currently only accepting single value: `STANDARD` (See [documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/createendpoint) for the list of currently supported values).
|
|
114
114
|
*/
|
|
115
115
|
endpointType?: pulumi.Input<string>;
|
|
116
116
|
/**
|
|
@@ -122,7 +122,7 @@ export interface VectorSearchEndpointState {
|
|
|
122
122
|
*/
|
|
123
123
|
lastUpdatedUser?: pulumi.Input<string>;
|
|
124
124
|
/**
|
|
125
|
-
* Name of the Vector Search Endpoint to create.
|
|
125
|
+
* Name of the Mosaic AI Vector Search Endpoint to create.
|
|
126
126
|
*/
|
|
127
127
|
name?: pulumi.Input<string>;
|
|
128
128
|
/**
|
|
@@ -135,11 +135,11 @@ export interface VectorSearchEndpointState {
|
|
|
135
135
|
*/
|
|
136
136
|
export interface VectorSearchEndpointArgs {
|
|
137
137
|
/**
|
|
138
|
-
* Type of Vector Search Endpoint. Currently only accepting single value: `STANDARD` (See [documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/createendpoint) for the list of currently supported values).
|
|
138
|
+
* Type of Mosaic AI Vector Search Endpoint. Currently only accepting single value: `STANDARD` (See [documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/createendpoint) for the list of currently supported values).
|
|
139
139
|
*/
|
|
140
140
|
endpointType: pulumi.Input<string>;
|
|
141
141
|
/**
|
|
142
|
-
* Name of the Vector Search Endpoint to create.
|
|
142
|
+
* Name of the Mosaic AI Vector Search Endpoint to create.
|
|
143
143
|
*/
|
|
144
144
|
name?: pulumi.Input<string>;
|
|
145
145
|
}
|