Module Values.StorageProfileSummarySource

The details of a storage profile.

Sourcetype nonrec t = {
  1. storageProfileId : StorageProfileId.t option;
    (*

    The storage profile ID.

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

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

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

    The operating system (OS) family.

    *)
}
Sourceval make : ?storageProfileId:??? -> ?displayName:??? -> ?osFamily:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StorageProfileId.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