
software.amazon.awssdk.services.managedblockchain.model.UpdateNodeRequest 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.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 UpdateNodeRequest extends ManagedBlockchainRequest implements
ToCopyableBuilder {
private static final SdkField NETWORK_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("NetworkId").getter(getter(UpdateNodeRequest::networkId)).setter(setter(Builder::networkId))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("networkId").build()).build();
private static final SdkField MEMBER_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("MemberId").getter(getter(UpdateNodeRequest::memberId)).setter(setter(Builder::memberId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MemberId").build()).build();
private static final SdkField NODE_ID_FIELD = SdkField. builder(MarshallingType.STRING).memberName("NodeId")
.getter(getter(UpdateNodeRequest::nodeId)).setter(setter(Builder::nodeId))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("nodeId").build()).build();
private static final SdkField LOG_PUBLISHING_CONFIGURATION_FIELD = SdkField
. builder(MarshallingType.SDK_POJO)
.memberName("LogPublishingConfiguration")
.getter(getter(UpdateNodeRequest::logPublishingConfiguration))
.setter(setter(Builder::logPublishingConfiguration))
.constructor(NodeLogPublishingConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LogPublishingConfiguration").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(NETWORK_ID_FIELD,
MEMBER_ID_FIELD, NODE_ID_FIELD, LOG_PUBLISHING_CONFIGURATION_FIELD));
private final String networkId;
private final String memberId;
private final String nodeId;
private final NodeLogPublishingConfiguration logPublishingConfiguration;
private UpdateNodeRequest(BuilderImpl builder) {
super(builder);
this.networkId = builder.networkId;
this.memberId = builder.memberId;
this.nodeId = builder.nodeId;
this.logPublishingConfiguration = builder.logPublishingConfiguration;
}
/**
*
* The unique identifier of the network that the node is on.
*
*
* @return The unique identifier of the network that the node is on.
*/
public final String networkId() {
return networkId;
}
/**
*
* The unique identifier of the member that owns the node.
*
*
* Applies only to Hyperledger Fabric.
*
*
* @return The unique identifier of the member that owns the node.
*
* Applies only to Hyperledger Fabric.
*/
public final String memberId() {
return memberId;
}
/**
*
* The unique identifier of the node.
*
*
* @return The unique identifier of the node.
*/
public final String nodeId() {
return nodeId;
}
/**
*
* Configuration properties for publishing to Amazon CloudWatch Logs.
*
*
* @return Configuration properties for publishing to Amazon CloudWatch Logs.
*/
public final NodeLogPublishingConfiguration logPublishingConfiguration() {
return logPublishingConfiguration;
}
@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(networkId());
hashCode = 31 * hashCode + Objects.hashCode(memberId());
hashCode = 31 * hashCode + Objects.hashCode(nodeId());
hashCode = 31 * hashCode + Objects.hashCode(logPublishingConfiguration());
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 UpdateNodeRequest)) {
return false;
}
UpdateNodeRequest other = (UpdateNodeRequest) obj;
return Objects.equals(networkId(), other.networkId()) && Objects.equals(memberId(), other.memberId())
&& Objects.equals(nodeId(), other.nodeId())
&& Objects.equals(logPublishingConfiguration(), other.logPublishingConfiguration());
}
/**
* 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("UpdateNodeRequest").add("NetworkId", networkId()).add("MemberId", memberId())
.add("NodeId", nodeId()).add("LogPublishingConfiguration", logPublishingConfiguration()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "NetworkId":
return Optional.ofNullable(clazz.cast(networkId()));
case "MemberId":
return Optional.ofNullable(clazz.cast(memberId()));
case "NodeId":
return Optional.ofNullable(clazz.cast(nodeId()));
case "LogPublishingConfiguration":
return Optional.ofNullable(clazz.cast(logPublishingConfiguration()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy