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

com.amazonaws.services.storagegateway.model.CreateStorediSCSIVolumeRequest Maven / Gradle / Ivy

Go to download

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

The 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.storagegateway.model;

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

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* A JSON object containing one or more of the following fields: *

* * * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateStorediSCSIVolumeRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { private String gatewayARN; /** *

* The unique identifier for the gateway local disk that is configured as a stored volume. Use ListLocalDisks to * list disk IDs for a gateway. *

*/ private String diskId; /** *

* The snapshot ID (e.g., "snap-1122aabb") of the snapshot to restore as the new stored volume. Specify this field * if you want to create the iSCSI storage volume from a snapshot; otherwise, do not include this field. To list * snapshots for your account use DescribeSnapshots in the Amazon Elastic Compute Cloud API Reference. *

*/ private String snapshotId; /** *

* Set to true if you want to preserve the data on the local disk. Otherwise, set to false * to create an empty volume. *

*

* Valid Values: true | false *

*/ private Boolean preserveExistingData; /** *

* The name of the iSCSI target used by an initiator to connect to a volume and used as a suffix for the target ARN. * For example, specifying TargetName as myvolume results in the target ARN of * arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume * . The target name must be unique across all volumes on a gateway. *

*

* If you don't specify a value, Storage Gateway uses the value that was previously used for this volume as the new * target name. *

*/ private String targetName; /** *

* The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are accepted. Use * DescribeGatewayInformation to get a list of the network interfaces available on a gateway. *

*

* Valid Values: A valid IP address. *

*/ private String networkInterfaceId; /** *

* Set to true to use Amazon S3 server-side encryption with your own KMS key, or false to * use a key managed by Amazon S3. Optional. *

*

* Valid Values: true | false *

*/ private Boolean kMSEncrypted; /** *

* The Amazon Resource Name (ARN) of a symmetric customer master key (CMK) used for Amazon S3 server-side * encryption. Storage Gateway does not support asymmetric CMKs. This value can only be set when * KMSEncrypted is true. Optional. *

*/ private String kMSKey; /** *

* A list of up to 50 tags that can be assigned to a stored volume. Each tag is a key-value pair. *

* *

* Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the * following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the * maximum length for a tag's value is 256. *

*
*/ private com.amazonaws.internal.SdkInternalList tags; /** * @param gatewayARN */ public void setGatewayARN(String gatewayARN) { this.gatewayARN = gatewayARN; } /** * @return */ public String getGatewayARN() { return this.gatewayARN; } /** * @param gatewayARN * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withGatewayARN(String gatewayARN) { setGatewayARN(gatewayARN); return this; } /** *

* The unique identifier for the gateway local disk that is configured as a stored volume. Use ListLocalDisks to * list disk IDs for a gateway. *

* * @param diskId * The unique identifier for the gateway local disk that is configured as a stored volume. Use ListLocalDisks to list disk IDs for a gateway. */ public void setDiskId(String diskId) { this.diskId = diskId; } /** *

* The unique identifier for the gateway local disk that is configured as a stored volume. Use ListLocalDisks to * list disk IDs for a gateway. *

* * @return The unique identifier for the gateway local disk that is configured as a stored volume. Use ListLocalDisks to list disk IDs for a gateway. */ public String getDiskId() { return this.diskId; } /** *

* The unique identifier for the gateway local disk that is configured as a stored volume. Use ListLocalDisks to * list disk IDs for a gateway. *

* * @param diskId * The unique identifier for the gateway local disk that is configured as a stored volume. Use ListLocalDisks to list disk IDs for a gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withDiskId(String diskId) { setDiskId(diskId); return this; } /** *

* The snapshot ID (e.g., "snap-1122aabb") of the snapshot to restore as the new stored volume. Specify this field * if you want to create the iSCSI storage volume from a snapshot; otherwise, do not include this field. To list * snapshots for your account use DescribeSnapshots in the Amazon Elastic Compute Cloud API Reference. *

* * @param snapshotId * The snapshot ID (e.g., "snap-1122aabb") of the snapshot to restore as the new stored volume. Specify this * field if you want to create the iSCSI storage volume from a snapshot; otherwise, do not include this * field. To list snapshots for your account use DescribeSnapshots in the Amazon Elastic Compute Cloud API Reference. */ public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; } /** *

* The snapshot ID (e.g., "snap-1122aabb") of the snapshot to restore as the new stored volume. Specify this field * if you want to create the iSCSI storage volume from a snapshot; otherwise, do not include this field. To list * snapshots for your account use DescribeSnapshots in the Amazon Elastic Compute Cloud API Reference. *

* * @return The snapshot ID (e.g., "snap-1122aabb") of the snapshot to restore as the new stored volume. Specify this * field if you want to create the iSCSI storage volume from a snapshot; otherwise, do not include this * field. To list snapshots for your account use DescribeSnapshots in the Amazon Elastic Compute Cloud API Reference. */ public String getSnapshotId() { return this.snapshotId; } /** *

* The snapshot ID (e.g., "snap-1122aabb") of the snapshot to restore as the new stored volume. Specify this field * if you want to create the iSCSI storage volume from a snapshot; otherwise, do not include this field. To list * snapshots for your account use DescribeSnapshots in the Amazon Elastic Compute Cloud API Reference. *

* * @param snapshotId * The snapshot ID (e.g., "snap-1122aabb") of the snapshot to restore as the new stored volume. Specify this * field if you want to create the iSCSI storage volume from a snapshot; otherwise, do not include this * field. To list snapshots for your account use DescribeSnapshots in the Amazon Elastic Compute Cloud API Reference. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withSnapshotId(String snapshotId) { setSnapshotId(snapshotId); return this; } /** *

* Set to true if you want to preserve the data on the local disk. Otherwise, set to false * to create an empty volume. *

*

* Valid Values: true | false *

* * @param preserveExistingData * Set to true if you want to preserve the data on the local disk. Otherwise, set to * false to create an empty volume.

*

* Valid Values: true | false */ public void setPreserveExistingData(Boolean preserveExistingData) { this.preserveExistingData = preserveExistingData; } /** *

* Set to true if you want to preserve the data on the local disk. Otherwise, set to false * to create an empty volume. *

*

* Valid Values: true | false *

* * @return Set to true if you want to preserve the data on the local disk. Otherwise, set to * false to create an empty volume.

*

* Valid Values: true | false */ public Boolean getPreserveExistingData() { return this.preserveExistingData; } /** *

* Set to true if you want to preserve the data on the local disk. Otherwise, set to false * to create an empty volume. *

*

* Valid Values: true | false *

* * @param preserveExistingData * Set to true if you want to preserve the data on the local disk. Otherwise, set to * false to create an empty volume.

*

* Valid Values: true | false * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withPreserveExistingData(Boolean preserveExistingData) { setPreserveExistingData(preserveExistingData); return this; } /** *

* Set to true if you want to preserve the data on the local disk. Otherwise, set to false * to create an empty volume. *

*

* Valid Values: true | false *

* * @return Set to true if you want to preserve the data on the local disk. Otherwise, set to * false to create an empty volume.

*

* Valid Values: true | false */ public Boolean isPreserveExistingData() { return this.preserveExistingData; } /** *

* The name of the iSCSI target used by an initiator to connect to a volume and used as a suffix for the target ARN. * For example, specifying TargetName as myvolume results in the target ARN of * arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume * . The target name must be unique across all volumes on a gateway. *

*

* If you don't specify a value, Storage Gateway uses the value that was previously used for this volume as the new * target name. *

* * @param targetName * The name of the iSCSI target used by an initiator to connect to a volume and used as a suffix for the * target ARN. For example, specifying TargetName as myvolume results in the target ARN * of * arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume * . The target name must be unique across all volumes on a gateway.

*

* If you don't specify a value, Storage Gateway uses the value that was previously used for this volume as * the new target name. */ public void setTargetName(String targetName) { this.targetName = targetName; } /** *

* The name of the iSCSI target used by an initiator to connect to a volume and used as a suffix for the target ARN. * For example, specifying TargetName as myvolume results in the target ARN of * arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume * . The target name must be unique across all volumes on a gateway. *

*

* If you don't specify a value, Storage Gateway uses the value that was previously used for this volume as the new * target name. *

* * @return The name of the iSCSI target used by an initiator to connect to a volume and used as a suffix for the * target ARN. For example, specifying TargetName as myvolume results in the target ARN * of * arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume * . The target name must be unique across all volumes on a gateway.

*

* If you don't specify a value, Storage Gateway uses the value that was previously used for this volume as * the new target name. */ public String getTargetName() { return this.targetName; } /** *

* The name of the iSCSI target used by an initiator to connect to a volume and used as a suffix for the target ARN. * For example, specifying TargetName as myvolume results in the target ARN of * arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume * . The target name must be unique across all volumes on a gateway. *

*

* If you don't specify a value, Storage Gateway uses the value that was previously used for this volume as the new * target name. *

* * @param targetName * The name of the iSCSI target used by an initiator to connect to a volume and used as a suffix for the * target ARN. For example, specifying TargetName as myvolume results in the target ARN * of * arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume * . The target name must be unique across all volumes on a gateway.

*

* If you don't specify a value, Storage Gateway uses the value that was previously used for this volume as * the new target name. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withTargetName(String targetName) { setTargetName(targetName); return this; } /** *

* The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are accepted. Use * DescribeGatewayInformation to get a list of the network interfaces available on a gateway. *

*

* Valid Values: A valid IP address. *

* * @param networkInterfaceId * The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are * accepted. Use DescribeGatewayInformation to get a list of the network interfaces available on a * gateway.

*

* Valid Values: A valid IP address. */ public void setNetworkInterfaceId(String networkInterfaceId) { this.networkInterfaceId = networkInterfaceId; } /** *

* The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are accepted. Use * DescribeGatewayInformation to get a list of the network interfaces available on a gateway. *

*

* Valid Values: A valid IP address. *

* * @return The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are * accepted. Use DescribeGatewayInformation to get a list of the network interfaces available on a * gateway.

*

* Valid Values: A valid IP address. */ public String getNetworkInterfaceId() { return this.networkInterfaceId; } /** *

* The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are accepted. Use * DescribeGatewayInformation to get a list of the network interfaces available on a gateway. *

*

* Valid Values: A valid IP address. *

* * @param networkInterfaceId * The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are * accepted. Use DescribeGatewayInformation to get a list of the network interfaces available on a * gateway.

*

* Valid Values: A valid IP address. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withNetworkInterfaceId(String networkInterfaceId) { setNetworkInterfaceId(networkInterfaceId); return this; } /** *

* Set to true to use Amazon S3 server-side encryption with your own KMS key, or false to * use a key managed by Amazon S3. Optional. *

*

* Valid Values: true | false *

* * @param kMSEncrypted * Set to true to use Amazon S3 server-side encryption with your own KMS key, or * false to use a key managed by Amazon S3. Optional.

*

* Valid Values: true | false */ public void setKMSEncrypted(Boolean kMSEncrypted) { this.kMSEncrypted = kMSEncrypted; } /** *

* Set to true to use Amazon S3 server-side encryption with your own KMS key, or false to * use a key managed by Amazon S3. Optional. *

*

* Valid Values: true | false *

* * @return Set to true to use Amazon S3 server-side encryption with your own KMS key, or * false to use a key managed by Amazon S3. Optional.

*

* Valid Values: true | false */ public Boolean getKMSEncrypted() { return this.kMSEncrypted; } /** *

* Set to true to use Amazon S3 server-side encryption with your own KMS key, or false to * use a key managed by Amazon S3. Optional. *

*

* Valid Values: true | false *

* * @param kMSEncrypted * Set to true to use Amazon S3 server-side encryption with your own KMS key, or * false to use a key managed by Amazon S3. Optional.

*

* Valid Values: true | false * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withKMSEncrypted(Boolean kMSEncrypted) { setKMSEncrypted(kMSEncrypted); return this; } /** *

* Set to true to use Amazon S3 server-side encryption with your own KMS key, or false to * use a key managed by Amazon S3. Optional. *

*

* Valid Values: true | false *

* * @return Set to true to use Amazon S3 server-side encryption with your own KMS key, or * false to use a key managed by Amazon S3. Optional.

*

* Valid Values: true | false */ public Boolean isKMSEncrypted() { return this.kMSEncrypted; } /** *

* The Amazon Resource Name (ARN) of a symmetric customer master key (CMK) used for Amazon S3 server-side * encryption. Storage Gateway does not support asymmetric CMKs. This value can only be set when * KMSEncrypted is true. Optional. *

* * @param kMSKey * The Amazon Resource Name (ARN) of a symmetric customer master key (CMK) used for Amazon S3 server-side * encryption. Storage Gateway does not support asymmetric CMKs. This value can only be set when * KMSEncrypted is true. Optional. */ public void setKMSKey(String kMSKey) { this.kMSKey = kMSKey; } /** *

* The Amazon Resource Name (ARN) of a symmetric customer master key (CMK) used for Amazon S3 server-side * encryption. Storage Gateway does not support asymmetric CMKs. This value can only be set when * KMSEncrypted is true. Optional. *

* * @return The Amazon Resource Name (ARN) of a symmetric customer master key (CMK) used for Amazon S3 server-side * encryption. Storage Gateway does not support asymmetric CMKs. This value can only be set when * KMSEncrypted is true. Optional. */ public String getKMSKey() { return this.kMSKey; } /** *

* The Amazon Resource Name (ARN) of a symmetric customer master key (CMK) used for Amazon S3 server-side * encryption. Storage Gateway does not support asymmetric CMKs. This value can only be set when * KMSEncrypted is true. Optional. *

* * @param kMSKey * The Amazon Resource Name (ARN) of a symmetric customer master key (CMK) used for Amazon S3 server-side * encryption. Storage Gateway does not support asymmetric CMKs. This value can only be set when * KMSEncrypted is true. Optional. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withKMSKey(String kMSKey) { setKMSKey(kMSKey); return this; } /** *

* A list of up to 50 tags that can be assigned to a stored volume. Each tag is a key-value pair. *

* *

* Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the * following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the * maximum length for a tag's value is 256. *

*
* * @return A list of up to 50 tags that can be assigned to a stored volume. Each tag is a key-value pair.

*

* Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and * the following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, * and the maximum length for a tag's value is 256. *

*/ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** *

* A list of up to 50 tags that can be assigned to a stored volume. Each tag is a key-value pair. *

* *

* Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the * following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the * maximum length for a tag's value is 256. *

*
* * @param tags * A list of up to 50 tags that can be assigned to a stored volume. Each tag is a key-value pair.

*

* Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the * following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and * the maximum length for a tag's value is 256. *

*/ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

* A list of up to 50 tags that can be assigned to a stored volume. Each tag is a key-value pair. *

* *

* Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the * following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the * maximum length for a tag's value is 256. *

*
*

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

* * @param tags * A list of up to 50 tags that can be assigned to a stored volume. Each tag is a key-value pair.

*

* Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the * following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and * the maximum length for a tag's value is 256. *

* @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* A list of up to 50 tags that can be assigned to a stored volume. Each tag is a key-value pair. *

* *

* Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the * following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the * maximum length for a tag's value is 256. *

*
* * @param tags * A list of up to 50 tags that can be assigned to a stored volume. Each tag is a key-value pair.

*

* Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the * following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and * the maximum length for a tag's value is 256. *

* @return Returns a reference to this object so that method calls can be chained together. */ public CreateStorediSCSIVolumeRequest withTags(java.util.Collection tags) { setTags(tags); 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 (getGatewayARN() != null) sb.append("GatewayARN: ").append(getGatewayARN()).append(","); if (getDiskId() != null) sb.append("DiskId: ").append(getDiskId()).append(","); if (getSnapshotId() != null) sb.append("SnapshotId: ").append(getSnapshotId()).append(","); if (getPreserveExistingData() != null) sb.append("PreserveExistingData: ").append(getPreserveExistingData()).append(","); if (getTargetName() != null) sb.append("TargetName: ").append(getTargetName()).append(","); if (getNetworkInterfaceId() != null) sb.append("NetworkInterfaceId: ").append(getNetworkInterfaceId()).append(","); if (getKMSEncrypted() != null) sb.append("KMSEncrypted: ").append(getKMSEncrypted()).append(","); if (getKMSKey() != null) sb.append("KMSKey: ").append(getKMSKey()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateStorediSCSIVolumeRequest == false) return false; CreateStorediSCSIVolumeRequest other = (CreateStorediSCSIVolumeRequest) obj; if (other.getGatewayARN() == null ^ this.getGatewayARN() == null) return false; if (other.getGatewayARN() != null && other.getGatewayARN().equals(this.getGatewayARN()) == false) return false; if (other.getDiskId() == null ^ this.getDiskId() == null) return false; if (other.getDiskId() != null && other.getDiskId().equals(this.getDiskId()) == false) return false; if (other.getSnapshotId() == null ^ this.getSnapshotId() == null) return false; if (other.getSnapshotId() != null && other.getSnapshotId().equals(this.getSnapshotId()) == false) return false; if (other.getPreserveExistingData() == null ^ this.getPreserveExistingData() == null) return false; if (other.getPreserveExistingData() != null && other.getPreserveExistingData().equals(this.getPreserveExistingData()) == false) return false; if (other.getTargetName() == null ^ this.getTargetName() == null) return false; if (other.getTargetName() != null && other.getTargetName().equals(this.getTargetName()) == false) return false; if (other.getNetworkInterfaceId() == null ^ this.getNetworkInterfaceId() == null) return false; if (other.getNetworkInterfaceId() != null && other.getNetworkInterfaceId().equals(this.getNetworkInterfaceId()) == false) return false; if (other.getKMSEncrypted() == null ^ this.getKMSEncrypted() == null) return false; if (other.getKMSEncrypted() != null && other.getKMSEncrypted().equals(this.getKMSEncrypted()) == false) return false; if (other.getKMSKey() == null ^ this.getKMSKey() == null) return false; if (other.getKMSKey() != null && other.getKMSKey().equals(this.getKMSKey()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getGatewayARN() == null) ? 0 : getGatewayARN().hashCode()); hashCode = prime * hashCode + ((getDiskId() == null) ? 0 : getDiskId().hashCode()); hashCode = prime * hashCode + ((getSnapshotId() == null) ? 0 : getSnapshotId().hashCode()); hashCode = prime * hashCode + ((getPreserveExistingData() == null) ? 0 : getPreserveExistingData().hashCode()); hashCode = prime * hashCode + ((getTargetName() == null) ? 0 : getTargetName().hashCode()); hashCode = prime * hashCode + ((getNetworkInterfaceId() == null) ? 0 : getNetworkInterfaceId().hashCode()); hashCode = prime * hashCode + ((getKMSEncrypted() == null) ? 0 : getKMSEncrypted().hashCode()); hashCode = prime * hashCode + ((getKMSKey() == null) ? 0 : getKMSKey().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateStorediSCSIVolumeRequest clone() { return (CreateStorediSCSIVolumeRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy