Module Values.KxVolumeSource

The structure that contains the metadata of the volume.

Sourcetype nonrec t = {
  1. volumeName : KxVolumeName.t option;
    (*

    A unique identifier for the volume.

    *)
  2. volumeType : KxVolumeType.t option;
    (*

    The type of file system volume. Currently, FinSpace only supports NAS_1 volume type.

    *)
  3. status : KxVolumeStatus.t option;
    (*

    The status of volume. CREATING – The volume creation is in progress. CREATE_FAILED – The volume creation has failed. ACTIVE – The volume is active. UPDATING – The volume is in the process of being updated. UPDATE_FAILED – The update action failed. UPDATED – The volume is successfully updated. DELETING – The volume is in the process of being deleted. DELETE_FAILED – The system failed to delete the volume. DELETED – The volume is successfully deleted.

    *)
  4. description : Description.t option;
    (*

    A description of the volume.

    *)
  5. statusReason : KxVolumeStatusReason.t option;
    (*

    The error message when a failed state occurs.

    *)
  6. azMode : KxAzMode.t option;
    (*

    The number of availability zones you want to assign per volume. Currently, FinSpace only supports SINGLE for volumes. This places dataview in a single AZ.

    *)
  7. availabilityZoneIds : AvailabilityZoneIds.t option;
    (*

    The identifier of the availability zones.

    *)
  8. createdTimestamp : Timestamp.t option;
    (*

    The timestamp at which the volume was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  9. lastModifiedTimestamp : Timestamp.t option;
    (*

    The last time that the volume was updated in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
}
Sourceval make : ?volumeName:??? -> ?volumeType:??? -> ?status:??? -> ?description:??? -> ?statusReason:??? -> ?azMode:??? -> ?availabilityZoneIds:??? -> ?createdTimestamp:??? -> ?lastModifiedTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AvailabilityZoneId.t ] list | `String of KxVolumeName.t | `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