@databricks/sdk-uc-registeredmodels 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 +143 -0
- package/dist/v1/client.d.ts.map +1 -0
- package/dist/v1/client.js +518 -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 +406 -0
- package/dist/v1/model.d.ts.map +1 -0
- package/dist/v1/model.js +429 -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 +641 -0
- package/src/v1/index.ts +34 -0
- package/src/v1/model.ts +856 -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,406 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare enum ModelVersionStatus {
|
|
3
|
+
MODEL_VERSION_STATUS_UNKNOWN = "MODEL_VERSION_STATUS_UNKNOWN",
|
|
4
|
+
/** Request to register a new model version is pending as client uploads model files. */
|
|
5
|
+
PENDING_REGISTRATION = "PENDING_REGISTRATION",
|
|
6
|
+
/** Request to register a new model version has failed. */
|
|
7
|
+
FAILED_REGISTRATION = "FAILED_REGISTRATION",
|
|
8
|
+
/** Model version is ready for use. */
|
|
9
|
+
READY = "READY"
|
|
10
|
+
}
|
|
11
|
+
/** A connection that is dependent on a SQL object. */
|
|
12
|
+
export interface ConnectionDependency {
|
|
13
|
+
/** Full name of the dependent connection, in the form of __connection_name__. */
|
|
14
|
+
connectionName?: string | undefined;
|
|
15
|
+
}
|
|
16
|
+
export interface CreateRegisteredModelRequest {
|
|
17
|
+
/** The name of the registered model */
|
|
18
|
+
name?: string | undefined;
|
|
19
|
+
/** The name of the catalog where the schema and the registered model reside */
|
|
20
|
+
catalogName?: string | undefined;
|
|
21
|
+
/** The name of the schema where the registered model resides */
|
|
22
|
+
schemaName?: string | undefined;
|
|
23
|
+
/** The identifier of the user who owns the registered model */
|
|
24
|
+
owner?: string | undefined;
|
|
25
|
+
/** The comment attached to the registered model */
|
|
26
|
+
comment?: string | undefined;
|
|
27
|
+
/** The storage location on the cloud under which model version data files are stored */
|
|
28
|
+
storageLocation?: string | undefined;
|
|
29
|
+
/** The unique identifier of the metastore */
|
|
30
|
+
metastoreId?: string | undefined;
|
|
31
|
+
/** The three-level (fully qualified) name of the registered model */
|
|
32
|
+
fullName?: string | undefined;
|
|
33
|
+
/** Creation timestamp of the registered model in milliseconds since the Unix epoch */
|
|
34
|
+
createdAt?: bigint | undefined;
|
|
35
|
+
/** The identifier of the user who created the registered model */
|
|
36
|
+
createdBy?: string | undefined;
|
|
37
|
+
/** Last-update timestamp of the registered model in milliseconds since the Unix epoch */
|
|
38
|
+
updatedAt?: bigint | undefined;
|
|
39
|
+
/** The identifier of the user who updated the registered model last time */
|
|
40
|
+
updatedBy?: string | undefined;
|
|
41
|
+
/** List of aliases associated with the registered model */
|
|
42
|
+
aliases?: RegisteredModelAliasInfo[] | undefined;
|
|
43
|
+
/** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
|
|
44
|
+
browseOnly?: boolean | undefined;
|
|
45
|
+
}
|
|
46
|
+
/** A credential that is dependent on a SQL object. */
|
|
47
|
+
export interface CredentialDependency {
|
|
48
|
+
/** Full name of the dependent credential, in the form of __credential_name__. */
|
|
49
|
+
credentialName?: string | undefined;
|
|
50
|
+
}
|
|
51
|
+
export interface DeleteModelVersionRequest {
|
|
52
|
+
/** The three-level (fully qualified) name of the model version */
|
|
53
|
+
fullNameArg?: string | undefined;
|
|
54
|
+
/** The integer version number of the model version */
|
|
55
|
+
versionArg?: bigint | undefined;
|
|
56
|
+
}
|
|
57
|
+
export interface DeleteModelVersionRequest_Response {
|
|
58
|
+
}
|
|
59
|
+
export interface DeleteRegisteredModelAliasRequest {
|
|
60
|
+
/** The three-level (fully qualified) name of the registered model */
|
|
61
|
+
fullNameArg?: string | undefined;
|
|
62
|
+
/** The name of the alias */
|
|
63
|
+
aliasArg?: string | undefined;
|
|
64
|
+
}
|
|
65
|
+
export interface DeleteRegisteredModelAliasRequest_Response {
|
|
66
|
+
}
|
|
67
|
+
export interface DeleteRegisteredModelRequest {
|
|
68
|
+
/** The three-level (fully qualified) name of the registered model */
|
|
69
|
+
fullNameArg?: string | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface DeleteRegisteredModelRequest_Response {
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* A dependency of a SQL object. One of the following fields must be defined:
|
|
75
|
+
* __table__, __function__, __connection__, __credential__, __volume__, or __secret__.
|
|
76
|
+
*/
|
|
77
|
+
export interface Dependency {
|
|
78
|
+
value?: {
|
|
79
|
+
$case: 'table';
|
|
80
|
+
table: TableDependency;
|
|
81
|
+
} | {
|
|
82
|
+
$case: 'function';
|
|
83
|
+
function: FunctionDependency;
|
|
84
|
+
} | {
|
|
85
|
+
$case: 'connection';
|
|
86
|
+
connection: ConnectionDependency;
|
|
87
|
+
} | {
|
|
88
|
+
$case: 'credential';
|
|
89
|
+
credential: CredentialDependency;
|
|
90
|
+
} | undefined;
|
|
91
|
+
}
|
|
92
|
+
/** A list of dependencies. */
|
|
93
|
+
export interface DependencyList {
|
|
94
|
+
/** Array of dependencies. */
|
|
95
|
+
dependencies?: Dependency[] | undefined;
|
|
96
|
+
}
|
|
97
|
+
/** A function that is dependent on a SQL object. */
|
|
98
|
+
export interface FunctionDependency {
|
|
99
|
+
/** Full name of the dependent function, in the form of __catalog_name__.__schema_name__.__function_name__. */
|
|
100
|
+
functionFullName?: string | undefined;
|
|
101
|
+
}
|
|
102
|
+
export interface GetModelVersionByAliasRequest {
|
|
103
|
+
/** The three-level (fully qualified) name of the registered model */
|
|
104
|
+
fullNameArg?: string | undefined;
|
|
105
|
+
/** The name of the alias */
|
|
106
|
+
aliasArg?: string | undefined;
|
|
107
|
+
/** Whether to include aliases associated with the model version in the response */
|
|
108
|
+
includeAliases?: boolean | undefined;
|
|
109
|
+
}
|
|
110
|
+
export interface GetModelVersionRequest {
|
|
111
|
+
/** The three-level (fully qualified) name of the model version */
|
|
112
|
+
fullNameArg?: string | undefined;
|
|
113
|
+
/** The integer version number of the model version */
|
|
114
|
+
versionArg?: bigint | undefined;
|
|
115
|
+
/** Whether to include aliases associated with the model version in the response */
|
|
116
|
+
includeAliases?: boolean | undefined;
|
|
117
|
+
/** Whether to include model versions in the response for which the principal can only access selective metadata for */
|
|
118
|
+
includeBrowse?: boolean | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface GetRegisteredModelRequest {
|
|
121
|
+
/** The three-level (fully qualified) name of the registered model */
|
|
122
|
+
fullNameArg?: string | undefined;
|
|
123
|
+
/** Whether to include registered model aliases in the response */
|
|
124
|
+
includeAliases?: boolean | undefined;
|
|
125
|
+
/** Whether to include registered models in the response for which the principal can only access selective metadata for */
|
|
126
|
+
includeBrowse?: boolean | undefined;
|
|
127
|
+
}
|
|
128
|
+
export interface ListModelVersionsRequest {
|
|
129
|
+
/** The full three-level name of the registered model under which to list model versions */
|
|
130
|
+
fullNameArg?: string | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* Maximum number of model versions to return.
|
|
133
|
+
* If not set, the page length is set to a server configured value (100, as of 1/3/2024).
|
|
134
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value(1000, as of 1/3/2024);
|
|
135
|
+
* - when set to 0, the page length is set to a server configured value (100, as of 1/3/2024) (recommended);
|
|
136
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
137
|
+
*/
|
|
138
|
+
maxResults?: bigint | undefined;
|
|
139
|
+
/** Opaque pagination token to go to next page based on previous query. */
|
|
140
|
+
pageToken?: string | undefined;
|
|
141
|
+
/** Whether to include model versions in the response for which the principal can only access selective metadata for */
|
|
142
|
+
includeBrowse?: boolean | undefined;
|
|
143
|
+
}
|
|
144
|
+
export interface ListModelVersionsRequest_Response {
|
|
145
|
+
modelVersions?: ModelVersionInfo[] | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* Opaque token to retrieve the next page of results. Absent if there are no more pages.
|
|
148
|
+
* __page_token__ should be set to this value for the next request (for the next page of results).
|
|
149
|
+
*/
|
|
150
|
+
nextPageToken?: string | undefined;
|
|
151
|
+
}
|
|
152
|
+
export interface ListRegisteredModelsRequest {
|
|
153
|
+
/**
|
|
154
|
+
* The identifier of the catalog under which to list registered models.
|
|
155
|
+
* If specified, schema_name must be specified.
|
|
156
|
+
*/
|
|
157
|
+
catalogName?: string | undefined;
|
|
158
|
+
/**
|
|
159
|
+
* The identifier of the schema under which to list registered models.
|
|
160
|
+
* If specified, catalog_name must be specified.
|
|
161
|
+
*/
|
|
162
|
+
schemaName?: string | undefined;
|
|
163
|
+
/** Whether to include registered models in the response for which the principal can only access selective metadata for */
|
|
164
|
+
includeBrowse?: boolean | undefined;
|
|
165
|
+
/**
|
|
166
|
+
* Max number of registered models to return.
|
|
167
|
+
*
|
|
168
|
+
* If both catalog and schema are specified:
|
|
169
|
+
* - when max_results is not specified, the page length is set to a server configured value (10000, as of 4/2/2024).
|
|
170
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value (10000, as of 4/2/2024);
|
|
171
|
+
* - when set to 0, the page length is set to a server configured value (10000, as of 4/2/2024);
|
|
172
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
173
|
+
*
|
|
174
|
+
* If neither schema nor catalog is specified:
|
|
175
|
+
* - when max_results is not specified, the page length is set to a server configured value (100, as of 4/2/2024).
|
|
176
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value (1000, as of 4/2/2024);
|
|
177
|
+
* - when set to 0, the page length is set to a server configured value (100, as of 4/2/2024);
|
|
178
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
179
|
+
*/
|
|
180
|
+
maxResults?: bigint | undefined;
|
|
181
|
+
/** Opaque token to send for the next page of results (pagination). */
|
|
182
|
+
pageToken?: string | undefined;
|
|
183
|
+
}
|
|
184
|
+
export interface ListRegisteredModelsRequest_Response {
|
|
185
|
+
registeredModels?: RegisteredModelInfo[] | undefined;
|
|
186
|
+
/**
|
|
187
|
+
* Opaque token for pagination. Omitted if there are no more results. page_token should
|
|
188
|
+
* be set to this value for fetching the next page.
|
|
189
|
+
*/
|
|
190
|
+
nextPageToken?: string | undefined;
|
|
191
|
+
}
|
|
192
|
+
export interface ModelVersionInfo {
|
|
193
|
+
/** The name of the parent registered model of the model version, relative to parent schema */
|
|
194
|
+
modelName?: string | undefined;
|
|
195
|
+
/** The name of the catalog containing the model version */
|
|
196
|
+
catalogName?: string | undefined;
|
|
197
|
+
/** The name of the schema containing the model version, relative to parent catalog */
|
|
198
|
+
schemaName?: string | undefined;
|
|
199
|
+
/** URI indicating the location of the source artifacts (files) for the model version */
|
|
200
|
+
source?: string | undefined;
|
|
201
|
+
/** The comment attached to the model version */
|
|
202
|
+
comment?: string | undefined;
|
|
203
|
+
/**
|
|
204
|
+
* MLflow run ID used when creating the model version, if ``source`` was generated by an
|
|
205
|
+
* experiment run stored in an MLflow tracking server
|
|
206
|
+
*/
|
|
207
|
+
runId?: string | undefined;
|
|
208
|
+
/**
|
|
209
|
+
* ID of the <Databricks> workspace containing the MLflow run that generated this model
|
|
210
|
+
* version, if applicable
|
|
211
|
+
*/
|
|
212
|
+
runWorkspaceId?: bigint | undefined;
|
|
213
|
+
/** Model version dependencies, for feature-store packaged models */
|
|
214
|
+
modelVersionDependencies?: DependencyList | undefined;
|
|
215
|
+
/**
|
|
216
|
+
* Current status of the model version. Newly created model versions start in
|
|
217
|
+
* PENDING_REGISTRATION status, then move to READY status once the model version files are uploaded and
|
|
218
|
+
* the model version is finalized. Only model versions in READY status can be loaded for inference or
|
|
219
|
+
* served.
|
|
220
|
+
*/
|
|
221
|
+
status?: ModelVersionStatus | undefined;
|
|
222
|
+
/** Integer model version number, used to reference the model version in API requests. */
|
|
223
|
+
version?: bigint | undefined;
|
|
224
|
+
/** The storage location on the cloud under which model version data files are stored */
|
|
225
|
+
storageLocation?: string | undefined;
|
|
226
|
+
/** The unique identifier of the metastore containing the model version */
|
|
227
|
+
metastoreId?: string | undefined;
|
|
228
|
+
createdAt?: bigint | undefined;
|
|
229
|
+
/** The identifier of the user who created the model version */
|
|
230
|
+
createdBy?: string | undefined;
|
|
231
|
+
updatedAt?: bigint | undefined;
|
|
232
|
+
/** The identifier of the user who updated the model version last time */
|
|
233
|
+
updatedBy?: string | undefined;
|
|
234
|
+
/** The unique identifier of the model version */
|
|
235
|
+
id?: string | undefined;
|
|
236
|
+
/** List of aliases associated with the model version */
|
|
237
|
+
aliases?: RegisteredModelAliasInfo[] | undefined;
|
|
238
|
+
}
|
|
239
|
+
export interface RegisteredModelAliasInfo {
|
|
240
|
+
/** Name of the alias, e.g. 'champion' or 'latest_stable' */
|
|
241
|
+
aliasName?: string | undefined;
|
|
242
|
+
/** Integer version number of the model version to which this alias points. */
|
|
243
|
+
versionNum?: bigint | undefined;
|
|
244
|
+
/** The unique identifier of the alias */
|
|
245
|
+
id?: string | undefined;
|
|
246
|
+
/** The name of the parent registered model of the model version, relative to parent schema */
|
|
247
|
+
modelName?: string | undefined;
|
|
248
|
+
/** The name of the catalog containing the model version */
|
|
249
|
+
catalogName?: string | undefined;
|
|
250
|
+
/** The name of the schema containing the model version, relative to parent catalog */
|
|
251
|
+
schemaName?: string | undefined;
|
|
252
|
+
}
|
|
253
|
+
export interface RegisteredModelInfo {
|
|
254
|
+
/** The name of the registered model */
|
|
255
|
+
name?: string | undefined;
|
|
256
|
+
/** The name of the catalog where the schema and the registered model reside */
|
|
257
|
+
catalogName?: string | undefined;
|
|
258
|
+
/** The name of the schema where the registered model resides */
|
|
259
|
+
schemaName?: string | undefined;
|
|
260
|
+
/** The identifier of the user who owns the registered model */
|
|
261
|
+
owner?: string | undefined;
|
|
262
|
+
/** The comment attached to the registered model */
|
|
263
|
+
comment?: string | undefined;
|
|
264
|
+
/** The storage location on the cloud under which model version data files are stored */
|
|
265
|
+
storageLocation?: string | undefined;
|
|
266
|
+
/** The unique identifier of the metastore */
|
|
267
|
+
metastoreId?: string | undefined;
|
|
268
|
+
/** The three-level (fully qualified) name of the registered model */
|
|
269
|
+
fullName?: string | undefined;
|
|
270
|
+
/** Creation timestamp of the registered model in milliseconds since the Unix epoch */
|
|
271
|
+
createdAt?: bigint | undefined;
|
|
272
|
+
/** The identifier of the user who created the registered model */
|
|
273
|
+
createdBy?: string | undefined;
|
|
274
|
+
/** Last-update timestamp of the registered model in milliseconds since the Unix epoch */
|
|
275
|
+
updatedAt?: bigint | undefined;
|
|
276
|
+
/** The identifier of the user who updated the registered model last time */
|
|
277
|
+
updatedBy?: string | undefined;
|
|
278
|
+
/** List of aliases associated with the registered model */
|
|
279
|
+
aliases?: RegisteredModelAliasInfo[] | undefined;
|
|
280
|
+
/** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
|
|
281
|
+
browseOnly?: boolean | undefined;
|
|
282
|
+
}
|
|
283
|
+
export interface SetRegisteredModelAliasRequest {
|
|
284
|
+
/** The three-level (fully qualified) name of the registered model */
|
|
285
|
+
fullNameArg?: string | undefined;
|
|
286
|
+
/** The name of the alias */
|
|
287
|
+
aliasArg?: string | undefined;
|
|
288
|
+
/** The version number of the model version to which the alias points */
|
|
289
|
+
versionNum?: bigint | undefined;
|
|
290
|
+
}
|
|
291
|
+
/** A table that is dependent on a SQL object. */
|
|
292
|
+
export interface TableDependency {
|
|
293
|
+
/** Full name of the dependent table, in the form of __catalog_name__.__schema_name__.__table_name__. */
|
|
294
|
+
tableFullName?: string | undefined;
|
|
295
|
+
}
|
|
296
|
+
export interface UpdateModelVersionRequest {
|
|
297
|
+
/** The three-level (fully qualified) name of the model version */
|
|
298
|
+
fullNameArg?: string | undefined;
|
|
299
|
+
/** The integer version number of the model version */
|
|
300
|
+
versionArg?: bigint | undefined;
|
|
301
|
+
/** The name of the parent registered model of the model version, relative to parent schema */
|
|
302
|
+
modelName?: string | undefined;
|
|
303
|
+
/** The name of the catalog containing the model version */
|
|
304
|
+
catalogName?: string | undefined;
|
|
305
|
+
/** The name of the schema containing the model version, relative to parent catalog */
|
|
306
|
+
schemaName?: string | undefined;
|
|
307
|
+
/** URI indicating the location of the source artifacts (files) for the model version */
|
|
308
|
+
source?: string | undefined;
|
|
309
|
+
/** The comment attached to the model version */
|
|
310
|
+
comment?: string | undefined;
|
|
311
|
+
/**
|
|
312
|
+
* MLflow run ID used when creating the model version, if ``source`` was generated by an
|
|
313
|
+
* experiment run stored in an MLflow tracking server
|
|
314
|
+
*/
|
|
315
|
+
runId?: string | undefined;
|
|
316
|
+
/**
|
|
317
|
+
* ID of the <Databricks> workspace containing the MLflow run that generated this model
|
|
318
|
+
* version, if applicable
|
|
319
|
+
*/
|
|
320
|
+
runWorkspaceId?: bigint | undefined;
|
|
321
|
+
/** Model version dependencies, for feature-store packaged models */
|
|
322
|
+
modelVersionDependencies?: DependencyList | undefined;
|
|
323
|
+
/**
|
|
324
|
+
* Current status of the model version. Newly created model versions start in
|
|
325
|
+
* PENDING_REGISTRATION status, then move to READY status once the model version files are uploaded and
|
|
326
|
+
* the model version is finalized. Only model versions in READY status can be loaded for inference or
|
|
327
|
+
* served.
|
|
328
|
+
*/
|
|
329
|
+
status?: ModelVersionStatus | undefined;
|
|
330
|
+
/** Integer model version number, used to reference the model version in API requests. */
|
|
331
|
+
version?: bigint | undefined;
|
|
332
|
+
/** The storage location on the cloud under which model version data files are stored */
|
|
333
|
+
storageLocation?: string | undefined;
|
|
334
|
+
/** The unique identifier of the metastore containing the model version */
|
|
335
|
+
metastoreId?: string | undefined;
|
|
336
|
+
createdAt?: bigint | undefined;
|
|
337
|
+
/** The identifier of the user who created the model version */
|
|
338
|
+
createdBy?: string | undefined;
|
|
339
|
+
updatedAt?: bigint | undefined;
|
|
340
|
+
/** The identifier of the user who updated the model version last time */
|
|
341
|
+
updatedBy?: string | undefined;
|
|
342
|
+
/** The unique identifier of the model version */
|
|
343
|
+
id?: string | undefined;
|
|
344
|
+
/** List of aliases associated with the model version */
|
|
345
|
+
aliases?: RegisteredModelAliasInfo[] | undefined;
|
|
346
|
+
}
|
|
347
|
+
export interface UpdateRegisteredModelRequest {
|
|
348
|
+
/** The three-level (fully qualified) name of the registered model */
|
|
349
|
+
fullNameArg?: string | undefined;
|
|
350
|
+
/** New name for the registered model. */
|
|
351
|
+
newName?: string | undefined;
|
|
352
|
+
/** The name of the registered model */
|
|
353
|
+
name?: string | undefined;
|
|
354
|
+
/** The name of the catalog where the schema and the registered model reside */
|
|
355
|
+
catalogName?: string | undefined;
|
|
356
|
+
/** The name of the schema where the registered model resides */
|
|
357
|
+
schemaName?: string | undefined;
|
|
358
|
+
/** The identifier of the user who owns the registered model */
|
|
359
|
+
owner?: string | undefined;
|
|
360
|
+
/** The comment attached to the registered model */
|
|
361
|
+
comment?: string | undefined;
|
|
362
|
+
/** The storage location on the cloud under which model version data files are stored */
|
|
363
|
+
storageLocation?: string | undefined;
|
|
364
|
+
/** The unique identifier of the metastore */
|
|
365
|
+
metastoreId?: string | undefined;
|
|
366
|
+
/** The three-level (fully qualified) name of the registered model */
|
|
367
|
+
fullName?: string | undefined;
|
|
368
|
+
/** Creation timestamp of the registered model in milliseconds since the Unix epoch */
|
|
369
|
+
createdAt?: bigint | undefined;
|
|
370
|
+
/** The identifier of the user who created the registered model */
|
|
371
|
+
createdBy?: string | undefined;
|
|
372
|
+
/** Last-update timestamp of the registered model in milliseconds since the Unix epoch */
|
|
373
|
+
updatedAt?: bigint | undefined;
|
|
374
|
+
/** The identifier of the user who updated the registered model last time */
|
|
375
|
+
updatedBy?: string | undefined;
|
|
376
|
+
/** List of aliases associated with the registered model */
|
|
377
|
+
aliases?: RegisteredModelAliasInfo[] | undefined;
|
|
378
|
+
/** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
|
|
379
|
+
browseOnly?: boolean | undefined;
|
|
380
|
+
}
|
|
381
|
+
export declare const unmarshalConnectionDependencySchema: z.ZodType<ConnectionDependency>;
|
|
382
|
+
export declare const unmarshalCredentialDependencySchema: z.ZodType<CredentialDependency>;
|
|
383
|
+
export declare const unmarshalDeleteModelVersionRequest_ResponseSchema: z.ZodType<DeleteModelVersionRequest_Response>;
|
|
384
|
+
export declare const unmarshalDeleteRegisteredModelAliasRequest_ResponseSchema: z.ZodType<DeleteRegisteredModelAliasRequest_Response>;
|
|
385
|
+
export declare const unmarshalDeleteRegisteredModelRequest_ResponseSchema: z.ZodType<DeleteRegisteredModelRequest_Response>;
|
|
386
|
+
export declare const unmarshalDependencySchema: z.ZodType<Dependency>;
|
|
387
|
+
export declare const unmarshalDependencyListSchema: z.ZodType<DependencyList>;
|
|
388
|
+
export declare const unmarshalFunctionDependencySchema: z.ZodType<FunctionDependency>;
|
|
389
|
+
export declare const unmarshalListModelVersionsRequest_ResponseSchema: z.ZodType<ListModelVersionsRequest_Response>;
|
|
390
|
+
export declare const unmarshalListRegisteredModelsRequest_ResponseSchema: z.ZodType<ListRegisteredModelsRequest_Response>;
|
|
391
|
+
export declare const unmarshalModelVersionInfoSchema: z.ZodType<ModelVersionInfo>;
|
|
392
|
+
export declare const unmarshalRegisteredModelAliasInfoSchema: z.ZodType<RegisteredModelAliasInfo>;
|
|
393
|
+
export declare const unmarshalRegisteredModelInfoSchema: z.ZodType<RegisteredModelInfo>;
|
|
394
|
+
export declare const unmarshalTableDependencySchema: z.ZodType<TableDependency>;
|
|
395
|
+
export declare const marshalConnectionDependencySchema: z.ZodType;
|
|
396
|
+
export declare const marshalCreateRegisteredModelRequestSchema: z.ZodType;
|
|
397
|
+
export declare const marshalCredentialDependencySchema: z.ZodType;
|
|
398
|
+
export declare const marshalDependencySchema: z.ZodType;
|
|
399
|
+
export declare const marshalDependencyListSchema: z.ZodType;
|
|
400
|
+
export declare const marshalFunctionDependencySchema: z.ZodType;
|
|
401
|
+
export declare const marshalRegisteredModelAliasInfoSchema: z.ZodType;
|
|
402
|
+
export declare const marshalSetRegisteredModelAliasRequestSchema: z.ZodType;
|
|
403
|
+
export declare const marshalTableDependencySchema: z.ZodType;
|
|
404
|
+
export declare const marshalUpdateModelVersionRequestSchema: z.ZodType;
|
|
405
|
+
export declare const marshalUpdateRegisteredModelRequestSchema: z.ZodType;
|
|
406
|
+
//# 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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"}
|