io.k8s.api.core.v1.SessionAffinityConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s129 Show documentation
Show all versions of bl-k8s129 Show documentation
Programmatic resource management for Kubernetes
The newest version!
package io.k8s.api.core.v1;
/**
* SessionAffinityConfig represents the configurations of session affinity.
*/
public class SessionAffinityConfig {
public ClientIPConfig clientIP;
public SessionAffinityConfig clientIP(ClientIPConfig clientIP) {
this.clientIP = clientIP;
return this;
}
public static SessionAffinityConfig sessionAffinityConfig() {
return new SessionAffinityConfig();
}
}