Module Values.UpdateStorageProfileRequestSource

Updates a storage profile.

Sourcetype nonrec t = {
  1. farmId : FarmId.t;
    (*

    The farm ID to update.

    *)
  2. storageProfileId : StorageProfileId.t;
    (*

    The storage profile ID to update.

    *)
  3. clientToken : ClientToken.t option;
    (*

    The unique token which the server uses to recognize retries of the same request.

    *)
  4. displayName : ResourceName.t option;
    (*

    The display name of the storage profile to update. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  5. osFamily : StorageProfileOperatingSystemFamily.t option;
    (*

    The OS system to update.

    *)
  6. fileSystemLocationsToAdd : FileSystemLocationsList.t option;
    (*

    The file system location names to add.

    *)
  7. fileSystemLocationsToRemove : FileSystemLocationsList.t option;
    (*

    The file system location names to remove.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?displayName:??? -> ?osFamily:??? -> ?fileSystemLocationsToAdd:??? -> ?fileSystemLocationsToRemove:??? -> farmId:FarmId.t -> storageProfileId:StorageProfileId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of FileSystemLocationName.t ]) list ] list | `String of FarmId.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