Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAiplatformV1CopyModelRequest

import type { GoogleCloudAiplatformV1CopyModelRequest } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Request message for ModelService.CopyModel.

interface GoogleCloudAiplatformV1CopyModelRequest {
modelId?: string;
parentModel?: string;
sourceModel?: string;
}

§Properties

§

Customer-managed encryption key options. If this is set, then the Model copy will be encrypted with the provided encryption key.

§
modelId?: string
[src]

Optional. Copy source_model into a new Model with this ID. The ID will become the final component of the model resource name. This value may be up to 63 characters, and valid characters are [a-z0-9_-]. The first character cannot be a number or hyphen.

§
parentModel?: string
[src]

Optional. Specify this field to copy source_model into this existing Model as a new version. Format: projects/{project}/locations/{location}/models/{model}

§
sourceModel?: string
[src]

Required. The resource name of the Model to copy. That Model must be in the same Project. Format: projects/{project}/locations/{location}/models/{model}