
io.kubernetes.client.openapi.models.V1CinderPersistentVolumeSourceFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1CinderPersistentVolumeSourceFluent> extends BaseFluent{
public V1CinderPersistentVolumeSourceFluent() {
}
public V1CinderPersistentVolumeSourceFluent(V1CinderPersistentVolumeSource instance) {
this.copyInstance(instance);
}
private String fsType;
private Boolean readOnly;
private V1SecretReferenceBuilder secretRef;
private String volumeID;
protected void copyInstance(V1CinderPersistentVolumeSource instance) {
instance = (instance != null ? instance : new V1CinderPersistentVolumeSource());
if (instance != null) {
this.withFsType(instance.getFsType());
this.withReadOnly(instance.getReadOnly());
this.withSecretRef(instance.getSecretRef());
this.withVolumeID(instance.getVolumeID());
}
}
public String getFsType() {
return this.fsType;
}
public A withFsType(String fsType) {
this.fsType = fsType;
return (A) this;
}
public boolean hasFsType() {
return this.fsType != null;
}
public Boolean getReadOnly() {
return this.readOnly;
}
public A withReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
return (A) this;
}
public boolean hasReadOnly() {
return this.readOnly != null;
}
public V1SecretReference buildSecretRef() {
return this.secretRef != null ? this.secretRef.build() : null;
}
public A withSecretRef(V1SecretReference secretRef) {
this._visitables.remove("secretRef");
if (secretRef != null) {
this.secretRef = new V1SecretReferenceBuilder(secretRef);
this._visitables.get("secretRef").add(this.secretRef);
} else {
this.secretRef = null;
this._visitables.get("secretRef").remove(this.secretRef);
}
return (A) this;
}
public boolean hasSecretRef() {
return this.secretRef != null;
}
public SecretRefNested withNewSecretRef() {
return new SecretRefNested(null);
}
public SecretRefNested withNewSecretRefLike(V1SecretReference item) {
return new SecretRefNested(item);
}
public SecretRefNested editSecretRef() {
return withNewSecretRefLike(java.util.Optional.ofNullable(buildSecretRef()).orElse(null));
}
public SecretRefNested editOrNewSecretRef() {
return withNewSecretRefLike(java.util.Optional.ofNullable(buildSecretRef()).orElse(new V1SecretReferenceBuilder().build()));
}
public SecretRefNested editOrNewSecretRefLike(V1SecretReference item) {
return withNewSecretRefLike(java.util.Optional.ofNullable(buildSecretRef()).orElse(item));
}
public String getVolumeID() {
return this.volumeID;
}
public A withVolumeID(String volumeID) {
this.volumeID = volumeID;
return (A) this;
}
public boolean hasVolumeID() {
return this.volumeID != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1CinderPersistentVolumeSourceFluent that = (V1CinderPersistentVolumeSourceFluent) o;
if (!java.util.Objects.equals(fsType, that.fsType)) return false;
if (!java.util.Objects.equals(readOnly, that.readOnly)) return false;
if (!java.util.Objects.equals(secretRef, that.secretRef)) return false;
if (!java.util.Objects.equals(volumeID, that.volumeID)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(fsType, readOnly, secretRef, volumeID, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (fsType != null) { sb.append("fsType:"); sb.append(fsType + ","); }
if (readOnly != null) { sb.append("readOnly:"); sb.append(readOnly + ","); }
if (secretRef != null) { sb.append("secretRef:"); sb.append(secretRef + ","); }
if (volumeID != null) { sb.append("volumeID:"); sb.append(volumeID); }
sb.append("}");
return sb.toString();
}
public A withReadOnly() {
return withReadOnly(true);
}
public class SecretRefNested extends V1SecretReferenceFluent> implements Nested{
SecretRefNested(V1SecretReference item) {
this.builder = new V1SecretReferenceBuilder(this, item);
}
V1SecretReferenceBuilder builder;
public N and() {
return (N) V1CinderPersistentVolumeSourceFluent.this.withSecretRef(builder.build());
}
public N endSecretRef() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy