io.alauda.devops.api.model.TemplateListFluent Maven / Gradle / Ivy
package io.alauda.devops.api.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.alauda.kubernetes.api.model.ListMetaFluent;
import io.alauda.kubernetes.api.builder.Fluent;
import io.alauda.kubernetes.api.builder.Nested;
import java.lang.String;
import javax.validation.constraints.NotNull;
import io.alauda.kubernetes.api.builder.Predicate;
import io.alauda.kubernetes.api.model.ListMeta;
import io.alauda.kubernetes.api.model.ListMetaBuilder;
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 TemplateListFluent> extends Fluent{
public String getApiVersion();
public A withApiVersion(String apiVersion);
public Boolean hasApiVersion();
public A addToItems(int index,Template item);
public A setToItems(int index,Template item);
public A addToItems(Template... items);
public A addAllToItems(Collection items);
public A removeFromItems(Template... items);
public A removeAllFromItems(Collection items);
/**
* This method has been deprecated, please use method buildItems instead.
*/
@Deprecated public List getItems();
public List buildItems();
public Template buildItem(int index);
public Template buildFirstItem();
public Template buildLastItem();
public Template buildMatchingItem(io.alauda.kubernetes.api.builder.Predicate predicate);
public A withItems(List items);
public A withItems(Template... items);
public Boolean hasItems();
public TemplateListFluent.ItemsNested addNewItem();
public TemplateListFluent.ItemsNested addNewItemLike(Template item);
public TemplateListFluent.ItemsNested setNewItemLike(int index,Template item);
public TemplateListFluent.ItemsNested editItem(int index);
public TemplateListFluent.ItemsNested editFirstItem();
public TemplateListFluent.ItemsNested editLastItem();
public TemplateListFluent.ItemsNested editMatchingItem(io.alauda.kubernetes.api.builder.Predicate predicate);
public String getKind();
public A withKind(String kind);
public Boolean hasKind();
/**
* This method has been deprecated, please use method buildMetadata instead.
*/
@Deprecated public ListMeta getMetadata();
public ListMeta buildMetadata();
public A withMetadata(ListMeta metadata);
public Boolean hasMetadata();
public TemplateListFluent.MetadataNested withNewMetadata();
public TemplateListFluent.MetadataNested withNewMetadataLike(ListMeta item);
public TemplateListFluent.MetadataNested editMetadata();
public TemplateListFluent.MetadataNested editOrNewMetadata();
public TemplateListFluent.MetadataNested editOrNewMetadataLike(ListMeta item);
public A withNewMetadata(String resourceVersion,String selfLink);
public interface ItemsNested extends io.alauda.kubernetes.api.builder.Nested,TemplateFluent>{
public N and(); public N endItem();
}
public interface MetadataNested extends io.alauda.kubernetes.api.builder.Nested,ListMetaFluent>{
public N and(); public N endMetadata();
}
}