software.amazon.awssdk.services.ec2.model.DisableAwsNetworkPerformanceMetricSubscriptionRequest Maven / Gradle / Ivy
Show all versions of ec2 Show documentation
/*
* 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.ec2.model;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
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 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 DisableAwsNetworkPerformanceMetricSubscriptionRequest extends Ec2Request
implements
ToCopyableBuilder {
private static final SdkField SOURCE_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("Source")
.getter(getter(DisableAwsNetworkPerformanceMetricSubscriptionRequest::source))
.setter(setter(Builder::source))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Source")
.unmarshallLocationName("Source").build()).build();
private static final SdkField DESTINATION_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("Destination")
.getter(getter(DisableAwsNetworkPerformanceMetricSubscriptionRequest::destination))
.setter(setter(Builder::destination))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Destination")
.unmarshallLocationName("Destination").build()).build();
private static final SdkField METRIC_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("Metric")
.getter(getter(DisableAwsNetworkPerformanceMetricSubscriptionRequest::metricAsString))
.setter(setter(Builder::metric))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Metric")
.unmarshallLocationName("Metric").build()).build();
private static final SdkField STATISTIC_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("Statistic")
.getter(getter(DisableAwsNetworkPerformanceMetricSubscriptionRequest::statisticAsString))
.setter(setter(Builder::statistic))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Statistic")
.unmarshallLocationName("Statistic").build()).build();
private static final SdkField DRY_RUN_FIELD = SdkField
. builder(MarshallingType.BOOLEAN)
.memberName("DryRun")
.getter(getter(DisableAwsNetworkPerformanceMetricSubscriptionRequest::dryRun))
.setter(setter(Builder::dryRun))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("DryRun")
.unmarshallLocationName("DryRun").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(SOURCE_FIELD,
DESTINATION_FIELD, METRIC_FIELD, STATISTIC_FIELD, DRY_RUN_FIELD));
private static final Map> SDK_NAME_TO_FIELD = Collections
.unmodifiableMap(new HashMap>() {
{
put("Source", SOURCE_FIELD);
put("Destination", DESTINATION_FIELD);
put("Metric", METRIC_FIELD);
put("Statistic", STATISTIC_FIELD);
put("DryRun", DRY_RUN_FIELD);
}
});
private final String source;
private final String destination;
private final String metric;
private final String statistic;
private final Boolean dryRun;
private DisableAwsNetworkPerformanceMetricSubscriptionRequest(BuilderImpl builder) {
super(builder);
this.source = builder.source;
this.destination = builder.destination;
this.metric = builder.metric;
this.statistic = builder.statistic;
this.dryRun = builder.dryRun;
}
/**
*
* The source Region or Availability Zone that the metric subscription is disabled for. For example,
* us-east-1
.
*
*
* @return The source Region or Availability Zone that the metric subscription is disabled for. For example,
* us-east-1
.
*/
public final String source() {
return source;
}
/**
*
* The target Region or Availability Zone that the metric subscription is disabled for. For example,
* eu-north-1
.
*
*
* @return The target Region or Availability Zone that the metric subscription is disabled for. For example,
* eu-north-1
.
*/
public final String destination() {
return destination;
}
/**
*
* The metric used for the disabled subscription.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #metric} will
* return {@link MetricType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #metricAsString}.
*
*
* @return The metric used for the disabled subscription.
* @see MetricType
*/
public final MetricType metric() {
return MetricType.fromValue(metric);
}
/**
*
* The metric used for the disabled subscription.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #metric} will
* return {@link MetricType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #metricAsString}.
*
*
* @return The metric used for the disabled subscription.
* @see MetricType
*/
public final String metricAsString() {
return metric;
}
/**
*
* The statistic used for the disabled subscription.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #statistic} will
* return {@link StatisticType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #statisticAsString}.
*
*
* @return The statistic used for the disabled subscription.
* @see StatisticType
*/
public final StatisticType statistic() {
return StatisticType.fromValue(statistic);
}
/**
*
* The statistic used for the disabled subscription.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #statistic} will
* return {@link StatisticType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #statisticAsString}.
*
*
* @return The statistic used for the disabled subscription.
* @see StatisticType
*/
public final String statisticAsString() {
return statistic;
}
/**
*
* Checks whether you have the required permissions for the action, without actually making the request, and
* provides an error response. If you have the required permissions, the error response is
* DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
*
*
* @return Checks whether you have the required permissions for the action, without actually making the request, and
* provides an error response. If you have the required permissions, the error response is
* DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
*/
public final Boolean dryRun() {
return dryRun;
}
@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(source());
hashCode = 31 * hashCode + Objects.hashCode(destination());
hashCode = 31 * hashCode + Objects.hashCode(metricAsString());
hashCode = 31 * hashCode + Objects.hashCode(statisticAsString());
hashCode = 31 * hashCode + Objects.hashCode(dryRun());
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 DisableAwsNetworkPerformanceMetricSubscriptionRequest)) {
return false;
}
DisableAwsNetworkPerformanceMetricSubscriptionRequest other = (DisableAwsNetworkPerformanceMetricSubscriptionRequest) obj;
return Objects.equals(source(), other.source()) && Objects.equals(destination(), other.destination())
&& Objects.equals(metricAsString(), other.metricAsString())
&& Objects.equals(statisticAsString(), other.statisticAsString()) && Objects.equals(dryRun(), other.dryRun());
}
/**
* 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("DisableAwsNetworkPerformanceMetricSubscriptionRequest").add("Source", source())
.add("Destination", destination()).add("Metric", metricAsString()).add("Statistic", statisticAsString())
.add("DryRun", dryRun()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "Source":
return Optional.ofNullable(clazz.cast(source()));
case "Destination":
return Optional.ofNullable(clazz.cast(destination()));
case "Metric":
return Optional.ofNullable(clazz.cast(metricAsString()));
case "Statistic":
return Optional.ofNullable(clazz.cast(statisticAsString()));
case "DryRun":
return Optional.ofNullable(clazz.cast(dryRun()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
@Override
public final Map> sdkFieldNameToField() {
return SDK_NAME_TO_FIELD;
}
private static Function