All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
software.amazon.awssdk.services.ssmsap.model.ComponentSummary Maven / Gradle / Ivy
Go to download
The AWS Java SDK for Ssm Sap module holds the client classes that are used for
communicating with Ssm Sap.
/*
* 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.ssmsap.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Map;
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.core.traits.MapTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructMap;
import software.amazon.awssdk.core.util.SdkAutoConstructMap;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* The summary of the component.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class ComponentSummary implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField APPLICATION_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ApplicationId").getter(getter(ComponentSummary::applicationId)).setter(setter(Builder::applicationId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ApplicationId").build()).build();
private static final SdkField COMPONENT_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ComponentId").getter(getter(ComponentSummary::componentId)).setter(setter(Builder::componentId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ComponentId").build()).build();
private static final SdkField COMPONENT_TYPE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ComponentType").getter(getter(ComponentSummary::componentTypeAsString))
.setter(setter(Builder::componentType))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ComponentType").build()).build();
private static final SdkField> TAGS_FIELD = SdkField
.> builder(MarshallingType.MAP)
.memberName("Tags")
.getter(getter(ComponentSummary::tags))
.setter(setter(Builder::tags))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Tags").build(),
MapTrait.builder()
.keyLocationName("key")
.valueLocationName("value")
.valueFieldInfo(
SdkField. builder(MarshallingType.STRING)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("value").build()).build()).build()).build();
private static final SdkField ARN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Arn")
.getter(getter(ComponentSummary::arn)).setter(setter(Builder::arn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Arn").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(APPLICATION_ID_FIELD,
COMPONENT_ID_FIELD, COMPONENT_TYPE_FIELD, TAGS_FIELD, ARN_FIELD));
private static final long serialVersionUID = 1L;
private final String applicationId;
private final String componentId;
private final String componentType;
private final Map tags;
private final String arn;
private ComponentSummary(BuilderImpl builder) {
this.applicationId = builder.applicationId;
this.componentId = builder.componentId;
this.componentType = builder.componentType;
this.tags = builder.tags;
this.arn = builder.arn;
}
/**
*
* The ID of the application.
*
*
* @return The ID of the application.
*/
public final String applicationId() {
return applicationId;
}
/**
*
* The ID of the component.
*
*
* @return The ID of the component.
*/
public final String componentId() {
return componentId;
}
/**
*
* The type of the component.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #componentType}
* will return {@link ComponentType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #componentTypeAsString}.
*
*
* @return The type of the component.
* @see ComponentType
*/
public final ComponentType componentType() {
return ComponentType.fromValue(componentType);
}
/**
*
* The type of the component.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #componentType}
* will return {@link ComponentType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #componentTypeAsString}.
*
*
* @return The type of the component.
* @see ComponentType
*/
public final String componentTypeAsString() {
return componentType;
}
/**
* For responses, this returns true if the service returned a value for the Tags property. This DOES NOT check that
* the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). This is useful
* because the SDK will never return a null collection or map, but you may need to differentiate between the service
* returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true
* if a value for the property was specified in the request builder, and false if a value was not specified.
*/
public final boolean hasTags() {
return tags != null && !(tags instanceof SdkAutoConstructMap);
}
/**
*
* The tags of the component.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* This method will never return null. If you would like to know whether the service returned this field (so that
* you can differentiate between null and empty), you can use the {@link #hasTags} method.
*
*
* @return The tags of the component.
*/
public final Map tags() {
return tags;
}
/**
*
* The Amazon Resource Name (ARN) of the component summary.
*
*
* @return The Amazon Resource Name (ARN) of the component summary.
*/
public final String arn() {
return arn;
}
@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 + Objects.hashCode(applicationId());
hashCode = 31 * hashCode + Objects.hashCode(componentId());
hashCode = 31 * hashCode + Objects.hashCode(componentTypeAsString());
hashCode = 31 * hashCode + Objects.hashCode(hasTags() ? tags() : null);
hashCode = 31 * hashCode + Objects.hashCode(arn());
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 ComponentSummary)) {
return false;
}
ComponentSummary other = (ComponentSummary) obj;
return Objects.equals(applicationId(), other.applicationId()) && Objects.equals(componentId(), other.componentId())
&& Objects.equals(componentTypeAsString(), other.componentTypeAsString()) && hasTags() == other.hasTags()
&& Objects.equals(tags(), other.tags()) && Objects.equals(arn(), other.arn());
}
/**
* 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("ComponentSummary").add("ApplicationId", applicationId()).add("ComponentId", componentId())
.add("ComponentType", componentTypeAsString()).add("Tags", hasTags() ? tags() : null).add("Arn", arn()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "ApplicationId":
return Optional.ofNullable(clazz.cast(applicationId()));
case "ComponentId":
return Optional.ofNullable(clazz.cast(componentId()));
case "ComponentType":
return Optional.ofNullable(clazz.cast(componentTypeAsString()));
case "Tags":
return Optional.ofNullable(clazz.cast(tags()));
case "Arn":
return Optional.ofNullable(clazz.cast(arn()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function getter(Function g) {
return obj -> g.apply((ComponentSummary) obj);
}
private static BiConsumer setter(BiConsumer s) {
return (obj, val) -> s.accept((Builder) obj, val);
}
public interface Builder extends SdkPojo, CopyableBuilder {
/**
*
* The ID of the application.
*
*
* @param applicationId
* The ID of the application.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder applicationId(String applicationId);
/**
*
* The ID of the component.
*
*
* @param componentId
* The ID of the component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder componentId(String componentId);
/**
*
* The type of the component.
*
*
* @param componentType
* The type of the component.
* @see ComponentType
* @return Returns a reference to this object so that method calls can be chained together.
* @see ComponentType
*/
Builder componentType(String componentType);
/**
*
* The type of the component.
*
*
* @param componentType
* The type of the component.
* @see ComponentType
* @return Returns a reference to this object so that method calls can be chained together.
* @see ComponentType
*/
Builder componentType(ComponentType componentType);
/**
*
* The tags of the component.
*
*
* @param tags
* The tags of the component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder tags(Map tags);
/**
*
* The Amazon Resource Name (ARN) of the component summary.
*
*
* @param arn
* The Amazon Resource Name (ARN) of the component summary.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder arn(String arn);
}
static final class BuilderImpl implements Builder {
private String applicationId;
private String componentId;
private String componentType;
private Map tags = DefaultSdkAutoConstructMap.getInstance();
private String arn;
private BuilderImpl() {
}
private BuilderImpl(ComponentSummary model) {
applicationId(model.applicationId);
componentId(model.componentId);
componentType(model.componentType);
tags(model.tags);
arn(model.arn);
}
public final String getApplicationId() {
return applicationId;
}
public final void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
@Override
public final Builder applicationId(String applicationId) {
this.applicationId = applicationId;
return this;
}
public final String getComponentId() {
return componentId;
}
public final void setComponentId(String componentId) {
this.componentId = componentId;
}
@Override
public final Builder componentId(String componentId) {
this.componentId = componentId;
return this;
}
public final String getComponentType() {
return componentType;
}
public final void setComponentType(String componentType) {
this.componentType = componentType;
}
@Override
public final Builder componentType(String componentType) {
this.componentType = componentType;
return this;
}
@Override
public final Builder componentType(ComponentType componentType) {
this.componentType(componentType == null ? null : componentType.toString());
return this;
}
public final Map getTags() {
if (tags instanceof SdkAutoConstructMap) {
return null;
}
return tags;
}
public final void setTags(Map tags) {
this.tags = TagMapCopier.copy(tags);
}
@Override
public final Builder tags(Map tags) {
this.tags = TagMapCopier.copy(tags);
return this;
}
public final String getArn() {
return arn;
}
public final void setArn(String arn) {
this.arn = arn;
}
@Override
public final Builder arn(String arn) {
this.arn = arn;
return this;
}
@Override
public ComponentSummary build() {
return new ComponentSummary(this);
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
}
}