annotations.io.alauda.kubernetes.api.model.EnvVarSourceFluent 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.Nested;
import java.lang.String;
import java.lang.Deprecated;
import java.lang.Boolean;
import io.alauda.kubernetes.api.builder.Fluent;
import javax.validation.Valid;
import java.lang.Object;
import java.util.Map;
public interface EnvVarSourceFluent> extends Fluent{
/**
* This method has been deprecated, please use method buildConfigMapKeyRef instead.
*/
@Deprecated public ConfigMapKeySelector getConfigMapKeyRef();
public ConfigMapKeySelector buildConfigMapKeyRef();
public A withConfigMapKeyRef(ConfigMapKeySelector configMapKeyRef);
public Boolean hasConfigMapKeyRef();
public EnvVarSourceFluent.ConfigMapKeyRefNested withNewConfigMapKeyRef();
public EnvVarSourceFluent.ConfigMapKeyRefNested withNewConfigMapKeyRefLike(ConfigMapKeySelector item);
public EnvVarSourceFluent.ConfigMapKeyRefNested editConfigMapKeyRef();
public EnvVarSourceFluent.ConfigMapKeyRefNested editOrNewConfigMapKeyRef();
public EnvVarSourceFluent.ConfigMapKeyRefNested editOrNewConfigMapKeyRefLike(ConfigMapKeySelector item);
public A withNewConfigMapKeyRef(String key,String name,Boolean optional);
/**
* This method has been deprecated, please use method buildFieldRef instead.
*/
@Deprecated public ObjectFieldSelector getFieldRef();
public ObjectFieldSelector buildFieldRef();
public A withFieldRef(ObjectFieldSelector fieldRef);
public Boolean hasFieldRef();
public EnvVarSourceFluent.FieldRefNested withNewFieldRef();
public EnvVarSourceFluent.FieldRefNested withNewFieldRefLike(ObjectFieldSelector item);
public EnvVarSourceFluent.FieldRefNested editFieldRef();
public EnvVarSourceFluent.FieldRefNested editOrNewFieldRef();
public EnvVarSourceFluent.FieldRefNested editOrNewFieldRefLike(ObjectFieldSelector item);
public A withNewFieldRef(String apiVersion,String fieldPath);
/**
* This method has been deprecated, please use method buildResourceFieldRef instead.
*/
@Deprecated public ResourceFieldSelector getResourceFieldRef();
public ResourceFieldSelector buildResourceFieldRef();
public A withResourceFieldRef(ResourceFieldSelector resourceFieldRef);
public Boolean hasResourceFieldRef();
public EnvVarSourceFluent.ResourceFieldRefNested withNewResourceFieldRef();
public EnvVarSourceFluent.ResourceFieldRefNested withNewResourceFieldRefLike(ResourceFieldSelector item);
public EnvVarSourceFluent.ResourceFieldRefNested editResourceFieldRef();
public EnvVarSourceFluent.ResourceFieldRefNested editOrNewResourceFieldRef();
public EnvVarSourceFluent.ResourceFieldRefNested editOrNewResourceFieldRefLike(ResourceFieldSelector item);
/**
* This method has been deprecated, please use method buildSecretKeyRef instead.
*/
@Deprecated public SecretKeySelector getSecretKeyRef();
public SecretKeySelector buildSecretKeyRef();
public A withSecretKeyRef(SecretKeySelector secretKeyRef);
public Boolean hasSecretKeyRef();
public EnvVarSourceFluent.SecretKeyRefNested withNewSecretKeyRef();
public EnvVarSourceFluent.SecretKeyRefNested withNewSecretKeyRefLike(SecretKeySelector item);
public EnvVarSourceFluent.SecretKeyRefNested editSecretKeyRef();
public EnvVarSourceFluent.SecretKeyRefNested editOrNewSecretKeyRef();
public EnvVarSourceFluent.SecretKeyRefNested editOrNewSecretKeyRefLike(SecretKeySelector item);
public A withNewSecretKeyRef(String key,String name,Boolean optional);
public interface ConfigMapKeyRefNested extends io.alauda.kubernetes.api.builder.Nested,ConfigMapKeySelectorFluent>{
public N and(); public N endConfigMapKeyRef();
}
public interface FieldRefNested extends io.alauda.kubernetes.api.builder.Nested,ObjectFieldSelectorFluent>{
public N and(); public N endFieldRef();
}
public interface ResourceFieldRefNested extends io.alauda.kubernetes.api.builder.Nested,ResourceFieldSelectorFluent>{
public N and(); public N endResourceFieldRef();
}
public interface SecretKeyRefNested extends io.alauda.kubernetes.api.builder.Nested,SecretKeySelectorFluent>{
public N and(); public N endSecretKeyRef();
}
}