Module Values.ComponentInfoSource

This is information about the component of your SAP application, such as Web Dispatcher.

Sourcetype nonrec t = {
  1. componentType : ComponentType.t;
    (*

    This string is the type of the component. Accepted value is WD.

    *)
  2. sid : SID.t;
    (*

    This string is the SAP System ID of the component. Accepted values are alphanumeric.

    *)
  3. ec2InstanceId : InstanceId.t;
    (*

    This is the Amazon EC2 instance on which your SAP component is running. Accepted values are alphanumeric.

    *)
}
Sourceval context_ : string
Sourceval make : componentType:ComponentType.t -> sid:SID.t -> ec2InstanceId:InstanceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SID.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