software.amazon.awssdk.services.securityhub.model.UpdateStandardsControlRequest 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.securityhub.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 UpdateStandardsControlRequest extends SecurityHubRequest implements
ToCopyableBuilder {
private static final SdkField STANDARDS_CONTROL_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("StandardsControlArn").getter(getter(UpdateStandardsControlRequest::standardsControlArn))
.setter(setter(Builder::standardsControlArn))
.traits(LocationTrait.builder().location(MarshallLocation.GREEDY_PATH).locationName("StandardsControlArn").build())
.build();
private static final SdkField CONTROL_STATUS_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ControlStatus").getter(getter(UpdateStandardsControlRequest::controlStatusAsString))
.setter(setter(Builder::controlStatus))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ControlStatus").build()).build();
private static final SdkField DISABLED_REASON_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("DisabledReason").getter(getter(UpdateStandardsControlRequest::disabledReason))
.setter(setter(Builder::disabledReason))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("DisabledReason").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(STANDARDS_CONTROL_ARN_FIELD,
CONTROL_STATUS_FIELD, DISABLED_REASON_FIELD));
private final String standardsControlArn;
private final String controlStatus;
private final String disabledReason;
private UpdateStandardsControlRequest(BuilderImpl builder) {
super(builder);
this.standardsControlArn = builder.standardsControlArn;
this.controlStatus = builder.controlStatus;
this.disabledReason = builder.disabledReason;
}
/**
*
* The ARN of the security standard control to enable or disable.
*
*
* @return The ARN of the security standard control to enable or disable.
*/
public final String standardsControlArn() {
return standardsControlArn;
}
/**
*
* The updated status of the security standard control.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #controlStatus}
* will return {@link ControlStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #controlStatusAsString}.
*
*
* @return The updated status of the security standard control.
* @see ControlStatus
*/
public final ControlStatus controlStatus() {
return ControlStatus.fromValue(controlStatus);
}
/**
*
* The updated status of the security standard control.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #controlStatus}
* will return {@link ControlStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #controlStatusAsString}.
*
*
* @return The updated status of the security standard control.
* @see ControlStatus
*/
public final String controlStatusAsString() {
return controlStatus;
}
/**
*
* A description of the reason why you are disabling a security standard control. If you are disabling a control,
* then this is required.
*
*
* @return A description of the reason why you are disabling a security standard control. If you are disabling a
* control, then this is required.
*/
public final String disabledReason() {
return disabledReason;
}
@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(standardsControlArn());
hashCode = 31 * hashCode + Objects.hashCode(controlStatusAsString());
hashCode = 31 * hashCode + Objects.hashCode(disabledReason());
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 UpdateStandardsControlRequest)) {
return false;
}
UpdateStandardsControlRequest other = (UpdateStandardsControlRequest) obj;
return Objects.equals(standardsControlArn(), other.standardsControlArn())
&& Objects.equals(controlStatusAsString(), other.controlStatusAsString())
&& Objects.equals(disabledReason(), other.disabledReason());
}
/**
* 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("UpdateStandardsControlRequest").add("StandardsControlArn", standardsControlArn())
.add("ControlStatus", controlStatusAsString()).add("DisabledReason", disabledReason()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "StandardsControlArn":
return Optional.ofNullable(clazz.cast(standardsControlArn()));
case "ControlStatus":
return Optional.ofNullable(clazz.cast(controlStatusAsString()));
case "DisabledReason":
return Optional.ofNullable(clazz.cast(disabledReason()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function