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

com.amazonaws.services.iotthingsgraph.model.AssociateEntityToThingRequest Maven / Gradle / Ivy

/*
 * Copyright 2019-2024 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 com.amazonaws.services.iotthingsgraph.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AssociateEntityToThingRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name of the thing to which the entity is to be associated. *

*/ private String thingName; /** *

* The ID of the device to be associated with the thing. *

*

* The ID should be in the following format. *

*

* urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME *

*/ private String entityId; /** *

* The version of the user's namespace. Defaults to the latest version of the user's namespace. *

*/ private Long namespaceVersion; /** *

* The name of the thing to which the entity is to be associated. *

* * @param thingName * The name of the thing to which the entity is to be associated. */ public void setThingName(String thingName) { this.thingName = thingName; } /** *

* The name of the thing to which the entity is to be associated. *

* * @return The name of the thing to which the entity is to be associated. */ public String getThingName() { return this.thingName; } /** *

* The name of the thing to which the entity is to be associated. *

* * @param thingName * The name of the thing to which the entity is to be associated. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateEntityToThingRequest withThingName(String thingName) { setThingName(thingName); return this; } /** *

* The ID of the device to be associated with the thing. *

*

* The ID should be in the following format. *

*

* urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME *

* * @param entityId * The ID of the device to be associated with the thing.

*

* The ID should be in the following format. *

*

* urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME */ public void setEntityId(String entityId) { this.entityId = entityId; } /** *

* The ID of the device to be associated with the thing. *

*

* The ID should be in the following format. *

*

* urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME *

* * @return The ID of the device to be associated with the thing.

*

* The ID should be in the following format. *

*

* urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME */ public String getEntityId() { return this.entityId; } /** *

* The ID of the device to be associated with the thing. *

*

* The ID should be in the following format. *

*

* urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME *

* * @param entityId * The ID of the device to be associated with the thing.

*

* The ID should be in the following format. *

*

* urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateEntityToThingRequest withEntityId(String entityId) { setEntityId(entityId); return this; } /** *

* The version of the user's namespace. Defaults to the latest version of the user's namespace. *

* * @param namespaceVersion * The version of the user's namespace. Defaults to the latest version of the user's namespace. */ public void setNamespaceVersion(Long namespaceVersion) { this.namespaceVersion = namespaceVersion; } /** *

* The version of the user's namespace. Defaults to the latest version of the user's namespace. *

* * @return The version of the user's namespace. Defaults to the latest version of the user's namespace. */ public Long getNamespaceVersion() { return this.namespaceVersion; } /** *

* The version of the user's namespace. Defaults to the latest version of the user's namespace. *

* * @param namespaceVersion * The version of the user's namespace. Defaults to the latest version of the user's namespace. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateEntityToThingRequest withNamespaceVersion(Long namespaceVersion) { setNamespaceVersion(namespaceVersion); return this; } /** * 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. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getThingName() != null) sb.append("ThingName: ").append(getThingName()).append(","); if (getEntityId() != null) sb.append("EntityId: ").append(getEntityId()).append(","); if (getNamespaceVersion() != null) sb.append("NamespaceVersion: ").append(getNamespaceVersion()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AssociateEntityToThingRequest == false) return false; AssociateEntityToThingRequest other = (AssociateEntityToThingRequest) obj; if (other.getThingName() == null ^ this.getThingName() == null) return false; if (other.getThingName() != null && other.getThingName().equals(this.getThingName()) == false) return false; if (other.getEntityId() == null ^ this.getEntityId() == null) return false; if (other.getEntityId() != null && other.getEntityId().equals(this.getEntityId()) == false) return false; if (other.getNamespaceVersion() == null ^ this.getNamespaceVersion() == null) return false; if (other.getNamespaceVersion() != null && other.getNamespaceVersion().equals(this.getNamespaceVersion()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getThingName() == null) ? 0 : getThingName().hashCode()); hashCode = prime * hashCode + ((getEntityId() == null) ? 0 : getEntityId().hashCode()); hashCode = prime * hashCode + ((getNamespaceVersion() == null) ? 0 : getNamespaceVersion().hashCode()); return hashCode; } @Override public AssociateEntityToThingRequest clone() { return (AssociateEntityToThingRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy