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

LicenseCode

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

Represents a License Code resource. A License Code is a unique identifier used to represent alicense resource. Caution This resource is intended for use only by third-party partners who are creatingCloud Marketplace images.

interface LicenseCode {
readonly creationTimestamp?: string;
readonly description?: string;
readonly id?: bigint;
readonly kind?: string;
licenseAlias?: LicenseCodeLicenseAlias[];
readonly name?: string;
readonly selfLink?: string;
readonly state?:
| "DISABLED"
| "ENABLED"
| "RESTRICTED"
| "STATE_UNSPECIFIED"
| "TERMINATED";
readonly transferable?: boolean;
}

§Properties

§
readonly creationTimestamp?: string
[src]

Output only. [Output Only] Creation timestamp inRFC3339 text format.

§
readonly description?: string
[src]

Output only. [Output Only] Description of this License Code.

§
readonly id?: bigint
[src]

Output only. [Output Only] The unique identifier for the resource. This identifier is defined by the server.

§
readonly kind?: string
[src]

Output only. [Output Only] Type of resource. Always compute#licenseCode for licenses.

§

[Output Only] URL and description aliases of Licenses with the same License Code.

§
readonly name?: string
[src]

Output only. [Output Only] Name of the resource. The name is 1-20 characters long and must be a valid 64 bit integer.

§
readonly state?: "DISABLED" | "ENABLED" | "RESTRICTED" | "STATE_UNSPECIFIED" | "TERMINATED"
[src]

Output only. [Output Only] Current state of this License Code.

§
readonly transferable?: boolean
[src]

Output only. [Output Only] If true, the license will remain attached when creating images or snapshots from disks. Otherwise, the license is not transferred.