annotations.io.alauda.kubernetes.api.model.CephFSVolumeSourceFluent 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 io.alauda.kubernetes.api.builder.Predicate;
import java.lang.Deprecated;
import javax.validation.Valid;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
import java.util.Map;
public interface CephFSVolumeSourceFluent> extends Fluent{
public A addToMonitors(int index,String item);
public A setToMonitors(int index,String item);
public A addToMonitors(String... items);
public A addAllToMonitors(Collection items);
public A removeFromMonitors(String... items);
public A removeAllFromMonitors(Collection items);
public List getMonitors();
public String getMonitor(int index);
public String getFirstMonitor();
public String getLastMonitor();
public String getMatchingMonitor(io.alauda.kubernetes.api.builder.Predicate predicate);
public A withMonitors(List monitors);
public A withMonitors(String... monitors);
public Boolean hasMonitors();
public String getPath();
public A withPath(String path);
public Boolean hasPath();
public Boolean isReadOnly();
public A withReadOnly(Boolean readOnly);
public Boolean hasReadOnly();
public String getSecretFile();
public A withSecretFile(String secretFile);
public Boolean hasSecretFile();
/**
* This method has been deprecated, please use method buildSecretRef instead.
*/
@Deprecated public LocalObjectReference getSecretRef();
public LocalObjectReference buildSecretRef();
public A withSecretRef(LocalObjectReference secretRef);
public Boolean hasSecretRef();
public CephFSVolumeSourceFluent.SecretRefNested withNewSecretRef();
public CephFSVolumeSourceFluent.SecretRefNested withNewSecretRefLike(LocalObjectReference item);
public CephFSVolumeSourceFluent.SecretRefNested editSecretRef();
public CephFSVolumeSourceFluent.SecretRefNested editOrNewSecretRef();
public CephFSVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(LocalObjectReference item);
public A withNewSecretRef(String name);
public String getUser();
public A withUser(String user);
public Boolean hasUser();
public interface SecretRefNested extends io.alauda.kubernetes.api.builder.Nested,LocalObjectReferenceFluent>{
public N and(); public N endSecretRef();
}
}