Module Values.IntegratedResourceSummarySource

Contains summary information about an integrated resource.

Sourcetype nonrec t = {
  1. integrationId : IntegrationId.t option;
    (*

    The unique identifier of the integration that provides access to the resource.

    *)
  2. resource : IntegratedResourceMetadata.t option;
    (*

    The metadata for the integrated resource.

    *)
  3. capabilities : ProviderResourceCapabilities.t option;
    (*

    The capabilities enabled for the integrated resource.

    *)
}
Sourceval make : ?integrationId:??? -> ?resource:??? -> ?capabilities:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IntegrationId.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of ProviderResourceName.t ]) list ]) 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