
software.amazon.awssdk.services.codedeploy.model.LastDeploymentInfo 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.codedeploy.model;
import java.io.Serializable;
import java.time.Instant;
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;
/**
*
* Information about the most recent attempted or successful deployment to a deployment group.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class LastDeploymentInfo implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField DEPLOYMENT_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(LastDeploymentInfo::deploymentId)).setter(setter(Builder::deploymentId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("deploymentId").build()).build();
private static final SdkField STATUS_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(LastDeploymentInfo::statusAsString)).setter(setter(Builder::status))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("status").build()).build();
private static final SdkField END_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT)
.getter(getter(LastDeploymentInfo::endTime)).setter(setter(Builder::endTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("endTime").build()).build();
private static final SdkField CREATE_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT)
.getter(getter(LastDeploymentInfo::createTime)).setter(setter(Builder::createTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("createTime").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(DEPLOYMENT_ID_FIELD,
STATUS_FIELD, END_TIME_FIELD, CREATE_TIME_FIELD));
private static final long serialVersionUID = 1L;
private final String deploymentId;
private final String status;
private final Instant endTime;
private final Instant createTime;
private LastDeploymentInfo(BuilderImpl builder) {
this.deploymentId = builder.deploymentId;
this.status = builder.status;
this.endTime = builder.endTime;
this.createTime = builder.createTime;
}
/**
*
* The unique ID of a deployment.
*
*
* @return The unique ID of a deployment.
*/
public String deploymentId() {
return deploymentId;
}
/**
*
* The status of the most recent deployment.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link DeploymentStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #statusAsString}.
*
*
* @return The status of the most recent deployment.
* @see DeploymentStatus
*/
public DeploymentStatus status() {
return DeploymentStatus.fromValue(status);
}
/**
*
* The status of the most recent deployment.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link DeploymentStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #statusAsString}.
*
*
* @return The status of the most recent deployment.
* @see DeploymentStatus
*/
public String statusAsString() {
return status;
}
/**
*
* A timestamp that indicates when the most recent deployment to the deployment group was complete.
*
*
* @return A timestamp that indicates when the most recent deployment to the deployment group was complete.
*/
public Instant endTime() {
return endTime;
}
/**
*
* A timestamp that indicates when the most recent deployment to the deployment group started.
*
*
* @return A timestamp that indicates when the most recent deployment to the deployment group started.
*/
public Instant createTime() {
return createTime;
}
@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(deploymentId());
hashCode = 31 * hashCode + Objects.hashCode(statusAsString());
hashCode = 31 * hashCode + Objects.hashCode(endTime());
hashCode = 31 * hashCode + Objects.hashCode(createTime());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof LastDeploymentInfo)) {
return false;
}
LastDeploymentInfo other = (LastDeploymentInfo) obj;
return Objects.equals(deploymentId(), other.deploymentId()) && Objects.equals(statusAsString(), other.statusAsString())
&& Objects.equals(endTime(), other.endTime()) && Objects.equals(createTime(), other.createTime());
}
/**
* 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("LastDeploymentInfo").add("DeploymentId", deploymentId()).add("Status", statusAsString())
.add("EndTime", endTime()).add("CreateTime", createTime()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "deploymentId":
return Optional.ofNullable(clazz.cast(deploymentId()));
case "status":
return Optional.ofNullable(clazz.cast(statusAsString()));
case "endTime":
return Optional.ofNullable(clazz.cast(endTime()));
case "createTime":
return Optional.ofNullable(clazz.cast(createTime()));
default:
return Optional.empty();
}
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
private static Function