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

software.amazon.awssdk.services.datazone.model.CreateProjectResponse 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.time.Instant;
import java.util.Arrays;
import java.util.Collection;
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 java.util.stream.Collectors;
import java.util.stream.Stream;
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.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.traits.TimestampFormatTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
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 CreateProjectResponse extends DataZoneResponse implements
        ToCopyableBuilder {
    private static final SdkField CREATED_AT_FIELD = SdkField
            . builder(MarshallingType.INSTANT)
            .memberName("createdAt")
            .getter(getter(CreateProjectResponse::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 CREATED_BY_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("createdBy").getter(getter(CreateProjectResponse::createdBy)).setter(setter(Builder::createdBy))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("createdBy").build()).build();

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

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

    private static final SdkField> FAILURE_REASONS_FIELD = SdkField
            .> builder(MarshallingType.LIST)
            .memberName("failureReasons")
            .getter(getter(CreateProjectResponse::failureReasons))
            .setter(setter(Builder::failureReasons))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("failureReasons").build(),
                    ListTrait
                            .builder()
                            .memberLocationName(null)
                            .memberFieldInfo(
                                    SdkField. builder(MarshallingType.SDK_POJO)
                                            .constructor(ProjectDeletionError::builder)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("member").build()).build()).build()).build();

    private static final SdkField> GLOSSARY_TERMS_FIELD = SdkField
            .> builder(MarshallingType.LIST)
            .memberName("glossaryTerms")
            .getter(getter(CreateProjectResponse::glossaryTerms))
            .setter(setter(Builder::glossaryTerms))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("glossaryTerms").build(),
                    ListTrait
                            .builder()
                            .memberLocationName(null)
                            .memberFieldInfo(
                                    SdkField. builder(MarshallingType.STRING)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("member").build()).build()).build()).build();

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

    private static final SdkField LAST_UPDATED_AT_FIELD = SdkField
            . builder(MarshallingType.INSTANT)
            .memberName("lastUpdatedAt")
            .getter(getter(CreateProjectResponse::lastUpdatedAt))
            .setter(setter(Builder::lastUpdatedAt))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("lastUpdatedAt").build(),
                    TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();

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

    private static final SdkField PROJECT_STATUS_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("projectStatus").getter(getter(CreateProjectResponse::projectStatusAsString))
            .setter(setter(Builder::projectStatus))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("projectStatus").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CREATED_AT_FIELD,
            CREATED_BY_FIELD, DESCRIPTION_FIELD, DOMAIN_ID_FIELD, FAILURE_REASONS_FIELD, GLOSSARY_TERMS_FIELD, ID_FIELD,
            LAST_UPDATED_AT_FIELD, NAME_FIELD, PROJECT_STATUS_FIELD));

    private final Instant createdAt;

    private final String createdBy;

    private final String description;

    private final String domainId;

    private final List failureReasons;

    private final List glossaryTerms;

    private final String id;

    private final Instant lastUpdatedAt;

    private final String name;

    private final String projectStatus;

    private CreateProjectResponse(BuilderImpl builder) {
        super(builder);
        this.createdAt = builder.createdAt;
        this.createdBy = builder.createdBy;
        this.description = builder.description;
        this.domainId = builder.domainId;
        this.failureReasons = builder.failureReasons;
        this.glossaryTerms = builder.glossaryTerms;
        this.id = builder.id;
        this.lastUpdatedAt = builder.lastUpdatedAt;
        this.name = builder.name;
        this.projectStatus = builder.projectStatus;
    }

    /**
     * 

* The timestamp of when the project was created. *

* * @return The timestamp of when the project was created. */ public final Instant createdAt() { return createdAt; } /** *

* The Amazon DataZone user who created the project. *

* * @return The Amazon DataZone user who created the project. */ public final String createdBy() { return createdBy; } /** *

* The description of the project. *

* * @return The description of the project. */ public final String description() { return description; } /** *

* The identifier of the Amazon DataZone domain in which the project was created. *

* * @return The identifier of the Amazon DataZone domain in which the project was created. */ public final String domainId() { return domainId; } /** * For responses, this returns true if the service returned a value for the FailureReasons 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 hasFailureReasons() { return failureReasons != null && !(failureReasons instanceof SdkAutoConstructList); } /** *

* Specifies the error message that is returned if the operation cannot be successfully completed. *

*

* 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 #hasFailureReasons} method. *

* * @return Specifies the error message that is returned if the operation cannot be successfully completed. */ public final List failureReasons() { return failureReasons; } /** * For responses, this returns true if the service returned a value for the GlossaryTerms 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 hasGlossaryTerms() { return glossaryTerms != null && !(glossaryTerms instanceof SdkAutoConstructList); } /** *

* The glossary terms that can be used in the project. *

*

* 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 #hasGlossaryTerms} method. *

* * @return The glossary terms that can be used in the project. */ public final List glossaryTerms() { return glossaryTerms; } /** *

* The ID of the Amazon DataZone project. *

* * @return The ID of the Amazon DataZone project. */ public final String id() { return id; } /** *

* The timestamp of when the project was last updated. *

* * @return The timestamp of when the project was last updated. */ public final Instant lastUpdatedAt() { return lastUpdatedAt; } /** *

* The name of the project. *

* * @return The name of the project. */ public final String name() { return name; } /** *

* The status of the Amazon DataZone project that was created. *

*

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

* * @return The status of the Amazon DataZone project that was created. * @see ProjectStatus */ public final ProjectStatus projectStatus() { return ProjectStatus.fromValue(projectStatus); } /** *

* The status of the Amazon DataZone project that was created. *

*

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

* * @return The status of the Amazon DataZone project that was created. * @see ProjectStatus */ public final String projectStatusAsString() { return projectStatus; } @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(createdAt()); hashCode = 31 * hashCode + Objects.hashCode(createdBy()); hashCode = 31 * hashCode + Objects.hashCode(description()); hashCode = 31 * hashCode + Objects.hashCode(domainId()); hashCode = 31 * hashCode + Objects.hashCode(hasFailureReasons() ? failureReasons() : null); hashCode = 31 * hashCode + Objects.hashCode(hasGlossaryTerms() ? glossaryTerms() : null); hashCode = 31 * hashCode + Objects.hashCode(id()); hashCode = 31 * hashCode + Objects.hashCode(lastUpdatedAt()); hashCode = 31 * hashCode + Objects.hashCode(name()); hashCode = 31 * hashCode + Objects.hashCode(projectStatusAsString()); 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 CreateProjectResponse)) { return false; } CreateProjectResponse other = (CreateProjectResponse) obj; return Objects.equals(createdAt(), other.createdAt()) && Objects.equals(createdBy(), other.createdBy()) && Objects.equals(description(), other.description()) && Objects.equals(domainId(), other.domainId()) && hasFailureReasons() == other.hasFailureReasons() && Objects.equals(failureReasons(), other.failureReasons()) && hasGlossaryTerms() == other.hasGlossaryTerms() && Objects.equals(glossaryTerms(), other.glossaryTerms()) && Objects.equals(id(), other.id()) && Objects.equals(lastUpdatedAt(), other.lastUpdatedAt()) && Objects.equals(name(), other.name()) && Objects.equals(projectStatusAsString(), other.projectStatusAsString()); } /** * 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("CreateProjectResponse").add("CreatedAt", createdAt()).add("CreatedBy", createdBy()) .add("Description", description() == null ? null : "*** Sensitive Data Redacted ***").add("DomainId", domainId()) .add("FailureReasons", hasFailureReasons() ? failureReasons() : null) .add("GlossaryTerms", hasGlossaryTerms() ? glossaryTerms() : null).add("Id", id()) .add("LastUpdatedAt", lastUpdatedAt()).add("Name", name() == null ? null : "*** Sensitive Data Redacted ***") .add("ProjectStatus", projectStatusAsString()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "createdAt": return Optional.ofNullable(clazz.cast(createdAt())); case "createdBy": return Optional.ofNullable(clazz.cast(createdBy())); case "description": return Optional.ofNullable(clazz.cast(description())); case "domainId": return Optional.ofNullable(clazz.cast(domainId())); case "failureReasons": return Optional.ofNullable(clazz.cast(failureReasons())); case "glossaryTerms": return Optional.ofNullable(clazz.cast(glossaryTerms())); case "id": return Optional.ofNullable(clazz.cast(id())); case "lastUpdatedAt": return Optional.ofNullable(clazz.cast(lastUpdatedAt())); case "name": return Optional.ofNullable(clazz.cast(name())); case "projectStatus": return Optional.ofNullable(clazz.cast(projectStatusAsString())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((CreateProjectResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder { /** *

* The timestamp of when the project was created. *

* * @param createdAt * The timestamp of when the project was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createdAt(Instant createdAt); /** *

* The Amazon DataZone user who created the project. *

* * @param createdBy * The Amazon DataZone user who created the project. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createdBy(String createdBy); /** *

* The description of the project. *

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

* The identifier of the Amazon DataZone domain in which the project was created. *

* * @param domainId * The identifier of the Amazon DataZone domain in which the project was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder domainId(String domainId); /** *

* Specifies the error message that is returned if the operation cannot be successfully completed. *

* * @param failureReasons * Specifies the error message that is returned if the operation cannot be successfully completed. * @return Returns a reference to this object so that method calls can be chained together. */ Builder failureReasons(Collection failureReasons); /** *

* Specifies the error message that is returned if the operation cannot be successfully completed. *

* * @param failureReasons * Specifies the error message that is returned if the operation cannot be successfully completed. * @return Returns a reference to this object so that method calls can be chained together. */ Builder failureReasons(ProjectDeletionError... failureReasons); /** *

* Specifies the error message that is returned if the operation cannot be successfully completed. *

* This is a convenience method that creates an instance of the * {@link software.amazon.awssdk.services.datazone.model.ProjectDeletionError.Builder} avoiding the need to * create one manually via {@link software.amazon.awssdk.services.datazone.model.ProjectDeletionError#builder()} * . * *

* When the {@link Consumer} completes, * {@link software.amazon.awssdk.services.datazone.model.ProjectDeletionError.Builder#build()} is called * immediately and its result is passed to {@link #failureReasons(List)}. * * @param failureReasons * a consumer that will call methods on * {@link software.amazon.awssdk.services.datazone.model.ProjectDeletionError.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #failureReasons(java.util.Collection) */ Builder failureReasons(Consumer... failureReasons); /** *

* The glossary terms that can be used in the project. *

* * @param glossaryTerms * The glossary terms that can be used in the project. * @return Returns a reference to this object so that method calls can be chained together. */ Builder glossaryTerms(Collection glossaryTerms); /** *

* The glossary terms that can be used in the project. *

* * @param glossaryTerms * The glossary terms that can be used in the project. * @return Returns a reference to this object so that method calls can be chained together. */ Builder glossaryTerms(String... glossaryTerms); /** *

* The ID of the Amazon DataZone project. *

* * @param id * The ID of the Amazon DataZone project. * @return Returns a reference to this object so that method calls can be chained together. */ Builder id(String id); /** *

* The timestamp of when the project was last updated. *

* * @param lastUpdatedAt * The timestamp of when the project was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastUpdatedAt(Instant lastUpdatedAt); /** *

* The name of the project. *

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

* The status of the Amazon DataZone project that was created. *

* * @param projectStatus * The status of the Amazon DataZone project that was created. * @see ProjectStatus * @return Returns a reference to this object so that method calls can be chained together. * @see ProjectStatus */ Builder projectStatus(String projectStatus); /** *

* The status of the Amazon DataZone project that was created. *

* * @param projectStatus * The status of the Amazon DataZone project that was created. * @see ProjectStatus * @return Returns a reference to this object so that method calls can be chained together. * @see ProjectStatus */ Builder projectStatus(ProjectStatus projectStatus); } static final class BuilderImpl extends DataZoneResponse.BuilderImpl implements Builder { private Instant createdAt; private String createdBy; private String description; private String domainId; private List failureReasons = DefaultSdkAutoConstructList.getInstance(); private List glossaryTerms = DefaultSdkAutoConstructList.getInstance(); private String id; private Instant lastUpdatedAt; private String name; private String projectStatus; private BuilderImpl() { } private BuilderImpl(CreateProjectResponse model) { super(model); createdAt(model.createdAt); createdBy(model.createdBy); description(model.description); domainId(model.domainId); failureReasons(model.failureReasons); glossaryTerms(model.glossaryTerms); id(model.id); lastUpdatedAt(model.lastUpdatedAt); name(model.name); projectStatus(model.projectStatus); } public final Instant getCreatedAt() { return createdAt; } public final void setCreatedAt(Instant createdAt) { this.createdAt = createdAt; } @Override public final Builder createdAt(Instant createdAt) { this.createdAt = createdAt; return this; } public final String getCreatedBy() { return createdBy; } public final void setCreatedBy(String createdBy) { this.createdBy = createdBy; } @Override public final Builder createdBy(String createdBy) { this.createdBy = createdBy; 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 String getDomainId() { return domainId; } public final void setDomainId(String domainId) { this.domainId = domainId; } @Override public final Builder domainId(String domainId) { this.domainId = domainId; return this; } public final List getFailureReasons() { List result = FailureReasonsCopier.copyToBuilder(this.failureReasons); if (result instanceof SdkAutoConstructList) { return null; } return result; } public final void setFailureReasons(Collection failureReasons) { this.failureReasons = FailureReasonsCopier.copyFromBuilder(failureReasons); } @Override public final Builder failureReasons(Collection failureReasons) { this.failureReasons = FailureReasonsCopier.copy(failureReasons); return this; } @Override @SafeVarargs public final Builder failureReasons(ProjectDeletionError... failureReasons) { failureReasons(Arrays.asList(failureReasons)); return this; } @Override @SafeVarargs public final Builder failureReasons(Consumer... failureReasons) { failureReasons(Stream.of(failureReasons).map(c -> ProjectDeletionError.builder().applyMutation(c).build()) .collect(Collectors.toList())); return this; } public final Collection getGlossaryTerms() { if (glossaryTerms instanceof SdkAutoConstructList) { return null; } return glossaryTerms; } public final void setGlossaryTerms(Collection glossaryTerms) { this.glossaryTerms = GlossaryTermsCopier.copy(glossaryTerms); } @Override public final Builder glossaryTerms(Collection glossaryTerms) { this.glossaryTerms = GlossaryTermsCopier.copy(glossaryTerms); return this; } @Override @SafeVarargs public final Builder glossaryTerms(String... glossaryTerms) { glossaryTerms(Arrays.asList(glossaryTerms)); return this; } public final String getId() { return id; } public final void setId(String id) { this.id = id; } @Override public final Builder id(String id) { this.id = id; return this; } public final Instant getLastUpdatedAt() { return lastUpdatedAt; } public final void setLastUpdatedAt(Instant lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; } @Override public final Builder lastUpdatedAt(Instant lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; 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 getProjectStatus() { return projectStatus; } public final void setProjectStatus(String projectStatus) { this.projectStatus = projectStatus; } @Override public final Builder projectStatus(String projectStatus) { this.projectStatus = projectStatus; return this; } @Override public final Builder projectStatus(ProjectStatus projectStatus) { this.projectStatus(projectStatus == null ? null : projectStatus.toString()); return this; } @Override public CreateProjectResponse build() { return new CreateProjectResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy