Module Values.ComputeConfigurationSource

Contains compute attributes. These attributes only need be specified when your project's or fleet's computeType is set to ATTRIBUTE_BASED_COMPUTE or CUSTOM_INSTANCE_TYPE.

Sourcetype nonrec t = {
  1. vCpu : WrapperLong.t option;
    (*

    The number of vCPUs of the instance type included in your fleet.

    *)
  2. memory : WrapperLong.t option;
    (*

    The amount of memory of the instance type included in your fleet.

    *)
  3. disk : WrapperLong.t option;
    (*

    The amount of disk space of the instance type included in your fleet.

    *)
  4. machineType : MachineType.t option;
    (*

    The machine type of the instance type included in your fleet.

    *)
  5. instanceType : NonEmptyString.t option;
    (*

    The EC2 instance type to be launched in your fleet.

    *)
}
Sourceval make : ?vCpu:??? -> ?memory:??? -> ?disk:??? -> ?machineType:??? -> ?instanceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of WrapperLong.t | `String of NonEmptyString.t ]) 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