Module Values.GetDataSetDetailsResponseSource

Gets the details of a specific data set.

Sourcetype nonrec t = {
  1. blocksize : Integer.t option;
    (*

    The size of the block on disk.

    *)
  2. creationTime : Timestamp.t option;
    (*

    The timestamp when the data set was created.

    *)
  3. dataSetName : String200.t option;
    (*

    The name of the data set.

    *)
  4. dataSetOrg : DatasetDetailOrgAttributes.t option;
    (*

    The type of data set. The only supported value is VSAM.

    *)
  5. fileSize : Long.t option;
    (*

    File size of the dataset.

    *)
  6. lastReferencedTime : Timestamp.t option;
    (*

    The last time the data set was referenced.

    *)
  7. lastUpdatedTime : Timestamp.t option;
    (*

    The last time the data set was updated.

    *)
  8. location : String2000.t option;
    (*

    The location where the data set is stored.

    *)
  9. recordLength : Integer.t option;
    (*

    The length of records in the data set.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `ExecutionTimeoutException of ExecutionTimeoutException.t
  4. | `InternalServerException of InternalServerException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `ServiceUnavailableException of ServiceUnavailableException.t
  7. | `ThrottlingException of ThrottlingException.t
  8. | `ValidationException of ValidationException.t
  9. | `Unknown_operation_error of string * string option
]
Sourceval make : ?blocksize:??? -> ?creationTime:??? -> ?dataSetName:??? -> ?dataSetOrg:??? -> ?fileSize:??? -> ?lastReferencedTime:??? -> ?lastUpdatedTime:??? -> ?location:??? -> ?recordLength:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `ExecutionTimeoutException of ExecutionTimeoutException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.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 | `ConflictException of ConflictException.t | `ExecutionTimeoutException of ExecutionTimeoutException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.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 * [> `Integer of Integer.t | `Long of Long.t | `String of String200.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String50.t | `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]) list ]) list | `Timestamp of Timestamp.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