
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 extends Builder> 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