Module Values.DatabaseResponseSource

Describes a database in a Fleet Advisor collector inventory.

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

    The ID of a database in a Fleet Advisor collector inventory.

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

    The name of a database in a Fleet Advisor collector inventory.

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

    The IP address of a database in a Fleet Advisor collector inventory.

    *)
  4. numberOfSchemas : LongOptional.t option;
    (*

    The number of schemas in a Fleet Advisor collector inventory database.

    *)
  5. server : ServerShortInfoResponse.t option;
    (*

    The server name of a database in a Fleet Advisor collector inventory.

    *)
  6. softwareDetails : DatabaseInstanceSoftwareDetailsResponse.t option;
    (*

    The software details of a database in a Fleet Advisor collector inventory, such as database engine and version.

    *)
  7. collectors : CollectorsList.t option;
    (*

    A list of collectors associated with the database.

    *)
}
Sourceval make : ?databaseId:??? -> ?databaseName:??? -> ?ipAddress:??? -> ?numberOfSchemas:??? -> ?server:??? -> ?softwareDetails:??? -> ?collectors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `Long of LongOptional.t | `String of String_.t | `Structure of (string * [> `Integer of IntegerOptional.t | `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