Module Values.ServiceOperationEntitySource

A structure that contains identifying information for a service operation entity.

Sourcetype nonrec t = {
  1. service : ServiceEntity.t option;
    (*

    The service entity that contains this operation.

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

    The name of the operation.

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

    The type of metric associated with this service operation.

    *)
}
Sourceval make : ?service:??? -> ?operation:??? -> ?metricType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) 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