Module Values.ImageReferrerSource

An object representing an artifact associated with a subject image.

Sourcetype nonrec t = {
  1. digest : ImageDigest.t option;
    (*

    The digest of the artifact manifest.

    *)
  2. mediaType : MediaType.t option;
    (*

    The media type of the artifact manifest.

    *)
  3. artifactType : ArtifactType.t option;
    (*

    A string identifying the type of artifact.

    *)
  4. size : ImageSizeInBytes.t option;
    (*

    The size, in bytes, of the artifact.

    *)
  5. annotations : Annotations.t option;
    (*

    A map of annotations associated with the artifact.

    *)
  6. artifactStatus : ArtifactStatus.t option;
    (*

    The status of the artifact. Valid values are ACTIVE, ARCHIVED, or ACTIVATING.

    *)
}
Sourceval make : ?digest:??? -> ?mediaType:??? -> ?artifactType:??? -> ?size:??? -> ?annotations:??? -> ?artifactStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of ImageSizeInBytes.t | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of ImageDigest.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