software.amazon.awssdk.services.opsworks.model.StackSummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opsworks Show documentation
Show all versions of opsworks Show documentation
The AWS Java SDK for AWS OpsWorks module holds the client classes that are used for communicating with
AWS OpsWorks Service
/*
* 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.opsworks.model;
import java.beans.Transient;
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.Consumer;
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;
/**
*
* Summarizes the number of layers, instances, and apps in a stack.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class StackSummary implements SdkPojo, Serializable, ToCopyableBuilder {
private static final SdkField STACK_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("StackId").getter(getter(StackSummary::stackId)).setter(setter(Builder::stackId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StackId").build()).build();
private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Name")
.getter(getter(StackSummary::name)).setter(setter(Builder::name))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Name").build()).build();
private static final SdkField ARN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Arn")
.getter(getter(StackSummary::arn)).setter(setter(Builder::arn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Arn").build()).build();
private static final SdkField LAYERS_COUNT_FIELD = SdkField. builder(MarshallingType.INTEGER)
.memberName("LayersCount").getter(getter(StackSummary::layersCount)).setter(setter(Builder::layersCount))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LayersCount").build()).build();
private static final SdkField APPS_COUNT_FIELD = SdkField. builder(MarshallingType.INTEGER)
.memberName("AppsCount").getter(getter(StackSummary::appsCount)).setter(setter(Builder::appsCount))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("AppsCount").build()).build();
private static final SdkField INSTANCES_COUNT_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("InstancesCount")
.getter(getter(StackSummary::instancesCount)).setter(setter(Builder::instancesCount))
.constructor(InstancesCount::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("InstancesCount").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(STACK_ID_FIELD, NAME_FIELD,
ARN_FIELD, LAYERS_COUNT_FIELD, APPS_COUNT_FIELD, INSTANCES_COUNT_FIELD));
private static final long serialVersionUID = 1L;
private final String stackId;
private final String name;
private final String arn;
private final Integer layersCount;
private final Integer appsCount;
private final InstancesCount instancesCount;
private StackSummary(BuilderImpl builder) {
this.stackId = builder.stackId;
this.name = builder.name;
this.arn = builder.arn;
this.layersCount = builder.layersCount;
this.appsCount = builder.appsCount;
this.instancesCount = builder.instancesCount;
}
/**
*
* The stack ID.
*
*
* @return The stack ID.
*/
public final String stackId() {
return stackId;
}
/**
*
* The stack name.
*
*
* @return The stack name.
*/
public final String name() {
return name;
}
/**
*
* The stack's ARN.
*
*
* @return The stack's ARN.
*/
public final String arn() {
return arn;
}
/**
*
* The number of layers.
*
*
* @return The number of layers.
*/
public final Integer layersCount() {
return layersCount;
}
/**
*
* The number of apps.
*
*
* @return The number of apps.
*/
public final Integer appsCount() {
return appsCount;
}
/**
*
* An InstancesCount
object with the number of instances in each status.
*
*
* @return An InstancesCount
object with the number of instances in each status.
*/
public final InstancesCount instancesCount() {
return instancesCount;
}
@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(stackId());
hashCode = 31 * hashCode + Objects.hashCode(name());
hashCode = 31 * hashCode + Objects.hashCode(arn());
hashCode = 31 * hashCode + Objects.hashCode(layersCount());
hashCode = 31 * hashCode + Objects.hashCode(appsCount());
hashCode = 31 * hashCode + Objects.hashCode(instancesCount());
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 StackSummary)) {
return false;
}
StackSummary other = (StackSummary) obj;
return Objects.equals(stackId(), other.stackId()) && Objects.equals(name(), other.name())
&& Objects.equals(arn(), other.arn()) && Objects.equals(layersCount(), other.layersCount())
&& Objects.equals(appsCount(), other.appsCount()) && Objects.equals(instancesCount(), other.instancesCount());
}
/**
* 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("StackSummary").add("StackId", stackId()).add("Name", name()).add("Arn", arn())
.add("LayersCount", layersCount()).add("AppsCount", appsCount()).add("InstancesCount", instancesCount()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "StackId":
return Optional.ofNullable(clazz.cast(stackId()));
case "Name":
return Optional.ofNullable(clazz.cast(name()));
case "Arn":
return Optional.ofNullable(clazz.cast(arn()));
case "LayersCount":
return Optional.ofNullable(clazz.cast(layersCount()));
case "AppsCount":
return Optional.ofNullable(clazz.cast(appsCount()));
case "InstancesCount":
return Optional.ofNullable(clazz.cast(instancesCount()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function