@databricks/sdk-modelregistry 0.0.0-dev → 0.1.0-dev.2

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.
@@ -0,0 +1,1096 @@
1
+ import { z } from 'zod';
2
+ /**
3
+ * An action that a user (with sufficient permissions) could take on an activity or comment.
4
+ *
5
+ * For activities, valid values are:
6
+ * * `APPROVE_TRANSITION_REQUEST`: Approve a transition request
7
+ *
8
+ * * `REJECT_TRANSITION_REQUEST`: Reject a transition request
9
+ *
10
+ * * `CANCEL_TRANSITION_REQUEST`: Cancel (delete) a transition request
11
+ *
12
+ * For comments, valid values are:
13
+ * * `EDIT_COMMENT`: Edit the comment
14
+ *
15
+ * * `DELETE_COMMENT`: Delete the comment
16
+ */
17
+ export declare enum ActivityAction {
18
+ /** Approve a transition request. Available to users with sufficient permissions. */
19
+ APPROVE_TRANSITION_REQUEST = "APPROVE_TRANSITION_REQUEST",
20
+ /** Reject a transition request. Available to users with sufficient permissions. */
21
+ REJECT_TRANSITION_REQUEST = "REJECT_TRANSITION_REQUEST",
22
+ /** Cancel a transition request. Available to the user who created the request. */
23
+ CANCEL_TRANSITION_REQUEST = "CANCEL_TRANSITION_REQUEST",
24
+ /** Edit the comment */
25
+ EDIT_COMMENT = "EDIT_COMMENT",
26
+ /** Delete the comment */
27
+ DELETE_COMMENT = "DELETE_COMMENT"
28
+ }
29
+ /**
30
+ * Type of activity. Valid values are:
31
+ * * `APPLIED_TRANSITION`: User applied the corresponding stage transition.
32
+ *
33
+ * * `REQUESTED_TRANSITION`: User requested the corresponding stage transition.
34
+ *
35
+ * * `CANCELLED_REQUEST`: User cancelled an existing transition request.
36
+ *
37
+ * * `APPROVED_REQUEST`: User approved the corresponding stage transition.
38
+ *
39
+ * * `REJECTED_REQUEST`: User rejected the coressponding stage transition.
40
+ *
41
+ * * `SYSTEM_TRANSITION`: For events performed as a side effect, such as archiving existing model versions in a stage.
42
+ */
43
+ export declare enum ActivityType {
44
+ /** Indicates that the corresponding stage transition was applied by user. */
45
+ APPLIED_TRANSITION = "APPLIED_TRANSITION",
46
+ /** Corresponding stage transition was requested by user. */
47
+ REQUESTED_TRANSITION = "REQUESTED_TRANSITION",
48
+ /** User cancelled an existing request. */
49
+ CANCELLED_REQUEST = "CANCELLED_REQUEST",
50
+ /** Corresponding transition request was approved by user. */
51
+ APPROVED_REQUEST = "APPROVED_REQUEST",
52
+ /** Corresponding transition request was rejected by user. */
53
+ REJECTED_REQUEST = "REJECTED_REQUEST",
54
+ /** User posted a new comment */
55
+ NEW_COMMENT = "NEW_COMMENT",
56
+ /** Corresponding transition for events such as archiving existing model versions */
57
+ SYSTEM_TRANSITION = "SYSTEM_TRANSITION"
58
+ }
59
+ /**
60
+ * The status of the model version. Valid values are:
61
+ * * `PENDING_REGISTRATION`: Request to register a new model version is pending as server performs background tasks.
62
+ *
63
+ * * `FAILED_REGISTRATION`: Request to register a new model version has failed.
64
+ *
65
+ * * `READY`: Model version is ready for use.
66
+ */
67
+ export declare enum ModelVersionStatus {
68
+ /** Request to register a new model version is pending as server performs background tasks. */
69
+ PENDING_REGISTRATION = "PENDING_REGISTRATION",
70
+ /** Request to register a new model version has failed. */
71
+ FAILED_REGISTRATION = "FAILED_REGISTRATION",
72
+ /** Model version is ready for use. */
73
+ READY = "READY"
74
+ }
75
+ /** Permission level of the requesting user on the object. For what is allowed at each level, see [MLflow Model permissions](..). */
76
+ export declare enum PermissionLevel {
77
+ CAN_MANAGE = "CAN_MANAGE",
78
+ /** reserved 1; // IS_OWNER = 1; was DEPRECATED */
79
+ CAN_EDIT = "CAN_EDIT",
80
+ CAN_READ = "CAN_READ",
81
+ CAN_MANAGE_STAGING_VERSIONS = "CAN_MANAGE_STAGING_VERSIONS",
82
+ CAN_MANAGE_PRODUCTION_VERSIONS = "CAN_MANAGE_PRODUCTION_VERSIONS",
83
+ /**
84
+ * Only applicable to the root ACL path, for which it is the default value if no permissions are
85
+ * set explicitly for the user. It is the default set by the MLflow service and The ACL database
86
+ * does not understand this value.
87
+ */
88
+ CAN_CREATE_REGISTERED_MODEL = "CAN_CREATE_REGISTERED_MODEL"
89
+ }
90
+ /**
91
+ * .. note::
92
+ * Experimental: This entity may change or be removed in a future release without warning.
93
+ * Email subscription types for registry notifications:
94
+ * - `ALL_EVENTS`: Subscribed to all events.
95
+ * - `DEFAULT`: Default subscription type.
96
+ * - `SUBSCRIBED`: Subscribed to notifications.
97
+ * - `UNSUBSCRIBED`: Not subscribed to notifications.
98
+ */
99
+ export declare enum RegistryEmailSubscriptionType {
100
+ ALL_EVENTS = "ALL_EVENTS",
101
+ DEFAULT = "DEFAULT",
102
+ SUBSCRIBED = "SUBSCRIBED",
103
+ UNSUBSCRIBED = "UNSUBSCRIBED"
104
+ }
105
+ export declare enum RegistryWebhookEvent {
106
+ MODEL_VERSION_CREATED = "MODEL_VERSION_CREATED",
107
+ MODEL_VERSION_TRANSITIONED_STAGE = "MODEL_VERSION_TRANSITIONED_STAGE",
108
+ TRANSITION_REQUEST_CREATED = "TRANSITION_REQUEST_CREATED",
109
+ COMMENT_CREATED = "COMMENT_CREATED",
110
+ REGISTERED_MODEL_CREATED = "REGISTERED_MODEL_CREATED",
111
+ MODEL_VERSION_TAG_SET = "MODEL_VERSION_TAG_SET",
112
+ MODEL_VERSION_TRANSITIONED_TO_STAGING = "MODEL_VERSION_TRANSITIONED_TO_STAGING",
113
+ MODEL_VERSION_TRANSITIONED_TO_PRODUCTION = "MODEL_VERSION_TRANSITIONED_TO_PRODUCTION",
114
+ MODEL_VERSION_TRANSITIONED_TO_ARCHIVED = "MODEL_VERSION_TRANSITIONED_TO_ARCHIVED",
115
+ TRANSITION_REQUEST_TO_STAGING_CREATED = "TRANSITION_REQUEST_TO_STAGING_CREATED",
116
+ TRANSITION_REQUEST_TO_PRODUCTION_CREATED = "TRANSITION_REQUEST_TO_PRODUCTION_CREATED",
117
+ TRANSITION_REQUEST_TO_ARCHIVED_CREATED = "TRANSITION_REQUEST_TO_ARCHIVED_CREATED"
118
+ }
119
+ /**
120
+ * Enable or disable triggering the webhook, or put the webhook into test mode. The default is `ACTIVE`:
121
+ * * `ACTIVE`: Webhook is triggered when an associated event happens.
122
+ *
123
+ * * `DISABLED`: Webhook is not triggered.
124
+ *
125
+ * * `TEST_MODE`: Webhook can be triggered through the test endpoint, but is not triggered on a real event.
126
+ */
127
+ export declare enum RegistryWebhookStatus {
128
+ /** Event and test triggers will be sent. */
129
+ ACTIVE = "ACTIVE",
130
+ /** No triggers will be sent. */
131
+ DISABLED = "DISABLED",
132
+ /** Test triggers will be sent, but not actual events. */
133
+ TEST_MODE = "TEST_MODE"
134
+ }
135
+ /**
136
+ * For activities, this contains the activity recorded for the action.
137
+ * For comments, this contains the comment details.
138
+ * For transition requests, this contains the transition request details.
139
+ */
140
+ export interface Activity {
141
+ /** Creation time of the object, as a Unix timestamp in milliseconds. */
142
+ creationTimestamp?: bigint | undefined;
143
+ /** The username of the user that created the object. */
144
+ userId?: string | undefined;
145
+ activityType?: ActivityType | undefined;
146
+ /** User-provided comment associated with the activity, comment, or transition request. */
147
+ comment?: string | undefined;
148
+ /** Time of the object at last update, as a Unix timestamp in milliseconds. */
149
+ lastUpdatedTimestamp?: bigint | undefined;
150
+ /**
151
+ * Source stage of the transition (if the activity is stage transition related). Valid values are:
152
+ *
153
+ * * `None`: The initial stage of a model version.
154
+ *
155
+ * * `Staging`: Staging or pre-production stage.
156
+ *
157
+ * * `Production`: Production stage.
158
+ *
159
+ * * `Archived`: Archived stage.
160
+ */
161
+ fromStage?: string | undefined;
162
+ /**
163
+ * Target stage of the transition (if the activity is stage transition related). Valid values are:
164
+ *
165
+ * * `None`: The initial stage of a model version.
166
+ *
167
+ * * `Staging`: Staging or pre-production stage.
168
+ *
169
+ * * `Production`: Production stage.
170
+ *
171
+ * * `Archived`: Archived stage.
172
+ */
173
+ toStage?: string | undefined;
174
+ /** Comment made by system, for example explaining an activity of type `SYSTEM_TRANSITION`. It usually describes a side effect, such as a version being archived as part of another version's stage transition, and may not be returned for some activity types. */
175
+ systemComment?: string | undefined;
176
+ /** Array of actions on the activity allowed for the current viewer. */
177
+ availableActions?: ActivityAction[] | undefined;
178
+ /** Unique identifier for the object. */
179
+ id?: string | undefined;
180
+ }
181
+ /** Details required to identify and approve a model version stage transition request. */
182
+ export interface ApproveTransitionRequest {
183
+ /** Name of the model. */
184
+ name?: string | undefined;
185
+ /** Version of the model. */
186
+ version?: string | undefined;
187
+ /**
188
+ * Target stage of the transition. Valid values are:
189
+ *
190
+ * * `None`: The initial stage of a model version.
191
+ *
192
+ * * `Staging`: Staging or pre-production stage.
193
+ *
194
+ * * `Production`: Production stage.
195
+ *
196
+ * * `Archived`: Archived stage.
197
+ */
198
+ stage?: string | undefined;
199
+ /** Specifies whether to archive all current model versions in the target stage. */
200
+ archiveExistingVersions?: boolean | undefined;
201
+ /** User-provided comment on the action. */
202
+ comment?: string | undefined;
203
+ }
204
+ export interface ApproveTransitionRequest_Response {
205
+ /** New activity generated as a result of this operation. */
206
+ activity?: Activity | undefined;
207
+ }
208
+ /**
209
+ * For activities, this contains the activity recorded for the action.
210
+ * For comments, this contains the comment details.
211
+ * For transition requests, this contains the transition request details.
212
+ */
213
+ export interface CommentObject {
214
+ /** Creation time of the object, as a Unix timestamp in milliseconds. */
215
+ creationTimestamp?: bigint | undefined;
216
+ /** The username of the user that created the object. */
217
+ userId?: string | undefined;
218
+ activityType?: ActivityType | undefined;
219
+ /** User-provided comment associated with the activity, comment, or transition request. */
220
+ comment?: string | undefined;
221
+ /** Time of the object at last update, as a Unix timestamp in milliseconds. */
222
+ lastUpdatedTimestamp?: bigint | undefined;
223
+ /**
224
+ * Source stage of the transition (if the activity is stage transition related). Valid values are:
225
+ *
226
+ * * `None`: The initial stage of a model version.
227
+ *
228
+ * * `Staging`: Staging or pre-production stage.
229
+ *
230
+ * * `Production`: Production stage.
231
+ *
232
+ * * `Archived`: Archived stage.
233
+ */
234
+ fromStage?: string | undefined;
235
+ /**
236
+ * Target stage of the transition (if the activity is stage transition related). Valid values are:
237
+ *
238
+ * * `None`: The initial stage of a model version.
239
+ *
240
+ * * `Staging`: Staging or pre-production stage.
241
+ *
242
+ * * `Production`: Production stage.
243
+ *
244
+ * * `Archived`: Archived stage.
245
+ */
246
+ toStage?: string | undefined;
247
+ /** Comment made by system, for example explaining an activity of type `SYSTEM_TRANSITION`. It usually describes a side effect, such as a version being archived as part of another version's stage transition, and may not be returned for some activity types. */
248
+ systemComment?: string | undefined;
249
+ /** Array of actions on the activity allowed for the current viewer. */
250
+ availableActions?: ActivityAction[] | undefined;
251
+ /** Unique identifier for the object. */
252
+ id?: string | undefined;
253
+ }
254
+ /** Details required to create a comment on a model version. */
255
+ export interface CreateCommentRequest {
256
+ /** Name of the model. */
257
+ name?: string | undefined;
258
+ /** Version of the model. */
259
+ version?: string | undefined;
260
+ /** User-provided comment on the action. */
261
+ comment?: string | undefined;
262
+ }
263
+ export interface CreateCommentRequest_Response {
264
+ /** New comment object */
265
+ comment?: CommentObject | undefined;
266
+ }
267
+ export interface CreateModelVersionRequest {
268
+ /** Register model under this name */
269
+ name?: string | undefined;
270
+ /** URI indicating the location of the model artifacts. */
271
+ source?: string | undefined;
272
+ /**
273
+ * MLflow run ID for correlation, if `source` was generated by an experiment run in
274
+ * MLflow tracking server
275
+ */
276
+ runId?: string | undefined;
277
+ /** Additional metadata for model version. */
278
+ tags?: ModelVersionTag[] | undefined;
279
+ /**
280
+ * MLflow run link - this is the exact link of the run that generated this model version,
281
+ * potentially hosted at another instance of MLflow.
282
+ */
283
+ runLink?: string | undefined;
284
+ /** Optional description for model version. */
285
+ description?: string | undefined;
286
+ }
287
+ export interface CreateModelVersionRequest_Response {
288
+ /** Return new version number generated for this model in registry. */
289
+ modelVersion?: ModelVersion | undefined;
290
+ }
291
+ export interface CreateRegisteredModelRequest {
292
+ /** Register models under this name */
293
+ name?: string | undefined;
294
+ /** Additional metadata for registered model. */
295
+ tags?: RegisteredModelTag[] | undefined;
296
+ /** Optional description for registered model. */
297
+ description?: string | undefined;
298
+ }
299
+ export interface CreateRegisteredModelRequest_Response {
300
+ registeredModel?: RegisteredModel | undefined;
301
+ }
302
+ /** Details required to create a registry webhook. */
303
+ export interface CreateRegistryWebhookRequest {
304
+ /** If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models. */
305
+ modelName?: string | undefined;
306
+ /**
307
+ * Events that can trigger a registry webhook:
308
+ * * `MODEL_VERSION_CREATED`: A new model version was created for the associated model.
309
+ *
310
+ * * `MODEL_VERSION_TRANSITIONED_STAGE`: A model version’s stage was changed.
311
+ *
312
+ * * `TRANSITION_REQUEST_CREATED`: A user requested a model version’s stage be transitioned.
313
+ *
314
+ * * `COMMENT_CREATED`: A user wrote a comment on a registered model.
315
+ *
316
+ * * `REGISTERED_MODEL_CREATED`: A new registered model was created. This event type can only be specified for a registry-wide webhook, which can be created by not specifying a model name in the create request.
317
+ *
318
+ * * `MODEL_VERSION_TAG_SET`: A user set a tag on the model version.
319
+ *
320
+ * * `MODEL_VERSION_TRANSITIONED_TO_STAGING`: A model version was transitioned to staging.
321
+ *
322
+ * * `MODEL_VERSION_TRANSITIONED_TO_PRODUCTION`: A model version was transitioned to production.
323
+ *
324
+ * * `MODEL_VERSION_TRANSITIONED_TO_ARCHIVED`: A model version was archived.
325
+ *
326
+ * * `TRANSITION_REQUEST_TO_STAGING_CREATED`: A user requested a model version be transitioned to staging.
327
+ *
328
+ * * `TRANSITION_REQUEST_TO_PRODUCTION_CREATED`: A user requested a model version be transitioned to production.
329
+ *
330
+ * * `TRANSITION_REQUEST_TO_ARCHIVED_CREATED`: A user requested a model version be archived.
331
+ */
332
+ events?: RegistryWebhookEvent[] | undefined;
333
+ /** User-specified description for the webhook. */
334
+ description?: string | undefined;
335
+ /**
336
+ * Enable or disable triggering the webhook, or put the webhook into test mode. The default is `ACTIVE`:
337
+ * * `ACTIVE`: Webhook is triggered when an associated event happens.
338
+ *
339
+ * * `DISABLED`: Webhook is not triggered.
340
+ *
341
+ * * `TEST_MODE`: Webhook can be triggered through the test endpoint, but is not triggered on a real event.
342
+ */
343
+ status?: RegistryWebhookStatus | undefined;
344
+ /** External HTTPS URL called on event trigger (by using a POST request). */
345
+ httpUrlSpec?: HttpUrlSpec | undefined;
346
+ /** ID of the job that the webhook runs. */
347
+ jobSpec?: JobSpec | undefined;
348
+ }
349
+ export interface CreateRegistryWebhookRequest_Response {
350
+ webhook?: RegistryWebhook | undefined;
351
+ }
352
+ /** Details required to create a model version stage transition request. */
353
+ export interface CreateTransitionRequest {
354
+ /** Name of the model. */
355
+ name?: string | undefined;
356
+ /** Version of the model. */
357
+ version?: string | undefined;
358
+ /**
359
+ * Target stage of the transition. Valid values are:
360
+ *
361
+ * * `None`: The initial stage of a model version.
362
+ *
363
+ * * `Staging`: Staging or pre-production stage.
364
+ *
365
+ * * `Production`: Production stage.
366
+ *
367
+ * * `Archived`: Archived stage.
368
+ */
369
+ stage?: string | undefined;
370
+ /** User-provided comment on the action. */
371
+ comment?: string | undefined;
372
+ }
373
+ export interface CreateTransitionRequest_Response {
374
+ /** New activity generated for stage transition request. */
375
+ request?: TransitionRequest | undefined;
376
+ }
377
+ export interface DeleteCommentRequest {
378
+ /** Unique identifier of an activity */
379
+ id?: string | undefined;
380
+ }
381
+ export interface DeleteCommentRequest_Response {
382
+ }
383
+ export interface DeleteModelVersionRequest {
384
+ /** Name of the registered model */
385
+ name?: string | undefined;
386
+ /** Model version number */
387
+ version?: string | undefined;
388
+ }
389
+ export interface DeleteModelVersionRequest_Response {
390
+ }
391
+ export interface DeleteModelVersionTagRequest {
392
+ /** Name of the registered model that the tag was logged under. */
393
+ name?: string | undefined;
394
+ /** Model version number that the tag was logged under. */
395
+ version?: string | undefined;
396
+ /** Name of the tag. The name must be an exact match; wild-card deletion is not supported. Maximum size is 250 bytes. */
397
+ key?: string | undefined;
398
+ }
399
+ export interface DeleteModelVersionTagRequest_Response {
400
+ }
401
+ export interface DeleteRegisteredModelRequest {
402
+ /** Registered model unique name identifier. */
403
+ name?: string | undefined;
404
+ }
405
+ export interface DeleteRegisteredModelRequest_Response {
406
+ }
407
+ export interface DeleteRegisteredModelTagRequest {
408
+ /** Name of the registered model that the tag was logged under. */
409
+ name?: string | undefined;
410
+ /** Name of the tag. The name must be an exact match; wild-card deletion is not supported. Maximum size is 250 bytes. */
411
+ key?: string | undefined;
412
+ }
413
+ export interface DeleteRegisteredModelTagRequest_Response {
414
+ }
415
+ /**
416
+ * .. note::
417
+ * Experimental: This entity may change or be removed in a future release without warning.
418
+ */
419
+ export interface DeleteRegistryWebhookRequest {
420
+ /** Webhook ID required to delete a registry webhook. */
421
+ id?: string | undefined;
422
+ }
423
+ export interface DeleteRegistryWebhookRequest_Response {
424
+ }
425
+ export interface DeleteTransitionRequest {
426
+ /** Name of the model. */
427
+ name?: string | undefined;
428
+ /** Version of the model. */
429
+ version?: string | undefined;
430
+ /**
431
+ * Target stage of the transition request. Valid values are:
432
+ *
433
+ * * `None`: The initial stage of a model version.
434
+ *
435
+ * * `Staging`: Staging or pre-production stage.
436
+ *
437
+ * * `Production`: Production stage.
438
+ *
439
+ * * `Archived`: Archived stage.
440
+ */
441
+ stage?: string | undefined;
442
+ /** Username of the user who created this request. Of the transition requests matching the specified details, only the one transition created by this user will be deleted. */
443
+ creator?: string | undefined;
444
+ /** User-provided comment on the action. */
445
+ comment?: string | undefined;
446
+ }
447
+ export interface DeleteTransitionRequest_Response {
448
+ /** New activity generated as a result of this operation. */
449
+ activity?: Activity | undefined;
450
+ }
451
+ /** Feature list wrap all the features for a model version */
452
+ export interface FeatureList {
453
+ features?: LinkedFeature[] | undefined;
454
+ }
455
+ export interface GetModelVersionDownloadUriRequest {
456
+ /** Name of the registered model */
457
+ name?: string | undefined;
458
+ /** Model version number */
459
+ version?: string | undefined;
460
+ }
461
+ export interface GetModelVersionDownloadUriRequest_Response {
462
+ /** URI corresponding to where artifacts for this model version are stored. */
463
+ artifactUri?: string | undefined;
464
+ }
465
+ export interface GetModelVersionRequest {
466
+ /** Name of the registered model */
467
+ name?: string | undefined;
468
+ /** Model version number */
469
+ version?: string | undefined;
470
+ }
471
+ export interface GetModelVersionRequest_Response {
472
+ modelVersion?: ModelVersion | undefined;
473
+ }
474
+ export interface GetRegisteredModelDatabricksRequest {
475
+ /** Registered model unique name identifier. */
476
+ name?: string | undefined;
477
+ }
478
+ export interface GetRegisteredModelDatabricksRequest_Response {
479
+ registeredModelDatabricks?: RegisteredModelDatabricks | undefined;
480
+ }
481
+ export interface HttpUrlSpec {
482
+ /** External HTTPS URL called on event trigger (by using a POST request). */
483
+ url?: string | undefined;
484
+ /** Enable/disable SSL certificate validation. Default is true. For self-signed certificates, this field must be false AND the destination server must disable certificate validation as well. For security purposes, it is encouraged to perform secret validation with the HMAC-encoded portion of the payload and acknowledge the risk associated with disabling hostname validation whereby it becomes more likely that requests can be maliciously routed to an unintended host. */
485
+ enableSslVerification?: boolean | undefined;
486
+ /** Shared secret required for HMAC encoding payload. The HMAC-encoded payload will be sent in the header as: { "X-Databricks-Signature": $encoded_payload }. */
487
+ secret?: string | undefined;
488
+ /** Value of the authorization header that should be sent in the request sent by the wehbook. It should be of the form `"<auth type> <credentials>"`. If set to an empty string, no authorization header will be included in the request. */
489
+ authorization?: string | undefined;
490
+ }
491
+ export interface JobSpec {
492
+ /** ID of the job that the webhook runs. */
493
+ jobId?: string | undefined;
494
+ /** URL of the workspace containing the job that this webhook runs. If not specified, the job’s workspace URL is assumed to be the same as the workspace where the webhook is created. */
495
+ workspaceUrl?: string | undefined;
496
+ /** The personal access token used to authorize webhook's job runs. */
497
+ accessToken?: string | undefined;
498
+ }
499
+ /** Feature for model version. ([ML-57150] Renamed from Feature to LinkedFeature) */
500
+ export interface LinkedFeature {
501
+ /** Feature table name */
502
+ featureTableName?: string | undefined;
503
+ /** Feature name */
504
+ featureName?: string | undefined;
505
+ /** Feature table id */
506
+ featureTableId?: string | undefined;
507
+ }
508
+ export interface ListLatestVersionsRequest {
509
+ /** Registered model unique name identifier. */
510
+ name?: string | undefined;
511
+ /** List of stages. */
512
+ stages?: string[] | undefined;
513
+ }
514
+ export interface ListLatestVersionsRequest_Response {
515
+ /**
516
+ * Latest version models for each requests stage. Only return models with current `READY` status.
517
+ * If no `stages` provided, returns the latest version for each stage, including `"None"`.
518
+ */
519
+ modelVersions?: ModelVersion[] | undefined;
520
+ }
521
+ export interface ListRegisteredModelsRequest {
522
+ /** Maximum number of registered models desired. Max threshold is 1000. */
523
+ maxResults?: bigint | undefined;
524
+ /** Pagination token to go to the next page based on a previous query. */
525
+ pageToken?: string | undefined;
526
+ }
527
+ export interface ListRegisteredModelsRequest_Response {
528
+ registeredModels?: RegisteredModel[] | undefined;
529
+ /** Pagination token to request next page of models for the same query. */
530
+ nextPageToken?: string | undefined;
531
+ }
532
+ export interface ListRegistryWebhooksRequest {
533
+ /**
534
+ * Registered model name
535
+ * If not specified, all webhooks associated with the specified events are listed, regardless of their associated model.
536
+ */
537
+ modelName?: string | undefined;
538
+ /**
539
+ * Events that trigger the webhook.
540
+ * * `MODEL_VERSION_CREATED`: A new model version was created for the associated model.
541
+ *
542
+ * * `MODEL_VERSION_TRANSITIONED_STAGE`: A model version’s stage was changed.
543
+ *
544
+ * * `TRANSITION_REQUEST_CREATED`: A user requested a model version’s stage be transitioned.
545
+ *
546
+ * * `COMMENT_CREATED`: A user wrote a comment on a registered model.
547
+ *
548
+ * * `REGISTERED_MODEL_CREATED`: A new registered model was created. This event type can only be specified for a registry-wide webhook, which can be created by not specifying a model name in the create request.
549
+ *
550
+ * * `MODEL_VERSION_TAG_SET`: A user set a tag on the model version.
551
+ *
552
+ * * `MODEL_VERSION_TRANSITIONED_TO_STAGING`: A model version was transitioned to staging.
553
+ *
554
+ * * `MODEL_VERSION_TRANSITIONED_TO_PRODUCTION`: A model version was transitioned to production.
555
+ *
556
+ * * `MODEL_VERSION_TRANSITIONED_TO_ARCHIVED`: A model version was archived.
557
+ *
558
+ * * `TRANSITION_REQUEST_TO_STAGING_CREATED`: A user requested a model version be transitioned to staging.
559
+ *
560
+ * * `TRANSITION_REQUEST_TO_PRODUCTION_CREATED`: A user requested a model version be transitioned to production.
561
+ *
562
+ * * `TRANSITION_REQUEST_TO_ARCHIVED_CREATED`: A user requested a model version be archived.
563
+ *
564
+ * If `events` is specified, any webhook with one or more of the specified trigger events is included in the output.
565
+ * If `events` is not specified, webhooks of all event types are included in the output.
566
+ */
567
+ events?: RegistryWebhookEvent[] | undefined;
568
+ /** Token indicating the page of artifact results to fetch */
569
+ pageToken?: string | undefined;
570
+ maxResults?: bigint | undefined;
571
+ }
572
+ export interface ListRegistryWebhooksRequest_Response {
573
+ /** Array of registry webhooks. */
574
+ webhooks?: RegistryWebhook[] | undefined;
575
+ /** Token that can be used to retrieve the next page of artifact results */
576
+ nextPageToken?: string | undefined;
577
+ }
578
+ export interface ListTransitionRequest {
579
+ /** Name of the registered model. */
580
+ name?: string | undefined;
581
+ /** Version of the model. */
582
+ version?: string | undefined;
583
+ }
584
+ export interface ListTransitionRequest_Response {
585
+ /** Array of open transition requests. */
586
+ requests?: Activity[] | undefined;
587
+ }
588
+ export interface ModelVersion {
589
+ /** Unique name of the model */
590
+ name?: string | undefined;
591
+ /** Model's version number. */
592
+ version?: string | undefined;
593
+ /** Timestamp recorded when this `model_version` was created. */
594
+ creationTimestamp?: bigint | undefined;
595
+ /** Timestamp recorded when metadata for this `model_version` was last updated. */
596
+ lastUpdatedTimestamp?: bigint | undefined;
597
+ /** User that created this `model_version`. */
598
+ userId?: string | undefined;
599
+ /** Current stage for this `model_version`. */
600
+ currentStage?: string | undefined;
601
+ /** Description of this `model_version`. */
602
+ description?: string | undefined;
603
+ /** URI indicating the location of the source model artifacts, used when creating `model_version` */
604
+ source?: string | undefined;
605
+ /**
606
+ * MLflow run ID used when creating `model_version`, if `source` was generated by an
607
+ * experiment run stored in MLflow tracking server.
608
+ */
609
+ runId?: string | undefined;
610
+ /** Current status of `model_version` */
611
+ status?: ModelVersionStatus | undefined;
612
+ /** Details on current `status`, if it is pending or failed. */
613
+ statusMessage?: string | undefined;
614
+ /** Tags: Additional metadata key-value pairs for this `model_version`. */
615
+ tags?: ModelVersionTag[] | undefined;
616
+ /** Run Link: Direct link to the run that generated this version */
617
+ runLink?: string | undefined;
618
+ }
619
+ export interface ModelVersionDatabricks {
620
+ /** Name of the model. */
621
+ name?: string | undefined;
622
+ /** Version of the model. */
623
+ version?: string | undefined;
624
+ /** Creation time of the object, as a Unix timestamp in milliseconds. */
625
+ creationTimestamp?: bigint | undefined;
626
+ /** Time of the object at last update, as a Unix timestamp in milliseconds. */
627
+ lastUpdatedTimestamp?: bigint | undefined;
628
+ /** The username of the user that created the object. */
629
+ userId?: string | undefined;
630
+ currentStage?: string | undefined;
631
+ /** User-specified description for the object. */
632
+ description?: string | undefined;
633
+ /** URI that indicates the location of the source model artifacts. This is used when creating the model version. */
634
+ source?: string | undefined;
635
+ /** Unique identifier for the MLflow tracking run associated with the source model artifacts. */
636
+ runId?: string | undefined;
637
+ status?: ModelVersionStatus | undefined;
638
+ /** Details on the current status, for example why registration failed. */
639
+ statusMessage?: string | undefined;
640
+ /**
641
+ * Open requests for this `model_versions`.
642
+ * Gap in sequence number is intentional and is done in order to
643
+ * match field sequence numbers of `ModelVersion` proto message
644
+ */
645
+ openRequests?: Activity[] | undefined;
646
+ permissionLevel?: PermissionLevel | undefined;
647
+ /** Array of tags that are associated with the model version. */
648
+ tags?: ModelVersionTag[] | undefined;
649
+ /** URL of the run associated with the model artifacts. This field is set at model version creation time only for model versions whose source run is from a tracking server that is different from the registry server. */
650
+ runLink?: string | undefined;
651
+ /**
652
+ * Email Subscription Status: This is the subscription status of the user to the model version
653
+ * Users get subscribed by interacting with the model version.
654
+ */
655
+ emailSubscriptionStatus?: RegistryEmailSubscriptionType | undefined;
656
+ /** Feature lineage of `model_version`. */
657
+ featureList?: FeatureList | undefined;
658
+ }
659
+ export interface ModelVersionTag {
660
+ /** The tag key. */
661
+ key?: string | undefined;
662
+ /** The tag value. */
663
+ value?: string | undefined;
664
+ }
665
+ export interface RegisteredModel {
666
+ /** Unique name for the model. */
667
+ name?: string | undefined;
668
+ /** Timestamp recorded when this `registered_model` was created. */
669
+ creationTimestamp?: bigint | undefined;
670
+ /** Timestamp recorded when metadata for this `registered_model` was last updated. */
671
+ lastUpdatedTimestamp?: bigint | undefined;
672
+ /** User that created this `registered_model` */
673
+ userId?: string | undefined;
674
+ /** Description of this `registered_model`. */
675
+ description?: string | undefined;
676
+ /**
677
+ * Collection of latest model versions for each stage.
678
+ * Only contains models with current `READY` status.
679
+ */
680
+ latestVersions?: ModelVersion[] | undefined;
681
+ /** Tags: Additional metadata key-value pairs for this `registered_model`. */
682
+ tags?: RegisteredModelTag[] | undefined;
683
+ }
684
+ export interface RegisteredModelDatabricks {
685
+ /** Name of the model. */
686
+ name?: string | undefined;
687
+ /** Creation time of the object, as a Unix timestamp in milliseconds. */
688
+ creationTimestamp?: bigint | undefined;
689
+ /** Last update time of the object, as a Unix timestamp in milliseconds. */
690
+ lastUpdatedTimestamp?: bigint | undefined;
691
+ /** The username of the user that created the object. */
692
+ userId?: string | undefined;
693
+ /** User-specified description for the object. */
694
+ description?: string | undefined;
695
+ /** Array of model versions, each the latest version for its stage. */
696
+ latestVersions?: ModelVersion[] | undefined;
697
+ /** Unique identifier for the object. */
698
+ id?: string | undefined;
699
+ /** Permission level granted for the requesting user on this registered model */
700
+ permissionLevel?: PermissionLevel | undefined;
701
+ /** Array of tags associated with the model. */
702
+ tags?: RegisteredModelTag[] | undefined;
703
+ }
704
+ /** Tag for a registered model */
705
+ export interface RegisteredModelTag {
706
+ /** The tag key. */
707
+ key?: string | undefined;
708
+ /** The tag value. */
709
+ value?: string | undefined;
710
+ }
711
+ export interface RegistryWebhook {
712
+ /** Webhook ID */
713
+ id?: string | undefined;
714
+ /**
715
+ * Events that can trigger a registry webhook:
716
+ * * `MODEL_VERSION_CREATED`: A new model version was created for the associated model.
717
+ *
718
+ * * `MODEL_VERSION_TRANSITIONED_STAGE`: A model version’s stage was changed.
719
+ *
720
+ * * `TRANSITION_REQUEST_CREATED`: A user requested a model version’s stage be transitioned.
721
+ *
722
+ * * `COMMENT_CREATED`: A user wrote a comment on a registered model.
723
+ *
724
+ * * `REGISTERED_MODEL_CREATED`: A new registered model was created. This event type can only be specified for a registry-wide webhook, which can be created by not specifying a model name in the create request.
725
+ *
726
+ * * `MODEL_VERSION_TAG_SET`: A user set a tag on the model version.
727
+ *
728
+ * * `MODEL_VERSION_TRANSITIONED_TO_STAGING`: A model version was transitioned to staging.
729
+ *
730
+ * * `MODEL_VERSION_TRANSITIONED_TO_PRODUCTION`: A model version was transitioned to production.
731
+ *
732
+ * * `MODEL_VERSION_TRANSITIONED_TO_ARCHIVED`: A model version was archived.
733
+ *
734
+ * * `TRANSITION_REQUEST_TO_STAGING_CREATED`: A user requested a model version be transitioned to staging.
735
+ *
736
+ * * `TRANSITION_REQUEST_TO_PRODUCTION_CREATED`: A user requested a model version be transitioned to production.
737
+ *
738
+ * * `TRANSITION_REQUEST_TO_ARCHIVED_CREATED`: A user requested a model version be archived.
739
+ */
740
+ events?: RegistryWebhookEvent[] | undefined;
741
+ /** Creation time of the object, as a Unix timestamp in milliseconds. */
742
+ creationTimestamp?: bigint | undefined;
743
+ /** Time of the object at last update, as a Unix timestamp in milliseconds. */
744
+ lastUpdatedTimestamp?: bigint | undefined;
745
+ /** User-specified description for the webhook. */
746
+ description?: string | undefined;
747
+ status?: RegistryWebhookStatus | undefined;
748
+ httpUrlSpec?: HttpUrlSpec | undefined;
749
+ jobSpec?: JobSpec | undefined;
750
+ /** Name of the model whose events would trigger this webhook. */
751
+ modelName?: string | undefined;
752
+ }
753
+ /** Details required to identify and reject a model version stage transition request. */
754
+ export interface RejectTransitionRequest {
755
+ /** Name of the model. */
756
+ name?: string | undefined;
757
+ /** Version of the model. */
758
+ version?: string | undefined;
759
+ /**
760
+ * Target stage of the transition. Valid values are:
761
+ *
762
+ * * `None`: The initial stage of a model version.
763
+ *
764
+ * * `Staging`: Staging or pre-production stage.
765
+ *
766
+ * * `Production`: Production stage.
767
+ *
768
+ * * `Archived`: Archived stage.
769
+ */
770
+ stage?: string | undefined;
771
+ /** User-provided comment on the action. */
772
+ comment?: string | undefined;
773
+ }
774
+ export interface RejectTransitionRequest_Response {
775
+ /** New activity generated as a result of this operation. */
776
+ activity?: Activity | undefined;
777
+ }
778
+ export interface RenameRegisteredModelRequest {
779
+ /** Registered model unique name identifier. */
780
+ name?: string | undefined;
781
+ /** If provided, updates the name for this `registered_model`. */
782
+ newName?: string | undefined;
783
+ }
784
+ export interface RenameRegisteredModelRequest_Response {
785
+ registeredModel?: RegisteredModel | undefined;
786
+ }
787
+ export interface SearchModelVersionsRequest {
788
+ /**
789
+ * String filter condition, like "name='my-model-name'". Must be a single boolean condition,
790
+ * with string values wrapped in single quotes.
791
+ */
792
+ filter?: string | undefined;
793
+ /** Maximum number of models desired. Max threshold is 10K. */
794
+ maxResults?: bigint | undefined;
795
+ /**
796
+ * List of columns to be ordered by including model name, version, stage with an
797
+ * optional "DESC" or "ASC" annotation, where "ASC" is the default.
798
+ * Tiebreaks are done by latest stage transition timestamp, followed by name ASC, followed by
799
+ * version DESC.
800
+ */
801
+ orderBy?: string[] | undefined;
802
+ /** Pagination token to go to next page based on previous search query. */
803
+ pageToken?: string | undefined;
804
+ }
805
+ export interface SearchModelVersionsRequest_Response {
806
+ /** Models that match the search criteria */
807
+ modelVersions?: ModelVersion[] | undefined;
808
+ /** Pagination token to request next page of models for the same search query. */
809
+ nextPageToken?: string | undefined;
810
+ }
811
+ export interface SearchRegisteredModelsRequest {
812
+ /**
813
+ * String filter condition, like "name LIKE 'my-model-name'".
814
+ * Interpreted in the backend automatically as "name LIKE '%my-model-name%'".
815
+ * Single boolean condition, with string values wrapped in single quotes.
816
+ */
817
+ filter?: string | undefined;
818
+ /** Maximum number of models desired. Default is 100. Max threshold is 1000. */
819
+ maxResults?: bigint | undefined;
820
+ /**
821
+ * List of columns for ordering search results, which can include model name and last updated
822
+ * timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default.
823
+ * Tiebreaks are done by model name ASC.
824
+ */
825
+ orderBy?: string[] | undefined;
826
+ /** Pagination token to go to the next page based on a previous search query. */
827
+ pageToken?: string | undefined;
828
+ }
829
+ export interface SearchRegisteredModelsRequest_Response {
830
+ /** Registered Models that match the search criteria. */
831
+ registeredModels?: RegisteredModel[] | undefined;
832
+ /** Pagination token to request the next page of models. */
833
+ nextPageToken?: string | undefined;
834
+ }
835
+ export interface SetModelVersionTagRequest {
836
+ /** Unique name of the model. */
837
+ name?: string | undefined;
838
+ /** Model version number. */
839
+ version?: string | undefined;
840
+ /**
841
+ * Name of the tag. Maximum size depends on storage backend.
842
+ * If a tag with this name already exists, its preexisting value will be replaced by the specified `value`.
843
+ * All storage backends are guaranteed to support key values up to 250 bytes in size.
844
+ */
845
+ key?: string | undefined;
846
+ /**
847
+ * String value of the tag being logged. Maximum size depends on storage backend.
848
+ * All storage backends are guaranteed to support key values up to 5000 bytes in size.
849
+ */
850
+ value?: string | undefined;
851
+ }
852
+ export interface SetModelVersionTagRequest_Response {
853
+ }
854
+ export interface SetRegisteredModelTagRequest {
855
+ /** Unique name of the model. */
856
+ name?: string | undefined;
857
+ /**
858
+ * Name of the tag. Maximum size depends on storage backend.
859
+ * If a tag with this name already exists, its preexisting value will be replaced by the specified `value`.
860
+ * All storage backends are guaranteed to support key values up to 250 bytes in size.
861
+ */
862
+ key?: string | undefined;
863
+ /**
864
+ * String value of the tag being logged. Maximum size depends on storage backend.
865
+ * All storage backends are guaranteed to support key values up to 5000 bytes in size.
866
+ */
867
+ value?: string | undefined;
868
+ }
869
+ export interface SetRegisteredModelTagRequest_Response {
870
+ }
871
+ /** Details required to test a registry webhook. */
872
+ export interface TestRegistryWebhookRequest {
873
+ /** Webhook ID */
874
+ id?: string | undefined;
875
+ /** If `event` is specified, the test trigger uses the specified event. If `event` is not specified, the test trigger uses a randomly chosen event associated with the webhook. */
876
+ event?: RegistryWebhookEvent | undefined;
877
+ }
878
+ export interface TestRegistryWebhookRequest_Response {
879
+ /** Status code returned by the webhook URL */
880
+ statusCode?: number | undefined;
881
+ /** Body of the response from the webhook URL */
882
+ body?: string | undefined;
883
+ }
884
+ /** Details required to transition a model version's stage. */
885
+ export interface TransitionModelVersionStageDatabricksRequest {
886
+ /** Name of the model. */
887
+ name?: string | undefined;
888
+ /** Version of the model. */
889
+ version?: string | undefined;
890
+ /**
891
+ * Target stage of the transition. Valid values are:
892
+ *
893
+ * * `None`: The initial stage of a model version.
894
+ *
895
+ * * `Staging`: Staging or pre-production stage.
896
+ *
897
+ * * `Production`: Production stage.
898
+ *
899
+ * * `Archived`: Archived stage.
900
+ */
901
+ stage?: string | undefined;
902
+ /** Specifies whether to archive all current model versions in the target stage. */
903
+ archiveExistingVersions?: boolean | undefined;
904
+ /** User-provided comment on the action. */
905
+ comment?: string | undefined;
906
+ }
907
+ export interface TransitionModelVersionStageDatabricksRequest_Response {
908
+ /** Updated model version */
909
+ modelVersionDatabricks?: ModelVersionDatabricks | undefined;
910
+ }
911
+ /**
912
+ * For activities, this contains the activity recorded for the action.
913
+ * For comments, this contains the comment details.
914
+ * For transition requests, this contains the transition request details.
915
+ */
916
+ export interface TransitionRequest {
917
+ /** Creation time of the object, as a Unix timestamp in milliseconds. */
918
+ creationTimestamp?: bigint | undefined;
919
+ /** The username of the user that created the object. */
920
+ userId?: string | undefined;
921
+ activityType?: ActivityType | undefined;
922
+ /** User-provided comment associated with the activity, comment, or transition request. */
923
+ comment?: string | undefined;
924
+ /** Time of the object at last update, as a Unix timestamp in milliseconds. */
925
+ lastUpdatedTimestamp?: bigint | undefined;
926
+ /**
927
+ * Source stage of the transition (if the activity is stage transition related). Valid values are:
928
+ *
929
+ * * `None`: The initial stage of a model version.
930
+ *
931
+ * * `Staging`: Staging or pre-production stage.
932
+ *
933
+ * * `Production`: Production stage.
934
+ *
935
+ * * `Archived`: Archived stage.
936
+ */
937
+ fromStage?: string | undefined;
938
+ /**
939
+ * Target stage of the transition (if the activity is stage transition related). Valid values are:
940
+ *
941
+ * * `None`: The initial stage of a model version.
942
+ *
943
+ * * `Staging`: Staging or pre-production stage.
944
+ *
945
+ * * `Production`: Production stage.
946
+ *
947
+ * * `Archived`: Archived stage.
948
+ */
949
+ toStage?: string | undefined;
950
+ /** Comment made by system, for example explaining an activity of type `SYSTEM_TRANSITION`. It usually describes a side effect, such as a version being archived as part of another version's stage transition, and may not be returned for some activity types. */
951
+ systemComment?: string | undefined;
952
+ /** Array of actions on the activity allowed for the current viewer. */
953
+ availableActions?: ActivityAction[] | undefined;
954
+ /** Unique identifier for the object. */
955
+ id?: string | undefined;
956
+ }
957
+ /** Details required to edit a comment on a model version. */
958
+ export interface UpdateCommentRequest {
959
+ /** Unique identifier of an activity */
960
+ id?: string | undefined;
961
+ /** User-provided comment on the action. */
962
+ comment?: string | undefined;
963
+ }
964
+ export interface UpdateCommentRequest_Response {
965
+ /** Updated comment object */
966
+ comment?: CommentObject | undefined;
967
+ }
968
+ export interface UpdateModelVersionRequest {
969
+ /** Name of the registered model */
970
+ name?: string | undefined;
971
+ /** Model version number */
972
+ version?: string | undefined;
973
+ /** If provided, updates the description for this `registered_model`. */
974
+ description?: string | undefined;
975
+ }
976
+ export interface UpdateModelVersionRequest_Response {
977
+ /** Return new version number generated for this model in registry. */
978
+ modelVersion?: ModelVersion | undefined;
979
+ }
980
+ export interface UpdateRegisteredModelRequest {
981
+ /** Registered model unique name identifier. */
982
+ name?: string | undefined;
983
+ /** If provided, updates the description for this `registered_model`. */
984
+ description?: string | undefined;
985
+ }
986
+ export interface UpdateRegisteredModelRequest_Response {
987
+ registeredModel?: RegisteredModel | undefined;
988
+ }
989
+ /** Details required to update a registry webhook. Only the fields that need to be updated should be specified, and both `http_url_spec` and `job_spec` should not be specified in the same request. */
990
+ export interface UpdateRegistryWebhookRequest {
991
+ /** Webhook ID */
992
+ id?: string | undefined;
993
+ /**
994
+ * Events that can trigger a registry webhook:
995
+ * * `MODEL_VERSION_CREATED`: A new model version was created for the associated model.
996
+ *
997
+ * * `MODEL_VERSION_TRANSITIONED_STAGE`: A model version’s stage was changed.
998
+ *
999
+ * * `TRANSITION_REQUEST_CREATED`: A user requested a model version’s stage be transitioned.
1000
+ *
1001
+ * * `COMMENT_CREATED`: A user wrote a comment on a registered model.
1002
+ *
1003
+ * * `REGISTERED_MODEL_CREATED`: A new registered model was created. This event type can only be specified for a registry-wide webhook, which can be created by not specifying a model name in the create request.
1004
+ *
1005
+ * * `MODEL_VERSION_TAG_SET`: A user set a tag on the model version.
1006
+ *
1007
+ * * `MODEL_VERSION_TRANSITIONED_TO_STAGING`: A model version was transitioned to staging.
1008
+ *
1009
+ * * `MODEL_VERSION_TRANSITIONED_TO_PRODUCTION`: A model version was transitioned to production.
1010
+ *
1011
+ * * `MODEL_VERSION_TRANSITIONED_TO_ARCHIVED`: A model version was archived.
1012
+ *
1013
+ * * `TRANSITION_REQUEST_TO_STAGING_CREATED`: A user requested a model version be transitioned to staging.
1014
+ *
1015
+ * * `TRANSITION_REQUEST_TO_PRODUCTION_CREATED`: A user requested a model version be transitioned to production.
1016
+ *
1017
+ * * `TRANSITION_REQUEST_TO_ARCHIVED_CREATED`: A user requested a model version be archived.
1018
+ */
1019
+ events?: RegistryWebhookEvent[] | undefined;
1020
+ /** User-specified description for the webhook. */
1021
+ description?: string | undefined;
1022
+ status?: RegistryWebhookStatus | undefined;
1023
+ httpUrlSpec?: HttpUrlSpec | undefined;
1024
+ jobSpec?: JobSpec | undefined;
1025
+ }
1026
+ export interface UpdateRegistryWebhookRequest_Response {
1027
+ webhook?: RegistryWebhook | undefined;
1028
+ }
1029
+ export declare const unmarshalActivitySchema: z.ZodType<Activity>;
1030
+ export declare const unmarshalApproveTransitionRequest_ResponseSchema: z.ZodType<ApproveTransitionRequest_Response>;
1031
+ export declare const unmarshalCommentObjectSchema: z.ZodType<CommentObject>;
1032
+ export declare const unmarshalCreateCommentRequest_ResponseSchema: z.ZodType<CreateCommentRequest_Response>;
1033
+ export declare const unmarshalCreateModelVersionRequest_ResponseSchema: z.ZodType<CreateModelVersionRequest_Response>;
1034
+ export declare const unmarshalCreateRegisteredModelRequest_ResponseSchema: z.ZodType<CreateRegisteredModelRequest_Response>;
1035
+ export declare const unmarshalCreateRegistryWebhookRequest_ResponseSchema: z.ZodType<CreateRegistryWebhookRequest_Response>;
1036
+ export declare const unmarshalCreateTransitionRequest_ResponseSchema: z.ZodType<CreateTransitionRequest_Response>;
1037
+ export declare const unmarshalDeleteCommentRequest_ResponseSchema: z.ZodType<DeleteCommentRequest_Response>;
1038
+ export declare const unmarshalDeleteModelVersionRequest_ResponseSchema: z.ZodType<DeleteModelVersionRequest_Response>;
1039
+ export declare const unmarshalDeleteModelVersionTagRequest_ResponseSchema: z.ZodType<DeleteModelVersionTagRequest_Response>;
1040
+ export declare const unmarshalDeleteRegisteredModelRequest_ResponseSchema: z.ZodType<DeleteRegisteredModelRequest_Response>;
1041
+ export declare const unmarshalDeleteRegisteredModelTagRequest_ResponseSchema: z.ZodType<DeleteRegisteredModelTagRequest_Response>;
1042
+ export declare const unmarshalDeleteRegistryWebhookRequest_ResponseSchema: z.ZodType<DeleteRegistryWebhookRequest_Response>;
1043
+ export declare const unmarshalDeleteTransitionRequest_ResponseSchema: z.ZodType<DeleteTransitionRequest_Response>;
1044
+ export declare const unmarshalFeatureListSchema: z.ZodType<FeatureList>;
1045
+ export declare const unmarshalGetModelVersionDownloadUriRequest_ResponseSchema: z.ZodType<GetModelVersionDownloadUriRequest_Response>;
1046
+ export declare const unmarshalGetModelVersionRequest_ResponseSchema: z.ZodType<GetModelVersionRequest_Response>;
1047
+ export declare const unmarshalGetRegisteredModelDatabricksRequest_ResponseSchema: z.ZodType<GetRegisteredModelDatabricksRequest_Response>;
1048
+ export declare const unmarshalHttpUrlSpecSchema: z.ZodType<HttpUrlSpec>;
1049
+ export declare const unmarshalJobSpecSchema: z.ZodType<JobSpec>;
1050
+ export declare const unmarshalLinkedFeatureSchema: z.ZodType<LinkedFeature>;
1051
+ export declare const unmarshalListLatestVersionsRequest_ResponseSchema: z.ZodType<ListLatestVersionsRequest_Response>;
1052
+ export declare const unmarshalListRegisteredModelsRequest_ResponseSchema: z.ZodType<ListRegisteredModelsRequest_Response>;
1053
+ export declare const unmarshalListRegistryWebhooksRequest_ResponseSchema: z.ZodType<ListRegistryWebhooksRequest_Response>;
1054
+ export declare const unmarshalListTransitionRequest_ResponseSchema: z.ZodType<ListTransitionRequest_Response>;
1055
+ export declare const unmarshalModelVersionSchema: z.ZodType<ModelVersion>;
1056
+ export declare const unmarshalModelVersionDatabricksSchema: z.ZodType<ModelVersionDatabricks>;
1057
+ export declare const unmarshalModelVersionTagSchema: z.ZodType<ModelVersionTag>;
1058
+ export declare const unmarshalRegisteredModelSchema: z.ZodType<RegisteredModel>;
1059
+ export declare const unmarshalRegisteredModelDatabricksSchema: z.ZodType<RegisteredModelDatabricks>;
1060
+ export declare const unmarshalRegisteredModelTagSchema: z.ZodType<RegisteredModelTag>;
1061
+ export declare const unmarshalRegistryWebhookSchema: z.ZodType<RegistryWebhook>;
1062
+ export declare const unmarshalRejectTransitionRequest_ResponseSchema: z.ZodType<RejectTransitionRequest_Response>;
1063
+ export declare const unmarshalRenameRegisteredModelRequest_ResponseSchema: z.ZodType<RenameRegisteredModelRequest_Response>;
1064
+ export declare const unmarshalSearchModelVersionsRequest_ResponseSchema: z.ZodType<SearchModelVersionsRequest_Response>;
1065
+ export declare const unmarshalSearchRegisteredModelsRequest_ResponseSchema: z.ZodType<SearchRegisteredModelsRequest_Response>;
1066
+ export declare const unmarshalSetModelVersionTagRequest_ResponseSchema: z.ZodType<SetModelVersionTagRequest_Response>;
1067
+ export declare const unmarshalSetRegisteredModelTagRequest_ResponseSchema: z.ZodType<SetRegisteredModelTagRequest_Response>;
1068
+ export declare const unmarshalTestRegistryWebhookRequest_ResponseSchema: z.ZodType<TestRegistryWebhookRequest_Response>;
1069
+ export declare const unmarshalTransitionModelVersionStageDatabricksRequest_ResponseSchema: z.ZodType<TransitionModelVersionStageDatabricksRequest_Response>;
1070
+ export declare const unmarshalTransitionRequestSchema: z.ZodType<TransitionRequest>;
1071
+ export declare const unmarshalUpdateCommentRequest_ResponseSchema: z.ZodType<UpdateCommentRequest_Response>;
1072
+ export declare const unmarshalUpdateModelVersionRequest_ResponseSchema: z.ZodType<UpdateModelVersionRequest_Response>;
1073
+ export declare const unmarshalUpdateRegisteredModelRequest_ResponseSchema: z.ZodType<UpdateRegisteredModelRequest_Response>;
1074
+ export declare const unmarshalUpdateRegistryWebhookRequest_ResponseSchema: z.ZodType<UpdateRegistryWebhookRequest_Response>;
1075
+ export declare const marshalApproveTransitionRequestSchema: z.ZodType;
1076
+ export declare const marshalCreateCommentRequestSchema: z.ZodType;
1077
+ export declare const marshalCreateModelVersionRequestSchema: z.ZodType;
1078
+ export declare const marshalCreateRegisteredModelRequestSchema: z.ZodType;
1079
+ export declare const marshalCreateRegistryWebhookRequestSchema: z.ZodType;
1080
+ export declare const marshalCreateTransitionRequestSchema: z.ZodType;
1081
+ export declare const marshalHttpUrlSpecSchema: z.ZodType;
1082
+ export declare const marshalJobSpecSchema: z.ZodType;
1083
+ export declare const marshalListLatestVersionsRequestSchema: z.ZodType;
1084
+ export declare const marshalModelVersionTagSchema: z.ZodType;
1085
+ export declare const marshalRegisteredModelTagSchema: z.ZodType;
1086
+ export declare const marshalRejectTransitionRequestSchema: z.ZodType;
1087
+ export declare const marshalRenameRegisteredModelRequestSchema: z.ZodType;
1088
+ export declare const marshalSetModelVersionTagRequestSchema: z.ZodType;
1089
+ export declare const marshalSetRegisteredModelTagRequestSchema: z.ZodType;
1090
+ export declare const marshalTestRegistryWebhookRequestSchema: z.ZodType;
1091
+ export declare const marshalTransitionModelVersionStageDatabricksRequestSchema: z.ZodType;
1092
+ export declare const marshalUpdateCommentRequestSchema: z.ZodType;
1093
+ export declare const marshalUpdateModelVersionRequestSchema: z.ZodType;
1094
+ export declare const marshalUpdateRegisteredModelRequestSchema: z.ZodType;
1095
+ export declare const marshalUpdateRegistryWebhookRequestSchema: z.ZodType;
1096
+ //# sourceMappingURL=model.d.ts.map