Values.CreateDeploymentRequestSourceCreates and starts a deployment to deploy an application into a runtime environment.
type nonrec t = {applicationId : Identifier.t;The application identifier.
*)applicationVersion : Version.t;The version of the application to deploy.
*)clientToken : ClientToken.t option;Unique, case-sensitive identifier you provide to ensure the idempotency of the request to create a deployment. The service generates the clientToken when the API call is triggered. The token expires after one hour, so if you retry the API within this timeframe with the same clientToken, you will get the same response. The service also handles deleting the clientToken after it expires.
*)environmentId : Identifier.t;The identifier of the runtime environment where you want to deploy this application.
*)}val make :
?clientToken:??? ->
applicationId:Identifier.t ->
applicationVersion:Version.t ->
environmentId:Identifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Integer of Version.t | `String of Identifier.t ]) list ]