Module Values_1.UpdateMaintenanceWindowTargetResultSource

Modifies the target of an existing maintenance window. You can change the following: Name Description Owner IDs for an ID target Tags for a Tag target From any supported tag type to another. The three supported tag types are ID target, Tag target, and resource group. For more information, see Target. If a parameter is null, then the corresponding field isn't modified.

Sourcetype nonrec t = {
  1. windowId : Values_0.MaintenanceWindowId.t option;
    (*

    The maintenance window ID specified in the update request.

    *)
  2. windowTargetId : Values_0.MaintenanceWindowTargetId.t option;
    (*

    The target ID specified in the update request.

    *)
  3. targets : Values_0.Targets.t option;
    (*

    The updated targets.

    *)
  4. ownerInformation : Values_0.OwnerInformation.t option;
    (*

    The updated owner.

    *)
  5. name : Values_0.MaintenanceWindowName.t option;
    (*

    The updated name.

    *)
  6. description : Values_0.MaintenanceWindowDescription.t option;
    (*

    The updated description.

    *)
}
Sourcetype nonrec error = [
  1. | `DoesNotExistException of Values_0.DoesNotExistException.t
  2. | `InternalServerError of Values_0.InternalServerError.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?windowId:??? -> ?windowTargetId:??? -> ?targets:??? -> ?ownerInformation:??? -> ?name:??? -> ?description:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DoesNotExistException of Values_0.DoesNotExistException.t | `InternalServerError of Values_0.InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DoesNotExistException of Values_0.DoesNotExistException.t | `InternalServerError of Values_0.InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) list ] list | `String of Values_0.MaintenanceWindowId.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