io.alauda.devops.api.model.ImageSourceFluent 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.builder.Nested;
import java.lang.String;
import io.alauda.kubernetes.api.builder.Predicate;
import io.alauda.kubernetes.api.model.ObjectReference;
import java.lang.Deprecated;
import java.util.List;
import java.lang.Boolean;
import io.alauda.kubernetes.api.model.LocalObjectReferenceFluent;
import io.alauda.kubernetes.api.builder.Fluent;
import io.alauda.kubernetes.api.model.LocalObjectReferenceBuilder;
import io.alauda.kubernetes.api.model.ObjectReferenceFluent;
import javax.validation.Valid;
import io.alauda.kubernetes.api.model.ObjectReferenceBuilder;
import io.alauda.kubernetes.api.model.LocalObjectReference;
import java.util.Collection;
import java.lang.Object;
import java.util.Map;
public interface ImageSourceFluent> extends Fluent{
/**
* This method has been deprecated, please use method buildFrom instead.
*/
@Deprecated public ObjectReference getFrom();
public ObjectReference buildFrom();
public A withFrom(ObjectReference from);
public Boolean hasFrom();
public ImageSourceFluent.FromNested withNewFrom();
public ImageSourceFluent.FromNested withNewFromLike(ObjectReference item);
public ImageSourceFluent.FromNested editFrom();
public ImageSourceFluent.FromNested editOrNewFrom();
public ImageSourceFluent.FromNested editOrNewFromLike(ObjectReference item);
public A addToPaths(int index,ImageSourcePath item);
public A setToPaths(int index,ImageSourcePath item);
public A addToPaths(ImageSourcePath... items);
public A addAllToPaths(Collection items);
public A removeFromPaths(ImageSourcePath... items);
public A removeAllFromPaths(Collection items);
/**
* This method has been deprecated, please use method buildPaths instead.
*/
@Deprecated public List getPaths();
public List buildPaths();
public ImageSourcePath buildPath(int index);
public ImageSourcePath buildFirstPath();
public ImageSourcePath buildLastPath();
public ImageSourcePath buildMatchingPath(io.alauda.kubernetes.api.builder.Predicate predicate);
public A withPaths(List paths);
public A withPaths(ImageSourcePath... paths);
public Boolean hasPaths();
public ImageSourceFluent.PathsNested addNewPath();
public ImageSourceFluent.PathsNested addNewPathLike(ImageSourcePath item);
public ImageSourceFluent.PathsNested setNewPathLike(int index,ImageSourcePath item);
public ImageSourceFluent.PathsNested editPath(int index);
public ImageSourceFluent.PathsNested editFirstPath();
public ImageSourceFluent.PathsNested editLastPath();
public ImageSourceFluent.PathsNested editMatchingPath(io.alauda.kubernetes.api.builder.Predicate predicate);
public A addNewPath(String destinationDir,String sourcePath);
/**
* This method has been deprecated, please use method buildPullSecret instead.
*/
@Deprecated public LocalObjectReference getPullSecret();
public LocalObjectReference buildPullSecret();
public A withPullSecret(LocalObjectReference pullSecret);
public Boolean hasPullSecret();
public ImageSourceFluent.PullSecretNested withNewPullSecret();
public ImageSourceFluent.PullSecretNested withNewPullSecretLike(LocalObjectReference item);
public ImageSourceFluent.PullSecretNested editPullSecret();
public ImageSourceFluent.PullSecretNested editOrNewPullSecret();
public ImageSourceFluent.PullSecretNested editOrNewPullSecretLike(LocalObjectReference item);
public A withNewPullSecret(String name);
public interface FromNested extends io.alauda.kubernetes.api.builder.Nested,ObjectReferenceFluent>{
public N and(); public N endFrom();
}
public interface PathsNested extends io.alauda.kubernetes.api.builder.Nested,ImageSourcePathFluent>{
public N and(); public N endPath();
}
public interface PullSecretNested extends io.alauda.kubernetes.api.builder.Nested,LocalObjectReferenceFluent>{
public N and(); public N endPullSecret();
}
}