com.google.api.services.dataproc.model.Quantiles 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.dataproc.model;
/**
* Quantile metrics data related to Tasks. Units can be seconds, bytes, milliseconds, etc depending
* on the message type.
*
* 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 Dataproc 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 Quantiles extends com.google.api.client.json.GenericJson {
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long count;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long maximum;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long minimum;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long percentile25;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long percentile50;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long percentile75;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long sum;
/**
* @return value or {@code null} for none
*/
public java.lang.Long getCount() {
return count;
}
/**
* @param count count or {@code null} for none
*/
public Quantiles setCount(java.lang.Long count) {
this.count = count;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Long getMaximum() {
return maximum;
}
/**
* @param maximum maximum or {@code null} for none
*/
public Quantiles setMaximum(java.lang.Long maximum) {
this.maximum = maximum;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Long getMinimum() {
return minimum;
}
/**
* @param minimum minimum or {@code null} for none
*/
public Quantiles setMinimum(java.lang.Long minimum) {
this.minimum = minimum;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Long getPercentile25() {
return percentile25;
}
/**
* @param percentile25 percentile25 or {@code null} for none
*/
public Quantiles setPercentile25(java.lang.Long percentile25) {
this.percentile25 = percentile25;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Long getPercentile50() {
return percentile50;
}
/**
* @param percentile50 percentile50 or {@code null} for none
*/
public Quantiles setPercentile50(java.lang.Long percentile50) {
this.percentile50 = percentile50;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Long getPercentile75() {
return percentile75;
}
/**
* @param percentile75 percentile75 or {@code null} for none
*/
public Quantiles setPercentile75(java.lang.Long percentile75) {
this.percentile75 = percentile75;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Long getSum() {
return sum;
}
/**
* @param sum sum or {@code null} for none
*/
public Quantiles setSum(java.lang.Long sum) {
this.sum = sum;
return this;
}
@Override
public Quantiles set(String fieldName, Object value) {
return (Quantiles) super.set(fieldName, value);
}
@Override
public Quantiles clone() {
return (Quantiles) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy