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

software.amazon.awssdk.services.wisdom.model.CreateAssistantAssociationRequest Maven / Gradle / Ivy

Go to download

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

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

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.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.DefaultValueTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.traits.MapTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructMap;
import software.amazon.awssdk.core.util.SdkAutoConstructMap;
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 CreateAssistantAssociationRequest extends WisdomRequest implements
        ToCopyableBuilder {
    private static final SdkField ASSISTANT_ID_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("assistantId").getter(getter(CreateAssistantAssociationRequest::assistantId))
            .setter(setter(Builder::assistantId))
            .traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("assistantId").build()).build();

    private static final SdkField ASSOCIATION_FIELD = SdkField
            . builder(MarshallingType.SDK_POJO).memberName("association")
            .getter(getter(CreateAssistantAssociationRequest::association)).setter(setter(Builder::association))
            .constructor(AssistantAssociationInputData::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("association").build()).build();

    private static final SdkField ASSOCIATION_TYPE_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("associationType").getter(getter(CreateAssistantAssociationRequest::associationTypeAsString))
            .setter(setter(Builder::associationType))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("associationType").build()).build();

    private static final SdkField CLIENT_TOKEN_FIELD = SdkField
            . builder(MarshallingType.STRING)
            .memberName("clientToken")
            .getter(getter(CreateAssistantAssociationRequest::clientToken))
            .setter(setter(Builder::clientToken))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("clientToken").build(),
                    DefaultValueTrait.idempotencyToken()).build();

    private static final SdkField> TAGS_FIELD = SdkField
            .> builder(MarshallingType.MAP)
            .memberName("tags")
            .getter(getter(CreateAssistantAssociationRequest::tags))
            .setter(setter(Builder::tags))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("tags").build(),
                    MapTrait.builder()
                            .keyLocationName("key")
                            .valueLocationName("value")
                            .valueFieldInfo(
                                    SdkField. builder(MarshallingType.STRING)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("value").build()).build()).build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ASSISTANT_ID_FIELD,
            ASSOCIATION_FIELD, ASSOCIATION_TYPE_FIELD, CLIENT_TOKEN_FIELD, TAGS_FIELD));

    private static final Map> SDK_NAME_TO_FIELD = memberNameToFieldInitializer();

    private final String assistantId;

    private final AssistantAssociationInputData association;

    private final String associationType;

    private final String clientToken;

    private final Map tags;

    private CreateAssistantAssociationRequest(BuilderImpl builder) {
        super(builder);
        this.assistantId = builder.assistantId;
        this.association = builder.association;
        this.associationType = builder.associationType;
        this.clientToken = builder.clientToken;
        this.tags = builder.tags;
    }

    /**
     * 

* The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN. *

* * @return The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN. */ public final String assistantId() { return assistantId; } /** *

* The identifier of the associated resource. *

* * @return The identifier of the associated resource. */ public final AssistantAssociationInputData association() { return association; } /** *

* The type of association. *

*

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

* * @return The type of association. * @see AssociationType */ public final AssociationType associationType() { return AssociationType.fromValue(associationType); } /** *

* The type of association. *

*

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

* * @return The type of association. * @see AssociationType */ public final String associationTypeAsString() { return associationType; } /** *

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, * the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with * idempotent APIs. *

* * @return A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not * provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see * Making * retries safe with idempotent APIs. */ public final String clientToken() { return clientToken; } /** * For responses, this returns true if the service returned a value for the Tags property. This DOES NOT check that * the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). This is useful * because the SDK will never return a null collection or map, but you may need to differentiate between the service * returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true * if a value for the property was specified in the request builder, and false if a value was not specified. */ public final boolean hasTags() { return tags != null && !(tags instanceof SdkAutoConstructMap); } /** *

* The tags used to organize, track, or control access for this resource. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

*

* This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasTags} method. *

* * @return The tags used to organize, track, or control access for this resource. */ public final Map tags() { return tags; } @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(assistantId()); hashCode = 31 * hashCode + Objects.hashCode(association()); hashCode = 31 * hashCode + Objects.hashCode(associationTypeAsString()); hashCode = 31 * hashCode + Objects.hashCode(clientToken()); hashCode = 31 * hashCode + Objects.hashCode(hasTags() ? tags() : null); 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 CreateAssistantAssociationRequest)) { return false; } CreateAssistantAssociationRequest other = (CreateAssistantAssociationRequest) obj; return Objects.equals(assistantId(), other.assistantId()) && Objects.equals(association(), other.association()) && Objects.equals(associationTypeAsString(), other.associationTypeAsString()) && Objects.equals(clientToken(), other.clientToken()) && hasTags() == other.hasTags() && Objects.equals(tags(), other.tags()); } /** * 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("CreateAssistantAssociationRequest").add("AssistantId", assistantId()) .add("Association", association()).add("AssociationType", associationTypeAsString()) .add("ClientToken", clientToken()).add("Tags", hasTags() ? tags() : null).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "assistantId": return Optional.ofNullable(clazz.cast(assistantId())); case "association": return Optional.ofNullable(clazz.cast(association())); case "associationType": return Optional.ofNullable(clazz.cast(associationTypeAsString())); case "clientToken": return Optional.ofNullable(clazz.cast(clientToken())); case "tags": return Optional.ofNullable(clazz.cast(tags())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } @Override public final Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } private static Map> memberNameToFieldInitializer() { Map> map = new HashMap<>(); map.put("assistantId", ASSISTANT_ID_FIELD); map.put("association", ASSOCIATION_FIELD); map.put("associationType", ASSOCIATION_TYPE_FIELD); map.put("clientToken", CLIENT_TOKEN_FIELD); map.put("tags", TAGS_FIELD); return Collections.unmodifiableMap(map); } private static Function getter(Function g) { return obj -> g.apply((CreateAssistantAssociationRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends WisdomRequest.Builder, SdkPojo, CopyableBuilder { /** *

* The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN. *

* * @param assistantId * The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN. * @return Returns a reference to this object so that method calls can be chained together. */ Builder assistantId(String assistantId); /** *

* The identifier of the associated resource. *

* * @param association * The identifier of the associated resource. * @return Returns a reference to this object so that method calls can be chained together. */ Builder association(AssistantAssociationInputData association); /** *

* The identifier of the associated resource. *

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

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

* The type of association. *

* * @param associationType * The type of association. * @see AssociationType * @return Returns a reference to this object so that method calls can be chained together. * @see AssociationType */ Builder associationType(String associationType); /** *

* The type of association. *

* * @param associationType * The type of association. * @see AssociationType * @return Returns a reference to this object so that method calls can be chained together. * @see AssociationType */ Builder associationType(AssociationType associationType); /** *

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not * provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe * with idempotent APIs. *

* * @param clientToken * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not * provided, the Amazon Web Services SDK populates this field. For more information about idempotency, * see Making * retries safe with idempotent APIs. * @return Returns a reference to this object so that method calls can be chained together. */ Builder clientToken(String clientToken); /** *

* The tags used to organize, track, or control access for this resource. *

* * @param tags * The tags used to organize, track, or control access for this resource. * @return Returns a reference to this object so that method calls can be chained together. */ Builder tags(Map tags); @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends WisdomRequest.BuilderImpl implements Builder { private String assistantId; private AssistantAssociationInputData association; private String associationType; private String clientToken; private Map tags = DefaultSdkAutoConstructMap.getInstance(); private BuilderImpl() { } private BuilderImpl(CreateAssistantAssociationRequest model) { super(model); assistantId(model.assistantId); association(model.association); associationType(model.associationType); clientToken(model.clientToken); tags(model.tags); } public final String getAssistantId() { return assistantId; } public final void setAssistantId(String assistantId) { this.assistantId = assistantId; } @Override public final Builder assistantId(String assistantId) { this.assistantId = assistantId; return this; } public final AssistantAssociationInputData.Builder getAssociation() { return association != null ? association.toBuilder() : null; } public final void setAssociation(AssistantAssociationInputData.BuilderImpl association) { this.association = association != null ? association.build() : null; } @Override public final Builder association(AssistantAssociationInputData association) { this.association = association; return this; } public final String getAssociationType() { return associationType; } public final void setAssociationType(String associationType) { this.associationType = associationType; } @Override public final Builder associationType(String associationType) { this.associationType = associationType; return this; } @Override public final Builder associationType(AssociationType associationType) { this.associationType(associationType == null ? null : associationType.toString()); return this; } public final String getClientToken() { return clientToken; } public final void setClientToken(String clientToken) { this.clientToken = clientToken; } @Override public final Builder clientToken(String clientToken) { this.clientToken = clientToken; return this; } public final Map getTags() { if (tags instanceof SdkAutoConstructMap) { return null; } return tags; } public final void setTags(Map tags) { this.tags = TagsCopier.copy(tags); } @Override public final Builder tags(Map tags) { this.tags = TagsCopier.copy(tags); 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 CreateAssistantAssociationRequest build() { return new CreateAssistantAssociationRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } @Override public Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy