Values.CreateWorkerRequestSourceCreates a worker. A worker tells your instance how much processing power (vCPU), and memory (GiB) you’ll need to assemble the digital assets held within a particular instance. You can specify certain instance types to use, or let the worker know which instances types to exclude. Deadline Cloud limits the number of workers to less than or equal to the fleet's maximum worker count. The service maintains eventual consistency for the worker count. If you make multiple rapid calls to CreateWorker before the field updates, you might exceed your fleet's maximum worker count. For example, if your maxWorkerCount is 10 and you currently have 9 workers, making two quick CreateWorker calls might successfully create 2 workers instead of 1, resulting in 11 total workers.
type nonrec t = {farmId : FarmId.t;The farm ID of the farm to connect to the worker.
*)fleetId : FleetId.t;The fleet ID to connect to the worker.
*)hostProperties : HostPropertiesRequest.t option;The IP address and host name of the worker.
*)clientToken : ClientToken.t option;The unique token which the server uses to recognize retries of the same request.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of String_.t ] * [> `String of String_.t ]) list
| `String of FarmId.t
| `Structure of
(string
* [> `String of HostName.t
| `Structure of
(string * [> `List of [> `String of IpV4Address.t ] list ])
list ])
list ])
list ]