All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.glue.model.GetUsageProfileResponse Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Glue module holds the client classes that are used for communicating with AWS Glue Service

There is a newer version: 2.29.39
Show newest version
/*
 * 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 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 getter(Function g) { return obj -> g.apply((GetUsageProfileResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder { /** *

* The name of the usage profile. *

* * @param name * The name of the usage profile. * @return Returns a reference to this object so that method calls can be chained together. */ Builder name(String name); /** *

* A description of the usage profile. *

* * @param description * A description of the usage profile. * @return Returns a reference to this object so that method calls can be chained together. */ Builder description(String description); /** *

* A ProfileConfiguration object specifying the job and session values for the profile. *

* * @param configuration * A ProfileConfiguration object specifying the job and session values for the profile. * @return Returns a reference to this object so that method calls can be chained together. */ Builder configuration(ProfileConfiguration configuration); /** *

* A ProfileConfiguration object specifying the job and session values for the profile. *

* This is a convenience method that creates an instance of the {@link ProfileConfiguration.Builder} avoiding * the need to create one manually via {@link ProfileConfiguration#builder()}. * *

* When the {@link Consumer} completes, {@link ProfileConfiguration.Builder#build()} is called immediately and * its result is passed to {@link #configuration(ProfileConfiguration)}. * * @param configuration * a consumer that will call methods on {@link ProfileConfiguration.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #configuration(ProfileConfiguration) */ default Builder configuration(Consumer configuration) { return configuration(ProfileConfiguration.builder().applyMutation(configuration).build()); } /** *

* The date and time when the usage profile was created. *

* * @param createdOn * The date and time when the usage profile was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createdOn(Instant createdOn); /** *

* The date and time when the usage profile was last modified. *

* * @param lastModifiedOn * The date and time when the usage profile was last modified. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastModifiedOn(Instant lastModifiedOn); } static final class BuilderImpl extends GlueResponse.BuilderImpl implements Builder { private String name; private String description; private ProfileConfiguration configuration; private Instant createdOn; private Instant lastModifiedOn; private BuilderImpl() { } private BuilderImpl(GetUsageProfileResponse model) { super(model); name(model.name); description(model.description); configuration(model.configuration); createdOn(model.createdOn); lastModifiedOn(model.lastModifiedOn); } public final String getName() { return name; } public final void setName(String name) { this.name = name; } @Override public final Builder name(String name) { this.name = name; return this; } public final String getDescription() { return description; } public final void setDescription(String description) { this.description = description; } @Override public final Builder description(String description) { this.description = description; return this; } public final ProfileConfiguration.Builder getConfiguration() { return configuration != null ? configuration.toBuilder() : null; } public final void setConfiguration(ProfileConfiguration.BuilderImpl configuration) { this.configuration = configuration != null ? configuration.build() : null; } @Override public final Builder configuration(ProfileConfiguration configuration) { this.configuration = configuration; return this; } public final Instant getCreatedOn() { return createdOn; } public final void setCreatedOn(Instant createdOn) { this.createdOn = createdOn; } @Override public final Builder createdOn(Instant createdOn) { this.createdOn = createdOn; return this; } public final Instant getLastModifiedOn() { return lastModifiedOn; } public final void setLastModifiedOn(Instant lastModifiedOn) { this.lastModifiedOn = lastModifiedOn; } @Override public final Builder lastModifiedOn(Instant lastModifiedOn) { this.lastModifiedOn = lastModifiedOn; return this; } @Override public GetUsageProfileResponse build() { return new GetUsageProfileResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } @Override public Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy