
software.amazon.awssdk.services.managedblockchain.model.CreateMemberRequest 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.managedblockchain.model;
import java.beans.Transient;
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.DefaultValueTrait;
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 CreateMemberRequest extends ManagedBlockchainRequest implements
ToCopyableBuilder {
private static final SdkField CLIENT_REQUEST_TOKEN_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("ClientRequestToken")
.getter(getter(CreateMemberRequest::clientRequestToken))
.setter(setter(Builder::clientRequestToken))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ClientRequestToken").build(),
DefaultValueTrait.idempotencyToken()).build();
private static final SdkField INVITATION_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("InvitationId").getter(getter(CreateMemberRequest::invitationId)).setter(setter(Builder::invitationId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("InvitationId").build()).build();
private static final SdkField NETWORK_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("NetworkId").getter(getter(CreateMemberRequest::networkId)).setter(setter(Builder::networkId))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("networkId").build()).build();
private static final SdkField MEMBER_CONFIGURATION_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("MemberConfiguration")
.getter(getter(CreateMemberRequest::memberConfiguration)).setter(setter(Builder::memberConfiguration))
.constructor(MemberConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MemberConfiguration").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CLIENT_REQUEST_TOKEN_FIELD,
INVITATION_ID_FIELD, NETWORK_ID_FIELD, MEMBER_CONFIGURATION_FIELD));
private final String clientRequestToken;
private final String invitationId;
private final String networkId;
private final MemberConfiguration memberConfiguration;
private CreateMemberRequest(BuilderImpl builder) {
super(builder);
this.clientRequestToken = builder.clientRequestToken;
this.invitationId = builder.invitationId;
this.networkId = builder.networkId;
this.memberConfiguration = builder.memberConfiguration;
}
/**
*
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent
* operation completes no more than one time. This identifier is required only if you make a service request
* directly using an HTTP client. It is generated automatically if you use an AWS SDK or the AWS CLI.
*
*
* @return A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An
* idempotent operation completes no more than one time. This identifier is required only if you make a
* service request directly using an HTTP client. It is generated automatically if you use an AWS SDK or the
* AWS CLI.
*/
public final String clientRequestToken() {
return clientRequestToken;
}
/**
*
* The unique identifier of the invitation that is sent to the member to join the network.
*
*
* @return The unique identifier of the invitation that is sent to the member to join the network.
*/
public final String invitationId() {
return invitationId;
}
/**
*
* The unique identifier of the network in which the member is created.
*
*
* @return The unique identifier of the network in which the member is created.
*/
public final String networkId() {
return networkId;
}
/**
*
* Member configuration parameters.
*
*
* @return Member configuration parameters.
*/
public final MemberConfiguration memberConfiguration() {
return memberConfiguration;
}
@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(clientRequestToken());
hashCode = 31 * hashCode + Objects.hashCode(invitationId());
hashCode = 31 * hashCode + Objects.hashCode(networkId());
hashCode = 31 * hashCode + Objects.hashCode(memberConfiguration());
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 CreateMemberRequest)) {
return false;
}
CreateMemberRequest other = (CreateMemberRequest) obj;
return Objects.equals(clientRequestToken(), other.clientRequestToken())
&& Objects.equals(invitationId(), other.invitationId()) && Objects.equals(networkId(), other.networkId())
&& Objects.equals(memberConfiguration(), other.memberConfiguration());
}
/**
* 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("CreateMemberRequest").add("ClientRequestToken", clientRequestToken())
.add("InvitationId", invitationId()).add("NetworkId", networkId())
.add("MemberConfiguration", memberConfiguration()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "ClientRequestToken":
return Optional.ofNullable(clazz.cast(clientRequestToken()));
case "InvitationId":
return Optional.ofNullable(clazz.cast(invitationId()));
case "NetworkId":
return Optional.ofNullable(clazz.cast(networkId()));
case "MemberConfiguration":
return Optional.ofNullable(clazz.cast(memberConfiguration()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy