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

com.amazonaws.services.cloudhsm.model.ModifyHsmRequest Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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.cloudhsm.model;

import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* Contains the inputs for the ModifyHsm operation. *

*/ public class ModifyHsmRequest extends AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The ARN of the HSM to modify. *

*/ private String hsmArn; /** *

* The new identifier of the subnet that the HSM is in. The new subnet must * be in the same Availability Zone as the current subnet. *

*/ private String subnetId; /** *

* The new IP address for the elastic network interface (ENI) attached to * the HSM. *

*

* If the HSM is moved to a different subnet, and an IP address is not * specified, an IP address will be randomly chosen from the CIDR range of * the new subnet. *

*/ private String eniIp; /** *

* The new IAM role ARN. *

*/ private String iamRoleArn; /** *

* The new external ID. *

*/ private String externalId; /** *

* The new IP address for the syslog monitoring server. The AWS CloudHSM * service only supports one syslog monitoring server. *

*/ private String syslogIp; /** *

* The ARN of the HSM to modify. *

* * @param hsmArn * The ARN of the HSM to modify. */ public void setHsmArn(String hsmArn) { this.hsmArn = hsmArn; } /** *

* The ARN of the HSM to modify. *

* * @return The ARN of the HSM to modify. */ public String getHsmArn() { return this.hsmArn; } /** *

* The ARN of the HSM to modify. *

* * @param hsmArn * The ARN of the HSM to modify. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyHsmRequest withHsmArn(String hsmArn) { setHsmArn(hsmArn); return this; } /** *

* The new identifier of the subnet that the HSM is in. The new subnet must * be in the same Availability Zone as the current subnet. *

* * @param subnetId * The new identifier of the subnet that the HSM is in. The new * subnet must be in the same Availability Zone as the current * subnet. */ public void setSubnetId(String subnetId) { this.subnetId = subnetId; } /** *

* The new identifier of the subnet that the HSM is in. The new subnet must * be in the same Availability Zone as the current subnet. *

* * @return The new identifier of the subnet that the HSM is in. The new * subnet must be in the same Availability Zone as the current * subnet. */ public String getSubnetId() { return this.subnetId; } /** *

* The new identifier of the subnet that the HSM is in. The new subnet must * be in the same Availability Zone as the current subnet. *

* * @param subnetId * The new identifier of the subnet that the HSM is in. The new * subnet must be in the same Availability Zone as the current * subnet. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyHsmRequest withSubnetId(String subnetId) { setSubnetId(subnetId); return this; } /** *

* The new IP address for the elastic network interface (ENI) attached to * the HSM. *

*

* If the HSM is moved to a different subnet, and an IP address is not * specified, an IP address will be randomly chosen from the CIDR range of * the new subnet. *

* * @param eniIp * The new IP address for the elastic network interface (ENI) * attached to the HSM.

*

* If the HSM is moved to a different subnet, and an IP address is * not specified, an IP address will be randomly chosen from the CIDR * range of the new subnet. */ public void setEniIp(String eniIp) { this.eniIp = eniIp; } /** *

* The new IP address for the elastic network interface (ENI) attached to * the HSM. *

*

* If the HSM is moved to a different subnet, and an IP address is not * specified, an IP address will be randomly chosen from the CIDR range of * the new subnet. *

* * @return The new IP address for the elastic network interface (ENI) * attached to the HSM.

*

* If the HSM is moved to a different subnet, and an IP address is * not specified, an IP address will be randomly chosen from the * CIDR range of the new subnet. */ public String getEniIp() { return this.eniIp; } /** *

* The new IP address for the elastic network interface (ENI) attached to * the HSM. *

*

* If the HSM is moved to a different subnet, and an IP address is not * specified, an IP address will be randomly chosen from the CIDR range of * the new subnet. *

* * @param eniIp * The new IP address for the elastic network interface (ENI) * attached to the HSM.

*

* If the HSM is moved to a different subnet, and an IP address is * not specified, an IP address will be randomly chosen from the CIDR * range of the new subnet. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyHsmRequest withEniIp(String eniIp) { setEniIp(eniIp); return this; } /** *

* The new IAM role ARN. *

* * @param iamRoleArn * The new IAM role ARN. */ public void setIamRoleArn(String iamRoleArn) { this.iamRoleArn = iamRoleArn; } /** *

* The new IAM role ARN. *

* * @return The new IAM role ARN. */ public String getIamRoleArn() { return this.iamRoleArn; } /** *

* The new IAM role ARN. *

* * @param iamRoleArn * The new IAM role ARN. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyHsmRequest withIamRoleArn(String iamRoleArn) { setIamRoleArn(iamRoleArn); return this; } /** *

* The new external ID. *

* * @param externalId * The new external ID. */ public void setExternalId(String externalId) { this.externalId = externalId; } /** *

* The new external ID. *

* * @return The new external ID. */ public String getExternalId() { return this.externalId; } /** *

* The new external ID. *

* * @param externalId * The new external ID. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyHsmRequest withExternalId(String externalId) { setExternalId(externalId); return this; } /** *

* The new IP address for the syslog monitoring server. The AWS CloudHSM * service only supports one syslog monitoring server. *

* * @param syslogIp * The new IP address for the syslog monitoring server. The AWS * CloudHSM service only supports one syslog monitoring server. */ public void setSyslogIp(String syslogIp) { this.syslogIp = syslogIp; } /** *

* The new IP address for the syslog monitoring server. The AWS CloudHSM * service only supports one syslog monitoring server. *

* * @return The new IP address for the syslog monitoring server. The AWS * CloudHSM service only supports one syslog monitoring server. */ public String getSyslogIp() { return this.syslogIp; } /** *

* The new IP address for the syslog monitoring server. The AWS CloudHSM * service only supports one syslog monitoring server. *

* * @param syslogIp * The new IP address for the syslog monitoring server. The AWS * CloudHSM service only supports one syslog monitoring server. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyHsmRequest withSyslogIp(String syslogIp) { setSyslogIp(syslogIp); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getHsmArn() != null) sb.append("HsmArn: " + getHsmArn() + ","); if (getSubnetId() != null) sb.append("SubnetId: " + getSubnetId() + ","); if (getEniIp() != null) sb.append("EniIp: " + getEniIp() + ","); if (getIamRoleArn() != null) sb.append("IamRoleArn: " + getIamRoleArn() + ","); if (getExternalId() != null) sb.append("ExternalId: " + getExternalId() + ","); if (getSyslogIp() != null) sb.append("SyslogIp: " + getSyslogIp()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ModifyHsmRequest == false) return false; ModifyHsmRequest other = (ModifyHsmRequest) obj; if (other.getHsmArn() == null ^ this.getHsmArn() == null) return false; if (other.getHsmArn() != null && other.getHsmArn().equals(this.getHsmArn()) == false) return false; if (other.getSubnetId() == null ^ this.getSubnetId() == null) return false; if (other.getSubnetId() != null && other.getSubnetId().equals(this.getSubnetId()) == false) return false; if (other.getEniIp() == null ^ this.getEniIp() == null) return false; if (other.getEniIp() != null && other.getEniIp().equals(this.getEniIp()) == false) return false; if (other.getIamRoleArn() == null ^ this.getIamRoleArn() == null) return false; if (other.getIamRoleArn() != null && other.getIamRoleArn().equals(this.getIamRoleArn()) == false) return false; if (other.getExternalId() == null ^ this.getExternalId() == null) return false; if (other.getExternalId() != null && other.getExternalId().equals(this.getExternalId()) == false) return false; if (other.getSyslogIp() == null ^ this.getSyslogIp() == null) return false; if (other.getSyslogIp() != null && other.getSyslogIp().equals(this.getSyslogIp()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getHsmArn() == null) ? 0 : getHsmArn().hashCode()); hashCode = prime * hashCode + ((getSubnetId() == null) ? 0 : getSubnetId().hashCode()); hashCode = prime * hashCode + ((getEniIp() == null) ? 0 : getEniIp().hashCode()); hashCode = prime * hashCode + ((getIamRoleArn() == null) ? 0 : getIamRoleArn().hashCode()); hashCode = prime * hashCode + ((getExternalId() == null) ? 0 : getExternalId().hashCode()); hashCode = prime * hashCode + ((getSyslogIp() == null) ? 0 : getSyslogIp().hashCode()); return hashCode; } @Override public ModifyHsmRequest clone() { return (ModifyHsmRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy