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

GoogleDevtoolsArtifactregistryV1File

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

Files store content that is potentially associated with Packages or Versions.

interface GoogleDevtoolsArtifactregistryV1File {
readonly createTime?: Date;
readonly fetchTime?: Date;
hashes?: Hash[];
name?: string;
owner?: string;
sizeBytes?: bigint;
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The time when the File was created.

§
readonly fetchTime?: Date
[src]

Output only. The time when the last attempt to refresh the file's data was made. Only set when the repository is remote.

§
hashes?: Hash[]
[src]

The hashes of the file content.

§
name?: string
[src]

The name of the file, for example: "projects/p1/locations/us-central1/repositories/repo1/files/a%2Fb%2Fc.txt". If the file ID part contains slashes, they are escaped.

§
owner?: string
[src]

The name of the Package or Version that owns this file, if any.

§
sizeBytes?: bigint
[src]

The size of the File in bytes.

§
readonly updateTime?: Date
[src]

Output only. The time when the File was last updated.