software.amazon.awssdk.services.glue.model.GetUsageProfileResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue Show documentation
Show all versions of glue Show documentation
The AWS Java SDK for AWS Glue module holds the client classes that are used for communicating
with AWS Glue Service
/*
* 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.glue.model;
import java.time.Instant;
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.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 GetUsageProfileResponse extends GlueResponse implements
ToCopyableBuilder {
private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Name")
.getter(getter(GetUsageProfileResponse::name)).setter(setter(Builder::name))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Name").build()).build();
private static final SdkField DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("Description").getter(getter(GetUsageProfileResponse::description)).setter(setter(Builder::description))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Description").build()).build();
private static final SdkField CONFIGURATION_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("Configuration")
.getter(getter(GetUsageProfileResponse::configuration)).setter(setter(Builder::configuration))
.constructor(ProfileConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Configuration").build()).build();
private static final SdkField CREATED_ON_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("CreatedOn").getter(getter(GetUsageProfileResponse::createdOn)).setter(setter(Builder::createdOn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreatedOn").build()).build();
private static final SdkField LAST_MODIFIED_ON_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("LastModifiedOn").getter(getter(GetUsageProfileResponse::lastModifiedOn))
.setter(setter(Builder::lastModifiedOn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastModifiedOn").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(NAME_FIELD, DESCRIPTION_FIELD,
CONFIGURATION_FIELD, CREATED_ON_FIELD, LAST_MODIFIED_ON_FIELD));
private static final Map> SDK_NAME_TO_FIELD = Collections
.unmodifiableMap(new HashMap>() {
{
put("Name", NAME_FIELD);
put("Description", DESCRIPTION_FIELD);
put("Configuration", CONFIGURATION_FIELD);
put("CreatedOn", CREATED_ON_FIELD);
put("LastModifiedOn", LAST_MODIFIED_ON_FIELD);
}
});
private final String name;
private final String description;
private final ProfileConfiguration configuration;
private final Instant createdOn;
private final Instant lastModifiedOn;
private GetUsageProfileResponse(BuilderImpl builder) {
super(builder);
this.name = builder.name;
this.description = builder.description;
this.configuration = builder.configuration;
this.createdOn = builder.createdOn;
this.lastModifiedOn = builder.lastModifiedOn;
}
/**
*
* The name of the usage profile.
*
*
* @return The name of the usage profile.
*/
public final String name() {
return name;
}
/**
*
* A description of the usage profile.
*
*
* @return A description of the usage profile.
*/
public final String description() {
return description;
}
/**
*
* A ProfileConfiguration
object specifying the job and session values for the profile.
*
*
* @return A ProfileConfiguration
object specifying the job and session values for the profile.
*/
public final ProfileConfiguration configuration() {
return configuration;
}
/**
*
* The date and time when the usage profile was created.
*
*
* @return The date and time when the usage profile was created.
*/
public final Instant createdOn() {
return createdOn;
}
/**
*
* The date and time when the usage profile was last modified.
*
*
* @return The date and time when the usage profile was last modified.
*/
public final Instant lastModifiedOn() {
return lastModifiedOn;
}
@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(name());
hashCode = 31 * hashCode + Objects.hashCode(description());
hashCode = 31 * hashCode + Objects.hashCode(configuration());
hashCode = 31 * hashCode + Objects.hashCode(createdOn());
hashCode = 31 * hashCode + Objects.hashCode(lastModifiedOn());
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 GetUsageProfileResponse)) {
return false;
}
GetUsageProfileResponse other = (GetUsageProfileResponse) obj;
return Objects.equals(name(), other.name()) && Objects.equals(description(), other.description())
&& Objects.equals(configuration(), other.configuration()) && Objects.equals(createdOn(), other.createdOn())
&& Objects.equals(lastModifiedOn(), other.lastModifiedOn());
}
/**
* 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("GetUsageProfileResponse").add("Name", name()).add("Description", description())
.add("Configuration", configuration()).add("CreatedOn", createdOn()).add("LastModifiedOn", lastModifiedOn())
.build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "Name":
return Optional.ofNullable(clazz.cast(name()));
case "Description":
return Optional.ofNullable(clazz.cast(description()));
case "Configuration":
return Optional.ofNullable(clazz.cast(configuration()));
case "CreatedOn":
return Optional.ofNullable(clazz.cast(createdOn()));
case "LastModifiedOn":
return Optional.ofNullable(clazz.cast(lastModifiedOn()));
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
© 2015 - 2024 Weber Informatics LLC | Privacy Policy