Module Values.CreateDeploymentInputSource

Creates a deployment for the given workload. Deployments created by this operation are not available in the Launch Wizard console to use the Clone deployment action on.

Sourcetype nonrec t = {
  1. workloadName : WorkloadName.t;
    (*

    The name of the workload. You can use the ListWorkloads operation to discover supported values for this parameter.

    *)
  2. deploymentPatternName : DeploymentPatternName.t;
    (*

    The name of the deployment pattern supported by a given workload. You can use the ListWorkloadDeploymentPatterns operation to discover supported values for this parameter.

    *)
  3. name : DeploymentName.t;
    (*

    The name of the deployment.

    *)
  4. 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.

    *)
  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. tags : Tags.t option;
    (*

    The tags to add to the deployment.

    *)
}
Sourceval context_ : string
Sourceval make : ?dryRun:??? -> ?tags:??? -> workloadName:WorkloadName.t -> deploymentPatternName:DeploymentPatternName.t -> name:DeploymentName.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 WorkloadName.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