Module Values.DatabaseInstanceSoftwareDetailsResponseSource

Describes an inventory database instance for a Fleet Advisor collector.

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

    The database engine of a database in a Fleet Advisor collector inventory, for example Microsoft SQL Server.

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

    The database engine version of a database in a Fleet Advisor collector inventory, for example 2019.

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

    The database engine edition of a database in a Fleet Advisor collector inventory, for example Express.

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

    The service pack level of the database.

    *)
  5. supportLevel : String_.t option;
    (*

    The support level of the database, for example Mainstream support.

    *)
  6. osArchitecture : IntegerOptional.t option;
    (*

    The operating system architecture of the database.

    *)
  7. tooltip : String_.t option;
    (*

    Information about the database engine software, for example Mainstream support ends on November 14th, 2024.

    *)
}
Sourceval make : ?engine:??? -> ?engineVersion:??? -> ?engineEdition:??? -> ?servicePack:??? -> ?supportLevel:??? -> ?osArchitecture:??? -> ?tooltip:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegerOptional.t | `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