io.alauda.kubernetes.api.model.FlexVolumeSourceFluent 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 java.lang.Deprecated;
import javax.validation.Valid;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
public interface FlexVolumeSourceFluent> extends Fluent{
public String getDriver();
public A withDriver(String driver);
public Boolean hasDriver();
public String getFsType();
public A withFsType(String fsType);
public Boolean hasFsType();
public A addToOptions(String key,String value);
public A addToOptions(Map map);
public A removeFromOptions(String key);
public A removeFromOptions(Map map);
public Map getOptions();
public A withOptions(Map options);
public Boolean hasOptions();
public Boolean isReadOnly();
public A withReadOnly(Boolean readOnly);
public Boolean hasReadOnly();
/**
* This method has been deprecated, please use method buildSecretRef instead.
*/
@Deprecated public LocalObjectReference getSecretRef();
public LocalObjectReference buildSecretRef();
public A withSecretRef(LocalObjectReference secretRef);
public Boolean hasSecretRef();
public FlexVolumeSourceFluent.SecretRefNested withNewSecretRef();
public FlexVolumeSourceFluent.SecretRefNested withNewSecretRefLike(LocalObjectReference item);
public FlexVolumeSourceFluent.SecretRefNested editSecretRef();
public FlexVolumeSourceFluent.SecretRefNested editOrNewSecretRef();
public FlexVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(LocalObjectReference item);
public A withNewSecretRef(String name);
public interface SecretRefNested extends io.alauda.kubernetes.api.builder.Nested,LocalObjectReferenceFluent>{
public N and(); public N endSecretRef();
}
}