com.google.api.services.file.v1.model.PerformanceLimits Maven / Gradle / Ivy
/*
* 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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.file.v1.model;
/**
* The enforced performance limits, calculated from the instance's performance configuration.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Filestore API. For a detailed explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class PerformanceLimits extends com.google.api.client.json.GenericJson {
/**
* Output only. The max read IOPS.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long maxReadIops;
/**
* Output only. The max read throughput in bytes per second.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long maxReadThroughputBps;
/**
* Output only. The max write IOPS.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long maxWriteIops;
/**
* Output only. The max write throughput in bytes per second.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long maxWriteThroughputBps;
/**
* Output only. The max read IOPS.
* @return value or {@code null} for none
*/
public java.lang.Long getMaxReadIops() {
return maxReadIops;
}
/**
* Output only. The max read IOPS.
* @param maxReadIops maxReadIops or {@code null} for none
*/
public PerformanceLimits setMaxReadIops(java.lang.Long maxReadIops) {
this.maxReadIops = maxReadIops;
return this;
}
/**
* Output only. The max read throughput in bytes per second.
* @return value or {@code null} for none
*/
public java.lang.Long getMaxReadThroughputBps() {
return maxReadThroughputBps;
}
/**
* Output only. The max read throughput in bytes per second.
* @param maxReadThroughputBps maxReadThroughputBps or {@code null} for none
*/
public PerformanceLimits setMaxReadThroughputBps(java.lang.Long maxReadThroughputBps) {
this.maxReadThroughputBps = maxReadThroughputBps;
return this;
}
/**
* Output only. The max write IOPS.
* @return value or {@code null} for none
*/
public java.lang.Long getMaxWriteIops() {
return maxWriteIops;
}
/**
* Output only. The max write IOPS.
* @param maxWriteIops maxWriteIops or {@code null} for none
*/
public PerformanceLimits setMaxWriteIops(java.lang.Long maxWriteIops) {
this.maxWriteIops = maxWriteIops;
return this;
}
/**
* Output only. The max write throughput in bytes per second.
* @return value or {@code null} for none
*/
public java.lang.Long getMaxWriteThroughputBps() {
return maxWriteThroughputBps;
}
/**
* Output only. The max write throughput in bytes per second.
* @param maxWriteThroughputBps maxWriteThroughputBps or {@code null} for none
*/
public PerformanceLimits setMaxWriteThroughputBps(java.lang.Long maxWriteThroughputBps) {
this.maxWriteThroughputBps = maxWriteThroughputBps;
return this;
}
@Override
public PerformanceLimits set(String fieldName, Object value) {
return (PerformanceLimits) super.set(fieldName, value);
}
@Override
public PerformanceLimits clone() {
return (PerformanceLimits) super.clone();
}
}