All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluentImpl Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
/*
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 V1beta1RuntimeClassFluentImpl>
    extends BaseFluent implements V1beta1RuntimeClassFluent {
  public V1beta1RuntimeClassFluentImpl() {}

  public V1beta1RuntimeClassFluentImpl(
      io.kubernetes.client.openapi.models.V1beta1RuntimeClass instance) {
    this.withApiVersion(instance.getApiVersion());

    this.withHandler(instance.getHandler());

    this.withKind(instance.getKind());

    this.withMetadata(instance.getMetadata());

    this.withOverhead(instance.getOverhead());

    this.withScheduling(instance.getScheduling());
  }

  private String apiVersion;
  private java.lang.String handler;
  private java.lang.String kind;
  private V1ObjectMetaBuilder metadata;
  private V1beta1OverheadBuilder overhead;
  private V1beta1SchedulingBuilder scheduling;

  public java.lang.String getApiVersion() {
    return this.apiVersion;
  }

  public A withApiVersion(java.lang.String apiVersion) {
    this.apiVersion = apiVersion;
    return (A) this;
  }

  public Boolean hasApiVersion() {
    return this.apiVersion != null;
  }

  public java.lang.String getHandler() {
    return this.handler;
  }

  public A withHandler(java.lang.String handler) {
    this.handler = handler;
    return (A) this;
  }

  public java.lang.Boolean hasHandler() {
    return this.handler != null;
  }

  public java.lang.String getKind() {
    return this.kind;
  }

  public A withKind(java.lang.String kind) {
    this.kind = kind;
    return (A) this;
  }

  public java.lang.Boolean hasKind() {
    return this.kind != null;
  }

  /**
   * This method has been deprecated, please use method buildMetadata instead.
   *
   * @return The buildable object.
   */
  @Deprecated
  public io.kubernetes.client.openapi.models.V1ObjectMeta getMetadata() {
    return this.metadata != null ? this.metadata.build() : null;
  }

  public io.kubernetes.client.openapi.models.V1ObjectMeta buildMetadata() {
    return this.metadata != null ? this.metadata.build() : null;
  }

  public A withMetadata(io.kubernetes.client.openapi.models.V1ObjectMeta metadata) {
    _visitables.get("metadata").remove(this.metadata);
    if (metadata != null) {
      this.metadata = new V1ObjectMetaBuilder(metadata);
      _visitables.get("metadata").add(this.metadata);
    }
    return (A) this;
  }

  public java.lang.Boolean hasMetadata() {
    return this.metadata != null;
  }

  public V1beta1RuntimeClassFluent.MetadataNested withNewMetadata() {
    return new V1beta1RuntimeClassFluentImpl.MetadataNestedImpl();
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.MetadataNested
      withNewMetadataLike(io.kubernetes.client.openapi.models.V1ObjectMeta item) {
    return new V1beta1RuntimeClassFluentImpl.MetadataNestedImpl(item);
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.MetadataNested
      editMetadata() {
    return withNewMetadataLike(getMetadata());
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.MetadataNested
      editOrNewMetadata() {
    return withNewMetadataLike(
        getMetadata() != null
            ? getMetadata()
            : new io.kubernetes.client.openapi.models.V1ObjectMetaBuilder().build());
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.MetadataNested
      editOrNewMetadataLike(io.kubernetes.client.openapi.models.V1ObjectMeta item) {
    return withNewMetadataLike(getMetadata() != null ? getMetadata() : item);
  }

  /**
   * This method has been deprecated, please use method buildOverhead instead.
   *
   * @return The buildable object.
   */
  @java.lang.Deprecated
  public V1beta1Overhead getOverhead() {
    return this.overhead != null ? this.overhead.build() : null;
  }

  public io.kubernetes.client.openapi.models.V1beta1Overhead buildOverhead() {
    return this.overhead != null ? this.overhead.build() : null;
  }

  public A withOverhead(io.kubernetes.client.openapi.models.V1beta1Overhead overhead) {
    _visitables.get("overhead").remove(this.overhead);
    if (overhead != null) {
      this.overhead = new io.kubernetes.client.openapi.models.V1beta1OverheadBuilder(overhead);
      _visitables.get("overhead").add(this.overhead);
    }
    return (A) this;
  }

  public java.lang.Boolean hasOverhead() {
    return this.overhead != null;
  }

  public V1beta1RuntimeClassFluent.OverheadNested withNewOverhead() {
    return new V1beta1RuntimeClassFluentImpl.OverheadNestedImpl();
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.OverheadNested
      withNewOverheadLike(io.kubernetes.client.openapi.models.V1beta1Overhead item) {
    return new io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluentImpl.OverheadNestedImpl(
        item);
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.OverheadNested
      editOverhead() {
    return withNewOverheadLike(getOverhead());
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.OverheadNested
      editOrNewOverhead() {
    return withNewOverheadLike(
        getOverhead() != null
            ? getOverhead()
            : new io.kubernetes.client.openapi.models.V1beta1OverheadBuilder().build());
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.OverheadNested
      editOrNewOverheadLike(io.kubernetes.client.openapi.models.V1beta1Overhead item) {
    return withNewOverheadLike(getOverhead() != null ? getOverhead() : item);
  }

  /**
   * This method has been deprecated, please use method buildScheduling instead.
   *
   * @return The buildable object.
   */
  @java.lang.Deprecated
  public io.kubernetes.client.openapi.models.V1beta1Scheduling getScheduling() {
    return this.scheduling != null ? this.scheduling.build() : null;
  }

  public io.kubernetes.client.openapi.models.V1beta1Scheduling buildScheduling() {
    return this.scheduling != null ? this.scheduling.build() : null;
  }

  public A withScheduling(io.kubernetes.client.openapi.models.V1beta1Scheduling scheduling) {
    _visitables.get("scheduling").remove(this.scheduling);
    if (scheduling != null) {
      this.scheduling = new V1beta1SchedulingBuilder(scheduling);
      _visitables.get("scheduling").add(this.scheduling);
    }
    return (A) this;
  }

  public java.lang.Boolean hasScheduling() {
    return this.scheduling != null;
  }

  public V1beta1RuntimeClassFluent.SchedulingNested withNewScheduling() {
    return new V1beta1RuntimeClassFluentImpl.SchedulingNestedImpl();
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.SchedulingNested
      withNewSchedulingLike(io.kubernetes.client.openapi.models.V1beta1Scheduling item) {
    return new io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluentImpl
        .SchedulingNestedImpl(item);
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.SchedulingNested
      editScheduling() {
    return withNewSchedulingLike(getScheduling());
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.SchedulingNested
      editOrNewScheduling() {
    return withNewSchedulingLike(
        getScheduling() != null
            ? getScheduling()
            : new io.kubernetes.client.openapi.models.V1beta1SchedulingBuilder().build());
  }

  public io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.SchedulingNested
      editOrNewSchedulingLike(io.kubernetes.client.openapi.models.V1beta1Scheduling item) {
    return withNewSchedulingLike(getScheduling() != null ? getScheduling() : item);
  }

  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    V1beta1RuntimeClassFluentImpl that = (V1beta1RuntimeClassFluentImpl) o;
    if (apiVersion != null ? !apiVersion.equals(that.apiVersion) : that.apiVersion != null)
      return false;
    if (handler != null ? !handler.equals(that.handler) : that.handler != null) return false;
    if (kind != null ? !kind.equals(that.kind) : that.kind != null) return false;
    if (metadata != null ? !metadata.equals(that.metadata) : that.metadata != null) return false;
    if (overhead != null ? !overhead.equals(that.overhead) : that.overhead != null) return false;
    if (scheduling != null ? !scheduling.equals(that.scheduling) : that.scheduling != null)
      return false;
    return true;
  }

  public int hashCode() {
    return java.util.Objects.hash(
        apiVersion, handler, kind, metadata, overhead, scheduling, super.hashCode());
  }

  public java.lang.String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (apiVersion != null) {
      sb.append("apiVersion:");
      sb.append(apiVersion + ",");
    }
    if (handler != null) {
      sb.append("handler:");
      sb.append(handler + ",");
    }
    if (kind != null) {
      sb.append("kind:");
      sb.append(kind + ",");
    }
    if (metadata != null) {
      sb.append("metadata:");
      sb.append(metadata + ",");
    }
    if (overhead != null) {
      sb.append("overhead:");
      sb.append(overhead + ",");
    }
    if (scheduling != null) {
      sb.append("scheduling:");
      sb.append(scheduling);
    }
    sb.append("}");
    return sb.toString();
  }

  class MetadataNestedImpl
      extends V1ObjectMetaFluentImpl>
      implements io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.MetadataNested,
          Nested {
    MetadataNestedImpl(V1ObjectMeta item) {
      this.builder = new V1ObjectMetaBuilder(this, item);
    }

    MetadataNestedImpl() {
      this.builder = new io.kubernetes.client.openapi.models.V1ObjectMetaBuilder(this);
    }

    io.kubernetes.client.openapi.models.V1ObjectMetaBuilder builder;

    public N and() {
      return (N) V1beta1RuntimeClassFluentImpl.this.withMetadata(builder.build());
    }

    public N endMetadata() {
      return and();
    }
  }

  class OverheadNestedImpl
      extends V1beta1OverheadFluentImpl>
      implements io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.OverheadNested,
          io.kubernetes.client.fluent.Nested {
    OverheadNestedImpl(V1beta1Overhead item) {
      this.builder = new V1beta1OverheadBuilder(this, item);
    }

    OverheadNestedImpl() {
      this.builder = new io.kubernetes.client.openapi.models.V1beta1OverheadBuilder(this);
    }

    io.kubernetes.client.openapi.models.V1beta1OverheadBuilder builder;

    public N and() {
      return (N) V1beta1RuntimeClassFluentImpl.this.withOverhead(builder.build());
    }

    public N endOverhead() {
      return and();
    }
  }

  class SchedulingNestedImpl
      extends V1beta1SchedulingFluentImpl>
      implements io.kubernetes.client.openapi.models.V1beta1RuntimeClassFluent.SchedulingNested,
          io.kubernetes.client.fluent.Nested {
    SchedulingNestedImpl(V1beta1Scheduling item) {
      this.builder = new V1beta1SchedulingBuilder(this, item);
    }

    SchedulingNestedImpl() {
      this.builder = new io.kubernetes.client.openapi.models.V1beta1SchedulingBuilder(this);
    }

    io.kubernetes.client.openapi.models.V1beta1SchedulingBuilder builder;

    public N and() {
      return (N) V1beta1RuntimeClassFluentImpl.this.withScheduling(builder.build());
    }

    public N endScheduling() {
      return and();
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy