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

io.k8s.api.networking.v1.IngressLoadBalancerStatus Maven / Gradle / Ivy

There is a newer version: 1.30.4
Show newest version
package io.k8s.api.networking.v1;

import java.util.List;

/**
 * IngressLoadBalancerStatus represents the status of a load-balancer.
 */
public class IngressLoadBalancerStatus {
  public List ingress;

  /**
   * ingress is a list containing ingress points for the load-balancer.
   */
  public IngressLoadBalancerStatus ingress(List ingress) {
    this.ingress = ingress;
    return this;
  }

  public static IngressLoadBalancerStatus ingressLoadBalancerStatus() {
    return new IngressLoadBalancerStatus();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy