Module Values.ImageSetPropertiesSource

The image set properties.

Sourcetype nonrec t = {
  1. imageSetId : ImageSetId.t option;
    (*

    The image set identifier.

    *)
  2. versionId : ImageSetExternalVersionId.t option;
    (*

    The image set version identifier.

    *)
  3. imageSetState : ImageSetState.t option;
    (*

    The image set state.

    *)
  4. imageSetWorkflowStatus : ImageSetWorkflowStatus.t option;
    (*

    The image set workflow status.

    *)
  5. createdAt : Date.t option;
    (*

    The timestamp when the image set properties were created.

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

    The timestamp when the image set properties were updated.

    *)
  7. deletedAt : Date.t option;
    (*

    The timestamp when the image set properties were deleted.

    *)
  8. message : Message.t option;
    (*

    The error message thrown if an image set action fails.

    *)
  9. overrides : Overrides.t option;
    (*

    Contains details on overrides used when creating the returned version of an image set. For example, if forced exists, the forced flag was used when creating the image set.

    *)
  10. isPrimary : Boolean.t option;
    (*

    The flag to determine whether the image set is primary or not.

    *)
}
Sourceval make : ?imageSetId:??? -> ?versionId:??? -> ?imageSetState:??? -> ?imageSetWorkflowStatus:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?deletedAt:??? -> ?message:??? -> ?overrides:??? -> ?isPrimary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of ImageSetId.t | `Structure of (string * [> `Boolean of Boolean.t ]) list | `Timestamp of Date.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