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

Blueprint

import type { Blueprint } from "https://googleapis.deno.dev/v1/saasservicemgmt:v1beta1.ts";

Blueprints are OCI Images that contain all of the artifacts needed to provision a unit. Metadata such as, type of the engine used to actuate the blueprint (e.g. terraform, helm etc) and version will come from the image manifest. If the hostname is omitted, it will be assumed to be the regional path to Artifact Registry (eg. us-east1-docker.pkg.dev).

interface Blueprint {
readonly engine?: string;
package?: string;
readonly version?: string;
}

§Properties

§
readonly engine?: string
[src]

Output only. Type of the engine used to actuate the blueprint. e.g. terraform, helm etc.

§
package?: string
[src]

Optional. Immutable. URI to a blueprint used by the Unit (required unless unitKind or release is set).

§
readonly version?: string
[src]

Output only. Version metadata if present on the blueprint.