software.amazon.awssdk.services.applicationdiscovery.model.GetDiscoverySummaryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationdiscovery Show documentation
Show all versions of applicationdiscovery Show documentation
The AWS Java SDK for AWS Application Discovery Service module holds the client classes that are used
for communicating with AWS Application Discovery 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.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 SdkField ME_COLLECTOR_SUMMARY_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("meCollectorSummary")
.getter(getter(GetDiscoverySummaryResponse::meCollectorSummary)).setter(setter(Builder::meCollectorSummary))
.constructor(CustomerMeCollectorInfo::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("meCollectorSummary").build())
.build();
private static final SdkField AGENTLESS_COLLECTOR_SUMMARY_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("agentlessCollectorSummary")
.getter(getter(GetDiscoverySummaryResponse::agentlessCollectorSummary))
.setter(setter(Builder::agentlessCollectorSummary)).constructor(CustomerAgentlessCollectorInfo::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("agentlessCollectorSummary").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, ME_COLLECTOR_SUMMARY_FIELD, AGENTLESS_COLLECTOR_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 final CustomerMeCollectorInfo meCollectorSummary;
private final CustomerAgentlessCollectorInfo agentlessCollectorSummary;
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;
this.meCollectorSummary = builder.meCollectorSummary;
this.agentlessCollectorSummary = builder.agentlessCollectorSummary;
}
/**
*
* 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;
}
/**
*
* Details about Migration Evaluator collectors, including collector status and health.
*
*
* @return Details about Migration Evaluator collectors, including collector status and health.
*/
public final CustomerMeCollectorInfo meCollectorSummary() {
return meCollectorSummary;
}
/**
* Returns the value of the AgentlessCollectorSummary property for this object.
*
* @return The value of the AgentlessCollectorSummary property for this object.
*/
public final CustomerAgentlessCollectorInfo agentlessCollectorSummary() {
return agentlessCollectorSummary;
}
@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 + 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());
hashCode = 31 * hashCode + Objects.hashCode(meCollectorSummary());
hashCode = 31 * hashCode + Objects.hashCode(agentlessCollectorSummary());
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())
&& Objects.equals(meCollectorSummary(), other.meCollectorSummary())
&& Objects.equals(agentlessCollectorSummary(), other.agentlessCollectorSummary());
}
/**
* 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()).add("MeCollectorSummary", meCollectorSummary())
.add("AgentlessCollectorSummary", agentlessCollectorSummary()).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()));
case "meCollectorSummary":
return Optional.ofNullable(clazz.cast(meCollectorSummary()));
case "agentlessCollectorSummary":
return Optional.ofNullable(clazz.cast(agentlessCollectorSummary()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy