com.google.api.services.dataproc.model.ShuffleReadQuantileMetrics Maven / Gradle / Ivy
The newest version!
/*
* 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;
/**
* Model definition for ShuffleReadQuantileMetrics.
*
* 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 ShuffleReadQuantileMetrics extends com.google.api.client.json.GenericJson {
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Quantiles fetchWaitTimeMillis;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Quantiles localBlocksFetched;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Quantiles readBytes;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Quantiles readRecords;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Quantiles remoteBlocksFetched;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Quantiles remoteBytesRead;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Quantiles remoteBytesReadToDisk;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Quantiles remoteReqsDuration;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ShufflePushReadQuantileMetrics shufflePushReadMetrics;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Quantiles totalBlocksFetched;
/**
* @return value or {@code null} for none
*/
public Quantiles getFetchWaitTimeMillis() {
return fetchWaitTimeMillis;
}
/**
* @param fetchWaitTimeMillis fetchWaitTimeMillis or {@code null} for none
*/
public ShuffleReadQuantileMetrics setFetchWaitTimeMillis(Quantiles fetchWaitTimeMillis) {
this.fetchWaitTimeMillis = fetchWaitTimeMillis;
return this;
}
/**
* @return value or {@code null} for none
*/
public Quantiles getLocalBlocksFetched() {
return localBlocksFetched;
}
/**
* @param localBlocksFetched localBlocksFetched or {@code null} for none
*/
public ShuffleReadQuantileMetrics setLocalBlocksFetched(Quantiles localBlocksFetched) {
this.localBlocksFetched = localBlocksFetched;
return this;
}
/**
* @return value or {@code null} for none
*/
public Quantiles getReadBytes() {
return readBytes;
}
/**
* @param readBytes readBytes or {@code null} for none
*/
public ShuffleReadQuantileMetrics setReadBytes(Quantiles readBytes) {
this.readBytes = readBytes;
return this;
}
/**
* @return value or {@code null} for none
*/
public Quantiles getReadRecords() {
return readRecords;
}
/**
* @param readRecords readRecords or {@code null} for none
*/
public ShuffleReadQuantileMetrics setReadRecords(Quantiles readRecords) {
this.readRecords = readRecords;
return this;
}
/**
* @return value or {@code null} for none
*/
public Quantiles getRemoteBlocksFetched() {
return remoteBlocksFetched;
}
/**
* @param remoteBlocksFetched remoteBlocksFetched or {@code null} for none
*/
public ShuffleReadQuantileMetrics setRemoteBlocksFetched(Quantiles remoteBlocksFetched) {
this.remoteBlocksFetched = remoteBlocksFetched;
return this;
}
/**
* @return value or {@code null} for none
*/
public Quantiles getRemoteBytesRead() {
return remoteBytesRead;
}
/**
* @param remoteBytesRead remoteBytesRead or {@code null} for none
*/
public ShuffleReadQuantileMetrics setRemoteBytesRead(Quantiles remoteBytesRead) {
this.remoteBytesRead = remoteBytesRead;
return this;
}
/**
* @return value or {@code null} for none
*/
public Quantiles getRemoteBytesReadToDisk() {
return remoteBytesReadToDisk;
}
/**
* @param remoteBytesReadToDisk remoteBytesReadToDisk or {@code null} for none
*/
public ShuffleReadQuantileMetrics setRemoteBytesReadToDisk(Quantiles remoteBytesReadToDisk) {
this.remoteBytesReadToDisk = remoteBytesReadToDisk;
return this;
}
/**
* @return value or {@code null} for none
*/
public Quantiles getRemoteReqsDuration() {
return remoteReqsDuration;
}
/**
* @param remoteReqsDuration remoteReqsDuration or {@code null} for none
*/
public ShuffleReadQuantileMetrics setRemoteReqsDuration(Quantiles remoteReqsDuration) {
this.remoteReqsDuration = remoteReqsDuration;
return this;
}
/**
* @return value or {@code null} for none
*/
public ShufflePushReadQuantileMetrics getShufflePushReadMetrics() {
return shufflePushReadMetrics;
}
/**
* @param shufflePushReadMetrics shufflePushReadMetrics or {@code null} for none
*/
public ShuffleReadQuantileMetrics setShufflePushReadMetrics(ShufflePushReadQuantileMetrics shufflePushReadMetrics) {
this.shufflePushReadMetrics = shufflePushReadMetrics;
return this;
}
/**
* @return value or {@code null} for none
*/
public Quantiles getTotalBlocksFetched() {
return totalBlocksFetched;
}
/**
* @param totalBlocksFetched totalBlocksFetched or {@code null} for none
*/
public ShuffleReadQuantileMetrics setTotalBlocksFetched(Quantiles totalBlocksFetched) {
this.totalBlocksFetched = totalBlocksFetched;
return this;
}
@Override
public ShuffleReadQuantileMetrics set(String fieldName, Object value) {
return (ShuffleReadQuantileMetrics) super.set(fieldName, value);
}
@Override
public ShuffleReadQuantileMetrics clone() {
return (ShuffleReadQuantileMetrics) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy