io.kubernetes.client.openapi.models.V1CinderVolumeSourceFluent 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.lang.StringBuffer;
import java.lang.Deprecated;
import java.lang.Boolean;
public interface V1CinderVolumeSourceFluent> extends Fluent {
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 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 V1LocalObjectReference getSecretRef();
public V1LocalObjectReference buildSecretRef();
public A withSecretRef(V1LocalObjectReference secretRef);
public Boolean hasSecretRef();
public V1CinderVolumeSourceFluent.SecretRefNested withNewSecretRef();
public V1CinderVolumeSourceFluent.SecretRefNested withNewSecretRefLike(V1LocalObjectReference item);
public V1CinderVolumeSourceFluent.SecretRefNested editSecretRef();
public V1CinderVolumeSourceFluent.SecretRefNested editOrNewSecretRef();
public V1CinderVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(V1LocalObjectReference item);
public String getVolumeID();
public A withVolumeID(String volumeID);
public Boolean hasVolumeID();
public A withNewVolumeID(String arg1);
public A withNewVolumeID(StringBuilder arg1);
public A withNewVolumeID(StringBuffer arg1);
public interface SecretRefNested extends io.kubernetes.client.fluent.Nested,V1LocalObjectReferenceFluent> {
public N and();
public N endSecretRef(); }
}