Module Values.CreateAggregateConfigurationSource

Used to specify the configuration options for an FSx for ONTAP volume's storage aggregate or aggregates.

Sourcetype nonrec t = {
  1. aggregates : Aggregates.t option;
    (*

    Used to specify the names of aggregates on which the volume will be created.

    *)
  2. constituentsPerAggregate : AggregateListMultiplier.t option;
    (*

    Used to explicitly set the number of constituents within the FlexGroup per storage aggregate. This field is optional when creating a FlexGroup volume. If unspecified, the default value will be 8. This field cannot be provided when creating a FlexVol volume.

    *)
}
Sourceval make : ?aggregates:??? -> ?constituentsPerAggregate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of AggregateListMultiplier.t | `List of [> `String of Aggregate.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