software.amazon.awssdk.services.databasemigration.model.RefreshSchemasStatus Maven / Gradle / Ivy
Show all versions of databasemigration 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.databasemigration.model;
import java.io.Serializable;
import java.time.Instant;
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;
/**
*
* Provides information that describes status of a schema at an endpoint specified by the
* DescribeRefreshSchemaStatus
operation.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class RefreshSchemasStatus implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField ENDPOINT_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("EndpointArn").getter(getter(RefreshSchemasStatus::endpointArn)).setter(setter(Builder::endpointArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EndpointArn").build()).build();
private static final SdkField REPLICATION_INSTANCE_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ReplicationInstanceArn").getter(getter(RefreshSchemasStatus::replicationInstanceArn))
.setter(setter(Builder::replicationInstanceArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ReplicationInstanceArn").build())
.build();
private static final SdkField STATUS_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Status")
.getter(getter(RefreshSchemasStatus::statusAsString)).setter(setter(Builder::status))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Status").build()).build();
private static final SdkField LAST_REFRESH_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("LastRefreshDate").getter(getter(RefreshSchemasStatus::lastRefreshDate))
.setter(setter(Builder::lastRefreshDate))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastRefreshDate").build()).build();
private static final SdkField LAST_FAILURE_MESSAGE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("LastFailureMessage").getter(getter(RefreshSchemasStatus::lastFailureMessage))
.setter(setter(Builder::lastFailureMessage))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastFailureMessage").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ENDPOINT_ARN_FIELD,
REPLICATION_INSTANCE_ARN_FIELD, STATUS_FIELD, LAST_REFRESH_DATE_FIELD, LAST_FAILURE_MESSAGE_FIELD));
private static final long serialVersionUID = 1L;
private final String endpointArn;
private final String replicationInstanceArn;
private final String status;
private final Instant lastRefreshDate;
private final String lastFailureMessage;
private RefreshSchemasStatus(BuilderImpl builder) {
this.endpointArn = builder.endpointArn;
this.replicationInstanceArn = builder.replicationInstanceArn;
this.status = builder.status;
this.lastRefreshDate = builder.lastRefreshDate;
this.lastFailureMessage = builder.lastFailureMessage;
}
/**
*
* The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
*
*
* @return The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
*/
public final String endpointArn() {
return endpointArn;
}
/**
*
* The Amazon Resource Name (ARN) of the replication instance.
*
*
* @return The Amazon Resource Name (ARN) of the replication instance.
*/
public final String replicationInstanceArn() {
return replicationInstanceArn;
}
/**
*
* The status of the schema.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link RefreshSchemasStatusTypeValue#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is
* available from {@link #statusAsString}.
*
*
* @return The status of the schema.
* @see RefreshSchemasStatusTypeValue
*/
public final RefreshSchemasStatusTypeValue status() {
return RefreshSchemasStatusTypeValue.fromValue(status);
}
/**
*
* The status of the schema.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link RefreshSchemasStatusTypeValue#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is
* available from {@link #statusAsString}.
*
*
* @return The status of the schema.
* @see RefreshSchemasStatusTypeValue
*/
public final String statusAsString() {
return status;
}
/**
*
* The date the schema was last refreshed.
*
*
* @return The date the schema was last refreshed.
*/
public final Instant lastRefreshDate() {
return lastRefreshDate;
}
/**
*
* The last failure message for the schema.
*
*
* @return The last failure message for the schema.
*/
public final String lastFailureMessage() {
return lastFailureMessage;
}
@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(endpointArn());
hashCode = 31 * hashCode + Objects.hashCode(replicationInstanceArn());
hashCode = 31 * hashCode + Objects.hashCode(statusAsString());
hashCode = 31 * hashCode + Objects.hashCode(lastRefreshDate());
hashCode = 31 * hashCode + Objects.hashCode(lastFailureMessage());
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 RefreshSchemasStatus)) {
return false;
}
RefreshSchemasStatus other = (RefreshSchemasStatus) obj;
return Objects.equals(endpointArn(), other.endpointArn())
&& Objects.equals(replicationInstanceArn(), other.replicationInstanceArn())
&& Objects.equals(statusAsString(), other.statusAsString())
&& Objects.equals(lastRefreshDate(), other.lastRefreshDate())
&& Objects.equals(lastFailureMessage(), other.lastFailureMessage());
}
/**
* 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("RefreshSchemasStatus").add("EndpointArn", endpointArn())
.add("ReplicationInstanceArn", replicationInstanceArn()).add("Status", statusAsString())
.add("LastRefreshDate", lastRefreshDate()).add("LastFailureMessage", lastFailureMessage()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "EndpointArn":
return Optional.ofNullable(clazz.cast(endpointArn()));
case "ReplicationInstanceArn":
return Optional.ofNullable(clazz.cast(replicationInstanceArn()));
case "Status":
return Optional.ofNullable(clazz.cast(statusAsString()));
case "LastRefreshDate":
return Optional.ofNullable(clazz.cast(lastRefreshDate()));
case "LastFailureMessage":
return Optional.ofNullable(clazz.cast(lastFailureMessage()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function