@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/vectorSearchEndpoint.js
CHANGED
|
@@ -6,9 +6,9 @@ exports.VectorSearchEndpoint = 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 only be used on a Unity Catalog-enabled workspace!
|
|
10
10
|
*
|
|
11
|
-
* 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.
|
|
11
|
+
* 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.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -24,7 +24,7 @@ const utilities = require("./utilities");
|
|
|
24
24
|
*
|
|
25
25
|
* ## Import
|
|
26
26
|
*
|
|
27
|
-
* The resource can be imported using the name of the Vector Search Endpoint
|
|
27
|
+
* The resource can be imported using the name of the Mosaic AI Vector Search Endpoint
|
|
28
28
|
*
|
|
29
29
|
* bash
|
|
30
30
|
*
|
package/vectorSearchIndex.d.ts
CHANGED
|
@@ -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 Index](https://docs.databricks.com/en/generative-ai/create-query-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 Index provides the ability to search data in the linked Delta Table.
|
|
7
|
+
* This resource allows you to create [Mosaic AI Vector Search Index](https://docs.databricks.com/en/generative-ai/create-query-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 Index provides the ability to search data in the linked Delta Table.
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -30,7 +30,7 @@ import * as outputs from "./types/output";
|
|
|
30
30
|
*
|
|
31
31
|
* ## Import
|
|
32
32
|
*
|
|
33
|
-
* The resource can be imported using the name of the Vector Search Index
|
|
33
|
+
* The resource can be imported using the name of the Mosaic AI Vector Search Index
|
|
34
34
|
*
|
|
35
35
|
* bash
|
|
36
36
|
*
|
|
@@ -67,17 +67,17 @@ export declare class VectorSearchIndex extends pulumi.CustomResource {
|
|
|
67
67
|
*/
|
|
68
68
|
readonly directAccessIndexSpec: pulumi.Output<outputs.VectorSearchIndexDirectAccessIndexSpec | undefined>;
|
|
69
69
|
/**
|
|
70
|
-
* The name of the Vector Search Endpoint that will be used for indexing the data.
|
|
70
|
+
* The name of the Mosaic AI Vector Search Endpoint that will be used for indexing the data.
|
|
71
71
|
*/
|
|
72
72
|
readonly endpointName: pulumi.Output<string>;
|
|
73
73
|
/**
|
|
74
|
-
* Vector Search index type. Currently supported values are:
|
|
74
|
+
* Mosaic AI Vector Search index type. Currently supported values are:
|
|
75
75
|
* * `DELTA_SYNC`: An index that automatically syncs with a source Delta Table, automatically and incrementally updating the index as the underlying data in the Delta Table changes.
|
|
76
76
|
* * `DIRECT_ACCESS`: An index that supports the direct read and write of vectors and metadata through our REST and SDK APIs. With this model, the user manages index updates.
|
|
77
77
|
*/
|
|
78
78
|
readonly indexType: pulumi.Output<string>;
|
|
79
79
|
/**
|
|
80
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
80
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
81
81
|
*/
|
|
82
82
|
readonly name: pulumi.Output<string>;
|
|
83
83
|
/**
|
|
@@ -114,17 +114,17 @@ export interface VectorSearchIndexState {
|
|
|
114
114
|
*/
|
|
115
115
|
directAccessIndexSpec?: pulumi.Input<inputs.VectorSearchIndexDirectAccessIndexSpec>;
|
|
116
116
|
/**
|
|
117
|
-
* The name of the Vector Search Endpoint that will be used for indexing the data.
|
|
117
|
+
* The name of the Mosaic AI Vector Search Endpoint that will be used for indexing the data.
|
|
118
118
|
*/
|
|
119
119
|
endpointName?: pulumi.Input<string>;
|
|
120
120
|
/**
|
|
121
|
-
* Vector Search index type. Currently supported values are:
|
|
121
|
+
* Mosaic AI Vector Search index type. Currently supported values are:
|
|
122
122
|
* * `DELTA_SYNC`: An index that automatically syncs with a source Delta Table, automatically and incrementally updating the index as the underlying data in the Delta Table changes.
|
|
123
123
|
* * `DIRECT_ACCESS`: An index that supports the direct read and write of vectors and metadata through our REST and SDK APIs. With this model, the user manages index updates.
|
|
124
124
|
*/
|
|
125
125
|
indexType?: pulumi.Input<string>;
|
|
126
126
|
/**
|
|
127
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
127
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
128
128
|
*/
|
|
129
129
|
name?: pulumi.Input<string>;
|
|
130
130
|
/**
|
|
@@ -149,17 +149,17 @@ export interface VectorSearchIndexArgs {
|
|
|
149
149
|
*/
|
|
150
150
|
directAccessIndexSpec?: pulumi.Input<inputs.VectorSearchIndexDirectAccessIndexSpec>;
|
|
151
151
|
/**
|
|
152
|
-
* The name of the Vector Search Endpoint that will be used for indexing the data.
|
|
152
|
+
* The name of the Mosaic AI Vector Search Endpoint that will be used for indexing the data.
|
|
153
153
|
*/
|
|
154
154
|
endpointName: pulumi.Input<string>;
|
|
155
155
|
/**
|
|
156
|
-
* Vector Search index type. Currently supported values are:
|
|
156
|
+
* Mosaic AI Vector Search index type. Currently supported values are:
|
|
157
157
|
* * `DELTA_SYNC`: An index that automatically syncs with a source Delta Table, automatically and incrementally updating the index as the underlying data in the Delta Table changes.
|
|
158
158
|
* * `DIRECT_ACCESS`: An index that supports the direct read and write of vectors and metadata through our REST and SDK APIs. With this model, the user manages index updates.
|
|
159
159
|
*/
|
|
160
160
|
indexType: pulumi.Input<string>;
|
|
161
161
|
/**
|
|
162
|
-
* Three-level name of the Vector Search Index to create (`catalog.schema.index_name`).
|
|
162
|
+
* Three-level name of the Mosaic AI Vector Search Index to create (`catalog.schema.index_name`).
|
|
163
163
|
*/
|
|
164
164
|
name?: pulumi.Input<string>;
|
|
165
165
|
/**
|
package/vectorSearchIndex.js
CHANGED
|
@@ -6,9 +6,9 @@ exports.VectorSearchIndex = 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 only be used on a Unity Catalog-enabled workspace!
|
|
10
10
|
*
|
|
11
|
-
* This resource allows you to create [Vector Search Index](https://docs.databricks.com/en/generative-ai/create-query-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 Index provides the ability to search data in the linked Delta Table.
|
|
11
|
+
* This resource allows you to create [Mosaic AI Vector Search Index](https://docs.databricks.com/en/generative-ai/create-query-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 Index provides the ability to search data in the linked Delta Table.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -34,7 +34,7 @@ const utilities = require("./utilities");
|
|
|
34
34
|
*
|
|
35
35
|
* ## Import
|
|
36
36
|
*
|
|
37
|
-
* The resource can be imported using the name of the Vector Search Index
|
|
37
|
+
* The resource can be imported using the name of the Mosaic AI Vector Search Index
|
|
38
38
|
*
|
|
39
39
|
* bash
|
|
40
40
|
*
|
package/volume.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
|
* Volumes are Unity Catalog objects representing a logical volume of storage in a cloud object storage location. Volumes provide capabilities for accessing, storing, governing, and organizing files. While tables provide governance over tabular datasets, volumes add governance over non-tabular datasets. You can use volumes to store and access files in any format, including structured, semi-structured, and unstructured data.
|
|
8
8
|
*
|
package/volume.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
|
* Volumes are Unity Catalog objects representing a logical volume of storage in a cloud object storage location. Volumes provide capabilities for accessing, storing, governing, and organizing files. While tables provide governance over tabular datasets, volumes add governance over non-tabular datasets. You can use volumes to store and access files in any format, including structured, semi-structured, and unstructured data.
|
|
14
14
|
*
|
package/workspaceBinding.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* > **Note** This resource
|
|
3
|
+
* > **Note** This resource can only be used with a workspace-level provider!
|
|
4
4
|
*
|
|
5
5
|
* If you use workspaces to isolate user data access, you may want to limit access to catalog, external locations or storage credentials from specific workspaces in your account, also known as workspace binding
|
|
6
6
|
*
|
|
@@ -65,7 +65,7 @@ export declare class WorkspaceBinding extends pulumi.CustomResource {
|
|
|
65
65
|
*/
|
|
66
66
|
readonly securableName: pulumi.Output<string>;
|
|
67
67
|
/**
|
|
68
|
-
* Type of securable. Can be `catalog`, `
|
|
68
|
+
* Type of securable. Can be `catalog`, `external-location` or `storage-credential`. Default to `catalog`. Change forces creation of a new resource.
|
|
69
69
|
*/
|
|
70
70
|
readonly securableType: pulumi.Output<string | undefined>;
|
|
71
71
|
/**
|
|
@@ -98,7 +98,7 @@ export interface WorkspaceBindingState {
|
|
|
98
98
|
*/
|
|
99
99
|
securableName?: pulumi.Input<string>;
|
|
100
100
|
/**
|
|
101
|
-
* Type of securable. Can be `catalog`, `
|
|
101
|
+
* Type of securable. Can be `catalog`, `external-location` or `storage-credential`. Default to `catalog`. Change forces creation of a new resource.
|
|
102
102
|
*/
|
|
103
103
|
securableType?: pulumi.Input<string>;
|
|
104
104
|
/**
|
|
@@ -123,7 +123,7 @@ export interface WorkspaceBindingArgs {
|
|
|
123
123
|
*/
|
|
124
124
|
securableName?: pulumi.Input<string>;
|
|
125
125
|
/**
|
|
126
|
-
* Type of securable. Can be `catalog`, `
|
|
126
|
+
* Type of securable. Can be `catalog`, `external-location` or `storage-credential`. Default to `catalog`. Change forces creation of a new resource.
|
|
127
127
|
*/
|
|
128
128
|
securableType?: pulumi.Input<string>;
|
|
129
129
|
/**
|
package/workspaceBinding.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.WorkspaceBinding = 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 only be used with a workspace-level provider!
|
|
10
10
|
*
|
|
11
11
|
* If you use workspaces to isolate user data access, you may want to limit access to catalog, external locations or storage credentials from specific workspaces in your account, also known as workspace binding
|
|
12
12
|
*
|