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

com.amazonaws.services.storagegateway.model.AutomaticTapeCreationRule 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

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

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* An automatic tape creation policy consists of automatic tape creation rules where each rule defines when and how to * create new tapes. For more information about automatic tape creation, see Creating Tapes Automatically. *

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

* A prefix that you append to the barcode of the virtual tape that you are creating. This prefix makes the barcode * unique. *

* *

* The prefix must be 1-4 characters in length and must be one of the uppercase letters from A to Z. *

*
*/ private String tapeBarcodePrefix; /** *

* The ID of the pool that you want to add your tape to for archiving. The tape in this pool is archived in the * Amazon S3 storage class that is associated with the pool. When you use your backup application to eject the tape, * the tape is archived directly into the storage class (S3 Glacier or S3 Glacier Deep Archive) that corresponds to * the pool. *

*/ private String poolId; /** *

* The size, in bytes, of the virtual tape capacity. *

*/ private Long tapeSizeInBytes; /** *

* The minimum number of available virtual tapes that the gateway maintains at all times. If the number of tapes on * the gateway goes below this value, the gateway creates as many new tapes as are needed to have * MinimumNumTapes on the gateway. For more information about automatic tape creation, see Creating Tapes Automatically. *

*/ private Integer minimumNumTapes; /** *

* Set to true to indicate that tapes are to be archived as write-once-read-many (WORM). Set to * false when WORM is not enabled for tapes. *

*/ private Boolean worm; /** *

* A prefix that you append to the barcode of the virtual tape that you are creating. This prefix makes the barcode * unique. *

* *

* The prefix must be 1-4 characters in length and must be one of the uppercase letters from A to Z. *

*
* * @param tapeBarcodePrefix * A prefix that you append to the barcode of the virtual tape that you are creating. This prefix makes the * barcode unique.

*

* The prefix must be 1-4 characters in length and must be one of the uppercase letters from A to Z. *

*/ public void setTapeBarcodePrefix(String tapeBarcodePrefix) { this.tapeBarcodePrefix = tapeBarcodePrefix; } /** *

* A prefix that you append to the barcode of the virtual tape that you are creating. This prefix makes the barcode * unique. *

* *

* The prefix must be 1-4 characters in length and must be one of the uppercase letters from A to Z. *

*
* * @return A prefix that you append to the barcode of the virtual tape that you are creating. This prefix makes the * barcode unique.

*

* The prefix must be 1-4 characters in length and must be one of the uppercase letters from A to Z. *

*/ public String getTapeBarcodePrefix() { return this.tapeBarcodePrefix; } /** *

* A prefix that you append to the barcode of the virtual tape that you are creating. This prefix makes the barcode * unique. *

* *

* The prefix must be 1-4 characters in length and must be one of the uppercase letters from A to Z. *

*
* * @param tapeBarcodePrefix * A prefix that you append to the barcode of the virtual tape that you are creating. This prefix makes the * barcode unique.

*

* The prefix must be 1-4 characters in length and must be one of the uppercase letters from A to Z. *

* @return Returns a reference to this object so that method calls can be chained together. */ public AutomaticTapeCreationRule withTapeBarcodePrefix(String tapeBarcodePrefix) { setTapeBarcodePrefix(tapeBarcodePrefix); return this; } /** *

* The ID of the pool that you want to add your tape to for archiving. The tape in this pool is archived in the * Amazon S3 storage class that is associated with the pool. When you use your backup application to eject the tape, * the tape is archived directly into the storage class (S3 Glacier or S3 Glacier Deep Archive) that corresponds to * the pool. *

* * @param poolId * The ID of the pool that you want to add your tape to for archiving. The tape in this pool is archived in * the Amazon S3 storage class that is associated with the pool. When you use your backup application to * eject the tape, the tape is archived directly into the storage class (S3 Glacier or S3 Glacier Deep * Archive) that corresponds to the pool. */ public void setPoolId(String poolId) { this.poolId = poolId; } /** *

* The ID of the pool that you want to add your tape to for archiving. The tape in this pool is archived in the * Amazon S3 storage class that is associated with the pool. When you use your backup application to eject the tape, * the tape is archived directly into the storage class (S3 Glacier or S3 Glacier Deep Archive) that corresponds to * the pool. *

* * @return The ID of the pool that you want to add your tape to for archiving. The tape in this pool is archived in * the Amazon S3 storage class that is associated with the pool. When you use your backup application to * eject the tape, the tape is archived directly into the storage class (S3 Glacier or S3 Glacier Deep * Archive) that corresponds to the pool. */ public String getPoolId() { return this.poolId; } /** *

* The ID of the pool that you want to add your tape to for archiving. The tape in this pool is archived in the * Amazon S3 storage class that is associated with the pool. When you use your backup application to eject the tape, * the tape is archived directly into the storage class (S3 Glacier or S3 Glacier Deep Archive) that corresponds to * the pool. *

* * @param poolId * The ID of the pool that you want to add your tape to for archiving. The tape in this pool is archived in * the Amazon S3 storage class that is associated with the pool. When you use your backup application to * eject the tape, the tape is archived directly into the storage class (S3 Glacier or S3 Glacier Deep * Archive) that corresponds to the pool. * @return Returns a reference to this object so that method calls can be chained together. */ public AutomaticTapeCreationRule withPoolId(String poolId) { setPoolId(poolId); return this; } /** *

* The size, in bytes, of the virtual tape capacity. *

* * @param tapeSizeInBytes * The size, in bytes, of the virtual tape capacity. */ public void setTapeSizeInBytes(Long tapeSizeInBytes) { this.tapeSizeInBytes = tapeSizeInBytes; } /** *

* The size, in bytes, of the virtual tape capacity. *

* * @return The size, in bytes, of the virtual tape capacity. */ public Long getTapeSizeInBytes() { return this.tapeSizeInBytes; } /** *

* The size, in bytes, of the virtual tape capacity. *

* * @param tapeSizeInBytes * The size, in bytes, of the virtual tape capacity. * @return Returns a reference to this object so that method calls can be chained together. */ public AutomaticTapeCreationRule withTapeSizeInBytes(Long tapeSizeInBytes) { setTapeSizeInBytes(tapeSizeInBytes); return this; } /** *

* The minimum number of available virtual tapes that the gateway maintains at all times. If the number of tapes on * the gateway goes below this value, the gateway creates as many new tapes as are needed to have * MinimumNumTapes on the gateway. For more information about automatic tape creation, see Creating Tapes Automatically. *

* * @param minimumNumTapes * The minimum number of available virtual tapes that the gateway maintains at all times. If the number of * tapes on the gateway goes below this value, the gateway creates as many new tapes as are needed to have * MinimumNumTapes on the gateway. For more information about automatic tape creation, see Creating Tapes Automatically. */ public void setMinimumNumTapes(Integer minimumNumTapes) { this.minimumNumTapes = minimumNumTapes; } /** *

* The minimum number of available virtual tapes that the gateway maintains at all times. If the number of tapes on * the gateway goes below this value, the gateway creates as many new tapes as are needed to have * MinimumNumTapes on the gateway. For more information about automatic tape creation, see Creating Tapes Automatically. *

* * @return The minimum number of available virtual tapes that the gateway maintains at all times. If the number of * tapes on the gateway goes below this value, the gateway creates as many new tapes as are needed to have * MinimumNumTapes on the gateway. For more information about automatic tape creation, see Creating Tapes Automatically. */ public Integer getMinimumNumTapes() { return this.minimumNumTapes; } /** *

* The minimum number of available virtual tapes that the gateway maintains at all times. If the number of tapes on * the gateway goes below this value, the gateway creates as many new tapes as are needed to have * MinimumNumTapes on the gateway. For more information about automatic tape creation, see Creating Tapes Automatically. *

* * @param minimumNumTapes * The minimum number of available virtual tapes that the gateway maintains at all times. If the number of * tapes on the gateway goes below this value, the gateway creates as many new tapes as are needed to have * MinimumNumTapes on the gateway. For more information about automatic tape creation, see Creating Tapes Automatically. * @return Returns a reference to this object so that method calls can be chained together. */ public AutomaticTapeCreationRule withMinimumNumTapes(Integer minimumNumTapes) { setMinimumNumTapes(minimumNumTapes); return this; } /** *

* Set to true to indicate that tapes are to be archived as write-once-read-many (WORM). Set to * false when WORM is not enabled for tapes. *

* * @param worm * Set to true to indicate that tapes are to be archived as write-once-read-many (WORM). Set to * false when WORM is not enabled for tapes. */ public void setWorm(Boolean worm) { this.worm = worm; } /** *

* Set to true to indicate that tapes are to be archived as write-once-read-many (WORM). Set to * false when WORM is not enabled for tapes. *

* * @return Set to true to indicate that tapes are to be archived as write-once-read-many (WORM). Set to * false when WORM is not enabled for tapes. */ public Boolean getWorm() { return this.worm; } /** *

* Set to true to indicate that tapes are to be archived as write-once-read-many (WORM). Set to * false when WORM is not enabled for tapes. *

* * @param worm * Set to true to indicate that tapes are to be archived as write-once-read-many (WORM). Set to * false when WORM is not enabled for tapes. * @return Returns a reference to this object so that method calls can be chained together. */ public AutomaticTapeCreationRule withWorm(Boolean worm) { setWorm(worm); return this; } /** *

* Set to true to indicate that tapes are to be archived as write-once-read-many (WORM). Set to * false when WORM is not enabled for tapes. *

* * @return Set to true to indicate that tapes are to be archived as write-once-read-many (WORM). Set to * false when WORM is not enabled for tapes. */ public Boolean isWorm() { return this.worm; } /** * 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 (getTapeBarcodePrefix() != null) sb.append("TapeBarcodePrefix: ").append(getTapeBarcodePrefix()).append(","); if (getPoolId() != null) sb.append("PoolId: ").append(getPoolId()).append(","); if (getTapeSizeInBytes() != null) sb.append("TapeSizeInBytes: ").append(getTapeSizeInBytes()).append(","); if (getMinimumNumTapes() != null) sb.append("MinimumNumTapes: ").append(getMinimumNumTapes()).append(","); if (getWorm() != null) sb.append("Worm: ").append(getWorm()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AutomaticTapeCreationRule == false) return false; AutomaticTapeCreationRule other = (AutomaticTapeCreationRule) obj; if (other.getTapeBarcodePrefix() == null ^ this.getTapeBarcodePrefix() == null) return false; if (other.getTapeBarcodePrefix() != null && other.getTapeBarcodePrefix().equals(this.getTapeBarcodePrefix()) == false) return false; if (other.getPoolId() == null ^ this.getPoolId() == null) return false; if (other.getPoolId() != null && other.getPoolId().equals(this.getPoolId()) == false) return false; if (other.getTapeSizeInBytes() == null ^ this.getTapeSizeInBytes() == null) return false; if (other.getTapeSizeInBytes() != null && other.getTapeSizeInBytes().equals(this.getTapeSizeInBytes()) == false) return false; if (other.getMinimumNumTapes() == null ^ this.getMinimumNumTapes() == null) return false; if (other.getMinimumNumTapes() != null && other.getMinimumNumTapes().equals(this.getMinimumNumTapes()) == false) return false; if (other.getWorm() == null ^ this.getWorm() == null) return false; if (other.getWorm() != null && other.getWorm().equals(this.getWorm()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTapeBarcodePrefix() == null) ? 0 : getTapeBarcodePrefix().hashCode()); hashCode = prime * hashCode + ((getPoolId() == null) ? 0 : getPoolId().hashCode()); hashCode = prime * hashCode + ((getTapeSizeInBytes() == null) ? 0 : getTapeSizeInBytes().hashCode()); hashCode = prime * hashCode + ((getMinimumNumTapes() == null) ? 0 : getMinimumNumTapes().hashCode()); hashCode = prime * hashCode + ((getWorm() == null) ? 0 : getWorm().hashCode()); return hashCode; } @Override public AutomaticTapeCreationRule clone() { try { return (AutomaticTapeCreationRule) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.storagegateway.model.transform.AutomaticTapeCreationRuleMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy