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

BatchDeleteVersionsRequest

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

The request to delete multiple versions across a repository.

interface BatchDeleteVersionsRequest {
names?: string[];
validateOnly?: boolean;
}

§Properties

§
names?: string[]
[src]

Required. The names of the versions to delete. A maximum of 10000 versions can be deleted in a batch.

§
validateOnly?: boolean
[src]

If true, the request is performed without deleting data, following AIP-163.