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

software.amazon.awssdk.services.xray.model.GetInsightSummariesRequest 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.xray.model;

import java.time.Instant;
import java.util.Arrays;
import java.util.Collection;
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.awscore.AwsRequestOverrideConfiguration;
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.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
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 GetInsightSummariesRequest extends XRayRequest implements
        ToCopyableBuilder {
    private static final SdkField> STATES_FIELD = SdkField
            .> builder(MarshallingType.LIST)
            .memberName("States")
            .getter(getter(GetInsightSummariesRequest::statesAsStrings))
            .setter(setter(Builder::statesWithStrings))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("States").build(),
                    ListTrait
                            .builder()
                            .memberLocationName(null)
                            .memberFieldInfo(
                                    SdkField. builder(MarshallingType.STRING)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("member").build()).build()).build()).build();

    private static final SdkField GROUP_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("GroupARN").getter(getter(GetInsightSummariesRequest::groupARN)).setter(setter(Builder::groupARN))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("GroupARN").build()).build();

    private static final SdkField GROUP_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("GroupName").getter(getter(GetInsightSummariesRequest::groupName)).setter(setter(Builder::groupName))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("GroupName").build()).build();

    private static final SdkField START_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT)
            .memberName("StartTime").getter(getter(GetInsightSummariesRequest::startTime)).setter(setter(Builder::startTime))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StartTime").build()).build();

    private static final SdkField END_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT)
            .memberName("EndTime").getter(getter(GetInsightSummariesRequest::endTime)).setter(setter(Builder::endTime))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EndTime").build()).build();

    private static final SdkField MAX_RESULTS_FIELD = SdkField. builder(MarshallingType.INTEGER)
            .memberName("MaxResults").getter(getter(GetInsightSummariesRequest::maxResults)).setter(setter(Builder::maxResults))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MaxResults").build()).build();

    private static final SdkField NEXT_TOKEN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("NextToken").getter(getter(GetInsightSummariesRequest::nextToken)).setter(setter(Builder::nextToken))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("NextToken").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(STATES_FIELD, GROUP_ARN_FIELD,
            GROUP_NAME_FIELD, START_TIME_FIELD, END_TIME_FIELD, MAX_RESULTS_FIELD, NEXT_TOKEN_FIELD));

    private final List states;

    private final String groupARN;

    private final String groupName;

    private final Instant startTime;

    private final Instant endTime;

    private final Integer maxResults;

    private final String nextToken;

    private GetInsightSummariesRequest(BuilderImpl builder) {
        super(builder);
        this.states = builder.states;
        this.groupARN = builder.groupARN;
        this.groupName = builder.groupName;
        this.startTime = builder.startTime;
        this.endTime = builder.endTime;
        this.maxResults = builder.maxResults;
        this.nextToken = builder.nextToken;
    }

    /**
     * 

* The list of insight states. *

*

* 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 #hasStates} method. *

* * @return The list of insight states. */ public final List states() { return InsightStateListCopier.copyStringToEnum(states); } /** * For responses, this returns true if the service returned a value for the States 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 hasStates() { return states != null && !(states instanceof SdkAutoConstructList); } /** *

* The list of insight states. *

*

* 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 #hasStates} method. *

* * @return The list of insight states. */ public final List statesAsStrings() { return states; } /** *

* The Amazon Resource Name (ARN) of the group. Required if the GroupName isn't provided. *

* * @return The Amazon Resource Name (ARN) of the group. Required if the GroupName isn't provided. */ public final String groupARN() { return groupARN; } /** *

* The name of the group. Required if the GroupARN isn't provided. *

* * @return The name of the group. Required if the GroupARN isn't provided. */ public final String groupName() { return groupName; } /** *

* The beginning of the time frame in which the insights started. The start time can't be more than 30 days old. *

* * @return The beginning of the time frame in which the insights started. The start time can't be more than 30 days * old. */ public final Instant startTime() { return startTime; } /** *

* The end of the time frame in which the insights ended. The end time can't be more than 30 days old. *

* * @return The end of the time frame in which the insights ended. The end time can't be more than 30 days old. */ public final Instant endTime() { return endTime; } /** *

* The maximum number of results to display. *

* * @return The maximum number of results to display. */ public final Integer maxResults() { return maxResults; } /** *

* Pagination token. *

* * @return Pagination token. */ public final String nextToken() { return nextToken; } @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(hasStates() ? statesAsStrings() : null); hashCode = 31 * hashCode + Objects.hashCode(groupARN()); hashCode = 31 * hashCode + Objects.hashCode(groupName()); hashCode = 31 * hashCode + Objects.hashCode(startTime()); hashCode = 31 * hashCode + Objects.hashCode(endTime()); hashCode = 31 * hashCode + Objects.hashCode(maxResults()); hashCode = 31 * hashCode + Objects.hashCode(nextToken()); 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 GetInsightSummariesRequest)) { return false; } GetInsightSummariesRequest other = (GetInsightSummariesRequest) obj; return hasStates() == other.hasStates() && Objects.equals(statesAsStrings(), other.statesAsStrings()) && Objects.equals(groupARN(), other.groupARN()) && Objects.equals(groupName(), other.groupName()) && Objects.equals(startTime(), other.startTime()) && Objects.equals(endTime(), other.endTime()) && Objects.equals(maxResults(), other.maxResults()) && Objects.equals(nextToken(), other.nextToken()); } /** * 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("GetInsightSummariesRequest").add("States", hasStates() ? statesAsStrings() : null) .add("GroupARN", groupARN()).add("GroupName", groupName()).add("StartTime", startTime()) .add("EndTime", endTime()).add("MaxResults", maxResults()).add("NextToken", nextToken()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "States": return Optional.ofNullable(clazz.cast(statesAsStrings())); case "GroupARN": return Optional.ofNullable(clazz.cast(groupARN())); case "GroupName": return Optional.ofNullable(clazz.cast(groupName())); case "StartTime": return Optional.ofNullable(clazz.cast(startTime())); case "EndTime": return Optional.ofNullable(clazz.cast(endTime())); case "MaxResults": return Optional.ofNullable(clazz.cast(maxResults())); case "NextToken": return Optional.ofNullable(clazz.cast(nextToken())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((GetInsightSummariesRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends XRayRequest.Builder, SdkPojo, CopyableBuilder { /** *

* The list of insight states. *

* * @param states * The list of insight states. * @return Returns a reference to this object so that method calls can be chained together. */ Builder statesWithStrings(Collection states); /** *

* The list of insight states. *

* * @param states * The list of insight states. * @return Returns a reference to this object so that method calls can be chained together. */ Builder statesWithStrings(String... states); /** *

* The list of insight states. *

* * @param states * The list of insight states. * @return Returns a reference to this object so that method calls can be chained together. */ Builder states(Collection states); /** *

* The list of insight states. *

* * @param states * The list of insight states. * @return Returns a reference to this object so that method calls can be chained together. */ Builder states(InsightState... states); /** *

* The Amazon Resource Name (ARN) of the group. Required if the GroupName isn't provided. *

* * @param groupARN * The Amazon Resource Name (ARN) of the group. Required if the GroupName isn't provided. * @return Returns a reference to this object so that method calls can be chained together. */ Builder groupARN(String groupARN); /** *

* The name of the group. Required if the GroupARN isn't provided. *

* * @param groupName * The name of the group. Required if the GroupARN isn't provided. * @return Returns a reference to this object so that method calls can be chained together. */ Builder groupName(String groupName); /** *

* The beginning of the time frame in which the insights started. The start time can't be more than 30 days old. *

* * @param startTime * The beginning of the time frame in which the insights started. The start time can't be more than 30 * days old. * @return Returns a reference to this object so that method calls can be chained together. */ Builder startTime(Instant startTime); /** *

* The end of the time frame in which the insights ended. The end time can't be more than 30 days old. *

* * @param endTime * The end of the time frame in which the insights ended. The end time can't be more than 30 days old. * @return Returns a reference to this object so that method calls can be chained together. */ Builder endTime(Instant endTime); /** *

* The maximum number of results to display. *

* * @param maxResults * The maximum number of results to display. * @return Returns a reference to this object so that method calls can be chained together. */ Builder maxResults(Integer maxResults); /** *

* Pagination token. *

* * @param nextToken * Pagination token. * @return Returns a reference to this object so that method calls can be chained together. */ Builder nextToken(String nextToken); @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends XRayRequest.BuilderImpl implements Builder { private List states = DefaultSdkAutoConstructList.getInstance(); private String groupARN; private String groupName; private Instant startTime; private Instant endTime; private Integer maxResults; private String nextToken; private BuilderImpl() { } private BuilderImpl(GetInsightSummariesRequest model) { super(model); statesWithStrings(model.states); groupARN(model.groupARN); groupName(model.groupName); startTime(model.startTime); endTime(model.endTime); maxResults(model.maxResults); nextToken(model.nextToken); } public final Collection getStates() { if (states instanceof SdkAutoConstructList) { return null; } return states; } public final void setStates(Collection states) { this.states = InsightStateListCopier.copy(states); } @Override public final Builder statesWithStrings(Collection states) { this.states = InsightStateListCopier.copy(states); return this; } @Override @SafeVarargs public final Builder statesWithStrings(String... states) { statesWithStrings(Arrays.asList(states)); return this; } @Override public final Builder states(Collection states) { this.states = InsightStateListCopier.copyEnumToString(states); return this; } @Override @SafeVarargs public final Builder states(InsightState... states) { states(Arrays.asList(states)); return this; } public final String getGroupARN() { return groupARN; } public final void setGroupARN(String groupARN) { this.groupARN = groupARN; } @Override public final Builder groupARN(String groupARN) { this.groupARN = groupARN; return this; } public final String getGroupName() { return groupName; } public final void setGroupName(String groupName) { this.groupName = groupName; } @Override public final Builder groupName(String groupName) { this.groupName = groupName; return this; } public final Instant getStartTime() { return startTime; } public final void setStartTime(Instant startTime) { this.startTime = startTime; } @Override public final Builder startTime(Instant startTime) { this.startTime = startTime; return this; } public final Instant getEndTime() { return endTime; } public final void setEndTime(Instant endTime) { this.endTime = endTime; } @Override public final Builder endTime(Instant endTime) { this.endTime = endTime; return this; } public final Integer getMaxResults() { return maxResults; } public final void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } @Override public final Builder maxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public final String getNextToken() { return nextToken; } public final void setNextToken(String nextToken) { this.nextToken = nextToken; } @Override public final Builder nextToken(String nextToken) { this.nextToken = nextToken; return this; } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public GetInsightSummariesRequest build() { return new GetInsightSummariesRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy