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;
}