software.amazon.awssdk.services.timestreamwrite.model.BatchLoadProgressReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timestreamwrite Show documentation
Show all versions of timestreamwrite Show documentation
The AWS Java SDK for Timestream Write module holds the client classes that are used for
communicating with Timestream Write.
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 software.amazon.awssdk.services.timestreamwrite.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Details about the progress of a batch load task.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class BatchLoadProgressReport implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField RECORDS_PROCESSED_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("RecordsProcessed").getter(getter(BatchLoadProgressReport::recordsProcessed))
.setter(setter(Builder::recordsProcessed))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RecordsProcessed").build()).build();
private static final SdkField RECORDS_INGESTED_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("RecordsIngested").getter(getter(BatchLoadProgressReport::recordsIngested))
.setter(setter(Builder::recordsIngested))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RecordsIngested").build()).build();
private static final SdkField PARSE_FAILURES_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("ParseFailures").getter(getter(BatchLoadProgressReport::parseFailures))
.setter(setter(Builder::parseFailures))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ParseFailures").build()).build();
private static final SdkField RECORD_INGESTION_FAILURES_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("RecordIngestionFailures").getter(getter(BatchLoadProgressReport::recordIngestionFailures))
.setter(setter(Builder::recordIngestionFailures))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RecordIngestionFailures").build())
.build();
private static final SdkField FILE_FAILURES_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("FileFailures").getter(getter(BatchLoadProgressReport::fileFailures))
.setter(setter(Builder::fileFailures))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("FileFailures").build()).build();
private static final SdkField BYTES_METERED_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("BytesMetered").getter(getter(BatchLoadProgressReport::bytesMetered))
.setter(setter(Builder::bytesMetered))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("BytesMetered").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(RECORDS_PROCESSED_FIELD,
RECORDS_INGESTED_FIELD, PARSE_FAILURES_FIELD, RECORD_INGESTION_FAILURES_FIELD, FILE_FAILURES_FIELD,
BYTES_METERED_FIELD));
private static final long serialVersionUID = 1L;
private final Long recordsProcessed;
private final Long recordsIngested;
private final Long parseFailures;
private final Long recordIngestionFailures;
private final Long fileFailures;
private final Long bytesMetered;
private BatchLoadProgressReport(BuilderImpl builder) {
this.recordsProcessed = builder.recordsProcessed;
this.recordsIngested = builder.recordsIngested;
this.parseFailures = builder.parseFailures;
this.recordIngestionFailures = builder.recordIngestionFailures;
this.fileFailures = builder.fileFailures;
this.bytesMetered = builder.bytesMetered;
}
/**
*
*
* @return
*/
public final Long recordsProcessed() {
return recordsProcessed;
}
/**
*
*
* @return
*/
public final Long recordsIngested() {
return recordsIngested;
}
/**
*
*
* @return
*/
public final Long parseFailures() {
return parseFailures;
}
/**
*
*
* @return
*/
public final Long recordIngestionFailures() {
return recordIngestionFailures;
}
/**
*
*
* @return
*/
public final Long fileFailures() {
return fileFailures;
}
/**
*
*
* @return
*/
public final Long bytesMetered() {
return bytesMetered;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(recordsProcessed());
hashCode = 31 * hashCode + Objects.hashCode(recordsIngested());
hashCode = 31 * hashCode + Objects.hashCode(parseFailures());
hashCode = 31 * hashCode + Objects.hashCode(recordIngestionFailures());
hashCode = 31 * hashCode + Objects.hashCode(fileFailures());
hashCode = 31 * hashCode + Objects.hashCode(bytesMetered());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof BatchLoadProgressReport)) {
return false;
}
BatchLoadProgressReport other = (BatchLoadProgressReport) obj;
return Objects.equals(recordsProcessed(), other.recordsProcessed())
&& Objects.equals(recordsIngested(), other.recordsIngested())
&& Objects.equals(parseFailures(), other.parseFailures())
&& Objects.equals(recordIngestionFailures(), other.recordIngestionFailures())
&& Objects.equals(fileFailures(), other.fileFailures()) && Objects.equals(bytesMetered(), other.bytesMetered());
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public final String toString() {
return ToString.builder("BatchLoadProgressReport").add("RecordsProcessed", recordsProcessed())
.add("RecordsIngested", recordsIngested()).add("ParseFailures", parseFailures())
.add("RecordIngestionFailures", recordIngestionFailures()).add("FileFailures", fileFailures())
.add("BytesMetered", bytesMetered()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "RecordsProcessed":
return Optional.ofNullable(clazz.cast(recordsProcessed()));
case "RecordsIngested":
return Optional.ofNullable(clazz.cast(recordsIngested()));
case "ParseFailures":
return Optional.ofNullable(clazz.cast(parseFailures()));
case "RecordIngestionFailures":
return Optional.ofNullable(clazz.cast(recordIngestionFailures()));
case "FileFailures":
return Optional.ofNullable(clazz.cast(fileFailures()));
case "BytesMetered":
return Optional.ofNullable(clazz.cast(bytesMetered()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function