software.amazon.awssdk.aws.greengrass.model.UpdateThingShadowRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-iot-device-sdk Show documentation
Show all versions of aws-iot-device-sdk Show documentation
Java bindings for the AWS IoT Core Service
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*
* This file is generated.
*/
package software.amazon.awssdk.aws.greengrass.model;
import com.google.gson.annotations.Expose;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import software.amazon.awssdk.eventstreamrpc.EventStreamRPCServiceModel;
import software.amazon.awssdk.eventstreamrpc.model.EventStreamJsonMessage;
public class UpdateThingShadowRequest implements EventStreamJsonMessage {
public static final String APPLICATION_MODEL_TYPE = "aws.greengrass#UpdateThingShadowRequest";
public static final UpdateThingShadowRequest VOID;
static {
VOID = new UpdateThingShadowRequest() {
@Override
public boolean isVoid() {
return true;
}
};
}
@Expose(
serialize = true,
deserialize = true
)
private Optional thingName;
@Expose(
serialize = true,
deserialize = true
)
private Optional shadowName;
@Expose(
serialize = true,
deserialize = true
)
private Optional payload;
public UpdateThingShadowRequest() {
this.thingName = Optional.empty();
this.shadowName = Optional.empty();
this.payload = Optional.empty();
}
/**
* The name of the thing.
*/
public String getThingName() {
if (thingName.isPresent()) {
return thingName.get();
}
return null;
}
/**
* The name of the thing.
*/
public void setThingName(final String thingName) {
this.thingName = Optional.ofNullable(thingName);
}
/**
* The name of the thing.
*/
public UpdateThingShadowRequest withThingName(final String thingName) {
setThingName(thingName);
return this;
}
/**
* The name of the shadow. To specify the thing's classic shadow, set this parameter to an empty string ("").
*/
public String getShadowName() {
if (shadowName.isPresent()) {
return shadowName.get();
}
return null;
}
/**
* The name of the shadow. To specify the thing's classic shadow, set this parameter to an empty string ("").
*/
public void setShadowName(final String shadowName) {
this.shadowName = Optional.ofNullable(shadowName);
}
/**
* The name of the shadow. To specify the thing's classic shadow, set this parameter to an empty string ("").
*/
public UpdateThingShadowRequest withShadowName(final String shadowName) {
setShadowName(shadowName);
return this;
}
/**
* The request state document as a JSON encoded blob.
*/
public byte[] getPayload() {
if (payload.isPresent()) {
return payload.get();
}
return null;
}
/**
* The request state document as a JSON encoded blob.
*/
public void setPayload(final byte[] payload) {
this.payload = Optional.ofNullable(payload);
}
/**
* The request state document as a JSON encoded blob.
*/
public UpdateThingShadowRequest withPayload(final byte[] payload) {
setPayload(payload);
return this;
}
@Override
public String getApplicationModelType() {
return APPLICATION_MODEL_TYPE;
}
@Override
public boolean equals(Object rhs) {
if (rhs == null) return false;
if (!(rhs instanceof UpdateThingShadowRequest)) return false;
if (this == rhs) return true;
final UpdateThingShadowRequest other = (UpdateThingShadowRequest)rhs;
boolean isEquals = true;
isEquals = isEquals && this.thingName.equals(other.thingName);
isEquals = isEquals && this.shadowName.equals(other.shadowName);
isEquals = isEquals && EventStreamRPCServiceModel.blobTypeEquals(this.payload, other.payload);
return isEquals;
}
@Override
public int hashCode() {
return Objects.hash(thingName, shadowName, payload);
}
}