All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.k8s.api.core.v1.ContainerImage Maven / Gradle / Ivy

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