io.kubernetes.client.openapi.models.V1ProjectedVolumeSourceFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Fluent;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.lang.String;
import io.kubernetes.client.fluent.Predicate;
import java.lang.Integer;
import java.lang.Deprecated;
import java.util.Iterator;
import java.util.Collection;
import java.util.List;
import java.lang.Boolean;
public interface V1ProjectedVolumeSourceFluent> extends Fluent {
public Integer getDefaultMode();
public A withDefaultMode(Integer defaultMode);
public Boolean hasDefaultMode();
public A addToSources(int index,V1VolumeProjection item);
public A setToSources(int index,V1VolumeProjection item);
public A addToSources(V1VolumeProjection... items);
public A addAllToSources(Collection items);
public A removeFromSources(V1VolumeProjection... items);
public A removeAllFromSources(Collection items);
public A removeMatchingFromSources(io.kubernetes.client.fluent.Predicate predicate);
/**
* This method has been deprecated, please use method buildSources instead.
* @return The buildable object.
*/
@Deprecated public List getSources();
public List buildSources();
public V1VolumeProjection buildSource(int index);
public V1VolumeProjection buildFirstSource();
public V1VolumeProjection buildLastSource();
public V1VolumeProjection buildMatchingSource(io.kubernetes.client.fluent.Predicate predicate);
public Boolean hasMatchingSource(io.kubernetes.client.fluent.Predicate predicate);
public A withSources(List sources);
public A withSources(V1VolumeProjection... sources);
public Boolean hasSources();
public V1ProjectedVolumeSourceFluent.SourcesNested addNewSource();
public V1ProjectedVolumeSourceFluent.SourcesNested addNewSourceLike(V1VolumeProjection item);
public V1ProjectedVolumeSourceFluent.SourcesNested setNewSourceLike(int index,V1VolumeProjection item);
public V1ProjectedVolumeSourceFluent.SourcesNested editSource(int index);
public V1ProjectedVolumeSourceFluent.SourcesNested editFirstSource();
public V1ProjectedVolumeSourceFluent.SourcesNested editLastSource();
public V1ProjectedVolumeSourceFluent.SourcesNested editMatchingSource(io.kubernetes.client.fluent.Predicate predicate);
public interface SourcesNested extends io.kubernetes.client.fluent.Nested,V1VolumeProjectionFluent> {
public N and();
public N endSource(); }
}