Module Values.UpdateWirelessGatewayRequestSource

Updates properties of a wireless gateway.

Sourcetype nonrec t = {
  1. id : WirelessGatewayId.t;
    (*

    The ID of the resource to update.

    *)
  2. name : WirelessGatewayName.t option;
    (*

    The new name of the resource. The following special characters aren't accepted: <>^#~$

    *)
  3. description : Description.t option;
    (*

    A new description of the resource.

    *)
  4. joinEuiFilters : JoinEuiFilters.t option;
  5. netIdFilters : NetIdFilters.t option;
  6. maxEirp : GatewayMaxEirp.t option;
    (*

    The MaxEIRP value.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?joinEuiFilters:??? -> ?netIdFilters:??? -> ?maxEirp:??? -> id:WirelessGatewayId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of GatewayMaxEirp.t | `List of [> `List of [> `String of JoinEui.t ] list | `String of NetId.t ] list | `String of WirelessGatewayId.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