Module Values_1.VCpuInfoSource

Describes the vCPU configurations for the instance type.

Sourcetype nonrec t = {
  1. defaultVCpus : VCpuCount.t option;
    (*

    The default number of vCPUs for the instance type.

    *)
  2. defaultCores : Values_0.CoreCount.t option;
    (*

    The default number of cores for the instance type.

    *)
  3. defaultThreadsPerCore : Values_0.ThreadsPerCore.t option;
    (*

    The default number of threads per core for the instance type.

    *)
  4. validCores : CoreCountList.t option;
    (*

    The valid number of cores that can be configured for the instance type.

    *)
  5. validThreadsPerCore : ThreadsPerCoreList.t option;
    (*

    The valid number of threads per core that can be configured for the instance type.

    *)
}
Sourceval make : ?defaultVCpus:??? -> ?defaultCores:??? -> ?defaultThreadsPerCore:??? -> ?validCores:??? -> ?validThreadsPerCore:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of VCpuCount.t | `List of [> `Integer of Values_0.CoreCount.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t