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

MigratingVm

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

MigratingVm describes the VM that will be migrated from a Source environment and its replication state.

interface MigratingVm {
readonly awsSourceVmDetails?: AwsSourceVmDetails;
readonly azureSourceVmDetails?: AzureSourceVmDetails;
computeEngineDisksTargetDefaults?: ComputeEngineDisksTargetDefaults;
computeEngineTargetDefaults?: ComputeEngineTargetDefaults;
readonly createTime?: Date;
readonly currentSyncInfo?: ReplicationCycle;
readonly cutoverForecast?: CutoverForecast;
description?: string;
displayName?: string;
readonly error?: Status;
readonly group?: string;
labels?: {
[key: string]: string;
}
;
readonly lastReplicationCycle?: ReplicationCycle;
readonly lastSync?: ReplicationSync;
readonly name?: string;
policy?: SchedulePolicy;
readonly recentCloneJobs?: CloneJob[];
readonly recentCutoverJobs?: CutoverJob[];
sourceVmId?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "READY"
| "FIRST_SYNC"
| "ACTIVE"
| "CUTTING_OVER"
| "CUTOVER"
| "FINAL_SYNC"
| "PAUSED"
| "FINALIZING"
| "FINALIZED"
| "ERROR";
readonly stateTime?: Date;
readonly updateTime?: Date;
readonly vmwareSourceVmDetails?: VmwareSourceVmDetails;
}

§Properties

§
readonly awsSourceVmDetails?: AwsSourceVmDetails
[src]

Output only. Details of the VM from an AWS source.

§
readonly azureSourceVmDetails?: AzureSourceVmDetails
[src]

Output only. Details of the VM from an Azure source.

§
computeEngineDisksTargetDefaults?: ComputeEngineDisksTargetDefaults
[src]

Details of the target Persistent Disks in Compute Engine.

§
computeEngineTargetDefaults?: ComputeEngineTargetDefaults
[src]

Details of the target VM in Compute Engine.

§
readonly createTime?: Date
[src]

Output only. The time the migrating VM was created (this refers to this resource and not to the time it was installed in the source).

§
readonly currentSyncInfo?: ReplicationCycle
[src]

Output only. Details of the current running replication cycle.

§
readonly cutoverForecast?: CutoverForecast
[src]

Output only. Provides details of future CutoverJobs of a MigratingVm. Set to empty when cutover forecast is unavailable.

§
description?: string
[src]

The description attached to the migrating VM by the user.

§
displayName?: string
[src]

The display name attached to the MigratingVm by the user.

§
readonly error?: Status
[src]

Output only. Provides details on the state of the Migrating VM in case of an error in replication.

§
readonly group?: string
[src]

Output only. The group this migrating vm is included in, if any. The group is represented by the full path of the appropriate Group resource.

§
labels?: {
[key: string]: string;
}
[src]

The labels of the migrating VM.

§
readonly lastReplicationCycle?: ReplicationCycle
[src]

Output only. Details of the last replication cycle. This will be updated whenever a replication cycle is finished and is not to be confused with last_sync which is only updated on successful replication cycles.

§
readonly lastSync?: ReplicationSync
[src]

Output only. The most updated snapshot created time in the source that finished replication.

§
readonly name?: string
[src]

Output only. The identifier of the MigratingVm.

§

The replication schedule policy.

§
readonly recentCloneJobs?: CloneJob[]
[src]

Output only. The recent clone jobs performed on the migrating VM. This field holds the vm's last completed clone job and the vm's running clone job, if one exists. Note: To have this field populated you need to explicitly request it via the "view" parameter of the Get/List request.

§
readonly recentCutoverJobs?: CutoverJob[]
[src]

Output only. The recent cutover jobs performed on the migrating VM. This field holds the vm's last completed cutover job and the vm's running cutover job, if one exists. Note: To have this field populated you need to explicitly request it via the "view" parameter of the Get/List request.

§
sourceVmId?: string
[src]

The unique ID of the VM in the source. The VM's name in vSphere can be changed, so this is not the VM's name but rather its moRef id. This id is of the form vm-.

§
readonly state?: "STATE_UNSPECIFIED" | "PENDING" | "READY" | "FIRST_SYNC" | "ACTIVE" | "CUTTING_OVER" | "CUTOVER" | "FINAL_SYNC" | "PAUSED" | "FINALIZING" | "FINALIZED" | "ERROR"
[src]

Output only. State of the MigratingVm.

§
readonly stateTime?: Date
[src]

Output only. The last time the migrating VM state was updated.

§
readonly updateTime?: Date
[src]

Output only. The last time the migrating VM resource was updated.

§
readonly vmwareSourceVmDetails?: VmwareSourceVmDetails
[src]

Output only. Details of the VM from a Vmware source.