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

software.amazon.awssdk.services.iotsitewise.model.CreateAssetResponse Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Io T Site Wise module holds the client classes that are used for communicating with Io T Site Wise.

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.iotsitewise.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.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 CreateAssetResponse extends IoTSiteWiseResponse implements
        ToCopyableBuilder {
    private static final SdkField ASSET_ID_FIELD = SdkField. builder(MarshallingType.STRING)
            .getter(getter(CreateAssetResponse::assetId)).setter(setter(Builder::assetId))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("assetId").build()).build();

    private static final SdkField ASSET_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
            .getter(getter(CreateAssetResponse::assetArn)).setter(setter(Builder::assetArn))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("assetArn").build()).build();

    private static final SdkField ASSET_STATUS_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .getter(getter(CreateAssetResponse::assetStatus)).setter(setter(Builder::assetStatus))
            .constructor(AssetStatus::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("assetStatus").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ASSET_ID_FIELD,
            ASSET_ARN_FIELD, ASSET_STATUS_FIELD));

    private final String assetId;

    private final String assetArn;

    private final AssetStatus assetStatus;

    private CreateAssetResponse(BuilderImpl builder) {
        super(builder);
        this.assetId = builder.assetId;
        this.assetArn = builder.assetArn;
        this.assetStatus = builder.assetStatus;
    }

    /**
     * 

* The ID of the asset. This ID uniquely identifies the asset within AWS IoT SiteWise and can be used with other AWS * IoT SiteWise APIs. *

* * @return The ID of the asset. This ID uniquely identifies the asset within AWS IoT SiteWise and can be used with * other AWS IoT SiteWise APIs. */ public String assetId() { return assetId; } /** *

* The ARN of the asset, * which has the following format. *

*

* arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId} *

* * @return The ARN of the * asset, which has the following format.

*

* arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId} */ public String assetArn() { return assetArn; } /** *

* The status of the asset, which contains a state (CREATING after successfully calling this operation) * and any error message. *

* * @return The status of the asset, which contains a state (CREATING after successfully calling this * operation) and any error message. */ public AssetStatus assetStatus() { return assetStatus; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(assetId()); hashCode = 31 * hashCode + Objects.hashCode(assetArn()); hashCode = 31 * hashCode + Objects.hashCode(assetStatus()); return hashCode; } @Override public boolean equals(Object obj) { return super.equals(obj) && equalsBySdkFields(obj); } @Override public boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof CreateAssetResponse)) { return false; } CreateAssetResponse other = (CreateAssetResponse) obj; return Objects.equals(assetId(), other.assetId()) && Objects.equals(assetArn(), other.assetArn()) && Objects.equals(assetStatus(), other.assetStatus()); } /** * 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 String toString() { return ToString.builder("CreateAssetResponse").add("AssetId", assetId()).add("AssetArn", assetArn()) .add("AssetStatus", assetStatus()).build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "assetId": return Optional.ofNullable(clazz.cast(assetId())); case "assetArn": return Optional.ofNullable(clazz.cast(assetArn())); case "assetStatus": return Optional.ofNullable(clazz.cast(assetStatus())); default: return Optional.empty(); } } @Override public List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((CreateAssetResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends IoTSiteWiseResponse.Builder, SdkPojo, CopyableBuilder { /** *

* The ID of the asset. This ID uniquely identifies the asset within AWS IoT SiteWise and can be used with other * AWS IoT SiteWise APIs. *

* * @param assetId * The ID of the asset. This ID uniquely identifies the asset within AWS IoT SiteWise and can be used * with other AWS IoT SiteWise APIs. * @return Returns a reference to this object so that method calls can be chained together. */ Builder assetId(String assetId); /** *

* The ARN of the * asset, which has the following format. *

*

* arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId} *

* * @param assetArn * The ARN of * the asset, which has the following format.

*

* arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId} * @return Returns a reference to this object so that method calls can be chained together. */ Builder assetArn(String assetArn); /** *

* The status of the asset, which contains a state (CREATING after successfully calling this * operation) and any error message. *

* * @param assetStatus * The status of the asset, which contains a state (CREATING after successfully calling this * operation) and any error message. * @return Returns a reference to this object so that method calls can be chained together. */ Builder assetStatus(AssetStatus assetStatus); /** *

* The status of the asset, which contains a state (CREATING after successfully calling this * operation) and any error message. *

* This is a convenience that creates an instance of the {@link AssetStatus.Builder} avoiding the need to create * one manually via {@link AssetStatus#builder()}. * * When the {@link Consumer} completes, {@link AssetStatus.Builder#build()} is called immediately and its result * is passed to {@link #assetStatus(AssetStatus)}. * * @param assetStatus * a consumer that will call methods on {@link AssetStatus.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #assetStatus(AssetStatus) */ default Builder assetStatus(Consumer assetStatus) { return assetStatus(AssetStatus.builder().applyMutation(assetStatus).build()); } } static final class BuilderImpl extends IoTSiteWiseResponse.BuilderImpl implements Builder { private String assetId; private String assetArn; private AssetStatus assetStatus; private BuilderImpl() { } private BuilderImpl(CreateAssetResponse model) { super(model); assetId(model.assetId); assetArn(model.assetArn); assetStatus(model.assetStatus); } public final String getAssetId() { return assetId; } @Override public final Builder assetId(String assetId) { this.assetId = assetId; return this; } public final void setAssetId(String assetId) { this.assetId = assetId; } public final String getAssetArn() { return assetArn; } @Override public final Builder assetArn(String assetArn) { this.assetArn = assetArn; return this; } public final void setAssetArn(String assetArn) { this.assetArn = assetArn; } public final AssetStatus.Builder getAssetStatus() { return assetStatus != null ? assetStatus.toBuilder() : null; } @Override public final Builder assetStatus(AssetStatus assetStatus) { this.assetStatus = assetStatus; return this; } public final void setAssetStatus(AssetStatus.BuilderImpl assetStatus) { this.assetStatus = assetStatus != null ? assetStatus.build() : null; } @Override public CreateAssetResponse build() { return new CreateAssetResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy