All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 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 getter(Function g) { return obj -> g.apply((LastDeploymentInfo) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The unique ID of a deployment. *

* * @param deploymentId * The unique ID of a deployment. * @return Returns a reference to this object so that method calls can be chained together. */ Builder deploymentId(String deploymentId); /** *

* The status of the most recent deployment. *

* * @param status * The status of the most recent deployment. * @see DeploymentStatus * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentStatus */ Builder status(String status); /** *

* The status of the most recent deployment. *

* * @param status * The status of the most recent deployment. * @see DeploymentStatus * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentStatus */ Builder status(DeploymentStatus status); /** *

* A timestamp that indicates when the most recent deployment to the deployment group was complete. *

* * @param endTime * A timestamp that indicates when the most recent deployment to the deployment group was complete. * @return Returns a reference to this object so that method calls can be chained together. */ Builder endTime(Instant endTime); /** *

* A timestamp that indicates when the most recent deployment to the deployment group started. *

* * @param createTime * A timestamp that indicates when the most recent deployment to the deployment group started. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createTime(Instant createTime); } static final class BuilderImpl implements Builder { private String deploymentId; private String status; private Instant endTime; private Instant createTime; private BuilderImpl() { } private BuilderImpl(LastDeploymentInfo model) { deploymentId(model.deploymentId); status(model.status); endTime(model.endTime); createTime(model.createTime); } public final String getDeploymentId() { return deploymentId; } @Override public final Builder deploymentId(String deploymentId) { this.deploymentId = deploymentId; return this; } public final void setDeploymentId(String deploymentId) { this.deploymentId = deploymentId; } public final String getStatusAsString() { return status; } @Override public final Builder status(String status) { this.status = status; return this; } @Override public final Builder status(DeploymentStatus status) { this.status(status.toString()); return this; } public final void setStatus(String status) { this.status = status; } public final Instant getEndTime() { return endTime; } @Override public final Builder endTime(Instant endTime) { this.endTime = endTime; return this; } public final void setEndTime(Instant endTime) { this.endTime = endTime; } public final Instant getCreateTime() { return createTime; } @Override public final Builder createTime(Instant createTime) { this.createTime = createTime; return this; } public final void setCreateTime(Instant createTime) { this.createTime = createTime; } @Override public LastDeploymentInfo build() { return new LastDeploymentInfo(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy