io.alauda.kubernetes.api.model.StorageOSPersistentVolumeSourceFluent 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 StorageOSPersistentVolumeSourceFluent> extends Fluent{
public String getFsType();
public A withFsType(String fsType);
public Boolean hasFsType();
public Boolean isReadOnly();
public A withReadOnly(Boolean readOnly);
public Boolean hasReadOnly();
/**
* This method has been deprecated, please use method buildSecretRef instead.
*/
@Deprecated public ObjectReference getSecretRef();
public ObjectReference buildSecretRef();
public A withSecretRef(ObjectReference secretRef);
public Boolean hasSecretRef();
public StorageOSPersistentVolumeSourceFluent.SecretRefNested withNewSecretRef();
public StorageOSPersistentVolumeSourceFluent.SecretRefNested withNewSecretRefLike(ObjectReference item);
public StorageOSPersistentVolumeSourceFluent.SecretRefNested editSecretRef();
public StorageOSPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRef();
public StorageOSPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(ObjectReference item);
public String getVolumeName();
public A withVolumeName(String volumeName);
public Boolean hasVolumeName();
public String getVolumeNamespace();
public A withVolumeNamespace(String volumeNamespace);
public Boolean hasVolumeNamespace();
public interface SecretRefNested extends io.alauda.kubernetes.api.builder.Nested,ObjectReferenceFluent>{
public N and(); public N endSecretRef();
}
}