Module Values.AutoSnapshotDetailsSource

Describes an automatic snapshot.

Sourcetype nonrec t = {
  1. date : String_.t option;
    (*

    The date of the automatic snapshot in YYYY-MM-DD format.

    *)
  2. createdAt : IsoDate.t option;
    (*

    The timestamp when the automatic snapshot was created.

    *)
  3. status : AutoSnapshotStatus.t option;
    (*

    The status of the automatic snapshot.

    *)
  4. fromAttachedDisks : AttachedDiskList.t option;
    (*

    An array of objects that describe the block storage disks attached to the instance when the automatic snapshot was created.

    *)
}
Sourceval make : ?date:??? -> ?createdAt:??? -> ?status:??? -> ?fromAttachedDisks:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String_.t | `Timestamp of IsoDate.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