io.kubernetes.client.openapi.models.V1FlexVolumeSourceFluentImpl Maven / Gradle / Ivy
/*
Copyright 2022 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.BaseFluent;
import io.kubernetes.client.fluent.Nested;
import java.util.LinkedHashMap;
import java.util.Map;
/** Generated */
@SuppressWarnings(value = "unchecked")
public class V1FlexVolumeSourceFluentImpl>
extends BaseFluent implements V1FlexVolumeSourceFluent {
public V1FlexVolumeSourceFluentImpl() {}
public V1FlexVolumeSourceFluentImpl(
io.kubernetes.client.openapi.models.V1FlexVolumeSource instance) {
this.withDriver(instance.getDriver());
this.withFsType(instance.getFsType());
this.withOptions(instance.getOptions());
this.withReadOnly(instance.getReadOnly());
this.withSecretRef(instance.getSecretRef());
}
private String driver;
private java.lang.String fsType;
private Map options;
private Boolean readOnly;
private V1LocalObjectReferenceBuilder secretRef;
public java.lang.String getDriver() {
return this.driver;
}
public A withDriver(java.lang.String driver) {
this.driver = driver;
return (A) this;
}
public java.lang.Boolean hasDriver() {
return this.driver != null;
}
public java.lang.String getFsType() {
return this.fsType;
}
public A withFsType(java.lang.String fsType) {
this.fsType = fsType;
return (A) this;
}
public java.lang.Boolean hasFsType() {
return this.fsType != null;
}
public A addToOptions(java.lang.String key, java.lang.String value) {
if (this.options == null && key != null && value != null) {
this.options = new LinkedHashMap();
}
if (key != null && value != null) {
this.options.put(key, value);
}
return (A) this;
}
public A addToOptions(java.util.Map map) {
if (this.options == null && map != null) {
this.options = new java.util.LinkedHashMap();
}
if (map != null) {
this.options.putAll(map);
}
return (A) this;
}
public A removeFromOptions(java.lang.String key) {
if (this.options == null) {
return (A) this;
}
if (key != null && this.options != null) {
this.options.remove(key);
}
return (A) this;
}
public A removeFromOptions(java.util.Map map) {
if (this.options == null) {
return (A) this;
}
if (map != null) {
for (Object key : map.keySet()) {
if (this.options != null) {
this.options.remove(key);
}
}
}
return (A) this;
}
public java.util.Map getOptions() {
return this.options;
}
public A withOptions(java.util.Map options) {
if (options == null) {
this.options = null;
} else {
this.options = new java.util.LinkedHashMap(options);
}
return (A) this;
}
public java.lang.Boolean hasOptions() {
return this.options != null;
}
public java.lang.Boolean getReadOnly() {
return this.readOnly;
}
public A withReadOnly(java.lang.Boolean readOnly) {
this.readOnly = readOnly;
return (A) this;
}
public java.lang.Boolean hasReadOnly() {
return this.readOnly != null;
}
/**
* This method has been deprecated, please use method buildSecretRef instead.
*
* @return The buildable object.
*/
@Deprecated
public V1LocalObjectReference getSecretRef() {
return this.secretRef != null ? this.secretRef.build() : null;
}
public io.kubernetes.client.openapi.models.V1LocalObjectReference buildSecretRef() {
return this.secretRef != null ? this.secretRef.build() : null;
}
public A withSecretRef(io.kubernetes.client.openapi.models.V1LocalObjectReference secretRef) {
_visitables.get("secretRef").remove(this.secretRef);
if (secretRef != null) {
this.secretRef =
new io.kubernetes.client.openapi.models.V1LocalObjectReferenceBuilder(secretRef);
_visitables.get("secretRef").add(this.secretRef);
}
return (A) this;
}
public java.lang.Boolean hasSecretRef() {
return this.secretRef != null;
}
public V1FlexVolumeSourceFluent.SecretRefNested withNewSecretRef() {
return new V1FlexVolumeSourceFluentImpl.SecretRefNestedImpl();
}
public io.kubernetes.client.openapi.models.V1FlexVolumeSourceFluent.SecretRefNested
withNewSecretRefLike(io.kubernetes.client.openapi.models.V1LocalObjectReference item) {
return new V1FlexVolumeSourceFluentImpl.SecretRefNestedImpl(item);
}
public io.kubernetes.client.openapi.models.V1FlexVolumeSourceFluent.SecretRefNested
editSecretRef() {
return withNewSecretRefLike(getSecretRef());
}
public io.kubernetes.client.openapi.models.V1FlexVolumeSourceFluent.SecretRefNested
editOrNewSecretRef() {
return withNewSecretRefLike(
getSecretRef() != null
? getSecretRef()
: new io.kubernetes.client.openapi.models.V1LocalObjectReferenceBuilder().build());
}
public io.kubernetes.client.openapi.models.V1FlexVolumeSourceFluent.SecretRefNested
editOrNewSecretRefLike(io.kubernetes.client.openapi.models.V1LocalObjectReference item) {
return withNewSecretRefLike(getSecretRef() != null ? getSecretRef() : item);
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V1FlexVolumeSourceFluentImpl that = (V1FlexVolumeSourceFluentImpl) o;
if (driver != null ? !driver.equals(that.driver) : that.driver != null) return false;
if (fsType != null ? !fsType.equals(that.fsType) : that.fsType != null) return false;
if (options != null ? !options.equals(that.options) : that.options != null) return false;
if (readOnly != null ? !readOnly.equals(that.readOnly) : that.readOnly != null) return false;
if (secretRef != null ? !secretRef.equals(that.secretRef) : that.secretRef != null)
return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(driver, fsType, options, readOnly, secretRef, super.hashCode());
}
public java.lang.String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (driver != null) {
sb.append("driver:");
sb.append(driver + ",");
}
if (fsType != null) {
sb.append("fsType:");
sb.append(fsType + ",");
}
if (options != null && !options.isEmpty()) {
sb.append("options:");
sb.append(options + ",");
}
if (readOnly != null) {
sb.append("readOnly:");
sb.append(readOnly + ",");
}
if (secretRef != null) {
sb.append("secretRef:");
sb.append(secretRef);
}
sb.append("}");
return sb.toString();
}
public A withReadOnly() {
return withReadOnly(true);
}
class SecretRefNestedImpl
extends V1LocalObjectReferenceFluentImpl>
implements io.kubernetes.client.openapi.models.V1FlexVolumeSourceFluent.SecretRefNested,
Nested {
SecretRefNestedImpl(V1LocalObjectReference item) {
this.builder = new V1LocalObjectReferenceBuilder(this, item);
}
SecretRefNestedImpl() {
this.builder = new io.kubernetes.client.openapi.models.V1LocalObjectReferenceBuilder(this);
}
io.kubernetes.client.openapi.models.V1LocalObjectReferenceBuilder builder;
public N and() {
return (N) V1FlexVolumeSourceFluentImpl.this.withSecretRef(builder.build());
}
public N endSecretRef() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy