
software.amazon.awssdk.services.iot.model.UpdateCertificateRequest 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.iot.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;
/**
*
* The input for the UpdateCertificate operation.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class UpdateCertificateRequest extends IotRequest implements
ToCopyableBuilder {
private static final SdkField CERTIFICATE_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("certificateId").getter(getter(UpdateCertificateRequest::certificateId))
.setter(setter(Builder::certificateId))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("certificateId").build()).build();
private static final SdkField NEW_STATUS_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("newStatus").getter(getter(UpdateCertificateRequest::newStatusAsString))
.setter(setter(Builder::newStatus))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("newStatus").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CERTIFICATE_ID_FIELD,
NEW_STATUS_FIELD));
private final String certificateId;
private final String newStatus;
private UpdateCertificateRequest(BuilderImpl builder) {
super(builder);
this.certificateId = builder.certificateId;
this.newStatus = builder.newStatus;
}
/**
*
* The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)
*
*
* @return The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)
*/
public final String certificateId() {
return certificateId;
}
/**
*
* The new status.
*
*
* Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception being
* thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are not intended for
* developer use.
*
*
* Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #newStatus} will
* return {@link CertificateStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #newStatusAsString}.
*
*
* @return The new status.
*
* Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception
* being thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are not
* intended for developer use.
*
*
* Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
* @see CertificateStatus
*/
public final CertificateStatus newStatus() {
return CertificateStatus.fromValue(newStatus);
}
/**
*
* The new status.
*
*
* Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception being
* thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are not intended for
* developer use.
*
*
* Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #newStatus} will
* return {@link CertificateStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #newStatusAsString}.
*
*
* @return The new status.
*
* Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception
* being thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are not
* intended for developer use.
*
*
* Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
* @see CertificateStatus
*/
public final String newStatusAsString() {
return newStatus;
}
@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(certificateId());
hashCode = 31 * hashCode + Objects.hashCode(newStatusAsString());
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 UpdateCertificateRequest)) {
return false;
}
UpdateCertificateRequest other = (UpdateCertificateRequest) obj;
return Objects.equals(certificateId(), other.certificateId())
&& Objects.equals(newStatusAsString(), other.newStatusAsString());
}
/**
* 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("UpdateCertificateRequest").add("CertificateId", certificateId())
.add("NewStatus", newStatusAsString()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "certificateId":
return Optional.ofNullable(clazz.cast(certificateId()));
case "newStatus":
return Optional.ofNullable(clazz.cast(newStatusAsString()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
*
* Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception
* being thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are
* not intended for developer use.
*
*
* Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
* @see CertificateStatus
* @return Returns a reference to this object so that method calls can be chained together.
* @see CertificateStatus
*/
Builder newStatus(String newStatus);
/**
*
* The new status.
*
*
* Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception being
* thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are not intended
* for developer use.
*
*
* Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
*
*
* @param newStatus
* The new status.
*
* Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception
* being thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are
* not intended for developer use.
*
*
* Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
* @see CertificateStatus
* @return Returns a reference to this object so that method calls can be chained together.
* @see CertificateStatus
*/
Builder newStatus(CertificateStatus newStatus);
@Override
Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration);
@Override
Builder overrideConfiguration(Consumer builderConsumer);
}
static final class BuilderImpl extends IotRequest.BuilderImpl implements Builder {
private String certificateId;
private String newStatus;
private BuilderImpl() {
}
private BuilderImpl(UpdateCertificateRequest model) {
super(model);
certificateId(model.certificateId);
newStatus(model.newStatus);
}
public final String getCertificateId() {
return certificateId;
}
public final void setCertificateId(String certificateId) {
this.certificateId = certificateId;
}
@Override
public final Builder certificateId(String certificateId) {
this.certificateId = certificateId;
return this;
}
public final String getNewStatus() {
return newStatus;
}
public final void setNewStatus(String newStatus) {
this.newStatus = newStatus;
}
@Override
public final Builder newStatus(String newStatus) {
this.newStatus = newStatus;
return this;
}
@Override
public final Builder newStatus(CertificateStatus newStatus) {
this.newStatus(newStatus == null ? null : newStatus.toString());
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 UpdateCertificateRequest build() {
return new UpdateCertificateRequest(this);
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
}
}