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

DatacenterConnector

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

DatacenterConnector message describes a connector between the Source and Google Cloud, which is installed on a vmware datacenter (an OVA vm installed by the user) to connect the Datacenter to Google Cloud and support vm migration data transfer.

interface DatacenterConnector {
readonly applianceInfrastructureVersion?: string;
readonly applianceSoftwareVersion?: string;
readonly availableVersions?: AvailableUpdates;
readonly bucket?: string;
readonly createTime?: Date;
readonly error?: Status;
readonly name?: string;
registrationId?: string;
serviceAccount?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "OFFLINE"
| "FAILED"
| "ACTIVE";
readonly stateTime?: Date;
readonly updateTime?: Date;
readonly upgradeStatus?: UpgradeStatus;
version?: string;
}

§Properties

§
readonly applianceInfrastructureVersion?: string
[src]

Output only. Appliance OVA version. This is the OVA which is manually installed by the user and contains the infrastructure for the automatically updatable components on the appliance.

§
readonly applianceSoftwareVersion?: string
[src]

Output only. Appliance last installed update bundle version. This is the version of the automatically updatable components on the appliance.

§
readonly availableVersions?: AvailableUpdates
[src]

Output only. The available versions for updating this appliance.

§
readonly bucket?: string
[src]

Output only. The communication channel between the datacenter connector and Google Cloud.

§
readonly createTime?: Date
[src]

Output only. The time the connector was created (as an API call, not when it was actually installed).

§
readonly error?: Status
[src]

Output only. Provides details on the state of the Datacenter Connector in case of an error.

§
readonly name?: string
[src]

Output only. The connector's name.

§
registrationId?: string
[src]

Immutable. A unique key for this connector. This key is internal to the OVA connector and is supplied with its creation during the registration process and can not be modified.

§
serviceAccount?: string
[src]

The service account to use in the connector when communicating with the cloud.

§
readonly state?: "STATE_UNSPECIFIED" | "PENDING" | "OFFLINE" | "FAILED" | "ACTIVE"
[src]

Output only. State of the DatacenterConnector, as determined by the health checks.

§
readonly stateTime?: Date
[src]

Output only. The time the state was last set.

§
readonly updateTime?: Date
[src]

Output only. The last time the connector was updated with an API call.

§
readonly upgradeStatus?: UpgradeStatus
[src]

Output only. The status of the current / last upgradeAppliance operation.

§
version?: string
[src]

The version running in the DatacenterConnector. This is supplied by the OVA connector during the registration process and can not be modified.