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

com.amazonaws.services.ec2.model.InstanceAttribute Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
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.ec2.model;

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

/**
 * 

* Describes an instance attribute. *

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

* The security groups associated with the instance. *

*/ private com.amazonaws.internal.SdkInternalList groups; /** *

* The block device mapping of the instance. *

*/ private com.amazonaws.internal.SdkInternalList blockDeviceMappings; /** *

* If the value is true, you can't terminate the instance through the Amazon EC2 console, CLI, or API; * otherwise, you can. *

*/ private Boolean disableApiTermination; /** *

* Indicates whether enhanced networking with ENA is enabled. *

*/ private Boolean enaSupport; /** *

* To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true; * otherwise, set it to false. *

*/ private EnclaveOptions enclaveOptions; /** *

* Indicates whether the instance is optimized for Amazon EBS I/O. *

*/ private Boolean ebsOptimized; /** *

* The ID of the instance. *

*/ private String instanceId; /** *

* Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the * operating system command for system shutdown). *

*/ private String instanceInitiatedShutdownBehavior; /** *

* The instance type. *

*/ private String instanceType; /** *

* The kernel ID. *

*/ private String kernelId; /** *

* A list of product codes. *

*/ private com.amazonaws.internal.SdkInternalList productCodes; /** *

* The RAM disk ID. *

*/ private String ramdiskId; /** *

* The device name of the root device volume (for example, /dev/sda1). *

*/ private String rootDeviceName; /** *

* Enable or disable source/destination checks, which ensure that the instance is either the source or the * destination of any traffic that it receives. If the value is true, source/destination checks are * enabled; otherwise, they are disabled. The default value is true. You must disable * source/destination checks if the instance runs services such as network address translation, routing, or * firewalls. *

*/ private Boolean sourceDestCheck; /** *

* Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled. *

*/ private String sriovNetSupport; /** *

* The user data. *

*/ private String userData; /** *

* To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; * otherwise, set it to false. *

*/ private Boolean disableApiStop; /** *

* The security groups associated with the instance. *

* * @return The security groups associated with the instance. */ public java.util.List getGroups() { if (groups == null) { groups = new com.amazonaws.internal.SdkInternalList(); } return groups; } /** *

* The security groups associated with the instance. *

* * @param groups * The security groups associated with the instance. */ public void setGroups(java.util.Collection groups) { if (groups == null) { this.groups = null; return; } this.groups = new com.amazonaws.internal.SdkInternalList(groups); } /** *

* The security groups associated with the instance. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setGroups(java.util.Collection)} or {@link #withGroups(java.util.Collection)} if you want to override the * existing values. *

* * @param groups * The security groups associated with the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withGroups(GroupIdentifier... groups) { if (this.groups == null) { setGroups(new com.amazonaws.internal.SdkInternalList(groups.length)); } for (GroupIdentifier ele : groups) { this.groups.add(ele); } return this; } /** *

* The security groups associated with the instance. *

* * @param groups * The security groups associated with the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withGroups(java.util.Collection groups) { setGroups(groups); return this; } /** *

* The block device mapping of the instance. *

* * @return The block device mapping of the instance. */ public java.util.List getBlockDeviceMappings() { if (blockDeviceMappings == null) { blockDeviceMappings = new com.amazonaws.internal.SdkInternalList(); } return blockDeviceMappings; } /** *

* The block device mapping of the instance. *

* * @param blockDeviceMappings * The block device mapping of the instance. */ public void setBlockDeviceMappings(java.util.Collection blockDeviceMappings) { if (blockDeviceMappings == null) { this.blockDeviceMappings = null; return; } this.blockDeviceMappings = new com.amazonaws.internal.SdkInternalList(blockDeviceMappings); } /** *

* The block device mapping of the instance. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setBlockDeviceMappings(java.util.Collection)} or {@link #withBlockDeviceMappings(java.util.Collection)} * if you want to override the existing values. *

* * @param blockDeviceMappings * The block device mapping of the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withBlockDeviceMappings(InstanceBlockDeviceMapping... blockDeviceMappings) { if (this.blockDeviceMappings == null) { setBlockDeviceMappings(new com.amazonaws.internal.SdkInternalList(blockDeviceMappings.length)); } for (InstanceBlockDeviceMapping ele : blockDeviceMappings) { this.blockDeviceMappings.add(ele); } return this; } /** *

* The block device mapping of the instance. *

* * @param blockDeviceMappings * The block device mapping of the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withBlockDeviceMappings(java.util.Collection blockDeviceMappings) { setBlockDeviceMappings(blockDeviceMappings); return this; } /** *

* If the value is true, you can't terminate the instance through the Amazon EC2 console, CLI, or API; * otherwise, you can. *

* * @param disableApiTermination * If the value is true, you can't terminate the instance through the Amazon EC2 console, CLI, * or API; otherwise, you can. */ public void setDisableApiTermination(Boolean disableApiTermination) { this.disableApiTermination = disableApiTermination; } /** *

* If the value is true, you can't terminate the instance through the Amazon EC2 console, CLI, or API; * otherwise, you can. *

* * @return If the value is true, you can't terminate the instance through the Amazon EC2 console, CLI, * or API; otherwise, you can. */ public Boolean getDisableApiTermination() { return this.disableApiTermination; } /** *

* If the value is true, you can't terminate the instance through the Amazon EC2 console, CLI, or API; * otherwise, you can. *

* * @param disableApiTermination * If the value is true, you can't terminate the instance through the Amazon EC2 console, CLI, * or API; otherwise, you can. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withDisableApiTermination(Boolean disableApiTermination) { setDisableApiTermination(disableApiTermination); return this; } /** *

* If the value is true, you can't terminate the instance through the Amazon EC2 console, CLI, or API; * otherwise, you can. *

* * @return If the value is true, you can't terminate the instance through the Amazon EC2 console, CLI, * or API; otherwise, you can. */ public Boolean isDisableApiTermination() { return this.disableApiTermination; } /** *

* Indicates whether enhanced networking with ENA is enabled. *

* * @param enaSupport * Indicates whether enhanced networking with ENA is enabled. */ public void setEnaSupport(Boolean enaSupport) { this.enaSupport = enaSupport; } /** *

* Indicates whether enhanced networking with ENA is enabled. *

* * @return Indicates whether enhanced networking with ENA is enabled. */ public Boolean getEnaSupport() { return this.enaSupport; } /** *

* Indicates whether enhanced networking with ENA is enabled. *

* * @param enaSupport * Indicates whether enhanced networking with ENA is enabled. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withEnaSupport(Boolean enaSupport) { setEnaSupport(enaSupport); return this; } /** *

* Indicates whether enhanced networking with ENA is enabled. *

* * @return Indicates whether enhanced networking with ENA is enabled. */ public Boolean isEnaSupport() { return this.enaSupport; } /** *

* To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true; * otherwise, set it to false. *

* * @param enclaveOptions * To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true; * otherwise, set it to false. */ public void setEnclaveOptions(EnclaveOptions enclaveOptions) { this.enclaveOptions = enclaveOptions; } /** *

* To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true; * otherwise, set it to false. *

* * @return To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true; * otherwise, set it to false. */ public EnclaveOptions getEnclaveOptions() { return this.enclaveOptions; } /** *

* To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true; * otherwise, set it to false. *

* * @param enclaveOptions * To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true; * otherwise, set it to false. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withEnclaveOptions(EnclaveOptions enclaveOptions) { setEnclaveOptions(enclaveOptions); return this; } /** *

* Indicates whether the instance is optimized for Amazon EBS I/O. *

* * @param ebsOptimized * Indicates whether the instance is optimized for Amazon EBS I/O. */ public void setEbsOptimized(Boolean ebsOptimized) { this.ebsOptimized = ebsOptimized; } /** *

* Indicates whether the instance is optimized for Amazon EBS I/O. *

* * @return Indicates whether the instance is optimized for Amazon EBS I/O. */ public Boolean getEbsOptimized() { return this.ebsOptimized; } /** *

* Indicates whether the instance is optimized for Amazon EBS I/O. *

* * @param ebsOptimized * Indicates whether the instance is optimized for Amazon EBS I/O. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withEbsOptimized(Boolean ebsOptimized) { setEbsOptimized(ebsOptimized); return this; } /** *

* Indicates whether the instance is optimized for Amazon EBS I/O. *

* * @return Indicates whether the instance is optimized for Amazon EBS I/O. */ public Boolean isEbsOptimized() { return this.ebsOptimized; } /** *

* The ID of the instance. *

* * @param instanceId * The ID of the instance. */ public void setInstanceId(String instanceId) { this.instanceId = instanceId; } /** *

* The ID of the instance. *

* * @return The ID of the instance. */ public String getInstanceId() { return this.instanceId; } /** *

* The ID of the instance. *

* * @param instanceId * The ID of the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withInstanceId(String instanceId) { setInstanceId(instanceId); return this; } /** *

* Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the * operating system command for system shutdown). *

* * @param instanceInitiatedShutdownBehavior * Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the * operating system command for system shutdown). */ public void setInstanceInitiatedShutdownBehavior(String instanceInitiatedShutdownBehavior) { this.instanceInitiatedShutdownBehavior = instanceInitiatedShutdownBehavior; } /** *

* Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the * operating system command for system shutdown). *

* * @return Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the * operating system command for system shutdown). */ public String getInstanceInitiatedShutdownBehavior() { return this.instanceInitiatedShutdownBehavior; } /** *

* Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the * operating system command for system shutdown). *

* * @param instanceInitiatedShutdownBehavior * Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the * operating system command for system shutdown). * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withInstanceInitiatedShutdownBehavior(String instanceInitiatedShutdownBehavior) { setInstanceInitiatedShutdownBehavior(instanceInitiatedShutdownBehavior); return this; } /** *

* The instance type. *

* * @param instanceType * The instance type. */ public void setInstanceType(String instanceType) { this.instanceType = instanceType; } /** *

* The instance type. *

* * @return The instance type. */ public String getInstanceType() { return this.instanceType; } /** *

* The instance type. *

* * @param instanceType * The instance type. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withInstanceType(String instanceType) { setInstanceType(instanceType); return this; } /** *

* The kernel ID. *

* * @param kernelId * The kernel ID. */ public void setKernelId(String kernelId) { this.kernelId = kernelId; } /** *

* The kernel ID. *

* * @return The kernel ID. */ public String getKernelId() { return this.kernelId; } /** *

* The kernel ID. *

* * @param kernelId * The kernel ID. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withKernelId(String kernelId) { setKernelId(kernelId); return this; } /** *

* A list of product codes. *

* * @return A list of product codes. */ public java.util.List getProductCodes() { if (productCodes == null) { productCodes = new com.amazonaws.internal.SdkInternalList(); } return productCodes; } /** *

* A list of product codes. *

* * @param productCodes * A list of product codes. */ public void setProductCodes(java.util.Collection productCodes) { if (productCodes == null) { this.productCodes = null; return; } this.productCodes = new com.amazonaws.internal.SdkInternalList(productCodes); } /** *

* A list of product codes. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setProductCodes(java.util.Collection)} or {@link #withProductCodes(java.util.Collection)} if you want to * override the existing values. *

* * @param productCodes * A list of product codes. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withProductCodes(ProductCode... productCodes) { if (this.productCodes == null) { setProductCodes(new com.amazonaws.internal.SdkInternalList(productCodes.length)); } for (ProductCode ele : productCodes) { this.productCodes.add(ele); } return this; } /** *

* A list of product codes. *

* * @param productCodes * A list of product codes. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withProductCodes(java.util.Collection productCodes) { setProductCodes(productCodes); return this; } /** *

* The RAM disk ID. *

* * @param ramdiskId * The RAM disk ID. */ public void setRamdiskId(String ramdiskId) { this.ramdiskId = ramdiskId; } /** *

* The RAM disk ID. *

* * @return The RAM disk ID. */ public String getRamdiskId() { return this.ramdiskId; } /** *

* The RAM disk ID. *

* * @param ramdiskId * The RAM disk ID. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withRamdiskId(String ramdiskId) { setRamdiskId(ramdiskId); return this; } /** *

* The device name of the root device volume (for example, /dev/sda1). *

* * @param rootDeviceName * The device name of the root device volume (for example, /dev/sda1). */ public void setRootDeviceName(String rootDeviceName) { this.rootDeviceName = rootDeviceName; } /** *

* The device name of the root device volume (for example, /dev/sda1). *

* * @return The device name of the root device volume (for example, /dev/sda1). */ public String getRootDeviceName() { return this.rootDeviceName; } /** *

* The device name of the root device volume (for example, /dev/sda1). *

* * @param rootDeviceName * The device name of the root device volume (for example, /dev/sda1). * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withRootDeviceName(String rootDeviceName) { setRootDeviceName(rootDeviceName); return this; } /** *

* Enable or disable source/destination checks, which ensure that the instance is either the source or the * destination of any traffic that it receives. If the value is true, source/destination checks are * enabled; otherwise, they are disabled. The default value is true. You must disable * source/destination checks if the instance runs services such as network address translation, routing, or * firewalls. *

* * @param sourceDestCheck * Enable or disable source/destination checks, which ensure that the instance is either the source or the * destination of any traffic that it receives. If the value is true, source/destination checks * are enabled; otherwise, they are disabled. The default value is true. You must disable * source/destination checks if the instance runs services such as network address translation, routing, or * firewalls. */ public void setSourceDestCheck(Boolean sourceDestCheck) { this.sourceDestCheck = sourceDestCheck; } /** *

* Enable or disable source/destination checks, which ensure that the instance is either the source or the * destination of any traffic that it receives. If the value is true, source/destination checks are * enabled; otherwise, they are disabled. The default value is true. You must disable * source/destination checks if the instance runs services such as network address translation, routing, or * firewalls. *

* * @return Enable or disable source/destination checks, which ensure that the instance is either the source or the * destination of any traffic that it receives. If the value is true, source/destination checks * are enabled; otherwise, they are disabled. The default value is true. You must disable * source/destination checks if the instance runs services such as network address translation, routing, or * firewalls. */ public Boolean getSourceDestCheck() { return this.sourceDestCheck; } /** *

* Enable or disable source/destination checks, which ensure that the instance is either the source or the * destination of any traffic that it receives. If the value is true, source/destination checks are * enabled; otherwise, they are disabled. The default value is true. You must disable * source/destination checks if the instance runs services such as network address translation, routing, or * firewalls. *

* * @param sourceDestCheck * Enable or disable source/destination checks, which ensure that the instance is either the source or the * destination of any traffic that it receives. If the value is true, source/destination checks * are enabled; otherwise, they are disabled. The default value is true. You must disable * source/destination checks if the instance runs services such as network address translation, routing, or * firewalls. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withSourceDestCheck(Boolean sourceDestCheck) { setSourceDestCheck(sourceDestCheck); return this; } /** *

* Enable or disable source/destination checks, which ensure that the instance is either the source or the * destination of any traffic that it receives. If the value is true, source/destination checks are * enabled; otherwise, they are disabled. The default value is true. You must disable * source/destination checks if the instance runs services such as network address translation, routing, or * firewalls. *

* * @return Enable or disable source/destination checks, which ensure that the instance is either the source or the * destination of any traffic that it receives. If the value is true, source/destination checks * are enabled; otherwise, they are disabled. The default value is true. You must disable * source/destination checks if the instance runs services such as network address translation, routing, or * firewalls. */ public Boolean isSourceDestCheck() { return this.sourceDestCheck; } /** *

* Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled. *

* * @param sriovNetSupport * Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled. */ public void setSriovNetSupport(String sriovNetSupport) { this.sriovNetSupport = sriovNetSupport; } /** *

* Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled. *

* * @return Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled. */ public String getSriovNetSupport() { return this.sriovNetSupport; } /** *

* Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled. *

* * @param sriovNetSupport * Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withSriovNetSupport(String sriovNetSupport) { setSriovNetSupport(sriovNetSupport); return this; } /** *

* The user data. *

* * @param userData * The user data. */ public void setUserData(String userData) { this.userData = userData; } /** *

* The user data. *

* * @return The user data. */ public String getUserData() { return this.userData; } /** *

* The user data. *

* * @param userData * The user data. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withUserData(String userData) { setUserData(userData); return this; } /** *

* To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; * otherwise, set it to false. *

* * @param disableApiStop * To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; * otherwise, set it to false. */ public void setDisableApiStop(Boolean disableApiStop) { this.disableApiStop = disableApiStop; } /** *

* To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; * otherwise, set it to false. *

* * @return To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; * otherwise, set it to false. */ public Boolean getDisableApiStop() { return this.disableApiStop; } /** *

* To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; * otherwise, set it to false. *

* * @param disableApiStop * To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; * otherwise, set it to false. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceAttribute withDisableApiStop(Boolean disableApiStop) { setDisableApiStop(disableApiStop); return this; } /** *

* To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; * otherwise, set it to false. *

* * @return To enable the instance for Amazon Web Services Stop Protection, set this parameter to true; * otherwise, set it to false. */ public Boolean isDisableApiStop() { return this.disableApiStop; } /** * 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 (getGroups() != null) sb.append("Groups: ").append(getGroups()).append(","); if (getBlockDeviceMappings() != null) sb.append("BlockDeviceMappings: ").append(getBlockDeviceMappings()).append(","); if (getDisableApiTermination() != null) sb.append("DisableApiTermination: ").append(getDisableApiTermination()).append(","); if (getEnaSupport() != null) sb.append("EnaSupport: ").append(getEnaSupport()).append(","); if (getEnclaveOptions() != null) sb.append("EnclaveOptions: ").append(getEnclaveOptions()).append(","); if (getEbsOptimized() != null) sb.append("EbsOptimized: ").append(getEbsOptimized()).append(","); if (getInstanceId() != null) sb.append("InstanceId: ").append(getInstanceId()).append(","); if (getInstanceInitiatedShutdownBehavior() != null) sb.append("InstanceInitiatedShutdownBehavior: ").append(getInstanceInitiatedShutdownBehavior()).append(","); if (getInstanceType() != null) sb.append("InstanceType: ").append(getInstanceType()).append(","); if (getKernelId() != null) sb.append("KernelId: ").append(getKernelId()).append(","); if (getProductCodes() != null) sb.append("ProductCodes: ").append(getProductCodes()).append(","); if (getRamdiskId() != null) sb.append("RamdiskId: ").append(getRamdiskId()).append(","); if (getRootDeviceName() != null) sb.append("RootDeviceName: ").append(getRootDeviceName()).append(","); if (getSourceDestCheck() != null) sb.append("SourceDestCheck: ").append(getSourceDestCheck()).append(","); if (getSriovNetSupport() != null) sb.append("SriovNetSupport: ").append(getSriovNetSupport()).append(","); if (getUserData() != null) sb.append("UserData: ").append(getUserData()).append(","); if (getDisableApiStop() != null) sb.append("DisableApiStop: ").append(getDisableApiStop()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof InstanceAttribute == false) return false; InstanceAttribute other = (InstanceAttribute) obj; if (other.getGroups() == null ^ this.getGroups() == null) return false; if (other.getGroups() != null && other.getGroups().equals(this.getGroups()) == false) return false; if (other.getBlockDeviceMappings() == null ^ this.getBlockDeviceMappings() == null) return false; if (other.getBlockDeviceMappings() != null && other.getBlockDeviceMappings().equals(this.getBlockDeviceMappings()) == false) return false; if (other.getDisableApiTermination() == null ^ this.getDisableApiTermination() == null) return false; if (other.getDisableApiTermination() != null && other.getDisableApiTermination().equals(this.getDisableApiTermination()) == false) return false; if (other.getEnaSupport() == null ^ this.getEnaSupport() == null) return false; if (other.getEnaSupport() != null && other.getEnaSupport().equals(this.getEnaSupport()) == false) return false; if (other.getEnclaveOptions() == null ^ this.getEnclaveOptions() == null) return false; if (other.getEnclaveOptions() != null && other.getEnclaveOptions().equals(this.getEnclaveOptions()) == false) return false; if (other.getEbsOptimized() == null ^ this.getEbsOptimized() == null) return false; if (other.getEbsOptimized() != null && other.getEbsOptimized().equals(this.getEbsOptimized()) == false) return false; if (other.getInstanceId() == null ^ this.getInstanceId() == null) return false; if (other.getInstanceId() != null && other.getInstanceId().equals(this.getInstanceId()) == false) return false; if (other.getInstanceInitiatedShutdownBehavior() == null ^ this.getInstanceInitiatedShutdownBehavior() == null) return false; if (other.getInstanceInitiatedShutdownBehavior() != null && other.getInstanceInitiatedShutdownBehavior().equals(this.getInstanceInitiatedShutdownBehavior()) == false) return false; if (other.getInstanceType() == null ^ this.getInstanceType() == null) return false; if (other.getInstanceType() != null && other.getInstanceType().equals(this.getInstanceType()) == false) return false; if (other.getKernelId() == null ^ this.getKernelId() == null) return false; if (other.getKernelId() != null && other.getKernelId().equals(this.getKernelId()) == false) return false; if (other.getProductCodes() == null ^ this.getProductCodes() == null) return false; if (other.getProductCodes() != null && other.getProductCodes().equals(this.getProductCodes()) == false) return false; if (other.getRamdiskId() == null ^ this.getRamdiskId() == null) return false; if (other.getRamdiskId() != null && other.getRamdiskId().equals(this.getRamdiskId()) == false) return false; if (other.getRootDeviceName() == null ^ this.getRootDeviceName() == null) return false; if (other.getRootDeviceName() != null && other.getRootDeviceName().equals(this.getRootDeviceName()) == false) return false; if (other.getSourceDestCheck() == null ^ this.getSourceDestCheck() == null) return false; if (other.getSourceDestCheck() != null && other.getSourceDestCheck().equals(this.getSourceDestCheck()) == false) return false; if (other.getSriovNetSupport() == null ^ this.getSriovNetSupport() == null) return false; if (other.getSriovNetSupport() != null && other.getSriovNetSupport().equals(this.getSriovNetSupport()) == false) return false; if (other.getUserData() == null ^ this.getUserData() == null) return false; if (other.getUserData() != null && other.getUserData().equals(this.getUserData()) == false) return false; if (other.getDisableApiStop() == null ^ this.getDisableApiStop() == null) return false; if (other.getDisableApiStop() != null && other.getDisableApiStop().equals(this.getDisableApiStop()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getGroups() == null) ? 0 : getGroups().hashCode()); hashCode = prime * hashCode + ((getBlockDeviceMappings() == null) ? 0 : getBlockDeviceMappings().hashCode()); hashCode = prime * hashCode + ((getDisableApiTermination() == null) ? 0 : getDisableApiTermination().hashCode()); hashCode = prime * hashCode + ((getEnaSupport() == null) ? 0 : getEnaSupport().hashCode()); hashCode = prime * hashCode + ((getEnclaveOptions() == null) ? 0 : getEnclaveOptions().hashCode()); hashCode = prime * hashCode + ((getEbsOptimized() == null) ? 0 : getEbsOptimized().hashCode()); hashCode = prime * hashCode + ((getInstanceId() == null) ? 0 : getInstanceId().hashCode()); hashCode = prime * hashCode + ((getInstanceInitiatedShutdownBehavior() == null) ? 0 : getInstanceInitiatedShutdownBehavior().hashCode()); hashCode = prime * hashCode + ((getInstanceType() == null) ? 0 : getInstanceType().hashCode()); hashCode = prime * hashCode + ((getKernelId() == null) ? 0 : getKernelId().hashCode()); hashCode = prime * hashCode + ((getProductCodes() == null) ? 0 : getProductCodes().hashCode()); hashCode = prime * hashCode + ((getRamdiskId() == null) ? 0 : getRamdiskId().hashCode()); hashCode = prime * hashCode + ((getRootDeviceName() == null) ? 0 : getRootDeviceName().hashCode()); hashCode = prime * hashCode + ((getSourceDestCheck() == null) ? 0 : getSourceDestCheck().hashCode()); hashCode = prime * hashCode + ((getSriovNetSupport() == null) ? 0 : getSriovNetSupport().hashCode()); hashCode = prime * hashCode + ((getUserData() == null) ? 0 : getUserData().hashCode()); hashCode = prime * hashCode + ((getDisableApiStop() == null) ? 0 : getDisableApiStop().hashCode()); return hashCode; } @Override public InstanceAttribute clone() { try { return (InstanceAttribute) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy