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

AdvancedMachineFeatures

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

Specifies options for controlling advanced machine features. Options that would traditionally be configured in a BIOS belong here. Features that require operating system support may have corresponding entries in the GuestOsFeatures of an Image (e.g., whether or not the OS in the Image supports nested virtualization being enabled or disabled).

interface AdvancedMachineFeatures {
enableNestedVirtualization?: boolean;
enableUefiNetworking?: boolean;
threadsPerCore?: number;
visibleCoreCount?: number;
}

§Properties

§
enableNestedVirtualization?: boolean
[src]

Whether to enable nested virtualization or not (default is false).

§
enableUefiNetworking?: boolean
[src]

Whether to enable UEFI networking for instance creation.

§
threadsPerCore?: number
[src]

The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.

§
visibleCoreCount?: number
[src]

The number of physical cores to expose to an instance. Multiply by the number of threads per core to compute the total number of virtual CPUs to expose to the instance. If unset, the number of cores is inferred from the instance's nominal CPU count and the underlying platform's SMT width.