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

PrivateCloud

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

Represents a private cloud resource. Private clouds of type STANDARD and TIME_LIMITED are zonal resources, STRETCHED private clouds are regional.

interface PrivateCloud {
readonly createTime?: Date;
readonly deleteTime?: Date;
description?: string;
readonly expireTime?: Date;
readonly hcx?: Hcx;
managementCluster?: ManagementCluster;
readonly name?: string;
networkConfig?: NetworkConfig;
readonly nsx?: Nsx;
readonly state?:
| "STATE_UNSPECIFIED"
| "ACTIVE"
| "CREATING"
| "UPDATING"
| "FAILED"
| "DELETED"
| "PURGING";
type?: "STANDARD" | "TIME_LIMITED" | "STRETCHED";
readonly uid?: string;
readonly updateTime?: Date;
readonly vcenter?: Vcenter;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Creation time of this resource.

§
readonly deleteTime?: Date
[src]

Output only. Time when the resource was scheduled for deletion.

§
description?: string
[src]

User-provided description for this private cloud.

§
readonly expireTime?: Date
[src]

Output only. Time when the resource will be irreversibly deleted.

§
readonly hcx?: Hcx
[src]

Output only. HCX appliance.

§
managementCluster?: ManagementCluster
[src]

Required. Input only. The management cluster for this private cloud. This field is required during creation of the private cloud to provide details for the default cluster. The following fields can't be changed after private cloud creation: ManagementCluster.clusterId, ManagementCluster.nodeTypeId.

§
readonly name?: string
[src]

Output only. The resource name of this private cloud. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-central1-a/privateClouds/my-cloud

§
networkConfig?: NetworkConfig
[src]

Required. Network configuration of the private cloud.

§
readonly nsx?: Nsx
[src]

Output only. NSX appliance.

§
readonly state?: "STATE_UNSPECIFIED" | "ACTIVE" | "CREATING" | "UPDATING" | "FAILED" | "DELETED" | "PURGING"
[src]

Output only. State of the resource. New values may be added to this enum when appropriate.

§
type?: "STANDARD" | "TIME_LIMITED" | "STRETCHED"
[src]

Optional. Type of the private cloud. Defaults to STANDARD.

§
readonly uid?: string
[src]

Output only. System-generated unique identifier for the resource.

§
readonly updateTime?: Date
[src]

Output only. Last update time of this resource.

§
readonly vcenter?: Vcenter
[src]

Output only. Vcenter appliance.