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

software.amazon.awssdk.services.location.model.DescribeTrackerResponse Maven / Gradle / Ivy

/*
 * 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.location.model;

import java.time.Instant;
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.traits.TimestampFormatTrait;
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;

/**
 */
@Generated("software.amazon.awssdk:codegen")
public final class DescribeTrackerResponse extends LocationResponse implements
        ToCopyableBuilder {
    private static final SdkField CREATE_TIME_FIELD = SdkField
            . builder(MarshallingType.INSTANT)
            .memberName("CreateTime")
            .getter(getter(DescribeTrackerResponse::createTime))
            .setter(setter(Builder::createTime))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreateTime").build(),
                    TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();

    private static final SdkField DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("Description").getter(getter(DescribeTrackerResponse::description)).setter(setter(Builder::description))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Description").build()).build();

    private static final SdkField KMS_KEY_ID_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("KmsKeyId").getter(getter(DescribeTrackerResponse::kmsKeyId)).setter(setter(Builder::kmsKeyId))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("KmsKeyId").build()).build();

    private static final SdkField POSITION_FILTERING_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("PositionFiltering").getter(getter(DescribeTrackerResponse::positionFilteringAsString))
            .setter(setter(Builder::positionFiltering))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("PositionFiltering").build()).build();

    private static final SdkField PRICING_PLAN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("PricingPlan").getter(getter(DescribeTrackerResponse::pricingPlanAsString))
            .setter(setter(Builder::pricingPlan))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("PricingPlan").build()).build();

    private static final SdkField PRICING_PLAN_DATA_SOURCE_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("PricingPlanDataSource").getter(getter(DescribeTrackerResponse::pricingPlanDataSource))
            .setter(setter(Builder::pricingPlanDataSource))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("PricingPlanDataSource").build())
            .build();

    private static final SdkField> TAGS_FIELD = SdkField
            .> builder(MarshallingType.MAP)
            .memberName("Tags")
            .getter(getter(DescribeTrackerResponse::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 TRACKER_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("TrackerArn").getter(getter(DescribeTrackerResponse::trackerArn)).setter(setter(Builder::trackerArn))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TrackerArn").build()).build();

    private static final SdkField TRACKER_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("TrackerName").getter(getter(DescribeTrackerResponse::trackerName)).setter(setter(Builder::trackerName))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TrackerName").build()).build();

    private static final SdkField UPDATE_TIME_FIELD = SdkField
            . builder(MarshallingType.INSTANT)
            .memberName("UpdateTime")
            .getter(getter(DescribeTrackerResponse::updateTime))
            .setter(setter(Builder::updateTime))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("UpdateTime").build(),
                    TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CREATE_TIME_FIELD,
            DESCRIPTION_FIELD, KMS_KEY_ID_FIELD, POSITION_FILTERING_FIELD, PRICING_PLAN_FIELD, PRICING_PLAN_DATA_SOURCE_FIELD,
            TAGS_FIELD, TRACKER_ARN_FIELD, TRACKER_NAME_FIELD, UPDATE_TIME_FIELD));

    private final Instant createTime;

    private final String description;

    private final String kmsKeyId;

    private final String positionFiltering;

    private final String pricingPlan;

    private final String pricingPlanDataSource;

    private final Map tags;

    private final String trackerArn;

    private final String trackerName;

    private final Instant updateTime;

    private DescribeTrackerResponse(BuilderImpl builder) {
        super(builder);
        this.createTime = builder.createTime;
        this.description = builder.description;
        this.kmsKeyId = builder.kmsKeyId;
        this.positionFiltering = builder.positionFiltering;
        this.pricingPlan = builder.pricingPlan;
        this.pricingPlanDataSource = builder.pricingPlanDataSource;
        this.tags = builder.tags;
        this.trackerArn = builder.trackerArn;
        this.trackerName = builder.trackerName;
        this.updateTime = builder.updateTime;
    }

    /**
     * 

* The timestamp for when the tracker resource was created in ISO 8601 format: * YYYY-MM-DDThh:mm:ss.sssZ. *

* * @return The timestamp for when the tracker resource was created in ISO 8601 format: * YYYY-MM-DDThh:mm:ss.sssZ. */ public final Instant createTime() { return createTime; } /** *

* The optional description for the tracker resource. *

* * @return The optional description for the tracker resource. */ public final String description() { return description; } /** *

* A key identifier for an AWS KMS * customer managed key assigned to the Amazon Location resource. *

* * @return A key identifier for an AWS KMS customer managed * key assigned to the Amazon Location resource. */ public final String kmsKeyId() { return kmsKeyId; } /** *

* The position filtering method of the tracker resource. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #positionFiltering} * will return {@link PositionFiltering#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available * from {@link #positionFilteringAsString}. *

* * @return The position filtering method of the tracker resource. * @see PositionFiltering */ public final PositionFiltering positionFiltering() { return PositionFiltering.fromValue(positionFiltering); } /** *

* The position filtering method of the tracker resource. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #positionFiltering} * will return {@link PositionFiltering#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available * from {@link #positionFilteringAsString}. *

* * @return The position filtering method of the tracker resource. * @see PositionFiltering */ public final String positionFilteringAsString() { return positionFiltering; } /** *

* Always returns RequestBasedUsage. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #pricingPlan} will * return {@link PricingPlan#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #pricingPlanAsString}. *

* * @return Always returns RequestBasedUsage. * @see PricingPlan * @deprecated Deprecated. Always returns RequestBasedUsage. */ @Deprecated public final PricingPlan pricingPlan() { return PricingPlan.fromValue(pricingPlan); } /** *

* Always returns RequestBasedUsage. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #pricingPlan} will * return {@link PricingPlan#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #pricingPlanAsString}. *

* * @return Always returns RequestBasedUsage. * @see PricingPlan * @deprecated Deprecated. Always returns RequestBasedUsage. */ @Deprecated public final String pricingPlanAsString() { return pricingPlan; } /** *

* No longer used. Always returns an empty string. *

* * @return No longer used. Always returns an empty string. * @deprecated Deprecated. Unused. */ @Deprecated public final String pricingPlanDataSource() { return pricingPlanDataSource; } /** * 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 associated with the tracker resource. *

*

* 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 associated with the tracker resource. */ public final Map tags() { return tags; } /** *

* The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all AWS. *

*
    *
  • *

    * Format example: arn:aws:geo:region:account-id:tracker/ExampleTracker *

    *
  • *
* * @return The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across * all AWS.

*
    *
  • *

    * Format example: arn:aws:geo:region:account-id:tracker/ExampleTracker *

    *
  • */ public final String trackerArn() { return trackerArn; } /** *

    * The name of the tracker resource. *

    * * @return The name of the tracker resource. */ public final String trackerName() { return trackerName; } /** *

    * The timestamp for when the tracker resource was last updated in ISO 8601 format: * YYYY-MM-DDThh:mm:ss.sssZ. *

    * * @return The timestamp for when the tracker resource was last updated in ISO 8601 format: * YYYY-MM-DDThh:mm:ss.sssZ. */ public final Instant updateTime() { return updateTime; } @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(createTime()); hashCode = 31 * hashCode + Objects.hashCode(description()); hashCode = 31 * hashCode + Objects.hashCode(kmsKeyId()); hashCode = 31 * hashCode + Objects.hashCode(positionFilteringAsString()); hashCode = 31 * hashCode + Objects.hashCode(pricingPlanAsString()); hashCode = 31 * hashCode + Objects.hashCode(pricingPlanDataSource()); hashCode = 31 * hashCode + Objects.hashCode(hasTags() ? tags() : null); hashCode = 31 * hashCode + Objects.hashCode(trackerArn()); hashCode = 31 * hashCode + Objects.hashCode(trackerName()); hashCode = 31 * hashCode + Objects.hashCode(updateTime()); 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 DescribeTrackerResponse)) { return false; } DescribeTrackerResponse other = (DescribeTrackerResponse) obj; return Objects.equals(createTime(), other.createTime()) && Objects.equals(description(), other.description()) && Objects.equals(kmsKeyId(), other.kmsKeyId()) && Objects.equals(positionFilteringAsString(), other.positionFilteringAsString()) && Objects.equals(pricingPlanAsString(), other.pricingPlanAsString()) && Objects.equals(pricingPlanDataSource(), other.pricingPlanDataSource()) && hasTags() == other.hasTags() && Objects.equals(tags(), other.tags()) && Objects.equals(trackerArn(), other.trackerArn()) && Objects.equals(trackerName(), other.trackerName()) && Objects.equals(updateTime(), other.updateTime()); } /** * 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("DescribeTrackerResponse").add("CreateTime", createTime()).add("Description", description()) .add("KmsKeyId", kmsKeyId()).add("PositionFiltering", positionFilteringAsString()) .add("PricingPlan", pricingPlanAsString()).add("PricingPlanDataSource", pricingPlanDataSource()) .add("Tags", hasTags() ? tags() : null).add("TrackerArn", trackerArn()).add("TrackerName", trackerName()) .add("UpdateTime", updateTime()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "CreateTime": return Optional.ofNullable(clazz.cast(createTime())); case "Description": return Optional.ofNullable(clazz.cast(description())); case "KmsKeyId": return Optional.ofNullable(clazz.cast(kmsKeyId())); case "PositionFiltering": return Optional.ofNullable(clazz.cast(positionFilteringAsString())); case "PricingPlan": return Optional.ofNullable(clazz.cast(pricingPlanAsString())); case "PricingPlanDataSource": return Optional.ofNullable(clazz.cast(pricingPlanDataSource())); case "Tags": return Optional.ofNullable(clazz.cast(tags())); case "TrackerArn": return Optional.ofNullable(clazz.cast(trackerArn())); case "TrackerName": return Optional.ofNullable(clazz.cast(trackerName())); case "UpdateTime": return Optional.ofNullable(clazz.cast(updateTime())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((DescribeTrackerResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends LocationResponse.Builder, SdkPojo, CopyableBuilder { /** *

    * The timestamp for when the tracker resource was created in ISO 8601 format: * YYYY-MM-DDThh:mm:ss.sssZ. *

    * * @param createTime * The timestamp for when the tracker resource was created in ISO 8601 format: * YYYY-MM-DDThh:mm:ss.sssZ. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createTime(Instant createTime); /** *

    * The optional description for the tracker resource. *

    * * @param description * The optional description for the tracker resource. * @return Returns a reference to this object so that method calls can be chained together. */ Builder description(String description); /** *

    * A key identifier for an AWS * KMS customer managed key assigned to the Amazon Location resource. *

    * * @param kmsKeyId * A key identifier for an AWS KMS customer managed * key assigned to the Amazon Location resource. * @return Returns a reference to this object so that method calls can be chained together. */ Builder kmsKeyId(String kmsKeyId); /** *

    * The position filtering method of the tracker resource. *

    * * @param positionFiltering * The position filtering method of the tracker resource. * @see PositionFiltering * @return Returns a reference to this object so that method calls can be chained together. * @see PositionFiltering */ Builder positionFiltering(String positionFiltering); /** *

    * The position filtering method of the tracker resource. *

    * * @param positionFiltering * The position filtering method of the tracker resource. * @see PositionFiltering * @return Returns a reference to this object so that method calls can be chained together. * @see PositionFiltering */ Builder positionFiltering(PositionFiltering positionFiltering); /** *

    * Always returns RequestBasedUsage. *

    * * @param pricingPlan * Always returns RequestBasedUsage. * @see PricingPlan * @return Returns a reference to this object so that method calls can be chained together. * @see PricingPlan * @deprecated Deprecated. Always returns RequestBasedUsage. */ @Deprecated Builder pricingPlan(String pricingPlan); /** *

    * Always returns RequestBasedUsage. *

    * * @param pricingPlan * Always returns RequestBasedUsage. * @see PricingPlan * @return Returns a reference to this object so that method calls can be chained together. * @see PricingPlan * @deprecated Deprecated. Always returns RequestBasedUsage. */ @Deprecated Builder pricingPlan(PricingPlan pricingPlan); /** *

    * No longer used. Always returns an empty string. *

    * * @param pricingPlanDataSource * No longer used. Always returns an empty string. * @return Returns a reference to this object so that method calls can be chained together. * @deprecated Deprecated. Unused. */ @Deprecated Builder pricingPlanDataSource(String pricingPlanDataSource); /** *

    * The tags associated with the tracker resource. *

    * * @param tags * The tags associated with the tracker resource. * @return Returns a reference to this object so that method calls can be chained together. */ Builder tags(Map tags); /** *

    * The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all * AWS. *

    *
      *
    • *

      * Format example: arn:aws:geo:region:account-id:tracker/ExampleTracker *

      *
    • *
    * * @param trackerArn * The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource * across all AWS.

    *
      *
    • *

      * Format example: arn:aws:geo:region:account-id:tracker/ExampleTracker *

      *
    • * @return Returns a reference to this object so that method calls can be chained together. */ Builder trackerArn(String trackerArn); /** *

      * The name of the tracker resource. *

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

      * The timestamp for when the tracker resource was last updated in ISO 8601 format: * YYYY-MM-DDThh:mm:ss.sssZ. *

      * * @param updateTime * The timestamp for when the tracker resource was last updated in ISO 8601 format: * YYYY-MM-DDThh:mm:ss.sssZ. * @return Returns a reference to this object so that method calls can be chained together. */ Builder updateTime(Instant updateTime); } static final class BuilderImpl extends LocationResponse.BuilderImpl implements Builder { private Instant createTime; private String description; private String kmsKeyId; private String positionFiltering; private String pricingPlan; private String pricingPlanDataSource; private Map tags = DefaultSdkAutoConstructMap.getInstance(); private String trackerArn; private String trackerName; private Instant updateTime; private BuilderImpl() { } private BuilderImpl(DescribeTrackerResponse model) { super(model); createTime(model.createTime); description(model.description); kmsKeyId(model.kmsKeyId); positionFiltering(model.positionFiltering); pricingPlan(model.pricingPlan); pricingPlanDataSource(model.pricingPlanDataSource); tags(model.tags); trackerArn(model.trackerArn); trackerName(model.trackerName); updateTime(model.updateTime); } public final Instant getCreateTime() { return createTime; } public final void setCreateTime(Instant createTime) { this.createTime = createTime; } @Override public final Builder createTime(Instant createTime) { this.createTime = createTime; return this; } public final String getDescription() { return description; } public final void setDescription(String description) { this.description = description; } @Override public final Builder description(String description) { this.description = description; return this; } public final String getKmsKeyId() { return kmsKeyId; } public final void setKmsKeyId(String kmsKeyId) { this.kmsKeyId = kmsKeyId; } @Override public final Builder kmsKeyId(String kmsKeyId) { this.kmsKeyId = kmsKeyId; return this; } public final String getPositionFiltering() { return positionFiltering; } public final void setPositionFiltering(String positionFiltering) { this.positionFiltering = positionFiltering; } @Override public final Builder positionFiltering(String positionFiltering) { this.positionFiltering = positionFiltering; return this; } @Override public final Builder positionFiltering(PositionFiltering positionFiltering) { this.positionFiltering(positionFiltering == null ? null : positionFiltering.toString()); return this; } @Deprecated public final String getPricingPlan() { return pricingPlan; } @Deprecated public final void setPricingPlan(String pricingPlan) { this.pricingPlan = pricingPlan; } @Override @Deprecated public final Builder pricingPlan(String pricingPlan) { this.pricingPlan = pricingPlan; return this; } @Override @Deprecated public final Builder pricingPlan(PricingPlan pricingPlan) { this.pricingPlan(pricingPlan == null ? null : pricingPlan.toString()); return this; } @Deprecated public final String getPricingPlanDataSource() { return pricingPlanDataSource; } @Deprecated public final void setPricingPlanDataSource(String pricingPlanDataSource) { this.pricingPlanDataSource = pricingPlanDataSource; } @Override @Deprecated public final Builder pricingPlanDataSource(String pricingPlanDataSource) { this.pricingPlanDataSource = pricingPlanDataSource; 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 getTrackerArn() { return trackerArn; } public final void setTrackerArn(String trackerArn) { this.trackerArn = trackerArn; } @Override public final Builder trackerArn(String trackerArn) { this.trackerArn = trackerArn; return this; } public final String getTrackerName() { return trackerName; } public final void setTrackerName(String trackerName) { this.trackerName = trackerName; } @Override public final Builder trackerName(String trackerName) { this.trackerName = trackerName; return this; } public final Instant getUpdateTime() { return updateTime; } public final void setUpdateTime(Instant updateTime) { this.updateTime = updateTime; } @Override public final Builder updateTime(Instant updateTime) { this.updateTime = updateTime; return this; } @Override public DescribeTrackerResponse build() { return new DescribeTrackerResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy