Module Values_0.VolumeStatusActionSource

Describes a volume status operation code.

Sourcetype nonrec t = {
  1. code : String_.t option;
    (*

    The code identifying the operation, for example, enable-volume-io.

    *)
  2. description : String_.t option;
    (*

    A description of the operation.

    *)
  3. eventId : String_.t option;
    (*

    The ID of the event associated with this operation.

    *)
  4. eventType : String_.t option;
    (*

    The event type associated with this operation.

    *)
}
Sourceval make : ?code:??? -> ?description:??? -> ?eventId:??? -> ?eventType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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