Module Values.SchemaResponseSource

Describes a schema in a Fleet Advisor collector inventory.

Sourcetype nonrec t = {
  1. codeLineCount : LongOptional.t option;
    (*

    The number of lines of code in a schema in a Fleet Advisor collector inventory.

    *)
  2. codeSize : LongOptional.t option;
    (*

    The size level of the code in a schema in a Fleet Advisor collector inventory.

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

    The complexity level of the code in a schema in a Fleet Advisor collector inventory.

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

    The database server for a schema in a Fleet Advisor collector inventory.

    *)
  5. databaseInstance : DatabaseShortInfoResponse.t option;
    (*

    The database for a schema in a Fleet Advisor collector inventory.

    *)
  6. schemaId : String_.t option;
    (*

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

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

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

    *)
  8. originalSchema : SchemaShortInfoResponse.t option;
  9. similarity : DoubleOptional.t option;
    (*

    The similarity value for a schema in a Fleet Advisor collector inventory. A higher similarity value indicates that a schema is likely to be a duplicate.

    *)
}
Sourceval make : ?codeLineCount:??? -> ?codeSize:??? -> ?complexity:??? -> ?server:??? -> ?databaseInstance:??? -> ?schemaId:??? -> ?schemaName:??? -> ?originalSchema:??? -> ?similarity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of DoubleOptional.t | `Long of LongOptional.t | `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