me.snowdrop.istio.mixer.template.logentry.LogEntryListFluent Maven / Gradle / Ivy
package me.snowdrop.istio.mixer.template.logentry;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;
import java.util.ArrayList;
import java.lang.String;
import javax.validation.constraints.NotNull;
import io.fabric8.kubernetes.api.builder.Predicate;
import io.fabric8.kubernetes.api.model.ListMeta;
import java.lang.Deprecated;
import javax.validation.Valid;
import java.util.Collection;
import java.util.List;
import java.lang.Boolean;
public interface LogEntryListFluent> extends Fluent{
public String getApiVersion();
public A withApiVersion(String apiVersion);
public Boolean hasApiVersion();
public A addToItems(int index,LogEntry item);
public A setToItems(int index,LogEntry item);
public A addToItems(LogEntry... items);
public A addAllToItems(Collection items);
public A removeFromItems(LogEntry... items);
public A removeAllFromItems(Collection items);
/**
* This method has been deprecated, please use method buildItems instead.
* @return The buildable object.
*/
@Deprecated public List getItems();
public List buildItems();
public LogEntry buildItem(int index);
public LogEntry buildFirstItem();
public LogEntry buildLastItem();
public LogEntry buildMatchingItem(Predicate predicate);
public A withItems(List items);
public A withItems(LogEntry... items);
public Boolean hasItems();
public LogEntryListFluent.ItemsNested addNewItem();
public LogEntryListFluent.ItemsNested addNewItemLike(LogEntry item);
public LogEntryListFluent.ItemsNested setNewItemLike(int index,LogEntry item);
public LogEntryListFluent.ItemsNested editItem(int index);
public LogEntryListFluent.ItemsNested editFirstItem();
public LogEntryListFluent.ItemsNested editLastItem();
public LogEntryListFluent.ItemsNested editMatchingItem(Predicate predicate);
public String getKind();
public A withKind(String kind);
public Boolean hasKind();
public ListMeta getMetadata();
public A withMetadata(ListMeta metadata);
public Boolean hasMetadata();
public A withNewMetadata(String _continue,String resourceVersion,String selfLink);
public interface ItemsNested extends Nested,LogEntryFluent>{
public N and(); public N endItem();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy