Module Values.LifecyclePolicyPreviewResultSource

The result of the lifecycle policy preview.

Sourcetype nonrec t = {
  1. imageTags : ImageTagList.t option;
    (*

    The list of tags associated with this image.

    *)
  2. imageDigest : ImageDigest.t option;
    (*

    The sha256 digest of the image manifest.

    *)
  3. imagePushedAt : PushTimestamp.t option;
    (*

    The date and time, expressed in standard JavaScript date format, at which the current image was pushed to the repository.

    *)
  4. action : LifecyclePolicyRuleAction.t option;
    (*

    The type of action to be taken.

    *)
  5. appliedRulePriority : LifecyclePolicyRulePriority.t option;
    (*

    The priority of the applied rule.

    *)
  6. storageClass : LifecyclePolicyStorageClass.t option;
    (*

    The storage class of the image.

    *)
}
Sourceval make : ?imageTags:??? -> ?imageDigest:??? -> ?imagePushedAt:??? -> ?action:??? -> ?appliedRulePriority:??? -> ?storageClass:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of LifecyclePolicyRulePriority.t | `List of [> `String of ImageTag.t ] list | `String of ImageDigest.t | `Structure of (string * [> `Enum of string ]) list | `Timestamp of PushTimestamp.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