Module Values.UpdateNetworkAnalyzerConfigurationRequestSource

Update network analyzer configuration.

Sourcetype nonrec t = {
  1. configurationName : NetworkAnalyzerConfigurationName.t;
  2. traceContent : TraceContent.t option;
  3. wirelessDevicesToAdd : WirelessDeviceList.t option;
    (*

    Wireless device resources to add to the network analyzer configuration. Provide the WirelessDeviceId of the resource to add in the input array.

    *)
  4. wirelessDevicesToRemove : WirelessDeviceList.t option;
    (*

    Wireless device resources to remove from the network analyzer configuration. Provide the WirelessDeviceId of the resources to remove in the input array.

    *)
  5. wirelessGatewaysToAdd : WirelessGatewayList.t option;
    (*

    Wireless gateway resources to add to the network analyzer configuration. Provide the WirelessGatewayId of the resource to add in the input array.

    *)
  6. wirelessGatewaysToRemove : WirelessGatewayList.t option;
    (*

    Wireless gateway resources to remove from the network analyzer configuration. Provide the WirelessGatewayId of the resources to remove in the input array.

    *)
  7. description : Description.t option;
  8. multicastGroupsToAdd : NetworkAnalyzerMulticastGroupList.t option;
    (*

    Multicast group resources to add to the network analyzer configuration. Provide the MulticastGroupId of the resource to add in the input array.

    *)
  9. multicastGroupsToRemove : NetworkAnalyzerMulticastGroupList.t option;
    (*

    Multicast group resources to remove from the network analyzer configuration. Provide the MulticastGroupId of the resources to remove in the input array.

    *)
}
Sourceval context_ : string
Sourceval make : ?traceContent:??? -> ?wirelessDevicesToAdd:??? -> ?wirelessDevicesToRemove:??? -> ?wirelessGatewaysToAdd:??? -> ?wirelessGatewaysToRemove:??? -> ?description:??? -> ?multicastGroupsToAdd:??? -> ?multicastGroupsToRemove:??? -> configurationName:NetworkAnalyzerConfigurationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of WirelessDeviceId.t ] list | `String of NetworkAnalyzerConfigurationName.t | `Structure of (string * [> `Enum of string ]) list ]) 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