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

MachineDetails

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

Details of a machine.

interface MachineDetails {
coreCount?: number;
createTime?: Date;
guestOs?: GuestOsDetails;
machineName?: string;
memoryMb?: number;
platform?: PlatformDetails;
powerState?:
| "POWER_STATE_UNSPECIFIED"
| "PENDING"
| "ACTIVE"
| "SUSPENDING"
| "SUSPENDED"
| "DELETING"
| "DELETED";
uuid?: string;
}

§Properties

§

Architecture details (vendor, CPU architecture).

§
coreCount?: number
[src]

Number of CPU cores in the machine. Must be non-negative.

§
createTime?: Date
[src]

Machine creation time.

§

Disk details.

§

Guest OS information.

§
machineName?: string
[src]

Machine name.

§
memoryMb?: number
[src]

The amount of memory in the machine. Must be non-negative.

§

Network details.

§

Platform specific information.

§
powerState?: "POWER_STATE_UNSPECIFIED" | "PENDING" | "ACTIVE" | "SUSPENDING" | "SUSPENDED" | "DELETING" | "DELETED"
[src]

Power state of the machine.

§
uuid?: string
[src]

Machine unique identifier.