Parameters for the modelsUpdate operation.

interface ModelsUpdateParams {
    headers?: OutgoingHttpHeaders;
    jsonPatch: WatsonXAI.JsonPatchOperation[];
    modelId: string;
    projectId?: string;
    signal?: AbortSignal;
    spaceId?: string;
}

Hierarchy

  • DefaultParams
    • ModelsUpdateParams

Properties

headers?: OutgoingHttpHeaders

Input For Patch. This is the patch body which corresponds to the JavaScript Object Notation (JSON) Patch standard (RFC 6902).

modelId: string

Model identifier.

projectId?: string

The project that contains the resource. Either space_id or project_id query parameter has to be given.

signal?: AbortSignal
spaceId?: string

The space that contains the resource. Either space_id or project_id query parameter has to be given.