![JAR search and dependency download from the Maven repository](/logo.png)
io.alauda.devops.api.model.CustomDeploymentStrategyParamsFluent 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.EnvVarFluent;
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.model.EnvVarBuilder;
import io.alauda.kubernetes.api.builder.Predicate;
import java.lang.Deprecated;
import javax.validation.Valid;
import io.alauda.kubernetes.api.model.EnvVar;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
import java.util.Map;
public interface CustomDeploymentStrategyParamsFluent> extends Fluent{
public A addToCommand(int index,String item);
public A setToCommand(int index,String item);
public A addToCommand(String... items);
public A addAllToCommand(Collection items);
public A removeFromCommand(String... items);
public A removeAllFromCommand(Collection items);
public List getCommand();
public String getCommand(int index);
public String getFirstCommand();
public String getLastCommand();
public String getMatchingCommand(io.alauda.kubernetes.api.builder.Predicate predicate);
public A withCommand(List command);
public A withCommand(String... command);
public Boolean hasCommand();
public A addToEnvironment(int index,EnvVar item);
public A setToEnvironment(int index,EnvVar item);
public A addToEnvironment(EnvVar... items);
public A addAllToEnvironment(Collection items);
public A removeFromEnvironment(EnvVar... items);
public A removeAllFromEnvironment(Collection items);
/**
* This method has been deprecated, please use method buildEnvironment instead.
*/
@Deprecated public List getEnvironment();
public List buildEnvironment();
public EnvVar buildEnvironment(int index);
public EnvVar buildFirstEnvironment();
public EnvVar buildLastEnvironment();
public EnvVar buildMatchingEnvironment(io.alauda.kubernetes.api.builder.Predicate predicate);
public A withEnvironment(List environment);
public A withEnvironment(EnvVar... environment);
public Boolean hasEnvironment();
public CustomDeploymentStrategyParamsFluent.EnvironmentNested addNewEnvironment();
public CustomDeploymentStrategyParamsFluent.EnvironmentNested addNewEnvironmentLike(EnvVar item);
public CustomDeploymentStrategyParamsFluent.EnvironmentNested setNewEnvironmentLike(int index,EnvVar item);
public CustomDeploymentStrategyParamsFluent.EnvironmentNested editEnvironment(int index);
public CustomDeploymentStrategyParamsFluent.EnvironmentNested editFirstEnvironment();
public CustomDeploymentStrategyParamsFluent.EnvironmentNested editLastEnvironment();
public CustomDeploymentStrategyParamsFluent.EnvironmentNested editMatchingEnvironment(io.alauda.kubernetes.api.builder.Predicate predicate);
public String getImage();
public A withImage(String image);
public Boolean hasImage();
public interface EnvironmentNested extends io.alauda.kubernetes.api.builder.Nested,EnvVarFluent>{
public N and(); public N endEnvironment();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy