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

GoogleCloudAiplatformV1MergeVersionAliasesRequest

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

Request message for ModelService.MergeVersionAliases.

interface GoogleCloudAiplatformV1MergeVersionAliasesRequest {
versionAliases?: string[];
}

§Properties

§
versionAliases?: string[]
[src]

Required. The set of version aliases to merge. The alias should be at most 128 characters, and match a-z{0,126}[a-z-0-9]. Add the - prefix to an alias means removing that alias from the version. - is NOT counted in the 128 characters. Example: -golden means removing the golden alias from the version. There is NO ordering in aliases, which means 1) The aliases returned from GetModel API might not have the exactly same order from this MergeVersionAliases API. 2) Adding and deleting the same alias in the request is not recommended, and the 2 operations will be cancelled out.