import { CloudinaryAssetMgmtCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { APIError } from "../models/errors/apierror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { ResourceUpdateRequest } from "../models/resourceupdaterequest.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Updates an existing asset's metadata, tags, and other attributes using its asset ID * * @remarks * Updates one or more attributes of a specified resource (asset) by its asset ID. This enables you to update details of an asset by its unique and immutable identifier, regardless of public ID, display name, asset folder, resource type or delivery type. Note that you can also update attributes of an existing asset using the explicit API endpoint. */ export declare function assetsUpdateResourceByAssetId(client$: CloudinaryAssetMgmtCore, asset_id: string, ResourceUpdateRequest: ResourceUpdateRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=assetsUpdateResourceByAssetId.d.ts.map