
io.kubernetes.client.openapi.models.V2beta2MetricStatusFluentImpl 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;
/** Generated */
@SuppressWarnings(value = "unchecked")
public class V2beta2MetricStatusFluentImpl>
extends BaseFluent implements V2beta2MetricStatusFluent {
public V2beta2MetricStatusFluentImpl() {}
public V2beta2MetricStatusFluentImpl(
io.kubernetes.client.openapi.models.V2beta2MetricStatus instance) {
this.withContainerResource(instance.getContainerResource());
this.withExternal(instance.getExternal());
this.withObject(instance.getObject());
this.withPods(instance.getPods());
this.withResource(instance.getResource());
this.withType(instance.getType());
}
private V2beta2ContainerResourceMetricStatusBuilder containerResource;
private V2beta2ExternalMetricStatusBuilder external;
private V2beta2ObjectMetricStatusBuilder _object;
private V2beta2PodsMetricStatusBuilder pods;
private V2beta2ResourceMetricStatusBuilder resource;
private String type;
/**
* This method has been deprecated, please use method buildContainerResource instead.
*
* @return The buildable object.
*/
@Deprecated
public V2beta2ContainerResourceMetricStatus getContainerResource() {
return this.containerResource != null ? this.containerResource.build() : null;
}
public io.kubernetes.client.openapi.models.V2beta2ContainerResourceMetricStatus
buildContainerResource() {
return this.containerResource != null ? this.containerResource.build() : null;
}
public A withContainerResource(
io.kubernetes.client.openapi.models.V2beta2ContainerResourceMetricStatus containerResource) {
_visitables.get("containerResource").remove(this.containerResource);
if (containerResource != null) {
this.containerResource =
new io.kubernetes.client.openapi.models.V2beta2ContainerResourceMetricStatusBuilder(
containerResource);
_visitables.get("containerResource").add(this.containerResource);
}
return (A) this;
}
public Boolean hasContainerResource() {
return this.containerResource != null;
}
public V2beta2MetricStatusFluent.ContainerResourceNested withNewContainerResource() {
return new V2beta2MetricStatusFluentImpl.ContainerResourceNestedImpl();
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ContainerResourceNested
withNewContainerResourceLike(
io.kubernetes.client.openapi.models.V2beta2ContainerResourceMetricStatus item) {
return new V2beta2MetricStatusFluentImpl.ContainerResourceNestedImpl(item);
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ContainerResourceNested
editContainerResource() {
return withNewContainerResourceLike(getContainerResource());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ContainerResourceNested
editOrNewContainerResource() {
return withNewContainerResourceLike(
getContainerResource() != null
? getContainerResource()
: new io.kubernetes.client.openapi.models.V2beta2ContainerResourceMetricStatusBuilder()
.build());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ContainerResourceNested
editOrNewContainerResourceLike(
io.kubernetes.client.openapi.models.V2beta2ContainerResourceMetricStatus item) {
return withNewContainerResourceLike(
getContainerResource() != null ? getContainerResource() : item);
}
/**
* This method has been deprecated, please use method buildExternal instead.
*
* @return The buildable object.
*/
@java.lang.Deprecated
public io.kubernetes.client.openapi.models.V2beta2ExternalMetricStatus getExternal() {
return this.external != null ? this.external.build() : null;
}
public io.kubernetes.client.openapi.models.V2beta2ExternalMetricStatus buildExternal() {
return this.external != null ? this.external.build() : null;
}
public A withExternal(io.kubernetes.client.openapi.models.V2beta2ExternalMetricStatus external) {
_visitables.get("external").remove(this.external);
if (external != null) {
this.external = new V2beta2ExternalMetricStatusBuilder(external);
_visitables.get("external").add(this.external);
}
return (A) this;
}
public java.lang.Boolean hasExternal() {
return this.external != null;
}
public V2beta2MetricStatusFluent.ExternalNested withNewExternal() {
return new V2beta2MetricStatusFluentImpl.ExternalNestedImpl();
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ExternalNested
withNewExternalLike(io.kubernetes.client.openapi.models.V2beta2ExternalMetricStatus item) {
return new io.kubernetes.client.openapi.models.V2beta2MetricStatusFluentImpl.ExternalNestedImpl(
item);
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ExternalNested
editExternal() {
return withNewExternalLike(getExternal());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ExternalNested
editOrNewExternal() {
return withNewExternalLike(
getExternal() != null
? getExternal()
: new io.kubernetes.client.openapi.models.V2beta2ExternalMetricStatusBuilder().build());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ExternalNested
editOrNewExternalLike(io.kubernetes.client.openapi.models.V2beta2ExternalMetricStatus item) {
return withNewExternalLike(getExternal() != null ? getExternal() : item);
}
/**
* This method has been deprecated, please use method buildObject instead.
*
* @return The buildable object.
*/
@java.lang.Deprecated
public io.kubernetes.client.openapi.models.V2beta2ObjectMetricStatus getObject() {
return this._object != null ? this._object.build() : null;
}
public io.kubernetes.client.openapi.models.V2beta2ObjectMetricStatus buildObject() {
return this._object != null ? this._object.build() : null;
}
public A withObject(io.kubernetes.client.openapi.models.V2beta2ObjectMetricStatus _object) {
_visitables.get("_object").remove(this._object);
if (_object != null) {
this._object = new V2beta2ObjectMetricStatusBuilder(_object);
_visitables.get("_object").add(this._object);
}
return (A) this;
}
public java.lang.Boolean hasObject() {
return this._object != null;
}
public V2beta2MetricStatusFluent.ObjectNested withNewObject() {
return new V2beta2MetricStatusFluentImpl.ObjectNestedImpl();
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ObjectNested
withNewObjectLike(io.kubernetes.client.openapi.models.V2beta2ObjectMetricStatus item) {
return new io.kubernetes.client.openapi.models.V2beta2MetricStatusFluentImpl.ObjectNestedImpl(
item);
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ObjectNested
editObject() {
return withNewObjectLike(getObject());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ObjectNested
editOrNewObject() {
return withNewObjectLike(
getObject() != null
? getObject()
: new io.kubernetes.client.openapi.models.V2beta2ObjectMetricStatusBuilder().build());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ObjectNested
editOrNewObjectLike(io.kubernetes.client.openapi.models.V2beta2ObjectMetricStatus item) {
return withNewObjectLike(getObject() != null ? getObject() : item);
}
/**
* This method has been deprecated, please use method buildPods instead.
*
* @return The buildable object.
*/
@java.lang.Deprecated
public V2beta2PodsMetricStatus getPods() {
return this.pods != null ? this.pods.build() : null;
}
public io.kubernetes.client.openapi.models.V2beta2PodsMetricStatus buildPods() {
return this.pods != null ? this.pods.build() : null;
}
public A withPods(io.kubernetes.client.openapi.models.V2beta2PodsMetricStatus pods) {
_visitables.get("pods").remove(this.pods);
if (pods != null) {
this.pods = new io.kubernetes.client.openapi.models.V2beta2PodsMetricStatusBuilder(pods);
_visitables.get("pods").add(this.pods);
}
return (A) this;
}
public java.lang.Boolean hasPods() {
return this.pods != null;
}
public V2beta2MetricStatusFluent.PodsNested withNewPods() {
return new V2beta2MetricStatusFluentImpl.PodsNestedImpl();
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.PodsNested
withNewPodsLike(io.kubernetes.client.openapi.models.V2beta2PodsMetricStatus item) {
return new io.kubernetes.client.openapi.models.V2beta2MetricStatusFluentImpl.PodsNestedImpl(
item);
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.PodsNested editPods() {
return withNewPodsLike(getPods());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.PodsNested
editOrNewPods() {
return withNewPodsLike(
getPods() != null
? getPods()
: new io.kubernetes.client.openapi.models.V2beta2PodsMetricStatusBuilder().build());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.PodsNested
editOrNewPodsLike(io.kubernetes.client.openapi.models.V2beta2PodsMetricStatus item) {
return withNewPodsLike(getPods() != null ? getPods() : item);
}
/**
* This method has been deprecated, please use method buildResource instead.
*
* @return The buildable object.
*/
@java.lang.Deprecated
public V2beta2ResourceMetricStatus getResource() {
return this.resource != null ? this.resource.build() : null;
}
public io.kubernetes.client.openapi.models.V2beta2ResourceMetricStatus buildResource() {
return this.resource != null ? this.resource.build() : null;
}
public A withResource(io.kubernetes.client.openapi.models.V2beta2ResourceMetricStatus resource) {
_visitables.get("resource").remove(this.resource);
if (resource != null) {
this.resource =
new io.kubernetes.client.openapi.models.V2beta2ResourceMetricStatusBuilder(resource);
_visitables.get("resource").add(this.resource);
}
return (A) this;
}
public java.lang.Boolean hasResource() {
return this.resource != null;
}
public V2beta2MetricStatusFluent.ResourceNested withNewResource() {
return new V2beta2MetricStatusFluentImpl.ResourceNestedImpl();
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ResourceNested
withNewResourceLike(io.kubernetes.client.openapi.models.V2beta2ResourceMetricStatus item) {
return new io.kubernetes.client.openapi.models.V2beta2MetricStatusFluentImpl.ResourceNestedImpl(
item);
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ResourceNested
editResource() {
return withNewResourceLike(getResource());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ResourceNested
editOrNewResource() {
return withNewResourceLike(
getResource() != null
? getResource()
: new io.kubernetes.client.openapi.models.V2beta2ResourceMetricStatusBuilder().build());
}
public io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ResourceNested
editOrNewResourceLike(io.kubernetes.client.openapi.models.V2beta2ResourceMetricStatus item) {
return withNewResourceLike(getResource() != null ? getResource() : item);
}
public java.lang.String getType() {
return this.type;
}
public A withType(java.lang.String type) {
this.type = type;
return (A) this;
}
public java.lang.Boolean hasType() {
return this.type != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V2beta2MetricStatusFluentImpl that = (V2beta2MetricStatusFluentImpl) o;
if (containerResource != null
? !containerResource.equals(that.containerResource)
: that.containerResource != null) return false;
if (external != null ? !external.equals(that.external) : that.external != null) return false;
if (_object != null ? !_object.equals(that._object) : that._object != null) return false;
if (pods != null ? !pods.equals(that.pods) : that.pods != null) return false;
if (resource != null ? !resource.equals(that.resource) : that.resource != null) return false;
if (type != null ? !type.equals(that.type) : that.type != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(
containerResource, external, _object, pods, resource, type, super.hashCode());
}
public java.lang.String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (containerResource != null) {
sb.append("containerResource:");
sb.append(containerResource + ",");
}
if (external != null) {
sb.append("external:");
sb.append(external + ",");
}
if (_object != null) {
sb.append("_object:");
sb.append(_object + ",");
}
if (pods != null) {
sb.append("pods:");
sb.append(pods + ",");
}
if (resource != null) {
sb.append("resource:");
sb.append(resource + ",");
}
if (type != null) {
sb.append("type:");
sb.append(type);
}
sb.append("}");
return sb.toString();
}
class ContainerResourceNestedImpl
extends V2beta2ContainerResourceMetricStatusFluentImpl<
V2beta2MetricStatusFluent.ContainerResourceNested>
implements io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent
.ContainerResourceNested<
N>,
Nested {
ContainerResourceNestedImpl(V2beta2ContainerResourceMetricStatus item) {
this.builder = new V2beta2ContainerResourceMetricStatusBuilder(this, item);
}
ContainerResourceNestedImpl() {
this.builder =
new io.kubernetes.client.openapi.models.V2beta2ContainerResourceMetricStatusBuilder(this);
}
io.kubernetes.client.openapi.models.V2beta2ContainerResourceMetricStatusBuilder builder;
public N and() {
return (N) V2beta2MetricStatusFluentImpl.this.withContainerResource(builder.build());
}
public N endContainerResource() {
return and();
}
}
class ExternalNestedImpl
extends V2beta2ExternalMetricStatusFluentImpl>
implements io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ExternalNested,
io.kubernetes.client.fluent.Nested {
ExternalNestedImpl(V2beta2ExternalMetricStatus item) {
this.builder = new V2beta2ExternalMetricStatusBuilder(this, item);
}
ExternalNestedImpl() {
this.builder =
new io.kubernetes.client.openapi.models.V2beta2ExternalMetricStatusBuilder(this);
}
io.kubernetes.client.openapi.models.V2beta2ExternalMetricStatusBuilder builder;
public N and() {
return (N) V2beta2MetricStatusFluentImpl.this.withExternal(builder.build());
}
public N endExternal() {
return and();
}
}
class ObjectNestedImpl
extends V2beta2ObjectMetricStatusFluentImpl>
implements io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ObjectNested,
io.kubernetes.client.fluent.Nested {
ObjectNestedImpl(io.kubernetes.client.openapi.models.V2beta2ObjectMetricStatus item) {
this.builder = new V2beta2ObjectMetricStatusBuilder(this, item);
}
ObjectNestedImpl() {
this.builder = new io.kubernetes.client.openapi.models.V2beta2ObjectMetricStatusBuilder(this);
}
io.kubernetes.client.openapi.models.V2beta2ObjectMetricStatusBuilder builder;
public N and() {
return (N) V2beta2MetricStatusFluentImpl.this.withObject(builder.build());
}
public N endObject() {
return and();
}
}
class PodsNestedImpl
extends V2beta2PodsMetricStatusFluentImpl>
implements io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.PodsNested,
io.kubernetes.client.fluent.Nested {
PodsNestedImpl(V2beta2PodsMetricStatus item) {
this.builder = new V2beta2PodsMetricStatusBuilder(this, item);
}
PodsNestedImpl() {
this.builder = new io.kubernetes.client.openapi.models.V2beta2PodsMetricStatusBuilder(this);
}
io.kubernetes.client.openapi.models.V2beta2PodsMetricStatusBuilder builder;
public N and() {
return (N) V2beta2MetricStatusFluentImpl.this.withPods(builder.build());
}
public N endPods() {
return and();
}
}
class ResourceNestedImpl
extends V2beta2ResourceMetricStatusFluentImpl>
implements io.kubernetes.client.openapi.models.V2beta2MetricStatusFluent.ResourceNested,
io.kubernetes.client.fluent.Nested {
ResourceNestedImpl(io.kubernetes.client.openapi.models.V2beta2ResourceMetricStatus item) {
this.builder = new V2beta2ResourceMetricStatusBuilder(this, item);
}
ResourceNestedImpl() {
this.builder =
new io.kubernetes.client.openapi.models.V2beta2ResourceMetricStatusBuilder(this);
}
io.kubernetes.client.openapi.models.V2beta2ResourceMetricStatusBuilder builder;
public N and() {
return (N) V2beta2MetricStatusFluentImpl.this.withResource(builder.build());
}
public N endResource() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy