software.amazon.awssdk.services.applicationdiscovery.model.GetDiscoverySummaryResponse Maven / Gradle / Ivy
/*
* Copyright 2013-2018 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.Objects;
import java.util.Optional;
import java.util.function.Consumer;
import javax.annotation.Generated;
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 class GetDiscoverySummaryResponse extends ApplicationDiscoveryResponse implements
ToCopyableBuilder {
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 Long servers() {
return servers;
}
/**
*
* The number of applications discovered.
*
*
* @return The number of applications discovered.
*/
public Long applications() {
return applications;
}
/**
*
* The number of servers mapped to applications.
*
*
* @return The number of servers mapped to applications.
*/
public Long serversMappedToApplications() {
return serversMappedToApplications;
}
/**
*
* The number of servers mapped to tags.
*
*
* @return The number of servers mapped to tags.
*/
public Long serversMappedtoTags() {
return serversMappedtoTags;
}
/**
*
* Details about discovered agents, including agent status and health.
*
*
* @return Details about discovered agents, including agent status and health.
*/
public CustomerAgentInfo agentSummary() {
return agentSummary;
}
/**
*
* Details about discovered connectors, including connector status and health.
*
*
* @return Details about discovered connectors, including connector status and health.
*/
public CustomerConnectorInfo connectorSummary() {
return connectorSummary;
}
@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 int hashCode() {
int hashCode = 1;
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 boolean equals(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());
}
@Override
public 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 Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "servers":
return Optional.of(clazz.cast(servers()));
case "applications":
return Optional.of(clazz.cast(applications()));
case "serversMappedToApplications":
return Optional.of(clazz.cast(serversMappedToApplications()));
case "serversMappedtoTags":
return Optional.of(clazz.cast(serversMappedtoTags()));
case "agentSummary":
return Optional.of(clazz.cast(agentSummary()));
case "connectorSummary":
return Optional.of(clazz.cast(connectorSummary()));
default:
return Optional.empty();
}
}
public interface Builder extends ApplicationDiscoveryResponse.Builder, 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 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().apply(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 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().apply(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) {
servers(model.servers);
applications(model.applications);
serversMappedToApplications(model.serversMappedToApplications);
serversMappedtoTags(model.serversMappedtoTags);
agentSummary(model.agentSummary);
connectorSummary(model.connectorSummary);
}
public final Long getServers() {
return servers;
}
@Override
public final Builder servers(Long servers) {
this.servers = servers;
return this;
}
public final void setServers(Long servers) {
this.servers = servers;
}
public final Long getApplications() {
return applications;
}
@Override
public final Builder applications(Long applications) {
this.applications = applications;
return this;
}
public final void setApplications(Long applications) {
this.applications = applications;
}
public final Long getServersMappedToApplications() {
return serversMappedToApplications;
}
@Override
public final Builder serversMappedToApplications(Long serversMappedToApplications) {
this.serversMappedToApplications = serversMappedToApplications;
return this;
}
public final void setServersMappedToApplications(Long serversMappedToApplications) {
this.serversMappedToApplications = serversMappedToApplications;
}
public final Long getServersMappedtoTags() {
return serversMappedtoTags;
}
@Override
public final Builder serversMappedtoTags(Long serversMappedtoTags) {
this.serversMappedtoTags = serversMappedtoTags;
return this;
}
public final void setServersMappedtoTags(Long serversMappedtoTags) {
this.serversMappedtoTags = serversMappedtoTags;
}
public final CustomerAgentInfo.Builder getAgentSummary() {
return agentSummary != null ? agentSummary.toBuilder() : null;
}
@Override
public final Builder agentSummary(CustomerAgentInfo agentSummary) {
this.agentSummary = agentSummary;
return this;
}
public final void setAgentSummary(CustomerAgentInfo.BuilderImpl agentSummary) {
this.agentSummary = agentSummary != null ? agentSummary.build() : null;
}
public final CustomerConnectorInfo.Builder getConnectorSummary() {
return connectorSummary != null ? connectorSummary.toBuilder() : null;
}
@Override
public final Builder connectorSummary(CustomerConnectorInfo connectorSummary) {
this.connectorSummary = connectorSummary;
return this;
}
public final void setConnectorSummary(CustomerConnectorInfo.BuilderImpl connectorSummary) {
this.connectorSummary = connectorSummary != null ? connectorSummary.build() : null;
}
@Override
public GetDiscoverySummaryResponse build() {
return new GetDiscoverySummaryResponse(this);
}
}
}