com.amazonaws.services.ssmincidents.model.UpdateReplicationSetRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ssmincidents Show documentation
/*
* 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.ssmincidents.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 UpdateReplicationSetRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* An action to add or delete a Region.
*
*/
private java.util.List actions;
/**
*
* The Amazon Resource Name (ARN) of the replication set you're updating.
*
*/
private String arn;
/**
*
* A token that ensures that the operation is called only once with the specified details.
*
*/
private String clientToken;
/**
*
* An action to add or delete a Region.
*
*
* @return An action to add or delete a Region.
*/
public java.util.List getActions() {
return actions;
}
/**
*
* An action to add or delete a Region.
*
*
* @param actions
* An action to add or delete a Region.
*/
public void setActions(java.util.Collection actions) {
if (actions == null) {
this.actions = null;
return;
}
this.actions = new java.util.ArrayList(actions);
}
/**
*
* An action to add or delete a Region.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setActions(java.util.Collection)} or {@link #withActions(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param actions
* An action to add or delete a Region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateReplicationSetRequest withActions(UpdateReplicationSetAction... actions) {
if (this.actions == null) {
setActions(new java.util.ArrayList(actions.length));
}
for (UpdateReplicationSetAction ele : actions) {
this.actions.add(ele);
}
return this;
}
/**
*
* An action to add or delete a Region.
*
*
* @param actions
* An action to add or delete a Region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateReplicationSetRequest withActions(java.util.Collection actions) {
setActions(actions);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the replication set you're updating.
*
*
* @param arn
* The Amazon Resource Name (ARN) of the replication set you're updating.
*/
public void setArn(String arn) {
this.arn = arn;
}
/**
*
* The Amazon Resource Name (ARN) of the replication set you're updating.
*
*
* @return The Amazon Resource Name (ARN) of the replication set you're updating.
*/
public String getArn() {
return this.arn;
}
/**
*
* The Amazon Resource Name (ARN) of the replication set you're updating.
*
*
* @param arn
* The Amazon Resource Name (ARN) of the replication set you're updating.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateReplicationSetRequest withArn(String arn) {
setArn(arn);
return this;
}
/**
*
* A token that ensures that the operation is called only once with the specified details.
*
*
* @param clientToken
* A token that ensures that the operation is called only once with the specified details.
*/
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
}
/**
*
* A token that ensures that the operation is called only once with the specified details.
*
*
* @return A token that ensures that the operation is called only once with the specified details.
*/
public String getClientToken() {
return this.clientToken;
}
/**
*
* A token that ensures that the operation is called only once with the specified details.
*
*
* @param clientToken
* A token that ensures that the operation is called only once with the specified details.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateReplicationSetRequest withClientToken(String clientToken) {
setClientToken(clientToken);
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 (getActions() != null)
sb.append("Actions: ").append(getActions()).append(",");
if (getArn() != null)
sb.append("Arn: ").append(getArn()).append(",");
if (getClientToken() != null)
sb.append("ClientToken: ").append(getClientToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof UpdateReplicationSetRequest == false)
return false;
UpdateReplicationSetRequest other = (UpdateReplicationSetRequest) obj;
if (other.getActions() == null ^ this.getActions() == null)
return false;
if (other.getActions() != null && other.getActions().equals(this.getActions()) == false)
return false;
if (other.getArn() == null ^ this.getArn() == null)
return false;
if (other.getArn() != null && other.getArn().equals(this.getArn()) == false)
return false;
if (other.getClientToken() == null ^ this.getClientToken() == null)
return false;
if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getActions() == null) ? 0 : getActions().hashCode());
hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode());
hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode());
return hashCode;
}
@Override
public UpdateReplicationSetRequest clone() {
return (UpdateReplicationSetRequest) super.clone();
}
}