Module Values.UpdateNodeRequestSource

A request to update the node.

Sourcetype nonrec t = {
  1. clusterId : string;
    (*

    The ID of the cluster

    *)
  2. name : string option;
    (*

    Include this parameter only if you want to change the current name of the Node. Specify a name that is unique in the Cluster. You can't change the name. Names are case-sensitive.

    *)
  3. nodeId : string;
    (*

    The ID of the node.

    *)
  4. role : NodeRole.t option;
    (*

    The initial role of the Node in the Cluster. ACTIVE means the Node is available for encoding. BACKUP means the Node is a redundant Node and might get used if an ACTIVE Node fails.

    *)
  5. sdiSourceMappings : SdiSourceMappingsUpdateRequest.t option;
    (*

    The mappings of a SDI capture card port to a logical SDI data stream

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?role:??? -> ?sdiSourceMappings:??? -> clusterId:string -> nodeId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of int | `String of string ]) list ] list | `String of string ]) 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