
io.kubernetes.client.models.V1AzureFileVolumeSource Maven / Gradle / Ivy
/*
* Kubernetes
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: v1.11.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.kubernetes.client.models;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
*/
@ApiModel(description = "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.")
public class V1AzureFileVolumeSource {
@SerializedName("readOnly")
private Boolean readOnly = null;
@SerializedName("secretName")
private String secretName = null;
@SerializedName("shareName")
private String shareName = null;
public V1AzureFileVolumeSource readOnly(Boolean readOnly) {
this.readOnly = readOnly;
return this;
}
/**
* Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
* @return readOnly
**/
@ApiModelProperty(value = "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.")
public Boolean isReadOnly() {
return readOnly;
}
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
public V1AzureFileVolumeSource secretName(String secretName) {
this.secretName = secretName;
return this;
}
/**
* the name of secret that contains Azure Storage Account Name and Key
* @return secretName
**/
@ApiModelProperty(required = true, value = "the name of secret that contains Azure Storage Account Name and Key")
public String getSecretName() {
return secretName;
}
public void setSecretName(String secretName) {
this.secretName = secretName;
}
public V1AzureFileVolumeSource shareName(String shareName) {
this.shareName = shareName;
return this;
}
/**
* Share Name
* @return shareName
**/
@ApiModelProperty(required = true, value = "Share Name")
public String getShareName() {
return shareName;
}
public void setShareName(String shareName) {
this.shareName = shareName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1AzureFileVolumeSource v1AzureFileVolumeSource = (V1AzureFileVolumeSource) o;
return Objects.equals(this.readOnly, v1AzureFileVolumeSource.readOnly) &&
Objects.equals(this.secretName, v1AzureFileVolumeSource.secretName) &&
Objects.equals(this.shareName, v1AzureFileVolumeSource.shareName);
}
@Override
public int hashCode() {
return Objects.hash(readOnly, secretName, shareName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1AzureFileVolumeSource {\n");
sb.append(" readOnly: ").append(toIndentedString(readOnly)).append("\n");
sb.append(" secretName: ").append(toIndentedString(secretName)).append("\n");
sb.append(" shareName: ").append(toIndentedString(shareName)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy