Module Values.CreateStorageProfileRequestSource

Creates a storage profile that specifies the operating system, file type, and file location of resources used on a farm.

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

    The farm ID of the farm to connect to the storage profile.

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

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

    *)
  3. displayName : ResourceName.t;
    (*

    The display name of the storage profile. 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.

    *)
  4. osFamily : StorageProfileOperatingSystemFamily.t;
    (*

    The type of operating system (OS) for the storage profile.

    *)
  5. fileSystemLocations : FileSystemLocationsList.t option;
    (*

    File system paths to include in the storage profile.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?fileSystemLocations:??? -> farmId:FarmId.t -> displayName:ResourceName.t -> osFamily:StorageProfileOperatingSystemFamily.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