Module Values_0.DeviceSelectionConfigSource

Contains information about the configurations of selected devices.

Sourcetype nonrec t = {
  1. deviceSubsetType : DeviceSubsetType.t;
    (*

    Type of device subsets to deploy to the current stage.

    *)
  2. percentage : Percentage.t option;
    (*

    Percentage of devices in the fleet to deploy to the current stage.

    *)
  3. deviceNames : DeviceNames.t option;
    (*

    List of devices chosen to deploy.

    *)
  4. deviceNameContains : DeviceName.t option;
    (*

    A filter to select devices with names containing this name.

    *)
}
Sourceval context_ : string
Sourceval make : ?percentage:??? -> ?deviceNames:??? -> ?deviceNameContains:??? -> deviceSubsetType:DeviceSubsetType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Percentage.t | `List of [> `String of DeviceName.t ] list | `String of DeviceName.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