Module Values.GetSessionActionResponseSource

Gets a session action for the job.

Sourcetype nonrec t = {
  1. sessionActionId : SessionActionId.t option;
    (*

    The session action ID.

    *)
  2. status : SessionActionStatus.t option;
    (*

    The status of the session action.

    *)
  3. startedAt : StartedAt.t option;
    (*

    The date and time the resource started running.

    *)
  4. endedAt : EndedAt.t option;
    (*

    The date and time the resource ended running.

    *)
  5. workerUpdatedAt : Timestamp.t option;
    (*

    The Linux timestamp of the date and time the session action was last updated.

    *)
  6. progressPercent : SessionActionProgressPercent.t option;
    (*

    The percentage completed for a session action.

    *)
  7. manifests : TaskRunManifestPropertiesListResponse.t option;
    (*

    The list of manifest properties that describe file attachments for the task run.

    *)
  8. sessionId : SessionId.t option;
    (*

    The session ID for the session action.

    *)
  9. processExitCode : ProcessExitCode.t option;
    (*

    The process exit code. The default Deadline Cloud worker agent converts unsigned 32-bit exit codes to signed 32-bit exit codes.

    *)
  10. progressMessage : SessionActionProgressMessage.t option;
    (*

    The message that communicates the progress of the session action.

    *)
  11. acquiredLimits : AcquiredLimits.t option;
    (*

    The limits and their amounts acquired during a session action. If no limits were acquired during the session, this field isn't returned.

    *)
  12. definition : SessionActionDefinition.t option;
    (*

    The session action definition.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?sessionActionId:??? -> ?status:??? -> ?startedAt:??? -> ?endedAt:??? -> ?workerUpdatedAt:??? -> ?progressPercent:??? -> ?manifests:??? -> ?sessionId:??? -> ?processExitCode:??? -> ?progressMessage:??? -> ?acquiredLimits:??? -> ?definition:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of SessionActionProgressPercent.t | `Integer of ProcessExitCode.t | `List of [> `Structure of (string * [> `Integer of MinOneMaxInteger.t | `String of String_.t ]) list ] list | `String of SessionActionId.t | `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `String of IntString.t ]) list ]) list | `String of EnvironmentId.t ]) list ]) list | `Timestamp of StartedAt.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