Module Values.AppliedExtensionSource

An extension that was invoked during a deployment.

Sourcetype nonrec t = {
  1. extensionId : Id.t option;
    (*

    The system-generated ID of the extension.

    *)
  2. extensionAssociationId : Id.t option;
    (*

    The system-generated ID for the association.

    *)
  3. versionNumber : Integer.t option;
    (*

    The extension version number.

    *)
  4. parameters : ParameterValueMap.t option;
    (*

    One or more parameters for the actions called by the extension.

    *)
}
Sourceval make : ?extensionId:??? -> ?extensionAssociationId:??? -> ?versionNumber:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Map of ([> `String of ExtensionOrParameterName.t ] * [> `String of StringWithLengthBetween1And2048.t ]) list | `String of Id.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