io.alauda.kubernetes.api.model.PipelineTemplateArgumentGroupFluent 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 PipelineTemplateArgumentGroupFluent> extends Fluent{
/**
* This method has been deprecated, please use method buildDisplayName instead.
*/
@Deprecated public I18nName getDisplayName();
public I18nName buildDisplayName();
public A withDisplayName(I18nName displayName);
public Boolean hasDisplayName();
public PipelineTemplateArgumentGroupFluent.DisplayNameNested withNewDisplayName();
public PipelineTemplateArgumentGroupFluent.DisplayNameNested withNewDisplayNameLike(I18nName item);
public PipelineTemplateArgumentGroupFluent.DisplayNameNested editDisplayName();
public PipelineTemplateArgumentGroupFluent.DisplayNameNested editOrNewDisplayName();
public PipelineTemplateArgumentGroupFluent.DisplayNameNested editOrNewDisplayNameLike(I18nName item);
public A withNewDisplayName(String en,String zhCN);
public A addToItems(int index,PipelineTemplateArgumentValue item);
public A setToItems(int index,PipelineTemplateArgumentValue item);
public A addToItems(PipelineTemplateArgumentValue... items);
public A addAllToItems(Collection items);
public A removeFromItems(PipelineTemplateArgumentValue... items);
public A removeAllFromItems(Collection items);
/**
* This method has been deprecated, please use method buildItems instead.
*/
@Deprecated public List getItems();
public List buildItems();
public PipelineTemplateArgumentValue buildItem(int index);
public PipelineTemplateArgumentValue buildFirstItem();
public PipelineTemplateArgumentValue buildLastItem();
public PipelineTemplateArgumentValue buildMatchingItem(io.alauda.kubernetes.api.builder.Predicate predicate);
public A withItems(List items);
public A withItems(PipelineTemplateArgumentValue... items);
public Boolean hasItems();
public PipelineTemplateArgumentGroupFluent.ItemsNested addNewItem();
public PipelineTemplateArgumentGroupFluent.ItemsNested addNewItemLike(PipelineTemplateArgumentValue item);
public PipelineTemplateArgumentGroupFluent.ItemsNested setNewItemLike(int index,PipelineTemplateArgumentValue item);
public PipelineTemplateArgumentGroupFluent.ItemsNested editItem(int index);
public PipelineTemplateArgumentGroupFluent.ItemsNested editFirstItem();
public PipelineTemplateArgumentGroupFluent.ItemsNested editLastItem();
public PipelineTemplateArgumentGroupFluent.ItemsNested editMatchingItem(io.alauda.kubernetes.api.builder.Predicate predicate);
public interface DisplayNameNested extends io.alauda.kubernetes.api.builder.Nested,I18nNameFluent>{
public N and(); public N endDisplayName();
}
public interface ItemsNested extends io.alauda.kubernetes.api.builder.Nested,PipelineTemplateArgumentValueFluent>{
public N and(); public N endItem();
}
}