Module Values.CreateDeploymentResultSource

The result structure for the create a new deployment request.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The job ID for this deployment. will supply to start deployment api.

    *)
  2. fileUploadUrls : FileUploadUrls.t option;
    (*

    When the fileMap argument is provided in the request, fileUploadUrls will contain a map of file names to upload URLs.

    *)
  3. zipUploadUrl : UploadUrl.t option;
    (*

    When the fileMap argument is not provided in the request, this zipUploadUrl is returned.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `InternalFailureException of InternalFailureException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `UnauthorizedException of UnauthorizedException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?jobId:??? -> ?fileUploadUrls:??? -> ?zipUploadUrl:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `InternalFailureException of InternalFailureException.t | `LimitExceededException of LimitExceededException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `InternalFailureException of InternalFailureException.t | `LimitExceededException of LimitExceededException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of FileName.t ] * [> `String of UploadUrl.t ]) list | `String of JobId.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