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

software.amazon.awssdk.services.applicationdiscovery.model.GetDiscoverySummaryResponse Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.28.6
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.applicationdiscovery.model;

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;

/**
 */
@Generated("software.amazon.awssdk:codegen")
public final class GetDiscoverySummaryResponse extends ApplicationDiscoveryResponse implements
        ToCopyableBuilder {
    private static final SdkField SERVERS_FIELD = SdkField. builder(MarshallingType.LONG).memberName("servers")
            .getter(getter(GetDiscoverySummaryResponse::servers)).setter(setter(Builder::servers))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("servers").build()).build();

    private static final SdkField APPLICATIONS_FIELD = SdkField. builder(MarshallingType.LONG)
            .memberName("applications").getter(getter(GetDiscoverySummaryResponse::applications))
            .setter(setter(Builder::applications))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("applications").build()).build();

    private static final SdkField SERVERS_MAPPED_TO_APPLICATIONS_FIELD = SdkField
            . builder(MarshallingType.LONG)
            .memberName("serversMappedToApplications")
            .getter(getter(GetDiscoverySummaryResponse::serversMappedToApplications))
            .setter(setter(Builder::serversMappedToApplications))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("serversMappedToApplications")
                    .build()).build();

    private static final SdkField SERVERS_MAPPEDTO_TAGS_FIELD = SdkField. builder(MarshallingType.LONG)
            .memberName("serversMappedtoTags").getter(getter(GetDiscoverySummaryResponse::serversMappedtoTags))
            .setter(setter(Builder::serversMappedtoTags))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("serversMappedtoTags").build())
            .build();

    private static final SdkField AGENT_SUMMARY_FIELD = SdkField
            . builder(MarshallingType.SDK_POJO).memberName("agentSummary")
            .getter(getter(GetDiscoverySummaryResponse::agentSummary)).setter(setter(Builder::agentSummary))
            .constructor(CustomerAgentInfo::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("agentSummary").build()).build();

    private static final SdkField CONNECTOR_SUMMARY_FIELD = SdkField
            . builder(MarshallingType.SDK_POJO).memberName("connectorSummary")
            .getter(getter(GetDiscoverySummaryResponse::connectorSummary)).setter(setter(Builder::connectorSummary))
            .constructor(CustomerConnectorInfo::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("connectorSummary").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(SERVERS_FIELD,
            APPLICATIONS_FIELD, SERVERS_MAPPED_TO_APPLICATIONS_FIELD, SERVERS_MAPPEDTO_TAGS_FIELD, AGENT_SUMMARY_FIELD,
            CONNECTOR_SUMMARY_FIELD));

    private final Long servers;

    private final Long applications;

    private final Long serversMappedToApplications;

    private final Long serversMappedtoTags;

    private final CustomerAgentInfo agentSummary;

    private final CustomerConnectorInfo connectorSummary;

    private GetDiscoverySummaryResponse(BuilderImpl builder) {
        super(builder);
        this.servers = builder.servers;
        this.applications = builder.applications;
        this.serversMappedToApplications = builder.serversMappedToApplications;
        this.serversMappedtoTags = builder.serversMappedtoTags;
        this.agentSummary = builder.agentSummary;
        this.connectorSummary = builder.connectorSummary;
    }

    /**
     * 

* The number of servers discovered. *

* * @return The number of servers discovered. */ public final Long servers() { return servers; } /** *

* The number of applications discovered. *

* * @return The number of applications discovered. */ public final Long applications() { return applications; } /** *

* The number of servers mapped to applications. *

* * @return The number of servers mapped to applications. */ public final Long serversMappedToApplications() { return serversMappedToApplications; } /** *

* The number of servers mapped to tags. *

* * @return The number of servers mapped to tags. */ public final Long serversMappedtoTags() { return serversMappedtoTags; } /** *

* Details about discovered agents, including agent status and health. *

* * @return Details about discovered agents, including agent status and health. */ public final CustomerAgentInfo agentSummary() { return agentSummary; } /** *

* Details about discovered connectors, including connector status and health. *

* * @return Details about discovered connectors, including connector status and health. */ public final CustomerConnectorInfo connectorSummary() { return connectorSummary; } @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 + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(servers()); hashCode = 31 * hashCode + Objects.hashCode(applications()); hashCode = 31 * hashCode + Objects.hashCode(serversMappedToApplications()); hashCode = 31 * hashCode + Objects.hashCode(serversMappedtoTags()); hashCode = 31 * hashCode + Objects.hashCode(agentSummary()); hashCode = 31 * hashCode + Objects.hashCode(connectorSummary()); return hashCode; } @Override public final boolean equals(Object obj) { return super.equals(obj) && equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof GetDiscoverySummaryResponse)) { return false; } GetDiscoverySummaryResponse other = (GetDiscoverySummaryResponse) obj; return Objects.equals(servers(), other.servers()) && Objects.equals(applications(), other.applications()) && Objects.equals(serversMappedToApplications(), other.serversMappedToApplications()) && Objects.equals(serversMappedtoTags(), other.serversMappedtoTags()) && Objects.equals(agentSummary(), other.agentSummary()) && Objects.equals(connectorSummary(), other.connectorSummary()); } /** * 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("GetDiscoverySummaryResponse").add("Servers", servers()).add("Applications", applications()) .add("ServersMappedToApplications", serversMappedToApplications()) .add("ServersMappedtoTags", serversMappedtoTags()).add("AgentSummary", agentSummary()) .add("ConnectorSummary", connectorSummary()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "servers": return Optional.ofNullable(clazz.cast(servers())); case "applications": return Optional.ofNullable(clazz.cast(applications())); case "serversMappedToApplications": return Optional.ofNullable(clazz.cast(serversMappedToApplications())); case "serversMappedtoTags": return Optional.ofNullable(clazz.cast(serversMappedtoTags())); case "agentSummary": return Optional.ofNullable(clazz.cast(agentSummary())); case "connectorSummary": return Optional.ofNullable(clazz.cast(connectorSummary())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((GetDiscoverySummaryResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends ApplicationDiscoveryResponse.Builder, SdkPojo, CopyableBuilder { /** *

* The number of servers discovered. *

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

* The number of applications discovered. *

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

* The number of servers mapped to applications. *

* * @param serversMappedToApplications * The number of servers mapped to applications. * @return Returns a reference to this object so that method calls can be chained together. */ Builder serversMappedToApplications(Long serversMappedToApplications); /** *

* The number of servers mapped to tags. *

* * @param serversMappedtoTags * The number of servers mapped to tags. * @return Returns a reference to this object so that method calls can be chained together. */ Builder serversMappedtoTags(Long serversMappedtoTags); /** *

* Details about discovered agents, including agent status and health. *

* * @param agentSummary * Details about discovered agents, including agent status and health. * @return Returns a reference to this object so that method calls can be chained together. */ Builder agentSummary(CustomerAgentInfo agentSummary); /** *

* Details about discovered agents, including agent status and health. *

* This is a convenience method that creates an instance of the {@link CustomerAgentInfo.Builder} avoiding the * need to create one manually via {@link CustomerAgentInfo#builder()}. * * When the {@link Consumer} completes, {@link CustomerAgentInfo.Builder#build()} is called immediately and its * result is passed to {@link #agentSummary(CustomerAgentInfo)}. * * @param agentSummary * a consumer that will call methods on {@link CustomerAgentInfo.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #agentSummary(CustomerAgentInfo) */ default Builder agentSummary(Consumer agentSummary) { return agentSummary(CustomerAgentInfo.builder().applyMutation(agentSummary).build()); } /** *

* Details about discovered connectors, including connector status and health. *

* * @param connectorSummary * Details about discovered connectors, including connector status and health. * @return Returns a reference to this object so that method calls can be chained together. */ Builder connectorSummary(CustomerConnectorInfo connectorSummary); /** *

* Details about discovered connectors, including connector status and health. *

* This is a convenience method that creates an instance of the {@link CustomerConnectorInfo.Builder} avoiding * the need to create one manually via {@link CustomerConnectorInfo#builder()}. * * When the {@link Consumer} completes, {@link CustomerConnectorInfo.Builder#build()} is called immediately and * its result is passed to {@link #connectorSummary(CustomerConnectorInfo)}. * * @param connectorSummary * a consumer that will call methods on {@link CustomerConnectorInfo.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #connectorSummary(CustomerConnectorInfo) */ default Builder connectorSummary(Consumer connectorSummary) { return connectorSummary(CustomerConnectorInfo.builder().applyMutation(connectorSummary).build()); } } static final class BuilderImpl extends ApplicationDiscoveryResponse.BuilderImpl implements Builder { private Long servers; private Long applications; private Long serversMappedToApplications; private Long serversMappedtoTags; private CustomerAgentInfo agentSummary; private CustomerConnectorInfo connectorSummary; private BuilderImpl() { } private BuilderImpl(GetDiscoverySummaryResponse model) { super(model); servers(model.servers); applications(model.applications); serversMappedToApplications(model.serversMappedToApplications); serversMappedtoTags(model.serversMappedtoTags); agentSummary(model.agentSummary); connectorSummary(model.connectorSummary); } public final Long getServers() { return servers; } public final void setServers(Long servers) { this.servers = servers; } @Override public final Builder servers(Long servers) { this.servers = servers; return this; } public final Long getApplications() { return applications; } public final void setApplications(Long applications) { this.applications = applications; } @Override public final Builder applications(Long applications) { this.applications = applications; return this; } public final Long getServersMappedToApplications() { return serversMappedToApplications; } public final void setServersMappedToApplications(Long serversMappedToApplications) { this.serversMappedToApplications = serversMappedToApplications; } @Override public final Builder serversMappedToApplications(Long serversMappedToApplications) { this.serversMappedToApplications = serversMappedToApplications; return this; } public final Long getServersMappedtoTags() { return serversMappedtoTags; } public final void setServersMappedtoTags(Long serversMappedtoTags) { this.serversMappedtoTags = serversMappedtoTags; } @Override public final Builder serversMappedtoTags(Long serversMappedtoTags) { this.serversMappedtoTags = serversMappedtoTags; return this; } public final CustomerAgentInfo.Builder getAgentSummary() { return agentSummary != null ? agentSummary.toBuilder() : null; } public final void setAgentSummary(CustomerAgentInfo.BuilderImpl agentSummary) { this.agentSummary = agentSummary != null ? agentSummary.build() : null; } @Override public final Builder agentSummary(CustomerAgentInfo agentSummary) { this.agentSummary = agentSummary; return this; } public final CustomerConnectorInfo.Builder getConnectorSummary() { return connectorSummary != null ? connectorSummary.toBuilder() : null; } public final void setConnectorSummary(CustomerConnectorInfo.BuilderImpl connectorSummary) { this.connectorSummary = connectorSummary != null ? connectorSummary.build() : null; } @Override public final Builder connectorSummary(CustomerConnectorInfo connectorSummary) { this.connectorSummary = connectorSummary; return this; } @Override public GetDiscoverySummaryResponse build() { return new GetDiscoverySummaryResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy