@databricks/sdk-uc-registeredmodels 0.27.0 → 0.35.0

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,7 @@
1
+ //#region package.json
2
+ var name = "@databricks/sdk-uc-registeredmodels";
3
+ var version = "0.35.0";
4
+
5
+ //#endregion
6
+ export { name, version };
7
+ //# sourceMappingURL=package.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"package.js","names":[],"sources":["../package.json"],"sourcesContent":[""],"mappings":""}
@@ -1,143 +1,147 @@
1
- import type { CallOptions } from '@databricks/sdk-options/call';
2
- import type { ClientOptions } from '@databricks/sdk-options/client';
3
- import type { CreateRegisteredModelRequest, DeleteModelVersionRequest, DeleteModelVersionResponse, DeleteRegisteredModelAliasRequest, DeleteRegisteredModelAliasResponse, DeleteRegisteredModelRequest, DeleteRegisteredModelResponse, GetModelVersionByAliasRequest, GetModelVersionRequest, GetRegisteredModelRequest, ListModelVersionsRequest, ListModelVersionsResponse, ListRegisteredModelsRequest, ListRegisteredModelsResponse, ModelVersionInfo, RegisteredModelAliasInfo, RegisteredModelInfo, SetRegisteredModelAliasRequest, UpdateModelVersionRequest, UpdateRegisteredModelRequest } from './model';
4
- export declare class RegisteredModelsClient {
5
- private readonly options;
6
- private readonly logger;
7
- private readonly userAgent;
8
- private config;
9
- constructor(options: ClientOptions);
10
- private resolveConfig;
11
- /**
12
- * Creates a new registered model in Unity Catalog.
13
- *
14
- * File storage for model versions in the registered model
15
- * will be located in the default location which is specified by the parent schema,
16
- * or the parent catalog, or the Metastore.
17
- *
18
- * For registered model creation to succeed, the user must satisfy the following conditions:
19
- * - The caller must be a metastore admin, or be the owner of the parent catalog and schema,
20
- * or have the **USE_CATALOG** privilege on the parent catalog
21
- * and the **USE_SCHEMA** privilege on the parent schema.
22
- * - The caller must have the **CREATE MODEL** or **CREATE FUNCTION** privilege on the parent schema.
23
- */
24
- createRegisteredModel(req: CreateRegisteredModelRequest, options?: CallOptions): Promise<RegisteredModelInfo>;
25
- /**
26
- * Deletes a model version from the specified registered model. Any aliases assigned to the
27
- * model version will also be deleted.
28
- *
29
- * The caller must be a metastore admin or an owner of the parent registered model.
30
- * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
31
- * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
32
- */
33
- deleteModelVersion(req: DeleteModelVersionRequest, options?: CallOptions): Promise<DeleteModelVersionResponse>;
34
- /**
35
- * Deletes a registered model and all its model versions from the specified parent catalog and schema.
36
- *
37
- * The caller must be a metastore admin or an owner of the registered model.
38
- * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
39
- * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
40
- */
41
- deleteRegisteredModel(req: DeleteRegisteredModelRequest, options?: CallOptions): Promise<DeleteRegisteredModelResponse>;
42
- /**
43
- * Deletes a registered model alias.
44
- *
45
- * The caller must be a metastore admin or an owner of the registered model.
46
- * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
47
- * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
48
- */
49
- deleteRegisteredModelAlias(req: DeleteRegisteredModelAliasRequest, options?: CallOptions): Promise<DeleteRegisteredModelAliasResponse>;
50
- /**
51
- * Get a model version.
52
- *
53
- * The caller must be a metastore admin or an owner of (or have the **EXECUTE**
54
- * privilege on) the parent registered model. For the latter case, the caller must also be the owner
55
- * or have the **USE_CATALOG** privilege on the parent catalog and the **USE_SCHEMA** privilege
56
- * on the parent schema.
57
- */
58
- getModelVersion(req: GetModelVersionRequest, options?: CallOptions): Promise<ModelVersionInfo>;
59
- /**
60
- * Get a model version by alias.
61
- *
62
- * The caller must be a metastore admin or an owner of (or have the **EXECUTE**
63
- * privilege on) the registered model. For the latter case, the caller must also be the owner
64
- * or have the **USE_CATALOG** privilege on the parent catalog and the **USE_SCHEMA** privilege
65
- * on the parent schema.
66
- */
67
- getModelVersionByAlias(req: GetModelVersionByAliasRequest, options?: CallOptions): Promise<ModelVersionInfo>;
68
- /**
69
- * Get a registered model.
70
- *
71
- * The caller must be a metastore admin or an owner of (or have the **EXECUTE**
72
- * privilege on) the registered model. For the latter case, the caller must also be the owner
73
- * or have the **USE_CATALOG** privilege on the parent catalog and the **USE_SCHEMA** privilege
74
- * on the parent schema.
75
- */
76
- getRegisteredModel(req: GetRegisteredModelRequest, options?: CallOptions): Promise<RegisteredModelInfo>;
77
- /**
78
- * List model versions. You can list model versions under a particular schema,
79
- * or list all model versions in the current metastore.
80
- *
81
- * The returned models are filtered based on the privileges of the calling user.
82
- * For example, the metastore admin is able to list all the model versions.
83
- * A regular user needs to be the owner or have the **EXECUTE** privilege
84
- * on the parent registered model to receive the model versions in the response.
85
- * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
86
- * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
87
- *
88
- * There is no guarantee of a specific ordering of the elements in the response. The
89
- * elements in the response will not contain any aliases or tags.
90
- *
91
- * PAGINATION BEHAVIOR: The API is by default paginated, a page may contain zero results while still providing a next_page_token.
92
- * Clients must continue reading pages until next_page_token is absent, which is the only indication that the end of results has been reached.
93
- */
94
- listModelVersions(req: ListModelVersionsRequest, options?: CallOptions): Promise<ListModelVersionsResponse>;
95
- listModelVersionsIter(req: ListModelVersionsRequest, options?: CallOptions): AsyncGenerator<ModelVersionInfo>;
96
- /**
97
- * List registered models. You can list registered models under a particular schema,
98
- * or list all registered models in the current metastore.
99
- *
100
- * The returned models are filtered based on the privileges of the calling user.
101
- * For example, the metastore admin is able to list all the registered models.
102
- * A regular user needs to be the owner or have the **EXECUTE** privilege
103
- * on the registered model to receive the registered models in the response.
104
- * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
105
- * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
106
- *
107
- * There is no guarantee of a specific ordering of the elements in the response.
108
- *
109
- * PAGINATION BEHAVIOR: The API is by default paginated, a page may contain zero results while still providing a next_page_token.
110
- * Clients must continue reading pages until next_page_token is absent, which is the only indication that the end of results has been reached.
111
- */
112
- listRegisteredModels(req: ListRegisteredModelsRequest, options?: CallOptions): Promise<ListRegisteredModelsResponse>;
113
- listRegisteredModelsIter(req: ListRegisteredModelsRequest, options?: CallOptions): AsyncGenerator<RegisteredModelInfo>;
114
- /**
115
- * Set an alias on the specified registered model.
116
- *
117
- * The caller must be a metastore admin or an owner of the registered model.
118
- * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
119
- * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
120
- */
121
- setRegisteredModelAlias(req: SetRegisteredModelAliasRequest, options?: CallOptions): Promise<RegisteredModelAliasInfo>;
122
- /**
123
- * Updates the specified model version.
124
- *
125
- * The caller must be a metastore admin or an owner of the parent registered model.
126
- * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
127
- * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
128
- *
129
- * Currently only the comment of the model version can be updated.
130
- */
131
- updateModelVersion(req: UpdateModelVersionRequest, options?: CallOptions): Promise<ModelVersionInfo>;
132
- /**
133
- * Updates the specified registered model.
134
- *
135
- * The caller must be a metastore admin or an owner of the registered model.
136
- * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
137
- * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
138
- *
139
- * Currently only the name, the owner or the comment of the registered model can be updated.
140
- */
141
- updateRegisteredModel(req: UpdateRegisteredModelRequest, options?: CallOptions): Promise<RegisteredModelInfo>;
1
+ import { CreateRegisteredModelRequest, DeleteModelVersionRequest, DeleteModelVersionResponse, DeleteRegisteredModelAliasRequest, DeleteRegisteredModelAliasResponse, DeleteRegisteredModelRequest, DeleteRegisteredModelResponse, GetModelVersionByAliasRequest, GetModelVersionRequest, GetRegisteredModelRequest, ListModelVersionsRequest, ListModelVersionsResponse, ListRegisteredModelsRequest, ListRegisteredModelsResponse, ModelVersionInfo, RegisteredModelAliasInfo, RegisteredModelInfo, SetRegisteredModelAliasRequest, UpdateModelVersionRequest, UpdateRegisteredModelRequest } from "./model.js";
2
+ import { CallOptions } from "@databricks/sdk-options/call";
3
+ import { ClientOptions } from "@databricks/sdk-options/client";
4
+
5
+ //#region src/v1/client.d.ts
6
+ declare class RegisteredModelsClient {
7
+ private readonly options;
8
+ private readonly logger;
9
+ private readonly userAgent;
10
+ private config;
11
+ constructor(options: ClientOptions);
12
+ private resolveConfig;
13
+ /**
14
+ * Creates a new registered model in Unity Catalog.
15
+ *
16
+ * File storage for model versions in the registered model
17
+ * will be located in the default location which is specified by the parent schema,
18
+ * or the parent catalog, or the Metastore.
19
+ *
20
+ * For registered model creation to succeed, the user must satisfy the following conditions:
21
+ * - The caller must be a metastore admin, or be the owner of the parent catalog and schema,
22
+ * or have the **USE_CATALOG** privilege on the parent catalog
23
+ * and the **USE_SCHEMA** privilege on the parent schema.
24
+ * - The caller must have the **CREATE MODEL** or **CREATE FUNCTION** privilege on the parent schema.
25
+ */
26
+ createRegisteredModel(req: CreateRegisteredModelRequest, options?: CallOptions): Promise<RegisteredModelInfo>;
27
+ /**
28
+ * Deletes a model version from the specified registered model. Any aliases assigned to the
29
+ * model version will also be deleted.
30
+ *
31
+ * The caller must be a metastore admin or an owner of the parent registered model.
32
+ * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
33
+ * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
34
+ */
35
+ deleteModelVersion(req: DeleteModelVersionRequest, options?: CallOptions): Promise<DeleteModelVersionResponse>;
36
+ /**
37
+ * Deletes a registered model and all its model versions from the specified parent catalog and schema.
38
+ *
39
+ * The caller must be a metastore admin or an owner of the registered model.
40
+ * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
41
+ * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
42
+ */
43
+ deleteRegisteredModel(req: DeleteRegisteredModelRequest, options?: CallOptions): Promise<DeleteRegisteredModelResponse>;
44
+ /**
45
+ * Deletes a registered model alias.
46
+ *
47
+ * The caller must be a metastore admin or an owner of the registered model.
48
+ * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
49
+ * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
50
+ */
51
+ deleteRegisteredModelAlias(req: DeleteRegisteredModelAliasRequest, options?: CallOptions): Promise<DeleteRegisteredModelAliasResponse>;
52
+ /**
53
+ * Get a model version.
54
+ *
55
+ * The caller must be a metastore admin or an owner of (or have the **EXECUTE**
56
+ * privilege on) the parent registered model. For the latter case, the caller must also be the owner
57
+ * or have the **USE_CATALOG** privilege on the parent catalog and the **USE_SCHEMA** privilege
58
+ * on the parent schema.
59
+ */
60
+ getModelVersion(req: GetModelVersionRequest, options?: CallOptions): Promise<ModelVersionInfo>;
61
+ /**
62
+ * Get a model version by alias.
63
+ *
64
+ * The caller must be a metastore admin or an owner of (or have the **EXECUTE**
65
+ * privilege on) the registered model. For the latter case, the caller must also be the owner
66
+ * or have the **USE_CATALOG** privilege on the parent catalog and the **USE_SCHEMA** privilege
67
+ * on the parent schema.
68
+ */
69
+ getModelVersionByAlias(req: GetModelVersionByAliasRequest, options?: CallOptions): Promise<ModelVersionInfo>;
70
+ /**
71
+ * Get a registered model.
72
+ *
73
+ * The caller must be a metastore admin or an owner of (or have the **EXECUTE**
74
+ * privilege on) the registered model. For the latter case, the caller must also be the owner
75
+ * or have the **USE_CATALOG** privilege on the parent catalog and the **USE_SCHEMA** privilege
76
+ * on the parent schema.
77
+ */
78
+ getRegisteredModel(req: GetRegisteredModelRequest, options?: CallOptions): Promise<RegisteredModelInfo>;
79
+ /**
80
+ * List model versions. You can list model versions under a particular schema,
81
+ * or list all model versions in the current metastore.
82
+ *
83
+ * The returned models are filtered based on the privileges of the calling user.
84
+ * For example, the metastore admin is able to list all the model versions.
85
+ * A regular user needs to be the owner or have the **EXECUTE** privilege
86
+ * on the parent registered model to receive the model versions in the response.
87
+ * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
88
+ * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
89
+ *
90
+ * There is no guarantee of a specific ordering of the elements in the response. The
91
+ * elements in the response will not contain any aliases or tags.
92
+ *
93
+ * PAGINATION BEHAVIOR: The API is by default paginated, a page may contain zero results while still providing a next_page_token.
94
+ * Clients must continue reading pages until next_page_token is absent, which is the only indication that the end of results has been reached.
95
+ */
96
+ listModelVersions(req: ListModelVersionsRequest, options?: CallOptions): Promise<ListModelVersionsResponse>;
97
+ listModelVersionsIter(req: ListModelVersionsRequest, options?: CallOptions): AsyncGenerator<ModelVersionInfo>;
98
+ /**
99
+ * List registered models. You can list registered models under a particular schema,
100
+ * or list all registered models in the current metastore.
101
+ *
102
+ * The returned models are filtered based on the privileges of the calling user.
103
+ * For example, the metastore admin is able to list all the registered models.
104
+ * A regular user needs to be the owner or have the **EXECUTE** privilege
105
+ * on the registered model to receive the registered models in the response.
106
+ * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
107
+ * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
108
+ *
109
+ * There is no guarantee of a specific ordering of the elements in the response.
110
+ *
111
+ * PAGINATION BEHAVIOR: The API is by default paginated, a page may contain zero results while still providing a next_page_token.
112
+ * Clients must continue reading pages until next_page_token is absent, which is the only indication that the end of results has been reached.
113
+ */
114
+ listRegisteredModels(req: ListRegisteredModelsRequest, options?: CallOptions): Promise<ListRegisteredModelsResponse>;
115
+ listRegisteredModelsIter(req: ListRegisteredModelsRequest, options?: CallOptions): AsyncGenerator<RegisteredModelInfo>;
116
+ /**
117
+ * Set an alias on the specified registered model.
118
+ *
119
+ * The caller must be a metastore admin or an owner of the registered model.
120
+ * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
121
+ * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
122
+ */
123
+ setRegisteredModelAlias(req: SetRegisteredModelAliasRequest, options?: CallOptions): Promise<RegisteredModelAliasInfo>;
124
+ /**
125
+ * Updates the specified model version.
126
+ *
127
+ * The caller must be a metastore admin or an owner of the parent registered model.
128
+ * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
129
+ * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
130
+ *
131
+ * Currently only the comment of the model version can be updated.
132
+ */
133
+ updateModelVersion(req: UpdateModelVersionRequest, options?: CallOptions): Promise<ModelVersionInfo>;
134
+ /**
135
+ * Updates the specified registered model.
136
+ *
137
+ * The caller must be a metastore admin or an owner of the registered model.
138
+ * For the latter case, the caller must also be the owner or have the **USE_CATALOG**
139
+ * privilege on the parent catalog and the **USE_SCHEMA** privilege on the parent schema.
140
+ *
141
+ * Currently only the name, the owner or the comment of the registered model can be updated.
142
+ */
143
+ updateRegisteredModel(req: UpdateRegisteredModelRequest, options?: CallOptions): Promise<RegisteredModelInfo>;
142
144
  }
145
+ //#endregion
146
+ export { RegisteredModelsClient };
143
147
  //# sourceMappingURL=client.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/v1/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","names":[],"sources":["../../src/v1/client.ts"],"mappings":";;;;;cA6Da,sBAAA;EAAA,iBACM,OAAA;EAAA,iBACA,MAAA;EAAA,iBAIA,SAAA;EAAA,QAIT,MAAA;cAEI,OAAA,EAAS,aAAA;EAAA,QAUb,aAAA;EAoBI;;;;;;;;;;;;;EAFN,qBAAA,CACJ,GAAA,EAAK,4BAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,mBAAA;EA8GR;;;;;;;;EA5EG,kBAAA,CACJ,GAAA,EAAK,yBAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,0BAAA;EAqMJ;;;;;;;EArKD,qBAAA,CACJ,GAAA,EAAK,4BAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,6BAAA;EAgQJ;;;;;;;EA7ND,0BAAA,CACJ,GAAA,EAAK,iCAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,kCAAA;EA4SJ;;;;;;;;EAxQD,eAAA,CACJ,GAAA,EAAK,sBAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,gBAAA;EAuUC;;;;;;;;EA7RN,sBAAA,CACJ,GAAA,EAAK,6BAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,gBAAA;EA5OM;;;;;;;;EAmRX,kBAAA,CACJ,GAAA,EAAK,yBAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,mBAAA;EA9OJ;;;;;;;;;;;;;;;;;EAiSD,iBAAA,CACJ,GAAA,EAAK,wBAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,yBAAA;EAqCJ,qBAAA,CACL,GAAA,EAAK,wBAAA,EACL,OAAA,GAAU,WAAA,GACT,cAAA,CAAe,gBAAA;EAlQP;;;;;;;;;;;;;;;;EAgSL,oBAAA,CACJ,GAAA,EAAK,2BAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,4BAAA;EA8CJ,wBAAA,CACL,GAAA,EAAK,2BAAA,EACL,OAAA,GAAU,WAAA,GACT,cAAA,CAAe,mBAAA;EA3NN;;;;;;;EAgPN,uBAAA,CACJ,GAAA,EAAK,8BAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,wBAAA;EAzMT;;;;;;;;;EA+OI,kBAAA,CACJ,GAAA,EAAK,yBAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,gBAAA;EAtJJ;;;;;;;;;EAyLD,qBAAA,CACJ,GAAA,EAAK,4BAAA,EACL,OAAA,GAAU,WAAA,GACT,OAAA,CAAQ,mBAAA;AAAA"}