Module Values.FleetAdvisorSchemaObjectResponseSource

Describes a schema object in a Fleet Advisor collector inventory.

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

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

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

    The type of the schema object, as reported by the database engine. Examples include the following: function trigger SYSTEM_TABLE QUEUE

    *)
  3. numberOfObjects : LongOptional.t option;
    (*

    The number of objects in a schema object in a Fleet Advisor collector inventory.

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

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

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

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

    *)
}
Sourceval make : ?schemaId:??? -> ?objectType:??? -> ?numberOfObjects:??? -> ?codeLineCount:??? -> ?codeSize:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of LongOptional.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