Module Values.KxNAS1ConfigurationSource

The structure containing the size and type of the network attached storage (NAS_1) file system volume.

Sourcetype nonrec t = {
  1. type_ : KxNAS1Type.t option;
    (*

    The type of the network attached storage.

    *)
  2. size : KxNAS1Size.t option;
    (*

    The size of the network attached storage. For storage type SSD_1000 and SSD_250 you can select the minimum size as 1200 GB or increments of 2400 GB. For storage type HDD_12 you can select the minimum size as 6000 GB or increments of 6000 GB.

    *)
}
Sourceval make : ?type_:??? -> ?size:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of KxNAS1Size.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