@databricks/sdk-uc-registeredmodels 0.39.0 → 0.40.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.
- package/dist/package.js +1 -1
- package/dist/v1/model.js +35 -7
- package/dist/v1/model.js.map +1 -1
- package/package.json +4 -4
package/dist/package.js
CHANGED
package/dist/v1/model.js
CHANGED
|
@@ -53,15 +53,31 @@ const unmarshalModelVersionInfoSchema = z.object({
|
|
|
53
53
|
source: z.string().optional(),
|
|
54
54
|
comment: z.string().optional(),
|
|
55
55
|
run_id: z.string().optional(),
|
|
56
|
-
run_workspace_id: z.union([
|
|
56
|
+
run_workspace_id: z.union([
|
|
57
|
+
z.number(),
|
|
58
|
+
z.bigint(),
|
|
59
|
+
z.string()
|
|
60
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
57
61
|
model_version_dependencies: z.lazy(() => unmarshalDependencyListSchema).optional(),
|
|
58
62
|
status: z.string().optional(),
|
|
59
|
-
version: z.union([
|
|
63
|
+
version: z.union([
|
|
64
|
+
z.number(),
|
|
65
|
+
z.bigint(),
|
|
66
|
+
z.string()
|
|
67
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
60
68
|
storage_location: z.string().optional(),
|
|
61
69
|
metastore_id: z.string().optional(),
|
|
62
|
-
created_at: z.union([
|
|
70
|
+
created_at: z.union([
|
|
71
|
+
z.number(),
|
|
72
|
+
z.bigint(),
|
|
73
|
+
z.string()
|
|
74
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
63
75
|
created_by: z.string().optional(),
|
|
64
|
-
updated_at: z.union([
|
|
76
|
+
updated_at: z.union([
|
|
77
|
+
z.number(),
|
|
78
|
+
z.bigint(),
|
|
79
|
+
z.string()
|
|
80
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
65
81
|
updated_by: z.string().optional(),
|
|
66
82
|
id: z.string().optional(),
|
|
67
83
|
aliases: z.array(z.lazy(() => unmarshalRegisteredModelAliasInfoSchema)).optional()
|
|
@@ -87,7 +103,11 @@ const unmarshalModelVersionInfoSchema = z.object({
|
|
|
87
103
|
}));
|
|
88
104
|
const unmarshalRegisteredModelAliasInfoSchema = z.object({
|
|
89
105
|
alias_name: z.string().optional(),
|
|
90
|
-
version_num: z.union([
|
|
106
|
+
version_num: z.union([
|
|
107
|
+
z.number(),
|
|
108
|
+
z.bigint(),
|
|
109
|
+
z.string()
|
|
110
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
91
111
|
id: z.string().optional(),
|
|
92
112
|
model_name: z.string().optional(),
|
|
93
113
|
catalog_name: z.string().optional(),
|
|
@@ -109,9 +129,17 @@ const unmarshalRegisteredModelInfoSchema = z.object({
|
|
|
109
129
|
storage_location: z.string().optional(),
|
|
110
130
|
metastore_id: z.string().optional(),
|
|
111
131
|
full_name: z.string().optional(),
|
|
112
|
-
created_at: z.union([
|
|
132
|
+
created_at: z.union([
|
|
133
|
+
z.number(),
|
|
134
|
+
z.bigint(),
|
|
135
|
+
z.string()
|
|
136
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
113
137
|
created_by: z.string().optional(),
|
|
114
|
-
updated_at: z.union([
|
|
138
|
+
updated_at: z.union([
|
|
139
|
+
z.number(),
|
|
140
|
+
z.bigint(),
|
|
141
|
+
z.string()
|
|
142
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
115
143
|
updated_by: z.string().optional(),
|
|
116
144
|
aliases: z.array(z.lazy(() => unmarshalRegisteredModelAliasInfoSchema)).optional(),
|
|
117
145
|
browse_only: z.boolean().optional()
|
package/dist/v1/model.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport {z} from 'zod';\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ModelVersionStatus = {\n MODEL_VERSION_STATUS_UNKNOWN: 'MODEL_VERSION_STATUS_UNKNOWN',\n /** Request to register a new model version is pending as client uploads model files. */\n PENDING_REGISTRATION: 'PENDING_REGISTRATION',\n /** Request to register a new model version has failed. */\n FAILED_REGISTRATION: 'FAILED_REGISTRATION',\n /** Model version is ready for use. */\n READY: 'READY',\n} as const;\nexport type ModelVersionStatus =\n | (typeof ModelVersionStatus)[keyof typeof ModelVersionStatus]\n | (string & {});\n\n/** A connection that is dependent on a SQL object. */\nexport interface ConnectionDependency {\n /** Full name of the dependent connection, in the form of __connection_name__. */\n connectionName?: string | undefined;\n}\n\nexport interface CreateRegisteredModelRequest {\n /** The name of the registered model */\n name?: string | undefined;\n /** The name of the catalog where the schema and the registered model reside */\n catalogName?: string | undefined;\n /** The name of the schema where the registered model resides */\n schemaName?: string | undefined;\n /** The identifier of the user who owns the registered model */\n owner?: string | undefined;\n /** The comment attached to the registered model */\n comment?: string | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n /** The three-level (fully qualified) name of the registered model */\n fullName?: string | undefined;\n /** Creation timestamp of the registered model in milliseconds since the Unix epoch */\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the registered model */\n createdBy?: string | undefined;\n /** Last-update timestamp of the registered model in milliseconds since the Unix epoch */\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the registered model last time */\n updatedBy?: string | undefined;\n /** List of aliases associated with the registered model */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n /** 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. */\n browseOnly?: boolean | undefined;\n}\n\n/** A credential that is dependent on a SQL object. */\nexport interface CredentialDependency {\n /** Full name of the dependent credential, in the form of __credential_name__. */\n credentialName?: string | undefined;\n}\n\nexport interface DeleteModelVersionRequest {\n /** The three-level (fully qualified) name of the model version */\n fullNameArg?: string | undefined;\n /** The integer version number of the model version */\n versionArg?: bigint | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteModelVersionResponse {}\n\nexport interface DeleteRegisteredModelAliasRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** The name of the alias */\n aliasArg?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteRegisteredModelAliasResponse {}\n\nexport interface DeleteRegisteredModelRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteRegisteredModelResponse {}\n\n/**\n * A dependency of a SQL object. One of the following fields must be defined:\n * __table__, __function__, __connection__, __credential__, __volume__, or __secret__.\n */\nexport interface Dependency {\n value?:\n | {$case: 'table'; table: TableDependency}\n | {$case: 'function'; function: FunctionDependency}\n | {$case: 'connection'; connection: ConnectionDependency}\n | {$case: 'credential'; credential: CredentialDependency}\n | undefined;\n}\n\n/** A list of dependencies. */\nexport interface DependencyList {\n /** Array of dependencies. */\n dependencies?: Dependency[] | undefined;\n}\n\n/** A function that is dependent on a SQL object. */\nexport interface FunctionDependency {\n /** Full name of the dependent function, in the form of __catalog_name__.__schema_name__.__function_name__. */\n functionFullName?: string | undefined;\n}\n\nexport interface GetModelVersionByAliasRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** The name of the alias */\n aliasArg?: string | undefined;\n /** Whether to include aliases associated with the model version in the response */\n includeAliases?: boolean | undefined;\n}\n\nexport interface GetModelVersionRequest {\n /** The three-level (fully qualified) name of the model version */\n fullNameArg?: string | undefined;\n /** The integer version number of the model version */\n versionArg?: bigint | undefined;\n /** Whether to include aliases associated with the model version in the response */\n includeAliases?: boolean | undefined;\n /** Whether to include model versions in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n}\n\nexport interface GetRegisteredModelRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** Whether to include registered model aliases in the response */\n includeAliases?: boolean | undefined;\n /** Whether to include registered models in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n}\n\nexport interface ListModelVersionsRequest {\n /** The full three-level name of the registered model under which to list model versions */\n fullNameArg?: string | undefined;\n /**\n * Maximum number of model versions to return.\n * If not set, the page length is set to a server configured value (100, as of 1/3/2024).\n * - 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);\n * - when set to 0, the page length is set to a server configured value (100, as of 1/3/2024) (recommended);\n * - when set to a value less than 0, an invalid parameter error is returned;\n */\n maxResults?: bigint | undefined;\n /** Opaque pagination token to go to next page based on previous query. */\n pageToken?: string | undefined;\n /** Whether to include model versions in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n}\n\nexport interface ListModelVersionsResponse {\n modelVersions?: ModelVersionInfo[] | undefined;\n /**\n * Opaque token to retrieve the next page of results. Absent if there are no more pages.\n * __page_token__ should be set to this value for the next request (for the next page of results).\n */\n nextPageToken?: string | undefined;\n}\n\nexport interface ListRegisteredModelsRequest {\n /**\n * The identifier of the catalog under which to list registered models.\n * If specified, schema_name must be specified.\n */\n catalogName?: string | undefined;\n /**\n * The identifier of the schema under which to list registered models.\n * If specified, catalog_name must be specified.\n */\n schemaName?: string | undefined;\n /** Whether to include registered models in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n /**\n * Max number of registered models to return.\n *\n * If both catalog and schema are specified:\n * - when max_results is not specified, the page length is set to a server configured value (10000, as of 4/2/2024).\n * - 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);\n * - when set to 0, the page length is set to a server configured value (10000, as of 4/2/2024);\n * - when set to a value less than 0, an invalid parameter error is returned;\n *\n * If neither schema nor catalog is specified:\n * - when max_results is not specified, the page length is set to a server configured value (100, as of 4/2/2024).\n * - 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);\n * - when set to 0, the page length is set to a server configured value (100, as of 4/2/2024);\n * - when set to a value less than 0, an invalid parameter error is returned;\n */\n maxResults?: bigint | undefined;\n /** Opaque token to send for the next page of results (pagination). */\n pageToken?: string | undefined;\n}\n\nexport interface ListRegisteredModelsResponse {\n registeredModels?: RegisteredModelInfo[] | undefined;\n /**\n * Opaque token for pagination. Omitted if there are no more results. page_token should\n * be set to this value for fetching the next page.\n */\n nextPageToken?: string | undefined;\n}\n\nexport interface ModelVersionInfo {\n /** The name of the parent registered model of the model version, relative to parent schema */\n modelName?: string | undefined;\n /** The name of the catalog containing the model version */\n catalogName?: string | undefined;\n /** The name of the schema containing the model version, relative to parent catalog */\n schemaName?: string | undefined;\n /** URI indicating the location of the source artifacts (files) for the model version */\n source?: string | undefined;\n /** The comment attached to the model version */\n comment?: string | undefined;\n /**\n * MLflow run ID used when creating the model version, if ``source`` was generated by an\n * experiment run stored in an MLflow tracking server\n */\n runId?: string | undefined;\n /**\n * ID of the <Databricks> workspace containing the MLflow run that generated this model\n * version, if applicable\n */\n runWorkspaceId?: bigint | undefined;\n /** Model version dependencies, for feature-store packaged models */\n modelVersionDependencies?: DependencyList | undefined;\n /**\n * Current status of the model version. Newly created model versions start in\n * PENDING_REGISTRATION status, then move to READY status once the model version files are uploaded and\n * the model version is finalized. Only model versions in READY status can be loaded for inference or\n * served.\n */\n status?: ModelVersionStatus | undefined;\n /** Integer model version number, used to reference the model version in API requests. */\n version?: bigint | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore containing the model version */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the model version */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the model version last time */\n updatedBy?: string | undefined;\n /** The unique identifier of the model version */\n id?: string | undefined;\n /** List of aliases associated with the model version */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n}\n\nexport interface RegisteredModelAliasInfo {\n /** Name of the alias, e.g. 'champion' or 'latest_stable' */\n aliasName?: string | undefined;\n /** Integer version number of the model version to which this alias points. */\n versionNum?: bigint | undefined;\n /** The unique identifier of the alias */\n id?: string | undefined;\n /** The name of the parent registered model of the model version, relative to parent schema */\n modelName?: string | undefined;\n /** The name of the catalog containing the model version */\n catalogName?: string | undefined;\n /** The name of the schema containing the model version, relative to parent catalog */\n schemaName?: string | undefined;\n}\n\nexport interface RegisteredModelInfo {\n /** The name of the registered model */\n name?: string | undefined;\n /** The name of the catalog where the schema and the registered model reside */\n catalogName?: string | undefined;\n /** The name of the schema where the registered model resides */\n schemaName?: string | undefined;\n /** The identifier of the user who owns the registered model */\n owner?: string | undefined;\n /** The comment attached to the registered model */\n comment?: string | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n /** The three-level (fully qualified) name of the registered model */\n fullName?: string | undefined;\n /** Creation timestamp of the registered model in milliseconds since the Unix epoch */\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the registered model */\n createdBy?: string | undefined;\n /** Last-update timestamp of the registered model in milliseconds since the Unix epoch */\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the registered model last time */\n updatedBy?: string | undefined;\n /** List of aliases associated with the registered model */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n /** 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. */\n browseOnly?: boolean | undefined;\n}\n\nexport interface SetRegisteredModelAliasRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** The name of the alias */\n aliasArg?: string | undefined;\n /** The version number of the model version to which the alias points */\n versionNum?: bigint | undefined;\n}\n\n/** A table that is dependent on a SQL object. */\nexport interface TableDependency {\n /** Full name of the dependent table, in the form of __catalog_name__.__schema_name__.__table_name__. */\n tableFullName?: string | undefined;\n}\n\nexport interface UpdateModelVersionRequest {\n /** The three-level (fully qualified) name of the model version */\n fullNameArg?: string | undefined;\n /** The integer version number of the model version */\n versionArg?: bigint | undefined;\n /** The name of the parent registered model of the model version, relative to parent schema */\n modelName?: string | undefined;\n /** The name of the catalog containing the model version */\n catalogName?: string | undefined;\n /** The name of the schema containing the model version, relative to parent catalog */\n schemaName?: string | undefined;\n /** URI indicating the location of the source artifacts (files) for the model version */\n source?: string | undefined;\n /** The comment attached to the model version */\n comment?: string | undefined;\n /**\n * MLflow run ID used when creating the model version, if ``source`` was generated by an\n * experiment run stored in an MLflow tracking server\n */\n runId?: string | undefined;\n /**\n * ID of the <Databricks> workspace containing the MLflow run that generated this model\n * version, if applicable\n */\n runWorkspaceId?: bigint | undefined;\n /** Model version dependencies, for feature-store packaged models */\n modelVersionDependencies?: DependencyList | undefined;\n /**\n * Current status of the model version. Newly created model versions start in\n * PENDING_REGISTRATION status, then move to READY status once the model version files are uploaded and\n * the model version is finalized. Only model versions in READY status can be loaded for inference or\n * served.\n */\n status?: ModelVersionStatus | undefined;\n /** Integer model version number, used to reference the model version in API requests. */\n version?: bigint | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore containing the model version */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the model version */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the model version last time */\n updatedBy?: string | undefined;\n /** The unique identifier of the model version */\n id?: string | undefined;\n /** List of aliases associated with the model version */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n}\n\nexport interface UpdateRegisteredModelRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** New name for the registered model. */\n newName?: string | undefined;\n /** The name of the registered model */\n name?: string | undefined;\n /** The name of the catalog where the schema and the registered model reside */\n catalogName?: string | undefined;\n /** The name of the schema where the registered model resides */\n schemaName?: string | undefined;\n /** The identifier of the user who owns the registered model */\n owner?: string | undefined;\n /** The comment attached to the registered model */\n comment?: string | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n /** The three-level (fully qualified) name of the registered model */\n fullName?: string | undefined;\n /** Creation timestamp of the registered model in milliseconds since the Unix epoch */\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the registered model */\n createdBy?: string | undefined;\n /** Last-update timestamp of the registered model in milliseconds since the Unix epoch */\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the registered model last time */\n updatedBy?: string | undefined;\n /** List of aliases associated with the registered model */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n /** 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. */\n browseOnly?: boolean | undefined;\n}\n\nexport const unmarshalConnectionDependencySchema: z.ZodType<ConnectionDependency> =\n z\n .object({\n connection_name: z.string().optional(),\n })\n .transform(d => ({\n connectionName: d.connection_name,\n }));\n\nexport const unmarshalCredentialDependencySchema: z.ZodType<CredentialDependency> =\n z\n .object({\n credential_name: z.string().optional(),\n })\n .transform(d => ({\n credentialName: d.credential_name,\n }));\n\nexport const unmarshalDeleteModelVersionResponseSchema: z.ZodType<DeleteModelVersionResponse> =\n z.object({});\n\nexport const unmarshalDeleteRegisteredModelAliasResponseSchema: z.ZodType<DeleteRegisteredModelAliasResponse> =\n z.object({});\n\nexport const unmarshalDeleteRegisteredModelResponseSchema: z.ZodType<DeleteRegisteredModelResponse> =\n z.object({});\n\nexport const unmarshalDependencySchema: z.ZodType<Dependency> = z\n .object({\n table: z.lazy(() => unmarshalTableDependencySchema).optional(),\n function: z.lazy(() => unmarshalFunctionDependencySchema).optional(),\n connection: z.lazy(() => unmarshalConnectionDependencySchema).optional(),\n credential: z.lazy(() => unmarshalCredentialDependencySchema).optional(),\n })\n .transform(d => ({\n value:\n d.table !== undefined\n ? {$case: 'table' as const, table: d.table}\n : d.function !== undefined\n ? {$case: 'function' as const, function: d.function}\n : d.connection !== undefined\n ? {$case: 'connection' as const, connection: d.connection}\n : d.credential !== undefined\n ? {$case: 'credential' as const, credential: d.credential}\n : undefined,\n }));\n\nexport const unmarshalDependencyListSchema: z.ZodType<DependencyList> = z\n .object({\n dependencies: z.array(z.lazy(() => unmarshalDependencySchema)).optional(),\n })\n .transform(d => ({\n dependencies: d.dependencies,\n }));\n\nexport const unmarshalFunctionDependencySchema: z.ZodType<FunctionDependency> =\n z\n .object({\n function_full_name: z.string().optional(),\n })\n .transform(d => ({\n functionFullName: d.function_full_name,\n }));\n\nexport const unmarshalListModelVersionsResponseSchema: z.ZodType<ListModelVersionsResponse> =\n z\n .object({\n model_versions: z\n .array(z.lazy(() => unmarshalModelVersionInfoSchema))\n .optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n modelVersions: d.model_versions,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListRegisteredModelsResponseSchema: z.ZodType<ListRegisteredModelsResponse> =\n z\n .object({\n registered_models: z\n .array(z.lazy(() => unmarshalRegisteredModelInfoSchema))\n .optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n registeredModels: d.registered_models,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalModelVersionInfoSchema: z.ZodType<ModelVersionInfo> = z\n .object({\n model_name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n source: z.string().optional(),\n comment: z.string().optional(),\n run_id: z.string().optional(),\n run_workspace_id: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n model_version_dependencies: z\n .lazy(() => unmarshalDependencyListSchema)\n .optional(),\n status: z.string().optional(),\n version: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n storage_location: z.string().optional(),\n metastore_id: z.string().optional(),\n created_at: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n created_by: z.string().optional(),\n updated_at: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n updated_by: z.string().optional(),\n id: z.string().optional(),\n aliases: z\n .array(z.lazy(() => unmarshalRegisteredModelAliasInfoSchema))\n .optional(),\n })\n .transform(d => ({\n modelName: d.model_name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n source: d.source,\n comment: d.comment,\n runId: d.run_id,\n runWorkspaceId: d.run_workspace_id,\n modelVersionDependencies: d.model_version_dependencies,\n status: d.status,\n version: d.version,\n storageLocation: d.storage_location,\n metastoreId: d.metastore_id,\n createdAt: d.created_at,\n createdBy: d.created_by,\n updatedAt: d.updated_at,\n updatedBy: d.updated_by,\n id: d.id,\n aliases: d.aliases,\n }));\n\nexport const unmarshalRegisteredModelAliasInfoSchema: z.ZodType<RegisteredModelAliasInfo> =\n z\n .object({\n alias_name: z.string().optional(),\n version_num: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n id: z.string().optional(),\n model_name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n })\n .transform(d => ({\n aliasName: d.alias_name,\n versionNum: d.version_num,\n id: d.id,\n modelName: d.model_name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n }));\n\nexport const unmarshalRegisteredModelInfoSchema: z.ZodType<RegisteredModelInfo> =\n z\n .object({\n name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storage_location: z.string().optional(),\n metastore_id: z.string().optional(),\n full_name: z.string().optional(),\n created_at: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n created_by: z.string().optional(),\n updated_at: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n updated_by: z.string().optional(),\n aliases: z\n .array(z.lazy(() => unmarshalRegisteredModelAliasInfoSchema))\n .optional(),\n browse_only: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n owner: d.owner,\n comment: d.comment,\n storageLocation: d.storage_location,\n metastoreId: d.metastore_id,\n fullName: d.full_name,\n createdAt: d.created_at,\n createdBy: d.created_by,\n updatedAt: d.updated_at,\n updatedBy: d.updated_by,\n aliases: d.aliases,\n browseOnly: d.browse_only,\n }));\n\nexport const unmarshalTableDependencySchema: z.ZodType<TableDependency> = z\n .object({\n table_full_name: z.string().optional(),\n })\n .transform(d => ({\n tableFullName: d.table_full_name,\n }));\n\nexport const marshalConnectionDependencySchema: z.ZodType = z\n .object({\n connectionName: z.string().optional(),\n })\n .transform(d => ({\n connection_name: d.connectionName,\n }));\n\nexport const marshalCreateRegisteredModelRequestSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storageLocation: z.string().optional(),\n metastoreId: z.string().optional(),\n fullName: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n aliases: z\n .array(z.lazy(() => marshalRegisteredModelAliasInfoSchema))\n .optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n owner: d.owner,\n comment: d.comment,\n storage_location: d.storageLocation,\n metastore_id: d.metastoreId,\n full_name: d.fullName,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n aliases: d.aliases,\n browse_only: d.browseOnly,\n }));\n\nexport const marshalCredentialDependencySchema: z.ZodType = z\n .object({\n credentialName: z.string().optional(),\n })\n .transform(d => ({\n credential_name: d.credentialName,\n }));\n\nexport const marshalDependencySchema: z.ZodType = z\n .object({\n value: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('table'),\n table: z.lazy(() => marshalTableDependencySchema),\n }),\n z.object({\n $case: z.literal('function'),\n function: z.lazy(() => marshalFunctionDependencySchema),\n }),\n z.object({\n $case: z.literal('connection'),\n connection: z.lazy(() => marshalConnectionDependencySchema),\n }),\n z.object({\n $case: z.literal('credential'),\n credential: z.lazy(() => marshalCredentialDependencySchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.value?.$case === 'table' && {table: d.value.table}),\n ...(d.value?.$case === 'function' && {function: d.value.function}),\n ...(d.value?.$case === 'connection' && {connection: d.value.connection}),\n ...(d.value?.$case === 'credential' && {credential: d.value.credential}),\n }));\n\nexport const marshalDependencyListSchema: z.ZodType = z\n .object({\n dependencies: z.array(z.lazy(() => marshalDependencySchema)).optional(),\n })\n .transform(d => ({\n dependencies: d.dependencies,\n }));\n\nexport const marshalFunctionDependencySchema: z.ZodType = z\n .object({\n functionFullName: z.string().optional(),\n })\n .transform(d => ({\n function_full_name: d.functionFullName,\n }));\n\nexport const marshalRegisteredModelAliasInfoSchema: z.ZodType = z\n .object({\n aliasName: z.string().optional(),\n versionNum: z.bigint().optional(),\n id: z.string().optional(),\n modelName: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n })\n .transform(d => ({\n alias_name: d.aliasName,\n version_num: d.versionNum,\n id: d.id,\n model_name: d.modelName,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n }));\n\nexport const marshalSetRegisteredModelAliasRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n aliasArg: z.string().optional(),\n versionNum: z.bigint().optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n alias_arg: d.aliasArg,\n version_num: d.versionNum,\n }));\n\nexport const marshalTableDependencySchema: z.ZodType = z\n .object({\n tableFullName: z.string().optional(),\n })\n .transform(d => ({\n table_full_name: d.tableFullName,\n }));\n\nexport const marshalUpdateModelVersionRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n versionArg: z.bigint().optional(),\n modelName: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n source: z.string().optional(),\n comment: z.string().optional(),\n runId: z.string().optional(),\n runWorkspaceId: z.bigint().optional(),\n modelVersionDependencies: z\n .lazy(() => marshalDependencyListSchema)\n .optional(),\n status: z.string().optional(),\n version: z.bigint().optional(),\n storageLocation: z.string().optional(),\n metastoreId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n id: z.string().optional(),\n aliases: z\n .array(z.lazy(() => marshalRegisteredModelAliasInfoSchema))\n .optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n version_arg: d.versionArg,\n model_name: d.modelName,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n source: d.source,\n comment: d.comment,\n run_id: d.runId,\n run_workspace_id: d.runWorkspaceId,\n model_version_dependencies: d.modelVersionDependencies,\n status: d.status,\n version: d.version,\n storage_location: d.storageLocation,\n metastore_id: d.metastoreId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n id: d.id,\n aliases: d.aliases,\n }));\n\nexport const marshalUpdateRegisteredModelRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n newName: z.string().optional(),\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storageLocation: z.string().optional(),\n metastoreId: z.string().optional(),\n fullName: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n aliases: z\n .array(z.lazy(() => marshalRegisteredModelAliasInfoSchema))\n .optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n new_name: d.newName,\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n owner: d.owner,\n comment: d.comment,\n storage_location: d.storageLocation,\n metastore_id: d.metastoreId,\n full_name: d.fullName,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n aliases: d.aliases,\n browse_only: d.browseOnly,\n }));\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport {z} from 'zod';\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ModelVersionStatus = {\n MODEL_VERSION_STATUS_UNKNOWN: 'MODEL_VERSION_STATUS_UNKNOWN',\n /** Request to register a new model version is pending as client uploads model files. */\n PENDING_REGISTRATION: 'PENDING_REGISTRATION',\n /** Request to register a new model version has failed. */\n FAILED_REGISTRATION: 'FAILED_REGISTRATION',\n /** Model version is ready for use. */\n READY: 'READY',\n} as const;\nexport type ModelVersionStatus =\n | (typeof ModelVersionStatus)[keyof typeof ModelVersionStatus]\n | (string & {});\n\n/** A connection that is dependent on a SQL object. */\nexport interface ConnectionDependency {\n /** Full name of the dependent connection, in the form of __connection_name__. */\n connectionName?: string | undefined;\n}\n\nexport interface CreateRegisteredModelRequest {\n /** The name of the registered model */\n name?: string | undefined;\n /** The name of the catalog where the schema and the registered model reside */\n catalogName?: string | undefined;\n /** The name of the schema where the registered model resides */\n schemaName?: string | undefined;\n /** The identifier of the user who owns the registered model */\n owner?: string | undefined;\n /** The comment attached to the registered model */\n comment?: string | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n /** The three-level (fully qualified) name of the registered model */\n fullName?: string | undefined;\n /** Creation timestamp of the registered model in milliseconds since the Unix epoch */\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the registered model */\n createdBy?: string | undefined;\n /** Last-update timestamp of the registered model in milliseconds since the Unix epoch */\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the registered model last time */\n updatedBy?: string | undefined;\n /** List of aliases associated with the registered model */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n /** 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. */\n browseOnly?: boolean | undefined;\n}\n\n/** A credential that is dependent on a SQL object. */\nexport interface CredentialDependency {\n /** Full name of the dependent credential, in the form of __credential_name__. */\n credentialName?: string | undefined;\n}\n\nexport interface DeleteModelVersionRequest {\n /** The three-level (fully qualified) name of the model version */\n fullNameArg?: string | undefined;\n /** The integer version number of the model version */\n versionArg?: bigint | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteModelVersionResponse {}\n\nexport interface DeleteRegisteredModelAliasRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** The name of the alias */\n aliasArg?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteRegisteredModelAliasResponse {}\n\nexport interface DeleteRegisteredModelRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteRegisteredModelResponse {}\n\n/**\n * A dependency of a SQL object. One of the following fields must be defined:\n * __table__, __function__, __connection__, __credential__, __volume__, or __secret__.\n */\nexport interface Dependency {\n value?:\n | {$case: 'table'; table: TableDependency}\n | {$case: 'function'; function: FunctionDependency}\n | {$case: 'connection'; connection: ConnectionDependency}\n | {$case: 'credential'; credential: CredentialDependency}\n | undefined;\n}\n\n/** A list of dependencies. */\nexport interface DependencyList {\n /** Array of dependencies. */\n dependencies?: Dependency[] | undefined;\n}\n\n/** A function that is dependent on a SQL object. */\nexport interface FunctionDependency {\n /** Full name of the dependent function, in the form of __catalog_name__.__schema_name__.__function_name__. */\n functionFullName?: string | undefined;\n}\n\nexport interface GetModelVersionByAliasRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** The name of the alias */\n aliasArg?: string | undefined;\n /** Whether to include aliases associated with the model version in the response */\n includeAliases?: boolean | undefined;\n}\n\nexport interface GetModelVersionRequest {\n /** The three-level (fully qualified) name of the model version */\n fullNameArg?: string | undefined;\n /** The integer version number of the model version */\n versionArg?: bigint | undefined;\n /** Whether to include aliases associated with the model version in the response */\n includeAliases?: boolean | undefined;\n /** Whether to include model versions in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n}\n\nexport interface GetRegisteredModelRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** Whether to include registered model aliases in the response */\n includeAliases?: boolean | undefined;\n /** Whether to include registered models in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n}\n\nexport interface ListModelVersionsRequest {\n /** The full three-level name of the registered model under which to list model versions */\n fullNameArg?: string | undefined;\n /**\n * Maximum number of model versions to return.\n * If not set, the page length is set to a server configured value (100, as of 1/3/2024).\n * - 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);\n * - when set to 0, the page length is set to a server configured value (100, as of 1/3/2024) (recommended);\n * - when set to a value less than 0, an invalid parameter error is returned;\n */\n maxResults?: bigint | undefined;\n /** Opaque pagination token to go to next page based on previous query. */\n pageToken?: string | undefined;\n /** Whether to include model versions in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n}\n\nexport interface ListModelVersionsResponse {\n modelVersions?: ModelVersionInfo[] | undefined;\n /**\n * Opaque token to retrieve the next page of results. Absent if there are no more pages.\n * __page_token__ should be set to this value for the next request (for the next page of results).\n */\n nextPageToken?: string | undefined;\n}\n\nexport interface ListRegisteredModelsRequest {\n /**\n * The identifier of the catalog under which to list registered models.\n * If specified, schema_name must be specified.\n */\n catalogName?: string | undefined;\n /**\n * The identifier of the schema under which to list registered models.\n * If specified, catalog_name must be specified.\n */\n schemaName?: string | undefined;\n /** Whether to include registered models in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n /**\n * Max number of registered models to return.\n *\n * If both catalog and schema are specified:\n * - when max_results is not specified, the page length is set to a server configured value (10000, as of 4/2/2024).\n * - 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);\n * - when set to 0, the page length is set to a server configured value (10000, as of 4/2/2024);\n * - when set to a value less than 0, an invalid parameter error is returned;\n *\n * If neither schema nor catalog is specified:\n * - when max_results is not specified, the page length is set to a server configured value (100, as of 4/2/2024).\n * - 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);\n * - when set to 0, the page length is set to a server configured value (100, as of 4/2/2024);\n * - when set to a value less than 0, an invalid parameter error is returned;\n */\n maxResults?: bigint | undefined;\n /** Opaque token to send for the next page of results (pagination). */\n pageToken?: string | undefined;\n}\n\nexport interface ListRegisteredModelsResponse {\n registeredModels?: RegisteredModelInfo[] | undefined;\n /**\n * Opaque token for pagination. Omitted if there are no more results. page_token should\n * be set to this value for fetching the next page.\n */\n nextPageToken?: string | undefined;\n}\n\nexport interface ModelVersionInfo {\n /** The name of the parent registered model of the model version, relative to parent schema */\n modelName?: string | undefined;\n /** The name of the catalog containing the model version */\n catalogName?: string | undefined;\n /** The name of the schema containing the model version, relative to parent catalog */\n schemaName?: string | undefined;\n /** URI indicating the location of the source artifacts (files) for the model version */\n source?: string | undefined;\n /** The comment attached to the model version */\n comment?: string | undefined;\n /**\n * MLflow run ID used when creating the model version, if ``source`` was generated by an\n * experiment run stored in an MLflow tracking server\n */\n runId?: string | undefined;\n /**\n * ID of the <Databricks> workspace containing the MLflow run that generated this model\n * version, if applicable\n */\n runWorkspaceId?: bigint | undefined;\n /** Model version dependencies, for feature-store packaged models */\n modelVersionDependencies?: DependencyList | undefined;\n /**\n * Current status of the model version. Newly created model versions start in\n * PENDING_REGISTRATION status, then move to READY status once the model version files are uploaded and\n * the model version is finalized. Only model versions in READY status can be loaded for inference or\n * served.\n */\n status?: ModelVersionStatus | undefined;\n /** Integer model version number, used to reference the model version in API requests. */\n version?: bigint | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore containing the model version */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the model version */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the model version last time */\n updatedBy?: string | undefined;\n /** The unique identifier of the model version */\n id?: string | undefined;\n /** List of aliases associated with the model version */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n}\n\nexport interface RegisteredModelAliasInfo {\n /** Name of the alias, e.g. 'champion' or 'latest_stable' */\n aliasName?: string | undefined;\n /** Integer version number of the model version to which this alias points. */\n versionNum?: bigint | undefined;\n /** The unique identifier of the alias */\n id?: string | undefined;\n /** The name of the parent registered model of the model version, relative to parent schema */\n modelName?: string | undefined;\n /** The name of the catalog containing the model version */\n catalogName?: string | undefined;\n /** The name of the schema containing the model version, relative to parent catalog */\n schemaName?: string | undefined;\n}\n\nexport interface RegisteredModelInfo {\n /** The name of the registered model */\n name?: string | undefined;\n /** The name of the catalog where the schema and the registered model reside */\n catalogName?: string | undefined;\n /** The name of the schema where the registered model resides */\n schemaName?: string | undefined;\n /** The identifier of the user who owns the registered model */\n owner?: string | undefined;\n /** The comment attached to the registered model */\n comment?: string | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n /** The three-level (fully qualified) name of the registered model */\n fullName?: string | undefined;\n /** Creation timestamp of the registered model in milliseconds since the Unix epoch */\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the registered model */\n createdBy?: string | undefined;\n /** Last-update timestamp of the registered model in milliseconds since the Unix epoch */\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the registered model last time */\n updatedBy?: string | undefined;\n /** List of aliases associated with the registered model */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n /** 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. */\n browseOnly?: boolean | undefined;\n}\n\nexport interface SetRegisteredModelAliasRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** The name of the alias */\n aliasArg?: string | undefined;\n /** The version number of the model version to which the alias points */\n versionNum?: bigint | undefined;\n}\n\n/** A table that is dependent on a SQL object. */\nexport interface TableDependency {\n /** Full name of the dependent table, in the form of __catalog_name__.__schema_name__.__table_name__. */\n tableFullName?: string | undefined;\n}\n\nexport interface UpdateModelVersionRequest {\n /** The three-level (fully qualified) name of the model version */\n fullNameArg?: string | undefined;\n /** The integer version number of the model version */\n versionArg?: bigint | undefined;\n /** The name of the parent registered model of the model version, relative to parent schema */\n modelName?: string | undefined;\n /** The name of the catalog containing the model version */\n catalogName?: string | undefined;\n /** The name of the schema containing the model version, relative to parent catalog */\n schemaName?: string | undefined;\n /** URI indicating the location of the source artifacts (files) for the model version */\n source?: string | undefined;\n /** The comment attached to the model version */\n comment?: string | undefined;\n /**\n * MLflow run ID used when creating the model version, if ``source`` was generated by an\n * experiment run stored in an MLflow tracking server\n */\n runId?: string | undefined;\n /**\n * ID of the <Databricks> workspace containing the MLflow run that generated this model\n * version, if applicable\n */\n runWorkspaceId?: bigint | undefined;\n /** Model version dependencies, for feature-store packaged models */\n modelVersionDependencies?: DependencyList | undefined;\n /**\n * Current status of the model version. Newly created model versions start in\n * PENDING_REGISTRATION status, then move to READY status once the model version files are uploaded and\n * the model version is finalized. Only model versions in READY status can be loaded for inference or\n * served.\n */\n status?: ModelVersionStatus | undefined;\n /** Integer model version number, used to reference the model version in API requests. */\n version?: bigint | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore containing the model version */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the model version */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the model version last time */\n updatedBy?: string | undefined;\n /** The unique identifier of the model version */\n id?: string | undefined;\n /** List of aliases associated with the model version */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n}\n\nexport interface UpdateRegisteredModelRequest {\n /** The three-level (fully qualified) name of the registered model */\n fullNameArg?: string | undefined;\n /** New name for the registered model. */\n newName?: string | undefined;\n /** The name of the registered model */\n name?: string | undefined;\n /** The name of the catalog where the schema and the registered model reside */\n catalogName?: string | undefined;\n /** The name of the schema where the registered model resides */\n schemaName?: string | undefined;\n /** The identifier of the user who owns the registered model */\n owner?: string | undefined;\n /** The comment attached to the registered model */\n comment?: string | undefined;\n /** The storage location on the cloud under which model version data files are stored */\n storageLocation?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n /** The three-level (fully qualified) name of the registered model */\n fullName?: string | undefined;\n /** Creation timestamp of the registered model in milliseconds since the Unix epoch */\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the registered model */\n createdBy?: string | undefined;\n /** Last-update timestamp of the registered model in milliseconds since the Unix epoch */\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the registered model last time */\n updatedBy?: string | undefined;\n /** List of aliases associated with the registered model */\n aliases?: RegisteredModelAliasInfo[] | undefined;\n /** 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. */\n browseOnly?: boolean | undefined;\n}\n\nexport const unmarshalConnectionDependencySchema: z.ZodType<ConnectionDependency> =\n z\n .object({\n connection_name: z.string().optional(),\n })\n .transform(d => ({\n connectionName: d.connection_name,\n }));\n\nexport const unmarshalCredentialDependencySchema: z.ZodType<CredentialDependency> =\n z\n .object({\n credential_name: z.string().optional(),\n })\n .transform(d => ({\n credentialName: d.credential_name,\n }));\n\nexport const unmarshalDeleteModelVersionResponseSchema: z.ZodType<DeleteModelVersionResponse> =\n z.object({});\n\nexport const unmarshalDeleteRegisteredModelAliasResponseSchema: z.ZodType<DeleteRegisteredModelAliasResponse> =\n z.object({});\n\nexport const unmarshalDeleteRegisteredModelResponseSchema: z.ZodType<DeleteRegisteredModelResponse> =\n z.object({});\n\nexport const unmarshalDependencySchema: z.ZodType<Dependency> = z\n .object({\n table: z.lazy(() => unmarshalTableDependencySchema).optional(),\n function: z.lazy(() => unmarshalFunctionDependencySchema).optional(),\n connection: z.lazy(() => unmarshalConnectionDependencySchema).optional(),\n credential: z.lazy(() => unmarshalCredentialDependencySchema).optional(),\n })\n .transform(d => ({\n value:\n d.table !== undefined\n ? {$case: 'table' as const, table: d.table}\n : d.function !== undefined\n ? {$case: 'function' as const, function: d.function}\n : d.connection !== undefined\n ? {$case: 'connection' as const, connection: d.connection}\n : d.credential !== undefined\n ? {$case: 'credential' as const, credential: d.credential}\n : undefined,\n }));\n\nexport const unmarshalDependencyListSchema: z.ZodType<DependencyList> = z\n .object({\n dependencies: z.array(z.lazy(() => unmarshalDependencySchema)).optional(),\n })\n .transform(d => ({\n dependencies: d.dependencies,\n }));\n\nexport const unmarshalFunctionDependencySchema: z.ZodType<FunctionDependency> =\n z\n .object({\n function_full_name: z.string().optional(),\n })\n .transform(d => ({\n functionFullName: d.function_full_name,\n }));\n\nexport const unmarshalListModelVersionsResponseSchema: z.ZodType<ListModelVersionsResponse> =\n z\n .object({\n model_versions: z\n .array(z.lazy(() => unmarshalModelVersionInfoSchema))\n .optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n modelVersions: d.model_versions,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListRegisteredModelsResponseSchema: z.ZodType<ListRegisteredModelsResponse> =\n z\n .object({\n registered_models: z\n .array(z.lazy(() => unmarshalRegisteredModelInfoSchema))\n .optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n registeredModels: d.registered_models,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalModelVersionInfoSchema: z.ZodType<ModelVersionInfo> = z\n .object({\n model_name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n source: z.string().optional(),\n comment: z.string().optional(),\n run_id: z.string().optional(),\n run_workspace_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n model_version_dependencies: z\n .lazy(() => unmarshalDependencyListSchema)\n .optional(),\n status: z.string().optional(),\n version: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n storage_location: z.string().optional(),\n metastore_id: z.string().optional(),\n created_at: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n created_by: z.string().optional(),\n updated_at: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n updated_by: z.string().optional(),\n id: z.string().optional(),\n aliases: z\n .array(z.lazy(() => unmarshalRegisteredModelAliasInfoSchema))\n .optional(),\n })\n .transform(d => ({\n modelName: d.model_name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n source: d.source,\n comment: d.comment,\n runId: d.run_id,\n runWorkspaceId: d.run_workspace_id,\n modelVersionDependencies: d.model_version_dependencies,\n status: d.status,\n version: d.version,\n storageLocation: d.storage_location,\n metastoreId: d.metastore_id,\n createdAt: d.created_at,\n createdBy: d.created_by,\n updatedAt: d.updated_at,\n updatedBy: d.updated_by,\n id: d.id,\n aliases: d.aliases,\n }));\n\nexport const unmarshalRegisteredModelAliasInfoSchema: z.ZodType<RegisteredModelAliasInfo> =\n z\n .object({\n alias_name: z.string().optional(),\n version_num: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n id: z.string().optional(),\n model_name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n })\n .transform(d => ({\n aliasName: d.alias_name,\n versionNum: d.version_num,\n id: d.id,\n modelName: d.model_name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n }));\n\nexport const unmarshalRegisteredModelInfoSchema: z.ZodType<RegisteredModelInfo> =\n z\n .object({\n name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storage_location: z.string().optional(),\n metastore_id: z.string().optional(),\n full_name: z.string().optional(),\n created_at: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n created_by: z.string().optional(),\n updated_at: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n updated_by: z.string().optional(),\n aliases: z\n .array(z.lazy(() => unmarshalRegisteredModelAliasInfoSchema))\n .optional(),\n browse_only: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n owner: d.owner,\n comment: d.comment,\n storageLocation: d.storage_location,\n metastoreId: d.metastore_id,\n fullName: d.full_name,\n createdAt: d.created_at,\n createdBy: d.created_by,\n updatedAt: d.updated_at,\n updatedBy: d.updated_by,\n aliases: d.aliases,\n browseOnly: d.browse_only,\n }));\n\nexport const unmarshalTableDependencySchema: z.ZodType<TableDependency> = z\n .object({\n table_full_name: z.string().optional(),\n })\n .transform(d => ({\n tableFullName: d.table_full_name,\n }));\n\nexport const marshalConnectionDependencySchema: z.ZodType = z\n .object({\n connectionName: z.string().optional(),\n })\n .transform(d => ({\n connection_name: d.connectionName,\n }));\n\nexport const marshalCreateRegisteredModelRequestSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storageLocation: z.string().optional(),\n metastoreId: z.string().optional(),\n fullName: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n aliases: z\n .array(z.lazy(() => marshalRegisteredModelAliasInfoSchema))\n .optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n owner: d.owner,\n comment: d.comment,\n storage_location: d.storageLocation,\n metastore_id: d.metastoreId,\n full_name: d.fullName,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n aliases: d.aliases,\n browse_only: d.browseOnly,\n }));\n\nexport const marshalCredentialDependencySchema: z.ZodType = z\n .object({\n credentialName: z.string().optional(),\n })\n .transform(d => ({\n credential_name: d.credentialName,\n }));\n\nexport const marshalDependencySchema: z.ZodType = z\n .object({\n value: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('table'),\n table: z.lazy(() => marshalTableDependencySchema),\n }),\n z.object({\n $case: z.literal('function'),\n function: z.lazy(() => marshalFunctionDependencySchema),\n }),\n z.object({\n $case: z.literal('connection'),\n connection: z.lazy(() => marshalConnectionDependencySchema),\n }),\n z.object({\n $case: z.literal('credential'),\n credential: z.lazy(() => marshalCredentialDependencySchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.value?.$case === 'table' && {table: d.value.table}),\n ...(d.value?.$case === 'function' && {function: d.value.function}),\n ...(d.value?.$case === 'connection' && {connection: d.value.connection}),\n ...(d.value?.$case === 'credential' && {credential: d.value.credential}),\n }));\n\nexport const marshalDependencyListSchema: z.ZodType = z\n .object({\n dependencies: z.array(z.lazy(() => marshalDependencySchema)).optional(),\n })\n .transform(d => ({\n dependencies: d.dependencies,\n }));\n\nexport const marshalFunctionDependencySchema: z.ZodType = z\n .object({\n functionFullName: z.string().optional(),\n })\n .transform(d => ({\n function_full_name: d.functionFullName,\n }));\n\nexport const marshalRegisteredModelAliasInfoSchema: z.ZodType = z\n .object({\n aliasName: z.string().optional(),\n versionNum: z.bigint().optional(),\n id: z.string().optional(),\n modelName: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n })\n .transform(d => ({\n alias_name: d.aliasName,\n version_num: d.versionNum,\n id: d.id,\n model_name: d.modelName,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n }));\n\nexport const marshalSetRegisteredModelAliasRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n aliasArg: z.string().optional(),\n versionNum: z.bigint().optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n alias_arg: d.aliasArg,\n version_num: d.versionNum,\n }));\n\nexport const marshalTableDependencySchema: z.ZodType = z\n .object({\n tableFullName: z.string().optional(),\n })\n .transform(d => ({\n table_full_name: d.tableFullName,\n }));\n\nexport const marshalUpdateModelVersionRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n versionArg: z.bigint().optional(),\n modelName: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n source: z.string().optional(),\n comment: z.string().optional(),\n runId: z.string().optional(),\n runWorkspaceId: z.bigint().optional(),\n modelVersionDependencies: z\n .lazy(() => marshalDependencyListSchema)\n .optional(),\n status: z.string().optional(),\n version: z.bigint().optional(),\n storageLocation: z.string().optional(),\n metastoreId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n id: z.string().optional(),\n aliases: z\n .array(z.lazy(() => marshalRegisteredModelAliasInfoSchema))\n .optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n version_arg: d.versionArg,\n model_name: d.modelName,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n source: d.source,\n comment: d.comment,\n run_id: d.runId,\n run_workspace_id: d.runWorkspaceId,\n model_version_dependencies: d.modelVersionDependencies,\n status: d.status,\n version: d.version,\n storage_location: d.storageLocation,\n metastore_id: d.metastoreId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n id: d.id,\n aliases: d.aliases,\n }));\n\nexport const marshalUpdateRegisteredModelRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n newName: z.string().optional(),\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storageLocation: z.string().optional(),\n metastoreId: z.string().optional(),\n fullName: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n aliases: z\n .array(z.lazy(() => marshalRegisteredModelAliasInfoSchema))\n .optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n new_name: d.newName,\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n owner: d.owner,\n comment: d.comment,\n storage_location: d.storageLocation,\n metastore_id: d.metastoreId,\n full_name: d.fullName,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n aliases: d.aliases,\n browse_only: d.browseOnly,\n }));\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databricks/sdk-uc-registeredmodels",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.40.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"directory": "packages/uc/registeredmodels"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@databricks/sdk-auth": ">=0.
|
|
37
|
-
"@databricks/sdk-core": ">=0.
|
|
38
|
-
"@databricks/sdk-options": ">=0.
|
|
36
|
+
"@databricks/sdk-auth": ">=0.40.0 <1.0.0",
|
|
37
|
+
"@databricks/sdk-core": ">=0.40.0 <1.0.0",
|
|
38
|
+
"@databricks/sdk-options": ">=0.40.0 <1.0.0",
|
|
39
39
|
"@js-temporal/polyfill": "^0.5.0",
|
|
40
40
|
"json-bigint": "^1.0.0",
|
|
41
41
|
"zod": "^4.3.6"
|