io.alauda.kubernetes.api.model.SecretVolumeSourceFluent 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 com.fasterxml.jackson.annotation.JsonInclude;
import io.alauda.kubernetes.api.builder.Nested;
import java.lang.String;
import io.alauda.kubernetes.api.builder.Predicate;
import java.lang.Integer;
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 SecretVolumeSourceFluent> extends Fluent{
public Integer getDefaultMode();
public A withDefaultMode(Integer defaultMode);
public Boolean hasDefaultMode();
public A addToItems(int index,KeyToPath item);
public A setToItems(int index,KeyToPath item);
public A addToItems(KeyToPath... items);
public A addAllToItems(Collection items);
public A removeFromItems(KeyToPath... items);
public A removeAllFromItems(Collection items);
/**
* This method has been deprecated, please use method buildItems instead.
*/
@Deprecated public List getItems();
public List buildItems();
public KeyToPath buildItem(int index);
public KeyToPath buildFirstItem();
public KeyToPath buildLastItem();
public KeyToPath buildMatchingItem(io.alauda.kubernetes.api.builder.Predicate predicate);
public A withItems(List items);
public A withItems(KeyToPath... items);
public Boolean hasItems();
public SecretVolumeSourceFluent.ItemsNested addNewItem();
public SecretVolumeSourceFluent.ItemsNested addNewItemLike(KeyToPath item);
public SecretVolumeSourceFluent.ItemsNested setNewItemLike(int index,KeyToPath item);
public SecretVolumeSourceFluent.ItemsNested editItem(int index);
public SecretVolumeSourceFluent.ItemsNested editFirstItem();
public SecretVolumeSourceFluent.ItemsNested editLastItem();
public SecretVolumeSourceFluent.ItemsNested editMatchingItem(io.alauda.kubernetes.api.builder.Predicate predicate);
public A addNewItem(String key,Integer mode,String path);
public Boolean isOptional();
public A withOptional(Boolean optional);
public Boolean hasOptional();
public String getSecretName();
public A withSecretName(String secretName);
public Boolean hasSecretName();
public interface ItemsNested extends io.alauda.kubernetes.api.builder.Nested,KeyToPathFluent>{
public N and(); public N endItem();
}
}