io.kubernetes.client.openapi.models.V1HandlerFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Fluent;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.lang.Deprecated;
import java.lang.Boolean;
public interface V1HandlerFluent> extends Fluent {
/**
* This method has been deprecated, please use method buildExec instead.
* @return The buildable object.
*/
@Deprecated public V1ExecAction getExec();
public V1ExecAction buildExec();
public A withExec(V1ExecAction exec);
public Boolean hasExec();
public V1HandlerFluent.ExecNested withNewExec();
public V1HandlerFluent.ExecNested withNewExecLike(V1ExecAction item);
public V1HandlerFluent.ExecNested editExec();
public V1HandlerFluent.ExecNested editOrNewExec();
public V1HandlerFluent.ExecNested editOrNewExecLike(V1ExecAction item);
/**
* This method has been deprecated, please use method buildHttpGet instead.
* @return The buildable object.
*/
@Deprecated public V1HTTPGetAction getHttpGet();
public V1HTTPGetAction buildHttpGet();
public A withHttpGet(V1HTTPGetAction httpGet);
public Boolean hasHttpGet();
public V1HandlerFluent.HttpGetNested withNewHttpGet();
public V1HandlerFluent.HttpGetNested withNewHttpGetLike(V1HTTPGetAction item);
public V1HandlerFluent.HttpGetNested editHttpGet();
public V1HandlerFluent.HttpGetNested editOrNewHttpGet();
public V1HandlerFluent.HttpGetNested editOrNewHttpGetLike(V1HTTPGetAction item);
/**
* This method has been deprecated, please use method buildTcpSocket instead.
* @return The buildable object.
*/
@Deprecated public V1TCPSocketAction getTcpSocket();
public V1TCPSocketAction buildTcpSocket();
public A withTcpSocket(V1TCPSocketAction tcpSocket);
public Boolean hasTcpSocket();
public V1HandlerFluent.TcpSocketNested withNewTcpSocket();
public V1HandlerFluent.TcpSocketNested withNewTcpSocketLike(V1TCPSocketAction item);
public V1HandlerFluent.TcpSocketNested editTcpSocket();
public V1HandlerFluent.TcpSocketNested editOrNewTcpSocket();
public V1HandlerFluent.TcpSocketNested editOrNewTcpSocketLike(V1TCPSocketAction item);
public interface ExecNested extends io.kubernetes.client.fluent.Nested,V1ExecActionFluent> {
public N and();
public N endExec(); }
public interface HttpGetNested extends io.kubernetes.client.fluent.Nested,V1HTTPGetActionFluent> {
public N and();
public N endHttpGet(); }
public interface TcpSocketNested extends io.kubernetes.client.fluent.Nested,V1TCPSocketActionFluent> {
public N and();
public N endTcpSocket(); }
}