Module Values.GetStorageProfileResponseSource

Gets 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. 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) for the storage profile.

    *)
  4. createdAt : CreatedAt.t option;
    (*

    The date and time the resource was created.

    *)
  5. createdBy : CreatedBy.t option;
    (*

    The user or system that created this resource.

    *)
  6. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  7. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

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

    The location of the files for the storage profile.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?storageProfileId:??? -> ?displayName:??? -> ?osFamily:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?fileSystemLocations:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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 StorageProfileId.t | `Timestamp of CreatedAt.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