io.kubernetes.client.openapi.models.V1FlexPersistentVolumeSourceFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.StringBuilder;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Fluent;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.util.LinkedHashMap;
import java.lang.StringBuffer;
import java.lang.Deprecated;
import java.lang.Boolean;
import java.util.Map;
public interface V1FlexPersistentVolumeSourceFluent> extends Fluent {
public String getDriver();
public A withDriver(String driver);
public Boolean hasDriver();
public A withNewDriver(String arg1);
public A withNewDriver(StringBuilder arg1);
public A withNewDriver(StringBuffer arg1);
public String getFsType();
public A withFsType(String fsType);
public Boolean hasFsType();
public A withNewFsType(String arg1);
public A withNewFsType(StringBuilder arg1);
public A withNewFsType(StringBuffer arg1);
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();
public A withNewReadOnly(String arg1);
public A withNewReadOnly(boolean arg1);
/**
* This method has been deprecated, please use method buildSecretRef instead.
* @return The buildable object.
*/
@Deprecated public V1SecretReference getSecretRef();
public V1SecretReference buildSecretRef();
public A withSecretRef(V1SecretReference secretRef);
public Boolean hasSecretRef();
public V1FlexPersistentVolumeSourceFluent.SecretRefNested withNewSecretRef();
public V1FlexPersistentVolumeSourceFluent.SecretRefNested withNewSecretRefLike(V1SecretReference item);
public V1FlexPersistentVolumeSourceFluent.SecretRefNested editSecretRef();
public V1FlexPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRef();
public V1FlexPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(V1SecretReference item);
public interface SecretRefNested extends io.kubernetes.client.fluent.Nested,V1SecretReferenceFluent> {
public N and();
public N endSecretRef(); }
}