Module Values.UpdateDeploymentInputSource

Updates a deployment.

Sourcetype nonrec t = {
  1. deploymentId : DeploymentId.t;
    (*

    The ID of the deployment.

    *)
  2. specifications : DeploymentSpecifications.t;
    (*

    The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications. To retrieve the specifications required to create a deployment for other workloads, use the GetWorkloadDeploymentPattern operation.

    *)
  3. workloadVersionName : WorkloadVersionName.t option;
    (*

    The name of the workload version.

    *)
  4. deploymentPatternVersionName : DeploymentPatternVersionName.t option;
    (*

    The name of the deployment pattern version.

    *)
  5. dryRun : Boolean.t option;
    (*

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

    *)
  6. force : Boolean.t option;
    (*

    Forces the update even if validation warnings are present.

    *)
}
Sourceval context_ : string
Sourceval make : ?workloadVersionName:??? -> ?deploymentPatternVersionName:??? -> ?dryRun:??? -> ?force:??? -> deploymentId:DeploymentId.t -> specifications:DeploymentSpecifications.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of KeyString.t ] * [> `String of ValueString.t ]) list | `String of DeploymentId.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