@databricks/sdk-uc-metastores 0.0.0-dev → 0.1.0-dev.1
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/LICENSE +203 -0
- package/dist/v1/client.d.ts +87 -0
- package/dist/v1/client.d.ts.map +1 -0
- package/dist/v1/client.js +576 -0
- package/dist/v1/client.js.map +1 -0
- package/dist/v1/index.d.ts +4 -0
- package/dist/v1/index.d.ts.map +1 -0
- package/dist/v1/index.js +4 -0
- package/dist/v1/index.js.map +1 -0
- package/dist/v1/model.d.ts +491 -0
- package/dist/v1/model.d.ts.map +1 -0
- package/dist/v1/model.js +482 -0
- package/dist/v1/model.js.map +1 -0
- package/dist/v1/transport.d.ts +5 -0
- package/dist/v1/transport.d.ts.map +1 -0
- package/dist/v1/transport.js +57 -0
- package/dist/v1/transport.js.map +1 -0
- package/dist/v1/utils.d.ts +22 -0
- package/dist/v1/utils.d.ts.map +1 -0
- package/dist/v1/utils.js +113 -0
- package/dist/v1/utils.js.map +1 -0
- package/package.json +38 -4
- package/src/v1/client.ts +807 -0
- package/src/v1/index.ts +49 -0
- package/src/v1/model.ts +1032 -0
- package/src/v1/transport.ts +73 -0
- package/src/v1/utils.ts +156 -0
- package/README.md +0 -1
- package/index.js +0 -1
|
@@ -0,0 +1,491 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare enum DeltaSharingScope_Enum {
|
|
3
|
+
/**
|
|
4
|
+
* Internal Delta Sharing enabled on metastore.
|
|
5
|
+
* This applies to Databricks-managed authentication where both provider and recipient are
|
|
6
|
+
* under the same account.
|
|
7
|
+
*/
|
|
8
|
+
INTERNAL = "INTERNAL",
|
|
9
|
+
/**
|
|
10
|
+
* Internal and External Delta Sharing enabled on metastore.
|
|
11
|
+
* This allows all flavors of Delta Sharing.
|
|
12
|
+
*/
|
|
13
|
+
INTERNAL_AND_EXTERNAL = "INTERNAL_AND_EXTERNAL"
|
|
14
|
+
}
|
|
15
|
+
/** The mapping from workspace to metastore. */
|
|
16
|
+
export interface AccountsCreateMetastoreAssignmentRequest {
|
|
17
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
18
|
+
accountId?: string | undefined;
|
|
19
|
+
/** Workspace ID. */
|
|
20
|
+
workspaceId?: bigint | undefined;
|
|
21
|
+
/** Unity Catalog metastore ID */
|
|
22
|
+
metastoreId?: string | undefined;
|
|
23
|
+
metastoreAssignment?: MetastoreAssignment | undefined;
|
|
24
|
+
}
|
|
25
|
+
/** The metastore assignment was successfully created. */
|
|
26
|
+
export interface AccountsCreateMetastoreAssignmentRequest_Response {
|
|
27
|
+
}
|
|
28
|
+
/** Properties of the new metastore. */
|
|
29
|
+
export interface AccountsCreateMetastoreRequest {
|
|
30
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
31
|
+
accountId?: string | undefined;
|
|
32
|
+
metastoreInfo?: CreateAccountsMetastore | undefined;
|
|
33
|
+
}
|
|
34
|
+
export interface AccountsCreateMetastoreRequest_Response {
|
|
35
|
+
metastoreInfo?: MetastoreInfo | undefined;
|
|
36
|
+
}
|
|
37
|
+
/** Delete a metastore assignment to a workspace */
|
|
38
|
+
export interface AccountsDeleteMetastoreAssignmentRequest {
|
|
39
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
40
|
+
accountId?: string | undefined;
|
|
41
|
+
/** Workspace ID. */
|
|
42
|
+
workspaceId?: bigint | undefined;
|
|
43
|
+
/** Unity Catalog metastore ID */
|
|
44
|
+
metastoreId?: string | undefined;
|
|
45
|
+
}
|
|
46
|
+
/** The metastore assignment was successfully deleted. */
|
|
47
|
+
export interface AccountsDeleteMetastoreAssignmentRequest_Response {
|
|
48
|
+
}
|
|
49
|
+
/** Delete a metastore for the given account */
|
|
50
|
+
export interface AccountsDeleteMetastoreRequest {
|
|
51
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
52
|
+
accountId?: string | undefined;
|
|
53
|
+
/** Unity Catalog metastore ID */
|
|
54
|
+
metastoreId?: string | undefined;
|
|
55
|
+
/** Force deletion even if the metastore is not empty. Default is false. */
|
|
56
|
+
force?: boolean | undefined;
|
|
57
|
+
}
|
|
58
|
+
/** The metastore was successfully deleted. */
|
|
59
|
+
export interface AccountsDeleteMetastoreRequest_Response {
|
|
60
|
+
}
|
|
61
|
+
/** Retrieves the assignment of which metastore to a given workspace */
|
|
62
|
+
export interface AccountsGetMetastoreAssignmentRequest {
|
|
63
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
64
|
+
accountId?: string | undefined;
|
|
65
|
+
/** Workspace ID. */
|
|
66
|
+
workspaceId?: bigint | undefined;
|
|
67
|
+
}
|
|
68
|
+
/** The workspace metastore assignment was successfully returned. */
|
|
69
|
+
export interface AccountsGetMetastoreAssignmentRequest_Response {
|
|
70
|
+
metastoreAssignment?: MetastoreAssignment | undefined;
|
|
71
|
+
}
|
|
72
|
+
/** Get a metastore for a given account */
|
|
73
|
+
export interface AccountsGetMetastoreRequest {
|
|
74
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
75
|
+
accountId?: string | undefined;
|
|
76
|
+
/** Unity Catalog metastore ID */
|
|
77
|
+
metastoreId?: string | undefined;
|
|
78
|
+
}
|
|
79
|
+
/** The metastore was successfully returned. */
|
|
80
|
+
export interface AccountsGetMetastoreRequest_Response {
|
|
81
|
+
metastoreInfo?: MetastoreInfo | undefined;
|
|
82
|
+
}
|
|
83
|
+
/** List the metastores for an account */
|
|
84
|
+
export interface AccountsListMetastoresRequest {
|
|
85
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
86
|
+
accountId?: string | undefined;
|
|
87
|
+
}
|
|
88
|
+
/** Metastores were returned successfully. */
|
|
89
|
+
export interface AccountsListMetastoresRequest_Response {
|
|
90
|
+
/** An array of metastore information objects. */
|
|
91
|
+
metastores?: MetastoreInfo[] | undefined;
|
|
92
|
+
}
|
|
93
|
+
/** Lists all workspace IDs for a given metastore */
|
|
94
|
+
export interface AccountsListWorkspaceIdsForMetastoreRequest {
|
|
95
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
96
|
+
accountId?: string | undefined;
|
|
97
|
+
/** Unity Catalog metastore ID */
|
|
98
|
+
metastoreId?: string | undefined;
|
|
99
|
+
}
|
|
100
|
+
/** The metastore assignments were successfully returned. */
|
|
101
|
+
export interface AccountsListWorkspaceIdsForMetastoreRequest_Response {
|
|
102
|
+
workspaceIds?: bigint[] | undefined;
|
|
103
|
+
}
|
|
104
|
+
/** The metastore assignment to update. */
|
|
105
|
+
export interface AccountsUpdateMetastoreAssignmentRequest {
|
|
106
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
107
|
+
accountId?: string | undefined;
|
|
108
|
+
/** Workspace ID. */
|
|
109
|
+
workspaceId?: bigint | undefined;
|
|
110
|
+
/** Unity Catalog metastore ID */
|
|
111
|
+
metastoreId?: string | undefined;
|
|
112
|
+
metastoreAssignment?: MetastoreAssignment | undefined;
|
|
113
|
+
}
|
|
114
|
+
/** The metastore assignment was successfully updated. */
|
|
115
|
+
export interface AccountsUpdateMetastoreAssignmentRequest_Response {
|
|
116
|
+
}
|
|
117
|
+
/** Properties of the metastore to change. */
|
|
118
|
+
export interface AccountsUpdateMetastoreRequest {
|
|
119
|
+
/** <Databricks> account ID of any type. For non-E2 account types, get your account ID from the [Accounts Console](https://docs.databricks.com/administration-guide/account-settings/usage.html) */
|
|
120
|
+
accountId?: string | undefined;
|
|
121
|
+
/** Unity Catalog metastore ID */
|
|
122
|
+
metastoreId?: string | undefined;
|
|
123
|
+
/** Properties of the metastore to change. */
|
|
124
|
+
metastoreInfo?: UpdateAccountsMetastore | undefined;
|
|
125
|
+
}
|
|
126
|
+
/** The metastore update request succeeded. */
|
|
127
|
+
export interface AccountsUpdateMetastoreRequest_Response {
|
|
128
|
+
metastoreInfo?: MetastoreInfo | undefined;
|
|
129
|
+
}
|
|
130
|
+
export interface CreateAccountsMetastore {
|
|
131
|
+
/** The user-specified name of the metastore. */
|
|
132
|
+
name?: string | undefined;
|
|
133
|
+
/** The storage root URL for metastore */
|
|
134
|
+
storageRoot?: string | undefined;
|
|
135
|
+
/** Unique identifier of the metastore's (Default) Data Access Configuration. */
|
|
136
|
+
defaultDataAccessConfigId?: string | undefined;
|
|
137
|
+
/** UUID of storage credential to access the metastore storage_root. */
|
|
138
|
+
storageRootCredentialId?: string | undefined;
|
|
139
|
+
/** The scope of Delta Sharing enabled for the metastore. */
|
|
140
|
+
deltaSharingScope?: DeltaSharingScope_Enum | undefined;
|
|
141
|
+
/** The lifetime of delta sharing recipient token in seconds. */
|
|
142
|
+
deltaSharingRecipientTokenLifetimeInSeconds?: bigint | undefined;
|
|
143
|
+
/** The organization name of a Delta Sharing entity, to be used in Databricks-to-Databricks Delta Sharing as the official name. */
|
|
144
|
+
deltaSharingOrganizationName?: string | undefined;
|
|
145
|
+
/** The owner of the metastore. */
|
|
146
|
+
owner?: string | undefined;
|
|
147
|
+
/** Privilege model version of the metastore, of the form `major.minor` (e.g., `1.0`). */
|
|
148
|
+
privilegeModelVersion?: string | undefined;
|
|
149
|
+
/** Cloud region which the metastore serves (e.g., `us-west-2`, `westus`). */
|
|
150
|
+
region?: string | undefined;
|
|
151
|
+
/** Unique identifier of metastore. */
|
|
152
|
+
metastoreId?: string | undefined;
|
|
153
|
+
/** Time at which this metastore was created, in epoch milliseconds. */
|
|
154
|
+
createdAt?: bigint | undefined;
|
|
155
|
+
/** Username of metastore creator. */
|
|
156
|
+
createdBy?: string | undefined;
|
|
157
|
+
/** Time at which the metastore was last modified, in epoch milliseconds. */
|
|
158
|
+
updatedAt?: bigint | undefined;
|
|
159
|
+
/** Username of user who last modified the metastore. */
|
|
160
|
+
updatedBy?: string | undefined;
|
|
161
|
+
/** Name of the storage credential to access the metastore storage_root. */
|
|
162
|
+
storageRootCredentialName?: string | undefined;
|
|
163
|
+
/** Cloud vendor of the metastore home shard (e.g., `aws`, `azure`, `gcp`). */
|
|
164
|
+
cloud?: string | undefined;
|
|
165
|
+
/** Globally unique metastore ID across clouds and regions, of the form `cloud:region:metastore_id`. */
|
|
166
|
+
globalMetastoreId?: string | undefined;
|
|
167
|
+
/** Whether to allow non-DBR clients to directly access entities under the metastore. */
|
|
168
|
+
externalAccessEnabled?: boolean | undefined;
|
|
169
|
+
}
|
|
170
|
+
export interface CreateMetastoreAssignmentRequest {
|
|
171
|
+
/** A workspace ID. */
|
|
172
|
+
workspaceId?: bigint | undefined;
|
|
173
|
+
/** The unique ID of the metastore. */
|
|
174
|
+
metastoreId?: string | undefined;
|
|
175
|
+
/**
|
|
176
|
+
* The name of the default catalog in the metastore.
|
|
177
|
+
* This field is deprecated. Please use "Default Namespace API" to
|
|
178
|
+
* configure the default catalog for a <Databricks> workspace.
|
|
179
|
+
*/
|
|
180
|
+
defaultCatalogName?: string | undefined;
|
|
181
|
+
}
|
|
182
|
+
export interface CreateMetastoreAssignmentRequest_Response {
|
|
183
|
+
}
|
|
184
|
+
export interface CreateMetastoreRequest {
|
|
185
|
+
/** The user-specified name of the metastore. */
|
|
186
|
+
name?: string | undefined;
|
|
187
|
+
/** The storage root URL for metastore */
|
|
188
|
+
storageRoot?: string | undefined;
|
|
189
|
+
/** Unique identifier of the metastore's (Default) Data Access Configuration. */
|
|
190
|
+
defaultDataAccessConfigId?: string | undefined;
|
|
191
|
+
/** UUID of storage credential to access the metastore storage_root. */
|
|
192
|
+
storageRootCredentialId?: string | undefined;
|
|
193
|
+
/** The scope of Delta Sharing enabled for the metastore. */
|
|
194
|
+
deltaSharingScope?: DeltaSharingScope_Enum | undefined;
|
|
195
|
+
/** The lifetime of delta sharing recipient token in seconds. */
|
|
196
|
+
deltaSharingRecipientTokenLifetimeInSeconds?: bigint | undefined;
|
|
197
|
+
/** The organization name of a Delta Sharing entity, to be used in Databricks-to-Databricks Delta Sharing as the official name. */
|
|
198
|
+
deltaSharingOrganizationName?: string | undefined;
|
|
199
|
+
/** The owner of the metastore. */
|
|
200
|
+
owner?: string | undefined;
|
|
201
|
+
/** Privilege model version of the metastore, of the form `major.minor` (e.g., `1.0`). */
|
|
202
|
+
privilegeModelVersion?: string | undefined;
|
|
203
|
+
/** Cloud region which the metastore serves (e.g., `us-west-2`, `westus`). */
|
|
204
|
+
region?: string | undefined;
|
|
205
|
+
/** Unique identifier of metastore. */
|
|
206
|
+
metastoreId?: string | undefined;
|
|
207
|
+
/** Time at which this metastore was created, in epoch milliseconds. */
|
|
208
|
+
createdAt?: bigint | undefined;
|
|
209
|
+
/** Username of metastore creator. */
|
|
210
|
+
createdBy?: string | undefined;
|
|
211
|
+
/** Time at which the metastore was last modified, in epoch milliseconds. */
|
|
212
|
+
updatedAt?: bigint | undefined;
|
|
213
|
+
/** Username of user who last modified the metastore. */
|
|
214
|
+
updatedBy?: string | undefined;
|
|
215
|
+
/** Name of the storage credential to access the metastore storage_root. */
|
|
216
|
+
storageRootCredentialName?: string | undefined;
|
|
217
|
+
/** Cloud vendor of the metastore home shard (e.g., `aws`, `azure`, `gcp`). */
|
|
218
|
+
cloud?: string | undefined;
|
|
219
|
+
/** Globally unique metastore ID across clouds and regions, of the form `cloud:region:metastore_id`. */
|
|
220
|
+
globalMetastoreId?: string | undefined;
|
|
221
|
+
/** Whether to allow non-DBR clients to directly access entities under the metastore. */
|
|
222
|
+
externalAccessEnabled?: boolean | undefined;
|
|
223
|
+
}
|
|
224
|
+
export interface DeleteMetastoreAssignmentRequest {
|
|
225
|
+
/** A workspace ID. */
|
|
226
|
+
workspaceId?: bigint | undefined;
|
|
227
|
+
/** Query for the ID of the metastore to delete. */
|
|
228
|
+
metastoreId?: string | undefined;
|
|
229
|
+
}
|
|
230
|
+
export interface DeleteMetastoreAssignmentRequest_Response {
|
|
231
|
+
}
|
|
232
|
+
export interface DeleteMetastoreRequest {
|
|
233
|
+
/** Unique ID of the metastore. */
|
|
234
|
+
id?: string | undefined;
|
|
235
|
+
/** Force deletion even if the metastore is not empty. Default is false. */
|
|
236
|
+
force?: boolean | undefined;
|
|
237
|
+
}
|
|
238
|
+
export interface DeleteMetastoreRequest_Response {
|
|
239
|
+
}
|
|
240
|
+
export interface DeltaSharingScope {
|
|
241
|
+
}
|
|
242
|
+
export interface GetCurrentMetastoreAssignmentRequest {
|
|
243
|
+
}
|
|
244
|
+
export interface GetMetastoreRequest {
|
|
245
|
+
/** Unique ID of the metastore. */
|
|
246
|
+
id?: string | undefined;
|
|
247
|
+
}
|
|
248
|
+
export interface GetMetastoreSummaryRequest {
|
|
249
|
+
}
|
|
250
|
+
export interface GetMetastoreSummaryRequest_Response {
|
|
251
|
+
/** Unique identifier of metastore. */
|
|
252
|
+
metastoreId?: string | undefined;
|
|
253
|
+
/** The user-specified name of the metastore. */
|
|
254
|
+
name?: string | undefined;
|
|
255
|
+
/** Unique identifier of the metastore's (Default) Data Access Configuration. */
|
|
256
|
+
defaultDataAccessConfigId?: string | undefined;
|
|
257
|
+
/** UUID of storage credential to access the metastore storage_root. */
|
|
258
|
+
storageRootCredentialId?: string | undefined;
|
|
259
|
+
/** Cloud vendor of the metastore home shard (e.g., `aws`, `azure`, `gcp`). */
|
|
260
|
+
cloud?: string | undefined;
|
|
261
|
+
/** Cloud region which the metastore serves (e.g., `us-west-2`, `westus`). */
|
|
262
|
+
region?: string | undefined;
|
|
263
|
+
/** Globally unique metastore ID across clouds and regions, of the form `cloud:region:metastore_id`. */
|
|
264
|
+
globalMetastoreId?: string | undefined;
|
|
265
|
+
/** Name of the storage credential to access the metastore storage_root. */
|
|
266
|
+
storageRootCredentialName?: string | undefined;
|
|
267
|
+
/** Privilege model version of the metastore, of the form `major.minor` (e.g., `1.0`). */
|
|
268
|
+
privilegeModelVersion?: string | undefined;
|
|
269
|
+
/** The scope of Delta Sharing enabled for the metastore. */
|
|
270
|
+
deltaSharingScope?: DeltaSharingScope_Enum | undefined;
|
|
271
|
+
/** The lifetime of delta sharing recipient token in seconds. */
|
|
272
|
+
deltaSharingRecipientTokenLifetimeInSeconds?: bigint | undefined;
|
|
273
|
+
/** The organization name of a Delta Sharing entity, to be used in Databricks-to-Databricks Delta Sharing as the official name. */
|
|
274
|
+
deltaSharingOrganizationName?: string | undefined;
|
|
275
|
+
/** The storage root URL for metastore */
|
|
276
|
+
storageRoot?: string | undefined;
|
|
277
|
+
/** The owner of the metastore. */
|
|
278
|
+
owner?: string | undefined;
|
|
279
|
+
/** Time at which this metastore was created, in epoch milliseconds. */
|
|
280
|
+
createdAt?: bigint | undefined;
|
|
281
|
+
/** Username of metastore creator. */
|
|
282
|
+
createdBy?: string | undefined;
|
|
283
|
+
/** Time at which the metastore was last modified, in epoch milliseconds. */
|
|
284
|
+
updatedAt?: bigint | undefined;
|
|
285
|
+
/** Username of user who last modified the metastore. */
|
|
286
|
+
updatedBy?: string | undefined;
|
|
287
|
+
/** Whether to allow non-DBR clients to directly access entities under the metastore. */
|
|
288
|
+
externalAccessEnabled?: boolean | undefined;
|
|
289
|
+
}
|
|
290
|
+
export interface ListMetastoresRequest {
|
|
291
|
+
/**
|
|
292
|
+
* Maximum number of metastores to return.
|
|
293
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;
|
|
294
|
+
* - when set to 0, the page length is set to a server configured value (recommended);
|
|
295
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
296
|
+
* - If not set, all the metastores are returned (not recommended).
|
|
297
|
+
* - Note: The number of returned metastores might be less than the specified max_results size, even zero.
|
|
298
|
+
* The only definitive indication that no further metastores can be fetched is when the next_page_token is unset from the response.
|
|
299
|
+
*/
|
|
300
|
+
maxResults?: number | undefined;
|
|
301
|
+
/** Opaque pagination token to go to next page based on previous query. */
|
|
302
|
+
pageToken?: string | undefined;
|
|
303
|
+
}
|
|
304
|
+
export interface ListMetastoresRequest_Response {
|
|
305
|
+
/** An array of metastore information objects. */
|
|
306
|
+
metastores?: MetastoreInfo[] | undefined;
|
|
307
|
+
/**
|
|
308
|
+
* Opaque token to retrieve the next page of results. Absent if there are no more pages.
|
|
309
|
+
* __page_token__ should be set to this value for the next request (for the next page of results).
|
|
310
|
+
*/
|
|
311
|
+
nextPageToken?: string | undefined;
|
|
312
|
+
}
|
|
313
|
+
export interface MetastoreAssignment {
|
|
314
|
+
/** The unique ID of the <Databricks> workspace. */
|
|
315
|
+
workspaceId?: bigint | undefined;
|
|
316
|
+
/** The unique ID of the metastore. */
|
|
317
|
+
metastoreId?: string | undefined;
|
|
318
|
+
/**
|
|
319
|
+
* The name of the default catalog in the metastore. This field is deprecated.
|
|
320
|
+
* Please use "Default Namespace API" to configure the default catalog for a <Databricks> workspace.
|
|
321
|
+
*/
|
|
322
|
+
defaultCatalogName?: string | undefined;
|
|
323
|
+
}
|
|
324
|
+
export interface MetastoreInfo {
|
|
325
|
+
/** The user-specified name of the metastore. */
|
|
326
|
+
name?: string | undefined;
|
|
327
|
+
/** The storage root URL for metastore */
|
|
328
|
+
storageRoot?: string | undefined;
|
|
329
|
+
/** Unique identifier of the metastore's (Default) Data Access Configuration. */
|
|
330
|
+
defaultDataAccessConfigId?: string | undefined;
|
|
331
|
+
/** UUID of storage credential to access the metastore storage_root. */
|
|
332
|
+
storageRootCredentialId?: string | undefined;
|
|
333
|
+
/** The scope of Delta Sharing enabled for the metastore. */
|
|
334
|
+
deltaSharingScope?: DeltaSharingScope_Enum | undefined;
|
|
335
|
+
/** The lifetime of delta sharing recipient token in seconds. */
|
|
336
|
+
deltaSharingRecipientTokenLifetimeInSeconds?: bigint | undefined;
|
|
337
|
+
/** The organization name of a Delta Sharing entity, to be used in Databricks-to-Databricks Delta Sharing as the official name. */
|
|
338
|
+
deltaSharingOrganizationName?: string | undefined;
|
|
339
|
+
/** The owner of the metastore. */
|
|
340
|
+
owner?: string | undefined;
|
|
341
|
+
/** Privilege model version of the metastore, of the form `major.minor` (e.g., `1.0`). */
|
|
342
|
+
privilegeModelVersion?: string | undefined;
|
|
343
|
+
/** Cloud region which the metastore serves (e.g., `us-west-2`, `westus`). */
|
|
344
|
+
region?: string | undefined;
|
|
345
|
+
/** Unique identifier of metastore. */
|
|
346
|
+
metastoreId?: string | undefined;
|
|
347
|
+
/** Time at which this metastore was created, in epoch milliseconds. */
|
|
348
|
+
createdAt?: bigint | undefined;
|
|
349
|
+
/** Username of metastore creator. */
|
|
350
|
+
createdBy?: string | undefined;
|
|
351
|
+
/** Time at which the metastore was last modified, in epoch milliseconds. */
|
|
352
|
+
updatedAt?: bigint | undefined;
|
|
353
|
+
/** Username of user who last modified the metastore. */
|
|
354
|
+
updatedBy?: string | undefined;
|
|
355
|
+
/** Name of the storage credential to access the metastore storage_root. */
|
|
356
|
+
storageRootCredentialName?: string | undefined;
|
|
357
|
+
/** Cloud vendor of the metastore home shard (e.g., `aws`, `azure`, `gcp`). */
|
|
358
|
+
cloud?: string | undefined;
|
|
359
|
+
/** Globally unique metastore ID across clouds and regions, of the form `cloud:region:metastore_id`. */
|
|
360
|
+
globalMetastoreId?: string | undefined;
|
|
361
|
+
/** Whether to allow non-DBR clients to directly access entities under the metastore. */
|
|
362
|
+
externalAccessEnabled?: boolean | undefined;
|
|
363
|
+
}
|
|
364
|
+
export interface UpdateAccountsMetastore {
|
|
365
|
+
/** The user-specified name of the metastore. */
|
|
366
|
+
name?: string | undefined;
|
|
367
|
+
/** The storage root URL for metastore */
|
|
368
|
+
storageRoot?: string | undefined;
|
|
369
|
+
/** Unique identifier of the metastore's (Default) Data Access Configuration. */
|
|
370
|
+
defaultDataAccessConfigId?: string | undefined;
|
|
371
|
+
/** UUID of storage credential to access the metastore storage_root. */
|
|
372
|
+
storageRootCredentialId?: string | undefined;
|
|
373
|
+
/** The scope of Delta Sharing enabled for the metastore. */
|
|
374
|
+
deltaSharingScope?: DeltaSharingScope_Enum | undefined;
|
|
375
|
+
/** The lifetime of delta sharing recipient token in seconds. */
|
|
376
|
+
deltaSharingRecipientTokenLifetimeInSeconds?: bigint | undefined;
|
|
377
|
+
/** The organization name of a Delta Sharing entity, to be used in Databricks-to-Databricks Delta Sharing as the official name. */
|
|
378
|
+
deltaSharingOrganizationName?: string | undefined;
|
|
379
|
+
/** The owner of the metastore. */
|
|
380
|
+
owner?: string | undefined;
|
|
381
|
+
/** Privilege model version of the metastore, of the form `major.minor` (e.g., `1.0`). */
|
|
382
|
+
privilegeModelVersion?: string | undefined;
|
|
383
|
+
/** Cloud region which the metastore serves (e.g., `us-west-2`, `westus`). */
|
|
384
|
+
region?: string | undefined;
|
|
385
|
+
/** Unique identifier of metastore. */
|
|
386
|
+
metastoreId?: string | undefined;
|
|
387
|
+
/** Time at which this metastore was created, in epoch milliseconds. */
|
|
388
|
+
createdAt?: bigint | undefined;
|
|
389
|
+
/** Username of metastore creator. */
|
|
390
|
+
createdBy?: string | undefined;
|
|
391
|
+
/** Time at which the metastore was last modified, in epoch milliseconds. */
|
|
392
|
+
updatedAt?: bigint | undefined;
|
|
393
|
+
/** Username of user who last modified the metastore. */
|
|
394
|
+
updatedBy?: string | undefined;
|
|
395
|
+
/** Name of the storage credential to access the metastore storage_root. */
|
|
396
|
+
storageRootCredentialName?: string | undefined;
|
|
397
|
+
/** Cloud vendor of the metastore home shard (e.g., `aws`, `azure`, `gcp`). */
|
|
398
|
+
cloud?: string | undefined;
|
|
399
|
+
/** Globally unique metastore ID across clouds and regions, of the form `cloud:region:metastore_id`. */
|
|
400
|
+
globalMetastoreId?: string | undefined;
|
|
401
|
+
/** Whether to allow non-DBR clients to directly access entities under the metastore. */
|
|
402
|
+
externalAccessEnabled?: boolean | undefined;
|
|
403
|
+
}
|
|
404
|
+
export interface UpdateMetastoreAssignmentRequest {
|
|
405
|
+
/** A workspace ID. */
|
|
406
|
+
workspaceId?: bigint | undefined;
|
|
407
|
+
/** The unique ID of the metastore. */
|
|
408
|
+
metastoreId?: string | undefined;
|
|
409
|
+
/**
|
|
410
|
+
* The name of the default catalog in the metastore.
|
|
411
|
+
* This field is deprecated. Please use "Default Namespace API" to
|
|
412
|
+
* configure the default catalog for a <Databricks> workspace.
|
|
413
|
+
*/
|
|
414
|
+
defaultCatalogName?: string | undefined;
|
|
415
|
+
}
|
|
416
|
+
export interface UpdateMetastoreAssignmentRequest_Response {
|
|
417
|
+
}
|
|
418
|
+
export interface UpdateMetastoreRequest {
|
|
419
|
+
/** Unique ID of the metastore. */
|
|
420
|
+
id?: string | undefined;
|
|
421
|
+
/** New name for the metastore. */
|
|
422
|
+
newName?: string | undefined;
|
|
423
|
+
/** The user-specified name of the metastore. */
|
|
424
|
+
name?: string | undefined;
|
|
425
|
+
/** The storage root URL for metastore */
|
|
426
|
+
storageRoot?: string | undefined;
|
|
427
|
+
/** Unique identifier of the metastore's (Default) Data Access Configuration. */
|
|
428
|
+
defaultDataAccessConfigId?: string | undefined;
|
|
429
|
+
/** UUID of storage credential to access the metastore storage_root. */
|
|
430
|
+
storageRootCredentialId?: string | undefined;
|
|
431
|
+
/** The scope of Delta Sharing enabled for the metastore. */
|
|
432
|
+
deltaSharingScope?: DeltaSharingScope_Enum | undefined;
|
|
433
|
+
/** The lifetime of delta sharing recipient token in seconds. */
|
|
434
|
+
deltaSharingRecipientTokenLifetimeInSeconds?: bigint | undefined;
|
|
435
|
+
/** The organization name of a Delta Sharing entity, to be used in Databricks-to-Databricks Delta Sharing as the official name. */
|
|
436
|
+
deltaSharingOrganizationName?: string | undefined;
|
|
437
|
+
/** The owner of the metastore. */
|
|
438
|
+
owner?: string | undefined;
|
|
439
|
+
/** Privilege model version of the metastore, of the form `major.minor` (e.g., `1.0`). */
|
|
440
|
+
privilegeModelVersion?: string | undefined;
|
|
441
|
+
/** Cloud region which the metastore serves (e.g., `us-west-2`, `westus`). */
|
|
442
|
+
region?: string | undefined;
|
|
443
|
+
/** Unique identifier of metastore. */
|
|
444
|
+
metastoreId?: string | undefined;
|
|
445
|
+
/** Time at which this metastore was created, in epoch milliseconds. */
|
|
446
|
+
createdAt?: bigint | undefined;
|
|
447
|
+
/** Username of metastore creator. */
|
|
448
|
+
createdBy?: string | undefined;
|
|
449
|
+
/** Time at which the metastore was last modified, in epoch milliseconds. */
|
|
450
|
+
updatedAt?: bigint | undefined;
|
|
451
|
+
/** Username of user who last modified the metastore. */
|
|
452
|
+
updatedBy?: string | undefined;
|
|
453
|
+
/** Name of the storage credential to access the metastore storage_root. */
|
|
454
|
+
storageRootCredentialName?: string | undefined;
|
|
455
|
+
/** Cloud vendor of the metastore home shard (e.g., `aws`, `azure`, `gcp`). */
|
|
456
|
+
cloud?: string | undefined;
|
|
457
|
+
/** Globally unique metastore ID across clouds and regions, of the form `cloud:region:metastore_id`. */
|
|
458
|
+
globalMetastoreId?: string | undefined;
|
|
459
|
+
/** Whether to allow non-DBR clients to directly access entities under the metastore. */
|
|
460
|
+
externalAccessEnabled?: boolean | undefined;
|
|
461
|
+
}
|
|
462
|
+
export declare const unmarshalAccountsCreateMetastoreAssignmentRequest_ResponseSchema: z.ZodType<AccountsCreateMetastoreAssignmentRequest_Response>;
|
|
463
|
+
export declare const unmarshalAccountsCreateMetastoreRequest_ResponseSchema: z.ZodType<AccountsCreateMetastoreRequest_Response>;
|
|
464
|
+
export declare const unmarshalAccountsDeleteMetastoreAssignmentRequest_ResponseSchema: z.ZodType<AccountsDeleteMetastoreAssignmentRequest_Response>;
|
|
465
|
+
export declare const unmarshalAccountsDeleteMetastoreRequest_ResponseSchema: z.ZodType<AccountsDeleteMetastoreRequest_Response>;
|
|
466
|
+
export declare const unmarshalAccountsGetMetastoreAssignmentRequest_ResponseSchema: z.ZodType<AccountsGetMetastoreAssignmentRequest_Response>;
|
|
467
|
+
export declare const unmarshalAccountsGetMetastoreRequest_ResponseSchema: z.ZodType<AccountsGetMetastoreRequest_Response>;
|
|
468
|
+
export declare const unmarshalAccountsListMetastoresRequest_ResponseSchema: z.ZodType<AccountsListMetastoresRequest_Response>;
|
|
469
|
+
export declare const unmarshalAccountsListWorkspaceIdsForMetastoreRequest_ResponseSchema: z.ZodType<AccountsListWorkspaceIdsForMetastoreRequest_Response>;
|
|
470
|
+
export declare const unmarshalAccountsUpdateMetastoreAssignmentRequest_ResponseSchema: z.ZodType<AccountsUpdateMetastoreAssignmentRequest_Response>;
|
|
471
|
+
export declare const unmarshalAccountsUpdateMetastoreRequest_ResponseSchema: z.ZodType<AccountsUpdateMetastoreRequest_Response>;
|
|
472
|
+
export declare const unmarshalCreateMetastoreAssignmentRequest_ResponseSchema: z.ZodType<CreateMetastoreAssignmentRequest_Response>;
|
|
473
|
+
export declare const unmarshalDeleteMetastoreAssignmentRequest_ResponseSchema: z.ZodType<DeleteMetastoreAssignmentRequest_Response>;
|
|
474
|
+
export declare const unmarshalDeleteMetastoreRequest_ResponseSchema: z.ZodType<DeleteMetastoreRequest_Response>;
|
|
475
|
+
export declare const unmarshalGetMetastoreSummaryRequest_ResponseSchema: z.ZodType<GetMetastoreSummaryRequest_Response>;
|
|
476
|
+
export declare const unmarshalListMetastoresRequest_ResponseSchema: z.ZodType<ListMetastoresRequest_Response>;
|
|
477
|
+
export declare const unmarshalMetastoreAssignmentSchema: z.ZodType<MetastoreAssignment>;
|
|
478
|
+
export declare const unmarshalMetastoreInfoSchema: z.ZodType<MetastoreInfo>;
|
|
479
|
+
export declare const unmarshalUpdateMetastoreAssignmentRequest_ResponseSchema: z.ZodType<UpdateMetastoreAssignmentRequest_Response>;
|
|
480
|
+
export declare const marshalAccountsCreateMetastoreAssignmentRequestSchema: z.ZodType;
|
|
481
|
+
export declare const marshalAccountsCreateMetastoreRequestSchema: z.ZodType;
|
|
482
|
+
export declare const marshalAccountsUpdateMetastoreAssignmentRequestSchema: z.ZodType;
|
|
483
|
+
export declare const marshalAccountsUpdateMetastoreRequestSchema: z.ZodType;
|
|
484
|
+
export declare const marshalCreateAccountsMetastoreSchema: z.ZodType;
|
|
485
|
+
export declare const marshalCreateMetastoreAssignmentRequestSchema: z.ZodType;
|
|
486
|
+
export declare const marshalCreateMetastoreRequestSchema: z.ZodType;
|
|
487
|
+
export declare const marshalMetastoreAssignmentSchema: z.ZodType;
|
|
488
|
+
export declare const marshalUpdateAccountsMetastoreSchema: z.ZodType;
|
|
489
|
+
export declare const marshalUpdateMetastoreAssignmentRequestSchema: z.ZodType;
|
|
490
|
+
export declare const marshalUpdateMetastoreRequestSchema: z.ZodType;
|
|
491
|
+
//# sourceMappingURL=model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../src/v1/model.ts"],"names":[],"mappings":"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"}
|