Module Values.CreateKxVolumeRequestSource

Creates a new volume with a specific amount of throughput and storage capacity.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    A token that ensures idempotency. This token expires in 10 minutes.

    *)
  2. environmentId : KxEnvironmentId.t;
    (*

    A unique identifier for the kdb environment, whose clusters can attach to the volume.

    *)
  3. volumeType : KxVolumeType.t;
    (*

    The type of file system volume. Currently, FinSpace only supports NAS_1 volume type. When you select NAS_1 volume type, you must also provide nas1Configuration.

    *)
  4. volumeName : KxVolumeName.t;
    (*

    A unique identifier for the volume.

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

    A description of the volume.

    *)
  6. nas1Configuration : KxNAS1Configuration.t option;
    (*

    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when you choose volumeType as NAS_1.

    *)
  7. azMode : KxAzMode.t;
    (*

    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.

    *)
  8. availabilityZoneIds : AvailabilityZoneIds.t;
    (*

    The identifier of the availability zones.

    *)
  9. tags : TagMap.t option;
    (*

    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?description:??? -> ?nas1Configuration:??? -> ?tags:??? -> environmentId:KxEnvironmentId.t -> volumeType:KxVolumeType.t -> volumeName:KxVolumeName.t -> azMode:KxAzMode.t -> availabilityZoneIds:AvailabilityZoneIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AvailabilityZoneId.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ClientToken.t | `Structure of (string * [> `Enum of string | `Integer of KxNAS1Size.t ]) list ]) 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