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

ListDockerImagesResponse

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

The response from listing docker images.

interface ListDockerImagesResponse {
dockerImages?: DockerImage[];
nextPageToken?: string;
}

§Properties

§
dockerImages?: DockerImage[]
[src]

The docker images returned.

§
nextPageToken?: string
[src]

The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.