annotations.io.alauda.kubernetes.api.model.ScaleIOVolumeSourceFluent 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 ScaleIOVolumeSourceFluent> extends Fluent{
public String getFsType();
public A withFsType(String fsType);
public Boolean hasFsType();
public String getGateway();
public A withGateway(String gateway);
public Boolean hasGateway();
public String getProtectionDomain();
public A withProtectionDomain(String protectionDomain);
public Boolean hasProtectionDomain();
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 ScaleIOVolumeSourceFluent.SecretRefNested withNewSecretRef();
public ScaleIOVolumeSourceFluent.SecretRefNested withNewSecretRefLike(LocalObjectReference item);
public ScaleIOVolumeSourceFluent.SecretRefNested editSecretRef();
public ScaleIOVolumeSourceFluent.SecretRefNested editOrNewSecretRef();
public ScaleIOVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(LocalObjectReference item);
public A withNewSecretRef(String name);
public Boolean isSslEnabled();
public A withSslEnabled(Boolean sslEnabled);
public Boolean hasSslEnabled();
public String getStorageMode();
public A withStorageMode(String storageMode);
public Boolean hasStorageMode();
public String getStoragePool();
public A withStoragePool(String storagePool);
public Boolean hasStoragePool();
public String getSystem();
public A withSystem(String system);
public Boolean hasSystem();
public String getVolumeName();
public A withVolumeName(String volumeName);
public Boolean hasVolumeName();
public interface SecretRefNested extends io.alauda.kubernetes.api.builder.Nested,LocalObjectReferenceFluent>{
public N and(); public N endSecretRef();
}
}