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

LogicalProduct

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

Represents an independent service offering that can be provisioned by a customer.

interface LogicalProduct {
readonly lifecycleState?:
| "LIFECYCLE_STATE_UNSPECIFIED"
| "LIFECYCLE_STATE_PUBLIC_PREVIEW"
| "LIFECYCLE_STATE_PRIVATE_GA"
| "LIFECYCLE_STATE_GA"
| "LIFECYCLE_STATE_DEPRECATED";
name?: string;
productSuite?: string;
readonly replaced?: boolean;
readonly replacement?: string;
title?: string;
readonly variants?: string[];
}

§Properties

§
readonly lifecycleState?: "LIFECYCLE_STATE_UNSPECIFIED" | "LIFECYCLE_STATE_PUBLIC_PREVIEW" | "LIFECYCLE_STATE_PRIVATE_GA" | "LIFECYCLE_STATE_GA" | "LIFECYCLE_STATE_DEPRECATED"
[src]

Output only. Current Lifecycle state of the logical product.

§
name?: string
[src]

Identifier. The resource name of the LogicalProduct. Format: logicalProducts/{logical_product}.

§
productSuite?: string
[src]

Product suite associated with the logical product. Format: productSuites/{product_suite}.

§
readonly replaced?: boolean
[src]

Output only. Indicates whether the logical product has been replaced. If false, the product is active. If true, the product has been replaced by another type, and the replacement field contains the resource name of that replacement.

§
readonly replacement?: string
[src]

Output only. The resource name of the Logical Entity that the logical product is replaced by. This field is only populated when this logical product is replaced by some other type. Eg: logicalProducts/{logical_product}/variants/{variant}, productSuites/{product_suite}, etc.

§
title?: string
[src]

Display name of the LogicalProduct.

§
readonly variants?: string[]
[src]

Output only. Child variant resource references. Format: logicalProducts/{logical_product}/variants/{variant}