Module Values.DeleteApplicationFromEnvironmentRequestSource

Deletes a specific application from the specific runtime environment where it was previously deployed. You cannot delete a runtime environment using DeleteEnvironment if any application has ever been deployed to it. This API removes the association of the application with the runtime environment so you can delete the environment smoothly.

Sourcetype nonrec t = {
  1. applicationId : Identifier.t;
    (*

    The unique identifier of the application you want to delete.

    *)
  2. environmentId : Identifier.t;
    (*

    The unique identifier of the runtime environment where the application was previously deployed.

    *)
}
Sourceval context_ : string
Sourceval make : applicationId:Identifier.t -> environmentId:Identifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Identifier.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