
software.amazon.awssdk.services.batch.model.AttemptContainerDetail Maven / Gradle / Ivy
/*
* Copyright 2014-2019 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.batch.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collection;
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.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
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.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* An object representing the details of a container that is part of a job attempt.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class AttemptContainerDetail implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField CONTAINER_INSTANCE_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(AttemptContainerDetail::containerInstanceArn)).setter(setter(Builder::containerInstanceArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("containerInstanceArn").build())
.build();
private static final SdkField TASK_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(AttemptContainerDetail::taskArn)).setter(setter(Builder::taskArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("taskArn").build()).build();
private static final SdkField EXIT_CODE_FIELD = SdkField. builder(MarshallingType.INTEGER)
.getter(getter(AttemptContainerDetail::exitCode)).setter(setter(Builder::exitCode))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("exitCode").build()).build();
private static final SdkField REASON_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(AttemptContainerDetail::reason)).setter(setter(Builder::reason))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("reason").build()).build();
private static final SdkField LOG_STREAM_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(AttemptContainerDetail::logStreamName)).setter(setter(Builder::logStreamName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("logStreamName").build()).build();
private static final SdkField> NETWORK_INTERFACES_FIELD = SdkField
.> builder(MarshallingType.LIST)
.getter(getter(AttemptContainerDetail::networkInterfaces))
.setter(setter(Builder::networkInterfaces))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("networkInterfaces").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.SDK_POJO)
.constructor(NetworkInterface::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CONTAINER_INSTANCE_ARN_FIELD,
TASK_ARN_FIELD, EXIT_CODE_FIELD, REASON_FIELD, LOG_STREAM_NAME_FIELD, NETWORK_INTERFACES_FIELD));
private static final long serialVersionUID = 1L;
private final String containerInstanceArn;
private final String taskArn;
private final Integer exitCode;
private final String reason;
private final String logStreamName;
private final List networkInterfaces;
private AttemptContainerDetail(BuilderImpl builder) {
this.containerInstanceArn = builder.containerInstanceArn;
this.taskArn = builder.taskArn;
this.exitCode = builder.exitCode;
this.reason = builder.reason;
this.logStreamName = builder.logStreamName;
this.networkInterfaces = builder.networkInterfaces;
}
/**
*
* The Amazon Resource Name (ARN) of the Amazon ECS container instance that hosts the job attempt.
*
*
* @return The Amazon Resource Name (ARN) of the Amazon ECS container instance that hosts the job attempt.
*/
public String containerInstanceArn() {
return containerInstanceArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Amazon ECS task that is associated with the job attempt. Each container
* attempt receives a task ARN when they reach the STARTING
status.
*
*
* @return The Amazon Resource Name (ARN) of the Amazon ECS task that is associated with the job attempt. Each
* container attempt receives a task ARN when they reach the STARTING
status.
*/
public String taskArn() {
return taskArn;
}
/**
*
* The exit code for the job attempt. A non-zero exit code is considered a failure.
*
*
* @return The exit code for the job attempt. A non-zero exit code is considered a failure.
*/
public Integer exitCode() {
return exitCode;
}
/**
*
* A short (255 max characters) human-readable string to provide additional details about a running or stopped
* container.
*
*
* @return A short (255 max characters) human-readable string to provide additional details about a running or
* stopped container.
*/
public String reason() {
return reason;
}
/**
*
* The name of the CloudWatch Logs log stream associated with the container. The log group for AWS Batch jobs is
* /aws/batch/job
. Each container attempt receives a log stream name when they reach the
* RUNNING
status.
*
*
* @return The name of the CloudWatch Logs log stream associated with the container. The log group for AWS Batch
* jobs is /aws/batch/job
. Each container attempt receives a log stream name when they reach
* the RUNNING
status.
*/
public String logStreamName() {
return logStreamName;
}
/**
*
* The network interfaces associated with the job attempt.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* @return The network interfaces associated with the job attempt.
*/
public List networkInterfaces() {
return networkInterfaces;
}
@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 int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(containerInstanceArn());
hashCode = 31 * hashCode + Objects.hashCode(taskArn());
hashCode = 31 * hashCode + Objects.hashCode(exitCode());
hashCode = 31 * hashCode + Objects.hashCode(reason());
hashCode = 31 * hashCode + Objects.hashCode(logStreamName());
hashCode = 31 * hashCode + Objects.hashCode(networkInterfaces());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof AttemptContainerDetail)) {
return false;
}
AttemptContainerDetail other = (AttemptContainerDetail) obj;
return Objects.equals(containerInstanceArn(), other.containerInstanceArn()) && Objects.equals(taskArn(), other.taskArn())
&& Objects.equals(exitCode(), other.exitCode()) && Objects.equals(reason(), other.reason())
&& Objects.equals(logStreamName(), other.logStreamName())
&& Objects.equals(networkInterfaces(), other.networkInterfaces());
}
/**
* 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 String toString() {
return ToString.builder("AttemptContainerDetail").add("ContainerInstanceArn", containerInstanceArn())
.add("TaskArn", taskArn()).add("ExitCode", exitCode()).add("Reason", reason())
.add("LogStreamName", logStreamName()).add("NetworkInterfaces", networkInterfaces()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "containerInstanceArn":
return Optional.ofNullable(clazz.cast(containerInstanceArn()));
case "taskArn":
return Optional.ofNullable(clazz.cast(taskArn()));
case "exitCode":
return Optional.ofNullable(clazz.cast(exitCode()));
case "reason":
return Optional.ofNullable(clazz.cast(reason()));
case "logStreamName":
return Optional.ofNullable(clazz.cast(logStreamName()));
case "networkInterfaces":
return Optional.ofNullable(clazz.cast(networkInterfaces()));
default:
return Optional.empty();
}
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
private static Function