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

software.amazon.awssdk.services.datazone.model.UpdateGlossaryTermRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Data Zone module holds the client classes that are used for communicating with Data Zone.

There is a newer version: 2.28.4
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.datazone.model;

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.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration;
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 UpdateGlossaryTermRequest extends DataZoneRequest implements
        ToCopyableBuilder {
    private static final SdkField DOMAIN_IDENTIFIER_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("domainIdentifier").getter(getter(UpdateGlossaryTermRequest::domainIdentifier))
            .setter(setter(Builder::domainIdentifier))
            .traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("domainIdentifier").build()).build();

    private static final SdkField GLOSSARY_IDENTIFIER_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("glossaryIdentifier").getter(getter(UpdateGlossaryTermRequest::glossaryIdentifier))
            .setter(setter(Builder::glossaryIdentifier))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("glossaryIdentifier").build())
            .build();

    private static final SdkField IDENTIFIER_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("identifier").getter(getter(UpdateGlossaryTermRequest::identifier)).setter(setter(Builder::identifier))
            .traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("identifier").build()).build();

    private static final SdkField LONG_DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("longDescription").getter(getter(UpdateGlossaryTermRequest::longDescription))
            .setter(setter(Builder::longDescription))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("longDescription").build()).build();

    private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name")
            .getter(getter(UpdateGlossaryTermRequest::name)).setter(setter(Builder::name))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("name").build()).build();

    private static final SdkField SHORT_DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("shortDescription").getter(getter(UpdateGlossaryTermRequest::shortDescription))
            .setter(setter(Builder::shortDescription))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("shortDescription").build()).build();

    private static final SdkField STATUS_FIELD = SdkField. builder(MarshallingType.STRING).memberName("status")
            .getter(getter(UpdateGlossaryTermRequest::statusAsString)).setter(setter(Builder::status))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("status").build()).build();

    private static final SdkField TERM_RELATIONS_FIELD = SdkField
            . builder(MarshallingType.SDK_POJO).memberName("termRelations")
            .getter(getter(UpdateGlossaryTermRequest::termRelations)).setter(setter(Builder::termRelations))
            .constructor(TermRelations::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("termRelations").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(DOMAIN_IDENTIFIER_FIELD,
            GLOSSARY_IDENTIFIER_FIELD, IDENTIFIER_FIELD, LONG_DESCRIPTION_FIELD, NAME_FIELD, SHORT_DESCRIPTION_FIELD,
            STATUS_FIELD, TERM_RELATIONS_FIELD));

    private final String domainIdentifier;

    private final String glossaryIdentifier;

    private final String identifier;

    private final String longDescription;

    private final String name;

    private final String shortDescription;

    private final String status;

    private final TermRelations termRelations;

    private UpdateGlossaryTermRequest(BuilderImpl builder) {
        super(builder);
        this.domainIdentifier = builder.domainIdentifier;
        this.glossaryIdentifier = builder.glossaryIdentifier;
        this.identifier = builder.identifier;
        this.longDescription = builder.longDescription;
        this.name = builder.name;
        this.shortDescription = builder.shortDescription;
        this.status = builder.status;
        this.termRelations = builder.termRelations;
    }

    /**
     * 

* The identifier of the Amazon DataZone domain in which a business glossary term is to be updated. *

* * @return The identifier of the Amazon DataZone domain in which a business glossary term is to be updated. */ public final String domainIdentifier() { return domainIdentifier; } /** *

* The identifier of the business glossary in which a term is to be updated. *

* * @return The identifier of the business glossary in which a term is to be updated. */ public final String glossaryIdentifier() { return glossaryIdentifier; } /** *

* The identifier of the business glossary term that is to be updated. *

* * @return The identifier of the business glossary term that is to be updated. */ public final String identifier() { return identifier; } /** *

* The long description to be updated as part of the UpdateGlossaryTerm action. *

* * @return The long description to be updated as part of the UpdateGlossaryTerm action. */ public final String longDescription() { return longDescription; } /** *

* The name to be updated as part of the UpdateGlossaryTerm action. *

* * @return The name to be updated as part of the UpdateGlossaryTerm action. */ public final String name() { return name; } /** *

* The short description to be updated as part of the UpdateGlossaryTerm action. *

* * @return The short description to be updated as part of the UpdateGlossaryTerm action. */ public final String shortDescription() { return shortDescription; } /** *

* The status to be updated as part of the UpdateGlossaryTerm action. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #status} will * return {@link GlossaryTermStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #statusAsString}. *

* * @return The status to be updated as part of the UpdateGlossaryTerm action. * @see GlossaryTermStatus */ public final GlossaryTermStatus status() { return GlossaryTermStatus.fromValue(status); } /** *

* The status to be updated as part of the UpdateGlossaryTerm action. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #status} will * return {@link GlossaryTermStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #statusAsString}. *

* * @return The status to be updated as part of the UpdateGlossaryTerm action. * @see GlossaryTermStatus */ public final String statusAsString() { return status; } /** *

* The term relations to be updated as part of the UpdateGlossaryTerm action. *

* * @return The term relations to be updated as part of the UpdateGlossaryTerm action. */ public final TermRelations termRelations() { return termRelations; } @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(domainIdentifier()); hashCode = 31 * hashCode + Objects.hashCode(glossaryIdentifier()); hashCode = 31 * hashCode + Objects.hashCode(identifier()); hashCode = 31 * hashCode + Objects.hashCode(longDescription()); hashCode = 31 * hashCode + Objects.hashCode(name()); hashCode = 31 * hashCode + Objects.hashCode(shortDescription()); hashCode = 31 * hashCode + Objects.hashCode(statusAsString()); hashCode = 31 * hashCode + Objects.hashCode(termRelations()); 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 UpdateGlossaryTermRequest)) { return false; } UpdateGlossaryTermRequest other = (UpdateGlossaryTermRequest) obj; return Objects.equals(domainIdentifier(), other.domainIdentifier()) && Objects.equals(glossaryIdentifier(), other.glossaryIdentifier()) && Objects.equals(identifier(), other.identifier()) && Objects.equals(longDescription(), other.longDescription()) && Objects.equals(name(), other.name()) && Objects.equals(shortDescription(), other.shortDescription()) && Objects.equals(statusAsString(), other.statusAsString()) && Objects.equals(termRelations(), other.termRelations()); } /** * 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("UpdateGlossaryTermRequest").add("DomainIdentifier", domainIdentifier()) .add("GlossaryIdentifier", glossaryIdentifier()).add("Identifier", identifier()) .add("LongDescription", longDescription() == null ? null : "*** Sensitive Data Redacted ***") .add("Name", name() == null ? null : "*** Sensitive Data Redacted ***") .add("ShortDescription", shortDescription() == null ? null : "*** Sensitive Data Redacted ***") .add("Status", statusAsString()).add("TermRelations", termRelations()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "domainIdentifier": return Optional.ofNullable(clazz.cast(domainIdentifier())); case "glossaryIdentifier": return Optional.ofNullable(clazz.cast(glossaryIdentifier())); case "identifier": return Optional.ofNullable(clazz.cast(identifier())); case "longDescription": return Optional.ofNullable(clazz.cast(longDescription())); case "name": return Optional.ofNullable(clazz.cast(name())); case "shortDescription": return Optional.ofNullable(clazz.cast(shortDescription())); case "status": return Optional.ofNullable(clazz.cast(statusAsString())); case "termRelations": return Optional.ofNullable(clazz.cast(termRelations())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((UpdateGlossaryTermRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends DataZoneRequest.Builder, SdkPojo, CopyableBuilder { /** *

* The identifier of the Amazon DataZone domain in which a business glossary term is to be updated. *

* * @param domainIdentifier * The identifier of the Amazon DataZone domain in which a business glossary term is to be updated. * @return Returns a reference to this object so that method calls can be chained together. */ Builder domainIdentifier(String domainIdentifier); /** *

* The identifier of the business glossary in which a term is to be updated. *

* * @param glossaryIdentifier * The identifier of the business glossary in which a term is to be updated. * @return Returns a reference to this object so that method calls can be chained together. */ Builder glossaryIdentifier(String glossaryIdentifier); /** *

* The identifier of the business glossary term that is to be updated. *

* * @param identifier * The identifier of the business glossary term that is to be updated. * @return Returns a reference to this object so that method calls can be chained together. */ Builder identifier(String identifier); /** *

* The long description to be updated as part of the UpdateGlossaryTerm action. *

* * @param longDescription * The long description to be updated as part of the UpdateGlossaryTerm action. * @return Returns a reference to this object so that method calls can be chained together. */ Builder longDescription(String longDescription); /** *

* The name to be updated as part of the UpdateGlossaryTerm action. *

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

* The short description to be updated as part of the UpdateGlossaryTerm action. *

* * @param shortDescription * The short description to be updated as part of the UpdateGlossaryTerm action. * @return Returns a reference to this object so that method calls can be chained together. */ Builder shortDescription(String shortDescription); /** *

* The status to be updated as part of the UpdateGlossaryTerm action. *

* * @param status * The status to be updated as part of the UpdateGlossaryTerm action. * @see GlossaryTermStatus * @return Returns a reference to this object so that method calls can be chained together. * @see GlossaryTermStatus */ Builder status(String status); /** *

* The status to be updated as part of the UpdateGlossaryTerm action. *

* * @param status * The status to be updated as part of the UpdateGlossaryTerm action. * @see GlossaryTermStatus * @return Returns a reference to this object so that method calls can be chained together. * @see GlossaryTermStatus */ Builder status(GlossaryTermStatus status); /** *

* The term relations to be updated as part of the UpdateGlossaryTerm action. *

* * @param termRelations * The term relations to be updated as part of the UpdateGlossaryTerm action. * @return Returns a reference to this object so that method calls can be chained together. */ Builder termRelations(TermRelations termRelations); /** *

* The term relations to be updated as part of the UpdateGlossaryTerm action. *

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

* When the {@link Consumer} completes, {@link TermRelations.Builder#build()} is called immediately and its * result is passed to {@link #termRelations(TermRelations)}. * * @param termRelations * a consumer that will call methods on {@link TermRelations.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #termRelations(TermRelations) */ default Builder termRelations(Consumer termRelations) { return termRelations(TermRelations.builder().applyMutation(termRelations).build()); } @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends DataZoneRequest.BuilderImpl implements Builder { private String domainIdentifier; private String glossaryIdentifier; private String identifier; private String longDescription; private String name; private String shortDescription; private String status; private TermRelations termRelations; private BuilderImpl() { } private BuilderImpl(UpdateGlossaryTermRequest model) { super(model); domainIdentifier(model.domainIdentifier); glossaryIdentifier(model.glossaryIdentifier); identifier(model.identifier); longDescription(model.longDescription); name(model.name); shortDescription(model.shortDescription); status(model.status); termRelations(model.termRelations); } public final String getDomainIdentifier() { return domainIdentifier; } public final void setDomainIdentifier(String domainIdentifier) { this.domainIdentifier = domainIdentifier; } @Override public final Builder domainIdentifier(String domainIdentifier) { this.domainIdentifier = domainIdentifier; return this; } public final String getGlossaryIdentifier() { return glossaryIdentifier; } public final void setGlossaryIdentifier(String glossaryIdentifier) { this.glossaryIdentifier = glossaryIdentifier; } @Override public final Builder glossaryIdentifier(String glossaryIdentifier) { this.glossaryIdentifier = glossaryIdentifier; return this; } public final String getIdentifier() { return identifier; } public final void setIdentifier(String identifier) { this.identifier = identifier; } @Override public final Builder identifier(String identifier) { this.identifier = identifier; return this; } public final String getLongDescription() { return longDescription; } public final void setLongDescription(String longDescription) { this.longDescription = longDescription; } @Override public final Builder longDescription(String longDescription) { this.longDescription = longDescription; return this; } 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 getShortDescription() { return shortDescription; } public final void setShortDescription(String shortDescription) { this.shortDescription = shortDescription; } @Override public final Builder shortDescription(String shortDescription) { this.shortDescription = shortDescription; return this; } public final String getStatus() { return status; } public final void setStatus(String status) { this.status = status; } @Override public final Builder status(String status) { this.status = status; return this; } @Override public final Builder status(GlossaryTermStatus status) { this.status(status == null ? null : status.toString()); return this; } public final TermRelations.Builder getTermRelations() { return termRelations != null ? termRelations.toBuilder() : null; } public final void setTermRelations(TermRelations.BuilderImpl termRelations) { this.termRelations = termRelations != null ? termRelations.build() : null; } @Override public final Builder termRelations(TermRelations termRelations) { this.termRelations = termRelations; return this; } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public UpdateGlossaryTermRequest build() { return new UpdateGlossaryTermRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy