Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
software.amazon.awssdk.services.kafka.model.CreateReplicatorRequest Maven / Gradle / Ivy
Go to download
The AWS Java SDK for Kafka module holds the client classes that are used for
communicating with Kafka.
/*
* 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.kafka.model;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
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.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.traits.MapTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructMap;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructMap;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Creates a replicator using the specified configuration.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class CreateReplicatorRequest extends KafkaRequest implements
ToCopyableBuilder {
private static final SdkField DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("Description").getter(getter(CreateReplicatorRequest::description)).setter(setter(Builder::description))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("description").build()).build();
private static final SdkField> KAFKA_CLUSTERS_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("KafkaClusters")
.getter(getter(CreateReplicatorRequest::kafkaClusters))
.setter(setter(Builder::kafkaClusters))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("kafkaClusters").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.SDK_POJO)
.constructor(KafkaCluster::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final SdkField> REPLICATION_INFO_LIST_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("ReplicationInfoList")
.getter(getter(CreateReplicatorRequest::replicationInfoList))
.setter(setter(Builder::replicationInfoList))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("replicationInfoList").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.SDK_POJO)
.constructor(ReplicationInfo::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final SdkField REPLICATOR_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ReplicatorName").getter(getter(CreateReplicatorRequest::replicatorName))
.setter(setter(Builder::replicatorName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("replicatorName").build()).build();
private static final SdkField SERVICE_EXECUTION_ROLE_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ServiceExecutionRoleArn").getter(getter(CreateReplicatorRequest::serviceExecutionRoleArn))
.setter(setter(Builder::serviceExecutionRoleArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("serviceExecutionRoleArn").build())
.build();
private static final SdkField> TAGS_FIELD = SdkField
.> builder(MarshallingType.MAP)
.memberName("Tags")
.getter(getter(CreateReplicatorRequest::tags))
.setter(setter(Builder::tags))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("tags").build(),
MapTrait.builder()
.keyLocationName("key")
.valueLocationName("value")
.valueFieldInfo(
SdkField. builder(MarshallingType.STRING)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("value").build()).build()).build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(DESCRIPTION_FIELD,
KAFKA_CLUSTERS_FIELD, REPLICATION_INFO_LIST_FIELD, REPLICATOR_NAME_FIELD, SERVICE_EXECUTION_ROLE_ARN_FIELD,
TAGS_FIELD));
private final String description;
private final List kafkaClusters;
private final List replicationInfoList;
private final String replicatorName;
private final String serviceExecutionRoleArn;
private final Map tags;
private CreateReplicatorRequest(BuilderImpl builder) {
super(builder);
this.description = builder.description;
this.kafkaClusters = builder.kafkaClusters;
this.replicationInfoList = builder.replicationInfoList;
this.replicatorName = builder.replicatorName;
this.serviceExecutionRoleArn = builder.serviceExecutionRoleArn;
this.tags = builder.tags;
}
/**
*
* A summary description of the replicator.
*
*
* @return A summary description of the replicator.
*/
public final String description() {
return description;
}
/**
* For responses, this returns true if the service returned a value for the KafkaClusters 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 hasKafkaClusters() {
return kafkaClusters != null && !(kafkaClusters instanceof SdkAutoConstructList);
}
/**
*
* Kafka Clusters to use in setting up sources / targets for replication.
*
*
* 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 #hasKafkaClusters} method.
*
*
* @return Kafka Clusters to use in setting up sources / targets for replication.
*/
public final List kafkaClusters() {
return kafkaClusters;
}
/**
* For responses, this returns true if the service returned a value for the ReplicationInfoList 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 hasReplicationInfoList() {
return replicationInfoList != null && !(replicationInfoList instanceof SdkAutoConstructList);
}
/**
*
* A list of replication configurations, where each configuration targets a given source cluster to target cluster
* replication flow.
*
*
* 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 #hasReplicationInfoList} method.
*
*
* @return A list of replication configurations, where each configuration targets a given source cluster to target
* cluster replication flow.
*/
public final List replicationInfoList() {
return replicationInfoList;
}
/**
*
* The name of the replicator. Alpha-numeric characters with '-' are allowed.
*
*
* @return The name of the replicator. Alpha-numeric characters with '-' are allowed.
*/
public final String replicatorName() {
return replicatorName;
}
/**
*
* The ARN of the IAM role used by the replicator to access resources in the customer's account (e.g source and
* target clusters)
*
*
* @return The ARN of the IAM role used by the replicator to access resources in the customer's account (e.g source
* and target clusters)
*/
public final String serviceExecutionRoleArn() {
return serviceExecutionRoleArn;
}
/**
* For responses, this returns true if the service returned a value for the Tags 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 hasTags() {
return tags != null && !(tags instanceof SdkAutoConstructMap);
}
/**
*
* List of tags to attach to created Replicator.
*
*
* 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 #hasTags} method.
*
*
* @return List of tags to attach to created Replicator.
*/
public final Map tags() {
return tags;
}
@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(description());
hashCode = 31 * hashCode + Objects.hashCode(hasKafkaClusters() ? kafkaClusters() : null);
hashCode = 31 * hashCode + Objects.hashCode(hasReplicationInfoList() ? replicationInfoList() : null);
hashCode = 31 * hashCode + Objects.hashCode(replicatorName());
hashCode = 31 * hashCode + Objects.hashCode(serviceExecutionRoleArn());
hashCode = 31 * hashCode + Objects.hashCode(hasTags() ? tags() : null);
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 CreateReplicatorRequest)) {
return false;
}
CreateReplicatorRequest other = (CreateReplicatorRequest) obj;
return Objects.equals(description(), other.description()) && hasKafkaClusters() == other.hasKafkaClusters()
&& Objects.equals(kafkaClusters(), other.kafkaClusters())
&& hasReplicationInfoList() == other.hasReplicationInfoList()
&& Objects.equals(replicationInfoList(), other.replicationInfoList())
&& Objects.equals(replicatorName(), other.replicatorName())
&& Objects.equals(serviceExecutionRoleArn(), other.serviceExecutionRoleArn()) && hasTags() == other.hasTags()
&& Objects.equals(tags(), other.tags());
}
/**
* 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("CreateReplicatorRequest").add("Description", description())
.add("KafkaClusters", hasKafkaClusters() ? kafkaClusters() : null)
.add("ReplicationInfoList", hasReplicationInfoList() ? replicationInfoList() : null)
.add("ReplicatorName", replicatorName()).add("ServiceExecutionRoleArn", serviceExecutionRoleArn())
.add("Tags", hasTags() ? tags() : null).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "Description":
return Optional.ofNullable(clazz.cast(description()));
case "KafkaClusters":
return Optional.ofNullable(clazz.cast(kafkaClusters()));
case "ReplicationInfoList":
return Optional.ofNullable(clazz.cast(replicationInfoList()));
case "ReplicatorName":
return Optional.ofNullable(clazz.cast(replicatorName()));
case "ServiceExecutionRoleArn":
return Optional.ofNullable(clazz.cast(serviceExecutionRoleArn()));
case "Tags":
return Optional.ofNullable(clazz.cast(tags()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function getter(Function g) {
return obj -> g.apply((CreateReplicatorRequest) obj);
}
private static BiConsumer setter(BiConsumer s) {
return (obj, val) -> s.accept((Builder) obj, val);
}
public interface Builder extends KafkaRequest.Builder, SdkPojo, CopyableBuilder {
/**
*
* A summary description of the replicator.
*
*
* @param description
* A summary description of the replicator.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder description(String description);
/**
*
* Kafka Clusters to use in setting up sources / targets for replication.
*
*
* @param kafkaClusters
* Kafka Clusters to use in setting up sources / targets for replication.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder kafkaClusters(Collection kafkaClusters);
/**
*
* Kafka Clusters to use in setting up sources / targets for replication.
*
*
* @param kafkaClusters
* Kafka Clusters to use in setting up sources / targets for replication.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder kafkaClusters(KafkaCluster... kafkaClusters);
/**
*
* Kafka Clusters to use in setting up sources / targets for replication.
*
* This is a convenience method that creates an instance of the
* {@link software.amazon.awssdk.services.kafka.model.KafkaCluster.Builder} avoiding the need to create one
* manually via {@link software.amazon.awssdk.services.kafka.model.KafkaCluster#builder()}.
*
*
* When the {@link Consumer} completes,
* {@link software.amazon.awssdk.services.kafka.model.KafkaCluster.Builder#build()} is called immediately and
* its result is passed to {@link #kafkaClusters(List)}.
*
* @param kafkaClusters
* a consumer that will call methods on
* {@link software.amazon.awssdk.services.kafka.model.KafkaCluster.Builder}
* @return Returns a reference to this object so that method calls can be chained together.
* @see #kafkaClusters(java.util.Collection)
*/
Builder kafkaClusters(Consumer... kafkaClusters);
/**
*
* A list of replication configurations, where each configuration targets a given source cluster to target
* cluster replication flow.
*
*
* @param replicationInfoList
* A list of replication configurations, where each configuration targets a given source cluster to
* target cluster replication flow.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder replicationInfoList(Collection replicationInfoList);
/**
*
* A list of replication configurations, where each configuration targets a given source cluster to target
* cluster replication flow.
*
*
* @param replicationInfoList
* A list of replication configurations, where each configuration targets a given source cluster to
* target cluster replication flow.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder replicationInfoList(ReplicationInfo... replicationInfoList);
/**
*
* A list of replication configurations, where each configuration targets a given source cluster to target
* cluster replication flow.
*
* This is a convenience method that creates an instance of the
* {@link software.amazon.awssdk.services.kafka.model.ReplicationInfo.Builder} avoiding the need to create one
* manually via {@link software.amazon.awssdk.services.kafka.model.ReplicationInfo#builder()}.
*
*
* When the {@link Consumer} completes,
* {@link software.amazon.awssdk.services.kafka.model.ReplicationInfo.Builder#build()} is called immediately and
* its result is passed to {@link #replicationInfoList(List)}.
*
* @param replicationInfoList
* a consumer that will call methods on
* {@link software.amazon.awssdk.services.kafka.model.ReplicationInfo.Builder}
* @return Returns a reference to this object so that method calls can be chained together.
* @see #replicationInfoList(java.util.Collection)
*/
Builder replicationInfoList(Consumer... replicationInfoList);
/**
*
* The name of the replicator. Alpha-numeric characters with '-' are allowed.
*
*
* @param replicatorName
* The name of the replicator. Alpha-numeric characters with '-' are allowed.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder replicatorName(String replicatorName);
/**
*
* The ARN of the IAM role used by the replicator to access resources in the customer's account (e.g source and
* target clusters)
*
*
* @param serviceExecutionRoleArn
* The ARN of the IAM role used by the replicator to access resources in the customer's account (e.g
* source and target clusters)
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder serviceExecutionRoleArn(String serviceExecutionRoleArn);
/**
*
* List of tags to attach to created Replicator.
*
*
* @param tags
* List of tags to attach to created Replicator.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder tags(Map tags);
@Override
Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration);
@Override
Builder overrideConfiguration(Consumer builderConsumer);
}
static final class BuilderImpl extends KafkaRequest.BuilderImpl implements Builder {
private String description;
private List kafkaClusters = DefaultSdkAutoConstructList.getInstance();
private List replicationInfoList = DefaultSdkAutoConstructList.getInstance();
private String replicatorName;
private String serviceExecutionRoleArn;
private Map tags = DefaultSdkAutoConstructMap.getInstance();
private BuilderImpl() {
}
private BuilderImpl(CreateReplicatorRequest model) {
super(model);
description(model.description);
kafkaClusters(model.kafkaClusters);
replicationInfoList(model.replicationInfoList);
replicatorName(model.replicatorName);
serviceExecutionRoleArn(model.serviceExecutionRoleArn);
tags(model.tags);
}
public final String getDescription() {
return description;
}
public final void setDescription(String description) {
this.description = description;
}
@Override
public final Builder description(String description) {
this.description = description;
return this;
}
public final List getKafkaClusters() {
List result = ___listOfKafkaClusterCopier.copyToBuilder(this.kafkaClusters);
if (result instanceof SdkAutoConstructList) {
return null;
}
return result;
}
public final void setKafkaClusters(Collection kafkaClusters) {
this.kafkaClusters = ___listOfKafkaClusterCopier.copyFromBuilder(kafkaClusters);
}
@Override
public final Builder kafkaClusters(Collection kafkaClusters) {
this.kafkaClusters = ___listOfKafkaClusterCopier.copy(kafkaClusters);
return this;
}
@Override
@SafeVarargs
public final Builder kafkaClusters(KafkaCluster... kafkaClusters) {
kafkaClusters(Arrays.asList(kafkaClusters));
return this;
}
@Override
@SafeVarargs
public final Builder kafkaClusters(Consumer... kafkaClusters) {
kafkaClusters(Stream.of(kafkaClusters).map(c -> KafkaCluster.builder().applyMutation(c).build())
.collect(Collectors.toList()));
return this;
}
public final List getReplicationInfoList() {
List result = ___listOfReplicationInfoCopier.copyToBuilder(this.replicationInfoList);
if (result instanceof SdkAutoConstructList) {
return null;
}
return result;
}
public final void setReplicationInfoList(Collection replicationInfoList) {
this.replicationInfoList = ___listOfReplicationInfoCopier.copyFromBuilder(replicationInfoList);
}
@Override
public final Builder replicationInfoList(Collection replicationInfoList) {
this.replicationInfoList = ___listOfReplicationInfoCopier.copy(replicationInfoList);
return this;
}
@Override
@SafeVarargs
public final Builder replicationInfoList(ReplicationInfo... replicationInfoList) {
replicationInfoList(Arrays.asList(replicationInfoList));
return this;
}
@Override
@SafeVarargs
public final Builder replicationInfoList(Consumer... replicationInfoList) {
replicationInfoList(Stream.of(replicationInfoList).map(c -> ReplicationInfo.builder().applyMutation(c).build())
.collect(Collectors.toList()));
return this;
}
public final String getReplicatorName() {
return replicatorName;
}
public final void setReplicatorName(String replicatorName) {
this.replicatorName = replicatorName;
}
@Override
public final Builder replicatorName(String replicatorName) {
this.replicatorName = replicatorName;
return this;
}
public final String getServiceExecutionRoleArn() {
return serviceExecutionRoleArn;
}
public final void setServiceExecutionRoleArn(String serviceExecutionRoleArn) {
this.serviceExecutionRoleArn = serviceExecutionRoleArn;
}
@Override
public final Builder serviceExecutionRoleArn(String serviceExecutionRoleArn) {
this.serviceExecutionRoleArn = serviceExecutionRoleArn;
return this;
}
public final Map getTags() {
if (tags instanceof SdkAutoConstructMap) {
return null;
}
return tags;
}
public final void setTags(Map tags) {
this.tags = ___mapOf__stringCopier.copy(tags);
}
@Override
public final Builder tags(Map tags) {
this.tags = ___mapOf__stringCopier.copy(tags);
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 CreateReplicatorRequest build() {
return new CreateReplicatorRequest(this);
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
}
}