software.amazon.awssdk.services.codegurureviewer.model.ListCodeReviewsRequest Maven / Gradle / Ivy
Show all versions of codegurureviewer Show documentation
/*
* 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.codegurureviewer.model;
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 ListCodeReviewsRequest extends CodeGuruReviewerRequest implements
ToCopyableBuilder {
private static final SdkField> PROVIDER_TYPES_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("ProviderTypes")
.getter(getter(ListCodeReviewsRequest::providerTypesAsStrings))
.setter(setter(Builder::providerTypesWithStrings))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("ProviderTypes").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> STATES_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("States")
.getter(getter(ListCodeReviewsRequest::statesAsStrings))
.setter(setter(Builder::statesWithStrings))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).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> REPOSITORY_NAMES_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("RepositoryNames")
.getter(getter(ListCodeReviewsRequest::repositoryNames))
.setter(setter(Builder::repositoryNames))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("RepositoryNames").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 TYPE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Type")
.getter(getter(ListCodeReviewsRequest::typeAsString)).setter(setter(Builder::type))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("Type").build()).build();
private static final SdkField MAX_RESULTS_FIELD = SdkField. builder(MarshallingType.INTEGER)
.memberName("MaxResults").getter(getter(ListCodeReviewsRequest::maxResults)).setter(setter(Builder::maxResults))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("MaxResults").build()).build();
private static final SdkField NEXT_TOKEN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("NextToken").getter(getter(ListCodeReviewsRequest::nextToken)).setter(setter(Builder::nextToken))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("NextToken").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(PROVIDER_TYPES_FIELD,
STATES_FIELD, REPOSITORY_NAMES_FIELD, TYPE_FIELD, MAX_RESULTS_FIELD, NEXT_TOKEN_FIELD));
private final List providerTypes;
private final List states;
private final List repositoryNames;
private final String type;
private final Integer maxResults;
private final String nextToken;
private ListCodeReviewsRequest(BuilderImpl builder) {
super(builder);
this.providerTypes = builder.providerTypes;
this.states = builder.states;
this.repositoryNames = builder.repositoryNames;
this.type = builder.type;
this.maxResults = builder.maxResults;
this.nextToken = builder.nextToken;
}
/**
*
* List of provider types for filtering that needs to be applied before displaying the result. For example,
* providerTypes=[GitHub]
lists code reviews from GitHub.
*
*
* 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 #hasProviderTypes} method.
*
*
* @return List of provider types for filtering that needs to be applied before displaying the result. For example,
* providerTypes=[GitHub]
lists code reviews from GitHub.
*/
public final List providerTypes() {
return ProviderTypesCopier.copyStringToEnum(providerTypes);
}
/**
* For responses, this returns true if the service returned a value for the ProviderTypes 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 hasProviderTypes() {
return providerTypes != null && !(providerTypes instanceof SdkAutoConstructList);
}
/**
*
* List of provider types for filtering that needs to be applied before displaying the result. For example,
* providerTypes=[GitHub]
lists code reviews from GitHub.
*
*
* 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 #hasProviderTypes} method.
*
*
* @return List of provider types for filtering that needs to be applied before displaying the result. For example,
* providerTypes=[GitHub]
lists code reviews from GitHub.
*/
public final List providerTypesAsStrings() {
return providerTypes;
}
/**
*
* List of states for filtering that needs to be applied before displaying the result. For example,
* states=[Pending]
lists code reviews in the Pending state.
*
*
* The valid code review states are:
*
*
* -
*
* Completed
: The code review is complete.
*
*
* -
*
* Pending
: The code review started and has not completed or failed.
*
*
* -
*
* Failed
: The code review failed.
*
*
* -
*
* Deleting
: The code review is being deleted.
*
*
*
*
* 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 List of states for filtering that needs to be applied before displaying the result. For example,
* states=[Pending]
lists code reviews in the Pending state.
*
* The valid code review states are:
*
*
* -
*
* Completed
: The code review is complete.
*
*
* -
*
* Pending
: The code review started and has not completed or failed.
*
*
* -
*
* Failed
: The code review failed.
*
*
* -
*
* Deleting
: The code review is being deleted.
*
*
*/
public final List states() {
return JobStatesCopier.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);
}
/**
*
* List of states for filtering that needs to be applied before displaying the result. For example,
* states=[Pending]
lists code reviews in the Pending state.
*
*
* The valid code review states are:
*
*
* -
*
* Completed
: The code review is complete.
*
*
* -
*
* Pending
: The code review started and has not completed or failed.
*
*
* -
*
* Failed
: The code review failed.
*
*
* -
*
* Deleting
: The code review is being deleted.
*
*
*
*
* 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 List of states for filtering that needs to be applied before displaying the result. For example,
* states=[Pending]
lists code reviews in the Pending state.
*
* The valid code review states are:
*
*
* -
*
* Completed
: The code review is complete.
*
*
* -
*
* Pending
: The code review started and has not completed or failed.
*
*
* -
*
* Failed
: The code review failed.
*
*
* -
*
* Deleting
: The code review is being deleted.
*
*
*/
public final List statesAsStrings() {
return states;
}
/**
* For responses, this returns true if the service returned a value for the RepositoryNames 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 hasRepositoryNames() {
return repositoryNames != null && !(repositoryNames instanceof SdkAutoConstructList);
}
/**
*
* List of repository names for filtering that needs to be applied before displaying the result.
*
*
* 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 #hasRepositoryNames} method.
*
*
* @return List of repository names for filtering that needs to be applied before displaying the result.
*/
public final List repositoryNames() {
return repositoryNames;
}
/**
*
* The type of code reviews to list in the response.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return
* {@link Type#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #typeAsString}.
*
*
* @return The type of code reviews to list in the response.
* @see Type
*/
public final Type type() {
return Type.fromValue(type);
}
/**
*
* The type of code reviews to list in the response.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return
* {@link Type#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #typeAsString}.
*
*
* @return The type of code reviews to list in the response.
* @see Type
*/
public final String typeAsString() {
return type;
}
/**
*
* The maximum number of results that are returned per call. The default is 100.
*
*
* @return The maximum number of results that are returned per call. The default is 100.
*/
public final Integer maxResults() {
return maxResults;
}
/**
*
* If nextToken
is returned, there are more results available. The value of nextToken
is a
* unique pagination token for each page. Make the call again using the returned token to retrieve the next page.
* Keep all other arguments unchanged.
*
*
* @return If nextToken
is returned, there are more results available. The value of
* nextToken
is a unique pagination token for each page. Make the call again using the returned
* token to retrieve the next page. Keep all other arguments unchanged.
*/
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(hasProviderTypes() ? providerTypesAsStrings() : null);
hashCode = 31 * hashCode + Objects.hashCode(hasStates() ? statesAsStrings() : null);
hashCode = 31 * hashCode + Objects.hashCode(hasRepositoryNames() ? repositoryNames() : null);
hashCode = 31 * hashCode + Objects.hashCode(typeAsString());
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 ListCodeReviewsRequest)) {
return false;
}
ListCodeReviewsRequest other = (ListCodeReviewsRequest) obj;
return hasProviderTypes() == other.hasProviderTypes()
&& Objects.equals(providerTypesAsStrings(), other.providerTypesAsStrings()) && hasStates() == other.hasStates()
&& Objects.equals(statesAsStrings(), other.statesAsStrings())
&& hasRepositoryNames() == other.hasRepositoryNames()
&& Objects.equals(repositoryNames(), other.repositoryNames())
&& Objects.equals(typeAsString(), other.typeAsString()) && 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("ListCodeReviewsRequest")
.add("ProviderTypes", hasProviderTypes() ? providerTypesAsStrings() : null)
.add("States", hasStates() ? statesAsStrings() : null)
.add("RepositoryNames", hasRepositoryNames() ? repositoryNames() : null).add("Type", typeAsString())
.add("MaxResults", maxResults()).add("NextToken", nextToken()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "ProviderTypes":
return Optional.ofNullable(clazz.cast(providerTypesAsStrings()));
case "States":
return Optional.ofNullable(clazz.cast(statesAsStrings()));
case "RepositoryNames":
return Optional.ofNullable(clazz.cast(repositoryNames()));
case "Type":
return Optional.ofNullable(clazz.cast(typeAsString()));
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