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

com.amazonaws.services.snowball.model.UpdateClusterRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Snowball module holds the client classes that are used for communicating with Amazon Snowball.

There is a newer version: 1.12.778
Show newest version
/*
 * 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.snowball.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 UpdateClusterRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The cluster ID of the cluster that you want to update, for example * CID123e4567-e89b-12d3-a456-426655440000. *

*/ private String clusterId; /** *

* The new role Amazon Resource Name (ARN) that you want to associate with this cluster. To create a role ARN, use * the CreateRole API action * in Identity and Access Management (IAM). *

*/ private String roleARN; /** *

* The updated description of this cluster. *

*/ private String description; /** *

* The updated arrays of JobResource objects that can include updated S3Resource objects or * LambdaResource objects. *

*/ private JobResource resources; /** *

* Specifies the service or services on the Snow Family device that your transferred data will be exported from or * imported into. Amazon Web Services Snow Family device clusters support Amazon S3 and NFS (Network File System). *

*/ private OnDeviceServiceConfiguration onDeviceServiceConfiguration; /** *

* The ID of the updated Address object. *

*/ private String addressId; /** *

* The updated shipping option value of this cluster's ShippingDetails object. *

*/ private String shippingOption; /** *

* The new or updated Notification object. *

*/ private Notification notification; /** *

* The updated ID for the forwarding address for a cluster. This field is not supported in most regions. *

*/ private String forwardingAddressId; /** *

* The cluster ID of the cluster that you want to update, for example * CID123e4567-e89b-12d3-a456-426655440000. *

* * @param clusterId * The cluster ID of the cluster that you want to update, for example * CID123e4567-e89b-12d3-a456-426655440000. */ public void setClusterId(String clusterId) { this.clusterId = clusterId; } /** *

* The cluster ID of the cluster that you want to update, for example * CID123e4567-e89b-12d3-a456-426655440000. *

* * @return The cluster ID of the cluster that you want to update, for example * CID123e4567-e89b-12d3-a456-426655440000. */ public String getClusterId() { return this.clusterId; } /** *

* The cluster ID of the cluster that you want to update, for example * CID123e4567-e89b-12d3-a456-426655440000. *

* * @param clusterId * The cluster ID of the cluster that you want to update, for example * CID123e4567-e89b-12d3-a456-426655440000. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateClusterRequest withClusterId(String clusterId) { setClusterId(clusterId); return this; } /** *

* The new role Amazon Resource Name (ARN) that you want to associate with this cluster. To create a role ARN, use * the CreateRole API action * in Identity and Access Management (IAM). *

* * @param roleARN * The new role Amazon Resource Name (ARN) that you want to associate with this cluster. To create a role * ARN, use the CreateRole API action * in Identity and Access Management (IAM). */ public void setRoleARN(String roleARN) { this.roleARN = roleARN; } /** *

* The new role Amazon Resource Name (ARN) that you want to associate with this cluster. To create a role ARN, use * the CreateRole API action * in Identity and Access Management (IAM). *

* * @return The new role Amazon Resource Name (ARN) that you want to associate with this cluster. To create a role * ARN, use the CreateRole API action * in Identity and Access Management (IAM). */ public String getRoleARN() { return this.roleARN; } /** *

* The new role Amazon Resource Name (ARN) that you want to associate with this cluster. To create a role ARN, use * the CreateRole API action * in Identity and Access Management (IAM). *

* * @param roleARN * The new role Amazon Resource Name (ARN) that you want to associate with this cluster. To create a role * ARN, use the CreateRole API action * in Identity and Access Management (IAM). * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateClusterRequest withRoleARN(String roleARN) { setRoleARN(roleARN); return this; } /** *

* The updated description of this cluster. *

* * @param description * The updated description of this cluster. */ public void setDescription(String description) { this.description = description; } /** *

* The updated description of this cluster. *

* * @return The updated description of this cluster. */ public String getDescription() { return this.description; } /** *

* The updated description of this cluster. *

* * @param description * The updated description of this cluster. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateClusterRequest withDescription(String description) { setDescription(description); return this; } /** *

* The updated arrays of JobResource objects that can include updated S3Resource objects or * LambdaResource objects. *

* * @param resources * The updated arrays of JobResource objects that can include updated S3Resource objects or * LambdaResource objects. */ public void setResources(JobResource resources) { this.resources = resources; } /** *

* The updated arrays of JobResource objects that can include updated S3Resource objects or * LambdaResource objects. *

* * @return The updated arrays of JobResource objects that can include updated S3Resource objects or * LambdaResource objects. */ public JobResource getResources() { return this.resources; } /** *

* The updated arrays of JobResource objects that can include updated S3Resource objects or * LambdaResource objects. *

* * @param resources * The updated arrays of JobResource objects that can include updated S3Resource objects or * LambdaResource objects. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateClusterRequest withResources(JobResource resources) { setResources(resources); return this; } /** *

* Specifies the service or services on the Snow Family device that your transferred data will be exported from or * imported into. Amazon Web Services Snow Family device clusters support Amazon S3 and NFS (Network File System). *

* * @param onDeviceServiceConfiguration * Specifies the service or services on the Snow Family device that your transferred data will be exported * from or imported into. Amazon Web Services Snow Family device clusters support Amazon S3 and NFS (Network * File System). */ public void setOnDeviceServiceConfiguration(OnDeviceServiceConfiguration onDeviceServiceConfiguration) { this.onDeviceServiceConfiguration = onDeviceServiceConfiguration; } /** *

* Specifies the service or services on the Snow Family device that your transferred data will be exported from or * imported into. Amazon Web Services Snow Family device clusters support Amazon S3 and NFS (Network File System). *

* * @return Specifies the service or services on the Snow Family device that your transferred data will be exported * from or imported into. Amazon Web Services Snow Family device clusters support Amazon S3 and NFS (Network * File System). */ public OnDeviceServiceConfiguration getOnDeviceServiceConfiguration() { return this.onDeviceServiceConfiguration; } /** *

* Specifies the service or services on the Snow Family device that your transferred data will be exported from or * imported into. Amazon Web Services Snow Family device clusters support Amazon S3 and NFS (Network File System). *

* * @param onDeviceServiceConfiguration * Specifies the service or services on the Snow Family device that your transferred data will be exported * from or imported into. Amazon Web Services Snow Family device clusters support Amazon S3 and NFS (Network * File System). * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateClusterRequest withOnDeviceServiceConfiguration(OnDeviceServiceConfiguration onDeviceServiceConfiguration) { setOnDeviceServiceConfiguration(onDeviceServiceConfiguration); return this; } /** *

* The ID of the updated Address object. *

* * @param addressId * The ID of the updated Address object. */ public void setAddressId(String addressId) { this.addressId = addressId; } /** *

* The ID of the updated Address object. *

* * @return The ID of the updated Address object. */ public String getAddressId() { return this.addressId; } /** *

* The ID of the updated Address object. *

* * @param addressId * The ID of the updated Address object. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateClusterRequest withAddressId(String addressId) { setAddressId(addressId); return this; } /** *

* The updated shipping option value of this cluster's ShippingDetails object. *

* * @param shippingOption * The updated shipping option value of this cluster's ShippingDetails object. * @see ShippingOption */ public void setShippingOption(String shippingOption) { this.shippingOption = shippingOption; } /** *

* The updated shipping option value of this cluster's ShippingDetails object. *

* * @return The updated shipping option value of this cluster's ShippingDetails object. * @see ShippingOption */ public String getShippingOption() { return this.shippingOption; } /** *

* The updated shipping option value of this cluster's ShippingDetails object. *

* * @param shippingOption * The updated shipping option value of this cluster's ShippingDetails object. * @return Returns a reference to this object so that method calls can be chained together. * @see ShippingOption */ public UpdateClusterRequest withShippingOption(String shippingOption) { setShippingOption(shippingOption); return this; } /** *

* The updated shipping option value of this cluster's ShippingDetails object. *

* * @param shippingOption * The updated shipping option value of this cluster's ShippingDetails object. * @see ShippingOption */ public void setShippingOption(ShippingOption shippingOption) { withShippingOption(shippingOption); } /** *

* The updated shipping option value of this cluster's ShippingDetails object. *

* * @param shippingOption * The updated shipping option value of this cluster's ShippingDetails object. * @return Returns a reference to this object so that method calls can be chained together. * @see ShippingOption */ public UpdateClusterRequest withShippingOption(ShippingOption shippingOption) { this.shippingOption = shippingOption.toString(); return this; } /** *

* The new or updated Notification object. *

* * @param notification * The new or updated Notification object. */ public void setNotification(Notification notification) { this.notification = notification; } /** *

* The new or updated Notification object. *

* * @return The new or updated Notification object. */ public Notification getNotification() { return this.notification; } /** *

* The new or updated Notification object. *

* * @param notification * The new or updated Notification object. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateClusterRequest withNotification(Notification notification) { setNotification(notification); return this; } /** *

* The updated ID for the forwarding address for a cluster. This field is not supported in most regions. *

* * @param forwardingAddressId * The updated ID for the forwarding address for a cluster. This field is not supported in most regions. */ public void setForwardingAddressId(String forwardingAddressId) { this.forwardingAddressId = forwardingAddressId; } /** *

* The updated ID for the forwarding address for a cluster. This field is not supported in most regions. *

* * @return The updated ID for the forwarding address for a cluster. This field is not supported in most regions. */ public String getForwardingAddressId() { return this.forwardingAddressId; } /** *

* The updated ID for the forwarding address for a cluster. This field is not supported in most regions. *

* * @param forwardingAddressId * The updated ID for the forwarding address for a cluster. This field is not supported in most regions. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateClusterRequest withForwardingAddressId(String forwardingAddressId) { setForwardingAddressId(forwardingAddressId); 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 (getClusterId() != null) sb.append("ClusterId: ").append(getClusterId()).append(","); if (getRoleARN() != null) sb.append("RoleARN: ").append(getRoleARN()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getResources() != null) sb.append("Resources: ").append(getResources()).append(","); if (getOnDeviceServiceConfiguration() != null) sb.append("OnDeviceServiceConfiguration: ").append(getOnDeviceServiceConfiguration()).append(","); if (getAddressId() != null) sb.append("AddressId: ").append(getAddressId()).append(","); if (getShippingOption() != null) sb.append("ShippingOption: ").append(getShippingOption()).append(","); if (getNotification() != null) sb.append("Notification: ").append(getNotification()).append(","); if (getForwardingAddressId() != null) sb.append("ForwardingAddressId: ").append(getForwardingAddressId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateClusterRequest == false) return false; UpdateClusterRequest other = (UpdateClusterRequest) obj; if (other.getClusterId() == null ^ this.getClusterId() == null) return false; if (other.getClusterId() != null && other.getClusterId().equals(this.getClusterId()) == false) return false; if (other.getRoleARN() == null ^ this.getRoleARN() == null) return false; if (other.getRoleARN() != null && other.getRoleARN().equals(this.getRoleARN()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getResources() == null ^ this.getResources() == null) return false; if (other.getResources() != null && other.getResources().equals(this.getResources()) == false) return false; if (other.getOnDeviceServiceConfiguration() == null ^ this.getOnDeviceServiceConfiguration() == null) return false; if (other.getOnDeviceServiceConfiguration() != null && other.getOnDeviceServiceConfiguration().equals(this.getOnDeviceServiceConfiguration()) == false) return false; if (other.getAddressId() == null ^ this.getAddressId() == null) return false; if (other.getAddressId() != null && other.getAddressId().equals(this.getAddressId()) == false) return false; if (other.getShippingOption() == null ^ this.getShippingOption() == null) return false; if (other.getShippingOption() != null && other.getShippingOption().equals(this.getShippingOption()) == false) return false; if (other.getNotification() == null ^ this.getNotification() == null) return false; if (other.getNotification() != null && other.getNotification().equals(this.getNotification()) == false) return false; if (other.getForwardingAddressId() == null ^ this.getForwardingAddressId() == null) return false; if (other.getForwardingAddressId() != null && other.getForwardingAddressId().equals(this.getForwardingAddressId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClusterId() == null) ? 0 : getClusterId().hashCode()); hashCode = prime * hashCode + ((getRoleARN() == null) ? 0 : getRoleARN().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getResources() == null) ? 0 : getResources().hashCode()); hashCode = prime * hashCode + ((getOnDeviceServiceConfiguration() == null) ? 0 : getOnDeviceServiceConfiguration().hashCode()); hashCode = prime * hashCode + ((getAddressId() == null) ? 0 : getAddressId().hashCode()); hashCode = prime * hashCode + ((getShippingOption() == null) ? 0 : getShippingOption().hashCode()); hashCode = prime * hashCode + ((getNotification() == null) ? 0 : getNotification().hashCode()); hashCode = prime * hashCode + ((getForwardingAddressId() == null) ? 0 : getForwardingAddressId().hashCode()); return hashCode; } @Override public UpdateClusterRequest clone() { return (UpdateClusterRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy