io.k8s.api.core.v1.ContainerImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s131 Show documentation
Show all versions of bl-k8s131 Show documentation
Programmatic resource management for Kubernetes
The newest version!
package io.k8s.api.core.v1;
import java.lang.Long;
import java.lang.String;
import java.util.List;
/**
* Describe a container image
*/
public class ContainerImage {
public List names;
public Long sizeBytes;
/**
* Names by which this image is known. e.g. ["kubernetes.example/hyperkube:v1.0.7", "cloud-vendor.registry.example/cloud-vendor/hyperkube:v1.0.7"]
*/
public ContainerImage names(List names) {
this.names = names;
return this;
}
/**
* The size of the image in bytes.
*/
public ContainerImage sizeBytes(Long sizeBytes) {
this.sizeBytes = sizeBytes;
return this;
}
public static ContainerImage containerImage() {
return new ContainerImage();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy