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 a license resource. Caution This resource is intended for use only by third-party partners who are creating Cloud Marketplace images.

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

§Properties

§
creationTimestamp?: string
[src]

[Output Only] Creation timestamp in RFC3339 text format.

§
description?: string
[src]

[Output Only] Description of this License Code.

§
id?: bigint
[src]

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

§
kind?: string
[src]

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

§

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

§
name?: string
[src]

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

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

[Output Only] Current state of this License Code.

§
transferable?: boolean
[src]

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