software.amazon.awssdk.services.redshift.model.DisassociateDataShareConsumerResponse Maven / Gradle / Ivy
Show all versions of redshift 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.redshift.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 java.util.stream.Collectors;
import java.util.stream.Stream;
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.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 DisassociateDataShareConsumerResponse extends RedshiftResponse implements
ToCopyableBuilder {
private static final SdkField DATA_SHARE_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("DataShareArn").getter(getter(DisassociateDataShareConsumerResponse::dataShareArn))
.setter(setter(Builder::dataShareArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("DataShareArn").build()).build();
private static final SdkField PRODUCER_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ProducerArn").getter(getter(DisassociateDataShareConsumerResponse::producerArn))
.setter(setter(Builder::producerArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ProducerArn").build()).build();
private static final SdkField ALLOW_PUBLICLY_ACCESSIBLE_CONSUMERS_FIELD = SdkField
. builder(MarshallingType.BOOLEAN)
.memberName("AllowPubliclyAccessibleConsumers")
.getter(getter(DisassociateDataShareConsumerResponse::allowPubliclyAccessibleConsumers))
.setter(setter(Builder::allowPubliclyAccessibleConsumers))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("AllowPubliclyAccessibleConsumers")
.build()).build();
private static final SdkField> DATA_SHARE_ASSOCIATIONS_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("DataShareAssociations")
.getter(getter(DisassociateDataShareConsumerResponse::dataShareAssociations))
.setter(setter(Builder::dataShareAssociations))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("DataShareAssociations").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.SDK_POJO)
.constructor(DataShareAssociation::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final SdkField MANAGED_BY_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ManagedBy").getter(getter(DisassociateDataShareConsumerResponse::managedBy))
.setter(setter(Builder::managedBy))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ManagedBy").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(DATA_SHARE_ARN_FIELD,
PRODUCER_ARN_FIELD, ALLOW_PUBLICLY_ACCESSIBLE_CONSUMERS_FIELD, DATA_SHARE_ASSOCIATIONS_FIELD, MANAGED_BY_FIELD));
private final String dataShareArn;
private final String producerArn;
private final Boolean allowPubliclyAccessibleConsumers;
private final List dataShareAssociations;
private final String managedBy;
private DisassociateDataShareConsumerResponse(BuilderImpl builder) {
super(builder);
this.dataShareArn = builder.dataShareArn;
this.producerArn = builder.producerArn;
this.allowPubliclyAccessibleConsumers = builder.allowPubliclyAccessibleConsumers;
this.dataShareAssociations = builder.dataShareAssociations;
this.managedBy = builder.managedBy;
}
/**
*
* An Amazon Resource Name (ARN) that references the datashare that is owned by a specific namespace of the producer
* cluster. A datashare ARN is in the
* arn:aws:redshift:{region}:{account-id}:{datashare}:{namespace-guid}/{datashare-name}
format.
*
*
* @return An Amazon Resource Name (ARN) that references the datashare that is owned by a specific namespace of the
* producer cluster. A datashare ARN is in the
* arn:aws:redshift:{region}:{account-id}:{datashare}:{namespace-guid}/{datashare-name}
format.
*/
public final String dataShareArn() {
return dataShareArn;
}
/**
*
* The Amazon Resource Name (ARN) of the producer.
*
*
* @return The Amazon Resource Name (ARN) of the producer.
*/
public final String producerArn() {
return producerArn;
}
/**
*
* A value that specifies whether the datashare can be shared to a publicly accessible cluster.
*
*
* @return A value that specifies whether the datashare can be shared to a publicly accessible cluster.
*/
public final Boolean allowPubliclyAccessibleConsumers() {
return allowPubliclyAccessibleConsumers;
}
/**
* For responses, this returns true if the service returned a value for the DataShareAssociations 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 hasDataShareAssociations() {
return dataShareAssociations != null && !(dataShareAssociations instanceof SdkAutoConstructList);
}
/**
*
* A value that specifies when the datashare has an association between producer and data consumers.
*
*
* 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 #hasDataShareAssociations} method.
*
*
* @return A value that specifies when the datashare has an association between producer and data consumers.
*/
public final List dataShareAssociations() {
return dataShareAssociations;
}
/**
*
* The identifier of a datashare to show its managing entity.
*
*
* @return The identifier of a datashare to show its managing entity.
*/
public final String managedBy() {
return managedBy;
}
@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(dataShareArn());
hashCode = 31 * hashCode + Objects.hashCode(producerArn());
hashCode = 31 * hashCode + Objects.hashCode(allowPubliclyAccessibleConsumers());
hashCode = 31 * hashCode + Objects.hashCode(hasDataShareAssociations() ? dataShareAssociations() : null);
hashCode = 31 * hashCode + Objects.hashCode(managedBy());
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 DisassociateDataShareConsumerResponse)) {
return false;
}
DisassociateDataShareConsumerResponse other = (DisassociateDataShareConsumerResponse) obj;
return Objects.equals(dataShareArn(), other.dataShareArn()) && Objects.equals(producerArn(), other.producerArn())
&& Objects.equals(allowPubliclyAccessibleConsumers(), other.allowPubliclyAccessibleConsumers())
&& hasDataShareAssociations() == other.hasDataShareAssociations()
&& Objects.equals(dataShareAssociations(), other.dataShareAssociations())
&& Objects.equals(managedBy(), other.managedBy());
}
/**
* 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("DisassociateDataShareConsumerResponse").add("DataShareArn", dataShareArn())
.add("ProducerArn", producerArn()).add("AllowPubliclyAccessibleConsumers", allowPubliclyAccessibleConsumers())
.add("DataShareAssociations", hasDataShareAssociations() ? dataShareAssociations() : null)
.add("ManagedBy", managedBy()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "DataShareArn":
return Optional.ofNullable(clazz.cast(dataShareArn()));
case "ProducerArn":
return Optional.ofNullable(clazz.cast(producerArn()));
case "AllowPubliclyAccessibleConsumers":
return Optional.ofNullable(clazz.cast(allowPubliclyAccessibleConsumers()));
case "DataShareAssociations":
return Optional.ofNullable(clazz.cast(dataShareAssociations()));
case "ManagedBy":
return Optional.ofNullable(clazz.cast(managedBy()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function