software.amazon.awssdk.services.elasticloadbalancingv2.model.TrustStore Maven / Gradle / Ivy
Show all versions of elasticloadbalancingv2 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.elasticloadbalancingv2.model;
import java.io.Serializable;
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.Function;
import software.amazon.awssdk.annotations.Generated;
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;
/**
*
* Information about a trust store.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class TrustStore implements SdkPojo, Serializable, ToCopyableBuilder {
private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Name")
.getter(getter(TrustStore::name)).setter(setter(Builder::name))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Name").build()).build();
private static final SdkField TRUST_STORE_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("TrustStoreArn").getter(getter(TrustStore::trustStoreArn)).setter(setter(Builder::trustStoreArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TrustStoreArn").build()).build();
private static final SdkField STATUS_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Status")
.getter(getter(TrustStore::statusAsString)).setter(setter(Builder::status))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Status").build()).build();
private static final SdkField NUMBER_OF_CA_CERTIFICATES_FIELD = SdkField. builder(MarshallingType.INTEGER)
.memberName("NumberOfCaCertificates").getter(getter(TrustStore::numberOfCaCertificates))
.setter(setter(Builder::numberOfCaCertificates))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("NumberOfCaCertificates").build())
.build();
private static final SdkField TOTAL_REVOKED_ENTRIES_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("TotalRevokedEntries").getter(getter(TrustStore::totalRevokedEntries))
.setter(setter(Builder::totalRevokedEntries))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TotalRevokedEntries").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(NAME_FIELD,
TRUST_STORE_ARN_FIELD, STATUS_FIELD, NUMBER_OF_CA_CERTIFICATES_FIELD, TOTAL_REVOKED_ENTRIES_FIELD));
private static final long serialVersionUID = 1L;
private final String name;
private final String trustStoreArn;
private final String status;
private final Integer numberOfCaCertificates;
private final Long totalRevokedEntries;
private TrustStore(BuilderImpl builder) {
this.name = builder.name;
this.trustStoreArn = builder.trustStoreArn;
this.status = builder.status;
this.numberOfCaCertificates = builder.numberOfCaCertificates;
this.totalRevokedEntries = builder.totalRevokedEntries;
}
/**
*
* The name of the trust store.
*
*
* @return The name of the trust store.
*/
public final String name() {
return name;
}
/**
*
* The Amazon Resource Name (ARN) of the trust store.
*
*
* @return The Amazon Resource Name (ARN) of the trust store.
*/
public final String trustStoreArn() {
return trustStoreArn;
}
/**
*
* The current status of the trust store.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link TrustStoreStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #statusAsString}.
*
*
* @return The current status of the trust store.
* @see TrustStoreStatus
*/
public final TrustStoreStatus status() {
return TrustStoreStatus.fromValue(status);
}
/**
*
* The current status of the trust store.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link TrustStoreStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #statusAsString}.
*
*
* @return The current status of the trust store.
* @see TrustStoreStatus
*/
public final String statusAsString() {
return status;
}
/**
*
* The number of ca certificates in the trust store.
*
*
* @return The number of ca certificates in the trust store.
*/
public final Integer numberOfCaCertificates() {
return numberOfCaCertificates;
}
/**
*
* The number of revoked certificates in the trust store.
*
*
* @return The number of revoked certificates in the trust store.
*/
public final Long totalRevokedEntries() {
return totalRevokedEntries;
}
@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 + Objects.hashCode(name());
hashCode = 31 * hashCode + Objects.hashCode(trustStoreArn());
hashCode = 31 * hashCode + Objects.hashCode(statusAsString());
hashCode = 31 * hashCode + Objects.hashCode(numberOfCaCertificates());
hashCode = 31 * hashCode + Objects.hashCode(totalRevokedEntries());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof TrustStore)) {
return false;
}
TrustStore other = (TrustStore) obj;
return Objects.equals(name(), other.name()) && Objects.equals(trustStoreArn(), other.trustStoreArn())
&& Objects.equals(statusAsString(), other.statusAsString())
&& Objects.equals(numberOfCaCertificates(), other.numberOfCaCertificates())
&& Objects.equals(totalRevokedEntries(), other.totalRevokedEntries());
}
/**
* 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("TrustStore").add("Name", name()).add("TrustStoreArn", trustStoreArn())
.add("Status", statusAsString()).add("NumberOfCaCertificates", numberOfCaCertificates())
.add("TotalRevokedEntries", totalRevokedEntries()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "Name":
return Optional.ofNullable(clazz.cast(name()));
case "TrustStoreArn":
return Optional.ofNullable(clazz.cast(trustStoreArn()));
case "Status":
return Optional.ofNullable(clazz.cast(statusAsString()));
case "NumberOfCaCertificates":
return Optional.ofNullable(clazz.cast(numberOfCaCertificates()));
case "TotalRevokedEntries":
return Optional.ofNullable(clazz.cast(totalRevokedEntries()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function