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

io.kubernetes.client.openapi.models.V1AzureFilePersistentVolumeSourceFluentImpl 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;

/** Generated */
@SuppressWarnings(value = "unchecked")
public class V1AzureFilePersistentVolumeSourceFluentImpl<
        A extends V1AzureFilePersistentVolumeSourceFluent>
    extends BaseFluent implements V1AzureFilePersistentVolumeSourceFluent {
  public V1AzureFilePersistentVolumeSourceFluentImpl() {}

  public V1AzureFilePersistentVolumeSourceFluentImpl(
      io.kubernetes.client.openapi.models.V1AzureFilePersistentVolumeSource instance) {
    this.withReadOnly(instance.getReadOnly());

    this.withSecretName(instance.getSecretName());

    this.withSecretNamespace(instance.getSecretNamespace());

    this.withShareName(instance.getShareName());
  }

  private Boolean readOnly;
  private String secretName;
  private java.lang.String secretNamespace;
  private java.lang.String shareName;

  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;
  }

  public java.lang.String getSecretName() {
    return this.secretName;
  }

  public A withSecretName(java.lang.String secretName) {
    this.secretName = secretName;
    return (A) this;
  }

  public java.lang.Boolean hasSecretName() {
    return this.secretName != null;
  }

  public java.lang.String getSecretNamespace() {
    return this.secretNamespace;
  }

  public A withSecretNamespace(java.lang.String secretNamespace) {
    this.secretNamespace = secretNamespace;
    return (A) this;
  }

  public java.lang.Boolean hasSecretNamespace() {
    return this.secretNamespace != null;
  }

  public java.lang.String getShareName() {
    return this.shareName;
  }

  public A withShareName(java.lang.String shareName) {
    this.shareName = shareName;
    return (A) this;
  }

  public java.lang.Boolean hasShareName() {
    return this.shareName != null;
  }

  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    V1AzureFilePersistentVolumeSourceFluentImpl that =
        (V1AzureFilePersistentVolumeSourceFluentImpl) o;
    if (readOnly != null ? !readOnly.equals(that.readOnly) : that.readOnly != null) return false;
    if (secretName != null ? !secretName.equals(that.secretName) : that.secretName != null)
      return false;
    if (secretNamespace != null
        ? !secretNamespace.equals(that.secretNamespace)
        : that.secretNamespace != null) return false;
    if (shareName != null ? !shareName.equals(that.shareName) : that.shareName != null)
      return false;
    return true;
  }

  public int hashCode() {
    return java.util.Objects.hash(
        readOnly, secretName, secretNamespace, shareName, super.hashCode());
  }

  public java.lang.String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (readOnly != null) {
      sb.append("readOnly:");
      sb.append(readOnly + ",");
    }
    if (secretName != null) {
      sb.append("secretName:");
      sb.append(secretName + ",");
    }
    if (secretNamespace != null) {
      sb.append("secretNamespace:");
      sb.append(secretNamespace + ",");
    }
    if (shareName != null) {
      sb.append("shareName:");
      sb.append(shareName);
    }
    sb.append("}");
    return sb.toString();
  }

  public A withReadOnly() {
    return withReadOnly(true);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy