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

software.amazon.awssdk.services.opsworks.model.StackSummary Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS OpsWorks module holds the client classes that are used for communicating with AWS OpsWorks Service

There is a newer version: 2.28.4
Show newest version
/*
 * 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 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 getter(Function g) { return obj -> g.apply((StackSummary) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The stack ID. *

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

* The stack name. *

* * @param name * The stack name. * @return Returns a reference to this object so that method calls can be chained together. */ Builder name(String name); /** *

* The stack's ARN. *

* * @param arn * The stack's ARN. * @return Returns a reference to this object so that method calls can be chained together. */ Builder arn(String arn); /** *

* The number of layers. *

* * @param layersCount * The number of layers. * @return Returns a reference to this object so that method calls can be chained together. */ Builder layersCount(Integer layersCount); /** *

* The number of apps. *

* * @param appsCount * The number of apps. * @return Returns a reference to this object so that method calls can be chained together. */ Builder appsCount(Integer appsCount); /** *

* An InstancesCount object with the number of instances in each status. *

* * @param instancesCount * An InstancesCount object with the number of instances in each status. * @return Returns a reference to this object so that method calls can be chained together. */ Builder instancesCount(InstancesCount instancesCount); /** *

* An InstancesCount object with the number of instances in each status. *

* This is a convenience that creates an instance of the {@link InstancesCount.Builder} avoiding the need to * create one manually via {@link InstancesCount#builder()}. * * When the {@link Consumer} completes, {@link InstancesCount.Builder#build()} is called immediately and its * result is passed to {@link #instancesCount(InstancesCount)}. * * @param instancesCount * a consumer that will call methods on {@link InstancesCount.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #instancesCount(InstancesCount) */ default Builder instancesCount(Consumer instancesCount) { return instancesCount(InstancesCount.builder().applyMutation(instancesCount).build()); } } static final class BuilderImpl implements Builder { private String stackId; private String name; private String arn; private Integer layersCount; private Integer appsCount; private InstancesCount instancesCount; private BuilderImpl() { } private BuilderImpl(StackSummary model) { stackId(model.stackId); name(model.name); arn(model.arn); layersCount(model.layersCount); appsCount(model.appsCount); instancesCount(model.instancesCount); } public final String getStackId() { return stackId; } public final void setStackId(String stackId) { this.stackId = stackId; } @Override @Transient public final Builder stackId(String stackId) { this.stackId = stackId; return this; } public final String getName() { return name; } public final void setName(String name) { this.name = name; } @Override @Transient public final Builder name(String name) { this.name = name; return this; } public final String getArn() { return arn; } public final void setArn(String arn) { this.arn = arn; } @Override @Transient public final Builder arn(String arn) { this.arn = arn; return this; } public final Integer getLayersCount() { return layersCount; } public final void setLayersCount(Integer layersCount) { this.layersCount = layersCount; } @Override @Transient public final Builder layersCount(Integer layersCount) { this.layersCount = layersCount; return this; } public final Integer getAppsCount() { return appsCount; } public final void setAppsCount(Integer appsCount) { this.appsCount = appsCount; } @Override @Transient public final Builder appsCount(Integer appsCount) { this.appsCount = appsCount; return this; } public final InstancesCount.Builder getInstancesCount() { return instancesCount != null ? instancesCount.toBuilder() : null; } public final void setInstancesCount(InstancesCount.BuilderImpl instancesCount) { this.instancesCount = instancesCount != null ? instancesCount.build() : null; } @Override @Transient public final Builder instancesCount(InstancesCount instancesCount) { this.instancesCount = instancesCount; return this; } @Override public StackSummary build() { return new StackSummary(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy