software.amazon.awssdk.services.nimble.model.Eula Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimble Show documentation
Show all versions of nimble Show documentation
The AWS Java SDK for Nimble module holds the client classes that are used for
communicating with Nimble.
/*
* 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.nimble.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.core.traits.TimestampFormatTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Represents a EULA resource.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class Eula implements SdkPojo, Serializable, ToCopyableBuilder {
private static final SdkField CONTENT_FIELD = SdkField. builder(MarshallingType.STRING).memberName("content")
.getter(getter(Eula::content)).setter(setter(Builder::content))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("content").build()).build();
private static final SdkField CREATED_AT_FIELD = SdkField
. builder(MarshallingType.INSTANT)
.memberName("createdAt")
.getter(getter(Eula::createdAt))
.setter(setter(Builder::createdAt))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("createdAt").build(),
TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();
private static final SdkField EULA_ID_FIELD = SdkField. builder(MarshallingType.STRING).memberName("eulaId")
.getter(getter(Eula::eulaId)).setter(setter(Builder::eulaId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("eulaId").build()).build();
private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name")
.getter(getter(Eula::name)).setter(setter(Builder::name))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("name").build()).build();
private static final SdkField UPDATED_AT_FIELD = SdkField
. builder(MarshallingType.INSTANT)
.memberName("updatedAt")
.getter(getter(Eula::updatedAt))
.setter(setter(Builder::updatedAt))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("updatedAt").build(),
TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CONTENT_FIELD,
CREATED_AT_FIELD, EULA_ID_FIELD, NAME_FIELD, UPDATED_AT_FIELD));
private static final long serialVersionUID = 1L;
private final String content;
private final Instant createdAt;
private final String eulaId;
private final String name;
private final Instant updatedAt;
private Eula(BuilderImpl builder) {
this.content = builder.content;
this.createdAt = builder.createdAt;
this.eulaId = builder.eulaId;
this.name = builder.name;
this.updatedAt = builder.updatedAt;
}
/**
*
* The EULA content.
*
*
* @return The EULA content.
*/
public final String content() {
return content;
}
/**
*
* The ISO timestamp in seconds for when the resource was created.
*
*
* @return The ISO timestamp in seconds for when the resource was created.
*/
public final Instant createdAt() {
return createdAt;
}
/**
*
* The EULA ID.
*
*
* @return The EULA ID.
*/
public final String eulaId() {
return eulaId;
}
/**
*
* The name for the EULA.
*
*
* @return The name for the EULA.
*/
public final String name() {
return name;
}
/**
*
* The ISO timestamp in seconds for when the resource was updated.
*
*
* @return The ISO timestamp in seconds for when the resource was updated.
*/
public final Instant updatedAt() {
return updatedAt;
}
@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(content());
hashCode = 31 * hashCode + Objects.hashCode(createdAt());
hashCode = 31 * hashCode + Objects.hashCode(eulaId());
hashCode = 31 * hashCode + Objects.hashCode(name());
hashCode = 31 * hashCode + Objects.hashCode(updatedAt());
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 Eula)) {
return false;
}
Eula other = (Eula) obj;
return Objects.equals(content(), other.content()) && Objects.equals(createdAt(), other.createdAt())
&& Objects.equals(eulaId(), other.eulaId()) && Objects.equals(name(), other.name())
&& Objects.equals(updatedAt(), other.updatedAt());
}
/**
* 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("Eula").add("Content", content()).add("CreatedAt", createdAt()).add("EulaId", eulaId())
.add("Name", name()).add("UpdatedAt", updatedAt()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "content":
return Optional.ofNullable(clazz.cast(content()));
case "createdAt":
return Optional.ofNullable(clazz.cast(createdAt()));
case "eulaId":
return Optional.ofNullable(clazz.cast(eulaId()));
case "name":
return Optional.ofNullable(clazz.cast(name()));
case "updatedAt":
return Optional.ofNullable(clazz.cast(updatedAt()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function