Package io.fabric8.maven.docker.model
Class ImageDetails
- java.lang.Object
-
- io.fabric8.maven.docker.model.ImageDetails
-
-
Constructor Summary
Constructors Constructor Description ImageDetails(com.google.gson.JsonObject json)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCreated()StringgetId()Map<String,String>getLabels()StringgetParentId()List<String>getRepoDigests()List<String>getRepoTags()longgetSize()longgetVirtualSize()
-
-
-
Field Detail
-
CREATED
public static final String CREATED
- See Also:
- Constant Field Values
-
ID
public static final String ID
- See Also:
- Constant Field Values
-
LABELS
public static final String LABELS
- See Also:
- Constant Field Values
-
PARENT_ID
public static final String PARENT_ID
- See Also:
- Constant Field Values
-
REPO_TAGS
public static final String REPO_TAGS
- See Also:
- Constant Field Values
-
REPO_DIGESTS
public static final String REPO_DIGESTS
- See Also:
- Constant Field Values
-
SIZE
public static final String SIZE
- See Also:
- Constant Field Values
-
VIRTUAL_SIZE
public static final String VIRTUAL_SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getParentId
public String getParentId()
- Specified by:
getParentIdin interfaceImage- Returns:
- the image ID, or null if not present
-
getCreated
public long getCreated()
- Specified by:
getCreatedin interfaceImage- Returns:
- Image create timestamp
-
getVirtualSize
public long getVirtualSize()
- Specified by:
getVirtualSizein interfaceImage- Returns:
- the image virtual size
-
getRepoTags
public List<String> getRepoTags()
- Specified by:
getRepoTagsin interfaceImage- Returns:
- the names associated with the image (formatted as repository:tag)
-
getRepoDigests
public List<String> getRepoDigests()
- Specified by:
getRepoDigestsin interfaceImage- Returns:
- the digests associated with the image (formatted as repository:tag@sha256:digest)
-
-