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

software.amazon.awssdk.services.applicationinsights.model.ApplicationComponent Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.28.4
Show newest version
/*
 * Copyright 2014-2019 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.applicationinsights.model;

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.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;

/**
 * 

* Describes a standalone resource or similarly grouped resources that the application is made up of. *

*/ @Generated("software.amazon.awssdk:codegen") public final class ApplicationComponent implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField COMPONENT_NAME_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(ApplicationComponent::componentName)).setter(setter(Builder::componentName)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ComponentName").build()).build(); private static final SdkField RESOURCE_TYPE_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(ApplicationComponent::resourceType)).setter(setter(Builder::resourceType)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ResourceType").build()).build(); private static final SdkField TIER_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(ApplicationComponent::tier)).setter(setter(Builder::tier)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Tier").build()).build(); private static final SdkField MONITOR_FIELD = SdkField. builder(MarshallingType.BOOLEAN) .getter(getter(ApplicationComponent::monitor)).setter(setter(Builder::monitor)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Monitor").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(COMPONENT_NAME_FIELD, RESOURCE_TYPE_FIELD, TIER_FIELD, MONITOR_FIELD)); private static final long serialVersionUID = 1L; private final String componentName; private final String resourceType; private final String tier; private final Boolean monitor; private ApplicationComponent(BuilderImpl builder) { this.componentName = builder.componentName; this.resourceType = builder.resourceType; this.tier = builder.tier; this.monitor = builder.monitor; } /** *

* The name of the component. *

* * @return The name of the component. */ public String componentName() { return componentName; } /** *

* The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application * ELB, and SQS Queue. *

* * @return The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, * Application ELB, and SQS Queue. */ public String resourceType() { return resourceType; } /** *

* The stack tier of the application component. *

* * @return The stack tier of the application component. */ public String tier() { return tier; } /** *

* Indicates whether the application component is monitored. *

* * @return Indicates whether the application component is monitored. */ public Boolean monitor() { return monitor; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(componentName()); hashCode = 31 * hashCode + Objects.hashCode(resourceType()); hashCode = 31 * hashCode + Objects.hashCode(tier()); hashCode = 31 * hashCode + Objects.hashCode(monitor()); return hashCode; } @Override public boolean equals(Object obj) { return equalsBySdkFields(obj); } @Override public boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof ApplicationComponent)) { return false; } ApplicationComponent other = (ApplicationComponent) obj; return Objects.equals(componentName(), other.componentName()) && Objects.equals(resourceType(), other.resourceType()) && Objects.equals(tier(), other.tier()) && Objects.equals(monitor(), other.monitor()); } /** * 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 String toString() { return ToString.builder("ApplicationComponent").add("ComponentName", componentName()).add("ResourceType", resourceType()) .add("Tier", tier()).add("Monitor", monitor()).build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "ComponentName": return Optional.ofNullable(clazz.cast(componentName())); case "ResourceType": return Optional.ofNullable(clazz.cast(resourceType())); case "Tier": return Optional.ofNullable(clazz.cast(tier())); case "Monitor": return Optional.ofNullable(clazz.cast(monitor())); default: return Optional.empty(); } } @Override public List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ApplicationComponent) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The name of the component. *

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

* The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, * Application ELB, and SQS Queue. *

* * @param resourceType * The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, * Application ELB, and SQS Queue. * @return Returns a reference to this object so that method calls can be chained together. */ Builder resourceType(String resourceType); /** *

* The stack tier of the application component. *

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

* Indicates whether the application component is monitored. *

* * @param monitor * Indicates whether the application component is monitored. * @return Returns a reference to this object so that method calls can be chained together. */ Builder monitor(Boolean monitor); } static final class BuilderImpl implements Builder { private String componentName; private String resourceType; private String tier; private Boolean monitor; private BuilderImpl() { } private BuilderImpl(ApplicationComponent model) { componentName(model.componentName); resourceType(model.resourceType); tier(model.tier); monitor(model.monitor); } public final String getComponentName() { return componentName; } @Override public final Builder componentName(String componentName) { this.componentName = componentName; return this; } public final void setComponentName(String componentName) { this.componentName = componentName; } public final String getResourceType() { return resourceType; } @Override public final Builder resourceType(String resourceType) { this.resourceType = resourceType; return this; } public final void setResourceType(String resourceType) { this.resourceType = resourceType; } public final String getTier() { return tier; } @Override public final Builder tier(String tier) { this.tier = tier; return this; } public final void setTier(String tier) { this.tier = tier; } public final Boolean getMonitor() { return monitor; } @Override public final Builder monitor(Boolean monitor) { this.monitor = monitor; return this; } public final void setMonitor(Boolean monitor) { this.monitor = monitor; } @Override public ApplicationComponent build() { return new ApplicationComponent(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy