io.alauda.kubernetes.api.model.NodeDaemonEndpointsFluent Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.alauda.kubernetes.api.builder.Fluent;
import io.alauda.kubernetes.api.builder.Nested;
import java.lang.String;
import java.lang.Integer;
import java.lang.Deprecated;
import javax.validation.Valid;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
public interface NodeDaemonEndpointsFluent> extends Fluent{
/**
* This method has been deprecated, please use method buildKubeletEndpoint instead.
*/
@Deprecated public DaemonEndpoint getKubeletEndpoint();
public DaemonEndpoint buildKubeletEndpoint();
public A withKubeletEndpoint(DaemonEndpoint kubeletEndpoint);
public Boolean hasKubeletEndpoint();
public NodeDaemonEndpointsFluent.KubeletEndpointNested withNewKubeletEndpoint();
public NodeDaemonEndpointsFluent.KubeletEndpointNested withNewKubeletEndpointLike(DaemonEndpoint item);
public NodeDaemonEndpointsFluent.KubeletEndpointNested editKubeletEndpoint();
public NodeDaemonEndpointsFluent.KubeletEndpointNested editOrNewKubeletEndpoint();
public NodeDaemonEndpointsFluent.KubeletEndpointNested editOrNewKubeletEndpointLike(DaemonEndpoint item);
public A withNewKubeletEndpoint(Integer port);
public interface KubeletEndpointNested extends io.alauda.kubernetes.api.builder.Nested,DaemonEndpointFluent>{
public N and(); public N endKubeletEndpoint();
}
}