software.amazon.awssdk.services.cleanrooms.model.StartProtectedQueryRequest Maven / Gradle / Ivy
Show all versions of cleanrooms 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.cleanrooms.model;
import java.util.Arrays;
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.LocationTrait;
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 StartProtectedQueryRequest extends CleanRoomsRequest implements
ToCopyableBuilder {
private static final SdkField TYPE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("type")
.getter(getter(StartProtectedQueryRequest::typeAsString)).setter(setter(Builder::type))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("type").build()).build();
private static final SdkField MEMBERSHIP_IDENTIFIER_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("membershipIdentifier").getter(getter(StartProtectedQueryRequest::membershipIdentifier))
.setter(setter(Builder::membershipIdentifier))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("membershipIdentifier").build()).build();
private static final SdkField SQL_PARAMETERS_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("sqlParameters")
.getter(getter(StartProtectedQueryRequest::sqlParameters)).setter(setter(Builder::sqlParameters))
.constructor(ProtectedQuerySQLParameters::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("sqlParameters").build()).build();
private static final SdkField RESULT_CONFIGURATION_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("resultConfiguration")
.getter(getter(StartProtectedQueryRequest::resultConfiguration)).setter(setter(Builder::resultConfiguration))
.constructor(ProtectedQueryResultConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("resultConfiguration").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(TYPE_FIELD,
MEMBERSHIP_IDENTIFIER_FIELD, SQL_PARAMETERS_FIELD, RESULT_CONFIGURATION_FIELD));
private final String type;
private final String membershipIdentifier;
private final ProtectedQuerySQLParameters sqlParameters;
private final ProtectedQueryResultConfiguration resultConfiguration;
private StartProtectedQueryRequest(BuilderImpl builder) {
super(builder);
this.type = builder.type;
this.membershipIdentifier = builder.membershipIdentifier;
this.sqlParameters = builder.sqlParameters;
this.resultConfiguration = builder.resultConfiguration;
}
/**
*
* The type of the protected query to be started.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return
* {@link ProtectedQueryType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #typeAsString}.
*
*
* @return The type of the protected query to be started.
* @see ProtectedQueryType
*/
public final ProtectedQueryType type() {
return ProtectedQueryType.fromValue(type);
}
/**
*
* The type of the protected query to be started.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return
* {@link ProtectedQueryType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #typeAsString}.
*
*
* @return The type of the protected query to be started.
* @see ProtectedQueryType
*/
public final String typeAsString() {
return type;
}
/**
*
* A unique identifier for the membership to run this query against. Currently accepts a membership ID.
*
*
* @return A unique identifier for the membership to run this query against. Currently accepts a membership ID.
*/
public final String membershipIdentifier() {
return membershipIdentifier;
}
/**
*
* The protected SQL query parameters.
*
*
* @return The protected SQL query parameters.
*/
public final ProtectedQuerySQLParameters sqlParameters() {
return sqlParameters;
}
/**
*
* The details needed to write the query results.
*
*
* @return The details needed to write the query results.
*/
public final ProtectedQueryResultConfiguration resultConfiguration() {
return resultConfiguration;
}
@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(typeAsString());
hashCode = 31 * hashCode + Objects.hashCode(membershipIdentifier());
hashCode = 31 * hashCode + Objects.hashCode(sqlParameters());
hashCode = 31 * hashCode + Objects.hashCode(resultConfiguration());
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 StartProtectedQueryRequest)) {
return false;
}
StartProtectedQueryRequest other = (StartProtectedQueryRequest) obj;
return Objects.equals(typeAsString(), other.typeAsString())
&& Objects.equals(membershipIdentifier(), other.membershipIdentifier())
&& Objects.equals(sqlParameters(), other.sqlParameters())
&& Objects.equals(resultConfiguration(), other.resultConfiguration());
}
/**
* 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("StartProtectedQueryRequest").add("Type", typeAsString())
.add("MembershipIdentifier", membershipIdentifier())
.add("SqlParameters", sqlParameters() == null ? null : "*** Sensitive Data Redacted ***")
.add("ResultConfiguration", resultConfiguration()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "type":
return Optional.ofNullable(clazz.cast(typeAsString()));
case "membershipIdentifier":
return Optional.ofNullable(clazz.cast(membershipIdentifier()));
case "sqlParameters":
return Optional.ofNullable(clazz.cast(sqlParameters()));
case "resultConfiguration":
return Optional.ofNullable(clazz.cast(resultConfiguration()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function