NorskManager.describeInstanceType() method

Cloud facts for a machine-type form prefill: vCPU / memory / architectures for an EC2 instance type, from the Manager’s instance-type cache. Authoritative for capacity ≡ vCPUs. Returns undefined when the instance type is unknown to the cloud.

Signature:

describeInstanceType(instanceType: string): Promise<{
        instanceType: string;
        defaultVcpus: number;
        defaultCores: number;
        memoryBytes: number;
        architectures: string[];
    } | undefined>;

Parameters

Parameter Type Description

instanceType

string

Returns:

Promise<{ instanceType: string; defaultVcpus: number; defaultCores: number; memoryBytes: number; architectures: string[]; } | undefined>