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

com.amazonaws.services.directory.model.SnapshotLimits Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Directory Service module holds the client classes that is used for communicating with AWS Directory 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.directory.model;

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

/**
 * 

* Contains manual snapshot limit information for a directory. *

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

* The maximum number of manual snapshots allowed. *

*/ private Integer manualSnapshotsLimit; /** *

* The current number of manual snapshots of the directory. *

*/ private Integer manualSnapshotsCurrentCount; /** *

* Indicates if the manual snapshot limit has been reached. *

*/ private Boolean manualSnapshotsLimitReached; /** *

* The maximum number of manual snapshots allowed. *

* * @param manualSnapshotsLimit * The maximum number of manual snapshots allowed. */ public void setManualSnapshotsLimit(Integer manualSnapshotsLimit) { this.manualSnapshotsLimit = manualSnapshotsLimit; } /** *

* The maximum number of manual snapshots allowed. *

* * @return The maximum number of manual snapshots allowed. */ public Integer getManualSnapshotsLimit() { return this.manualSnapshotsLimit; } /** *

* The maximum number of manual snapshots allowed. *

* * @param manualSnapshotsLimit * The maximum number of manual snapshots allowed. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotLimits withManualSnapshotsLimit(Integer manualSnapshotsLimit) { setManualSnapshotsLimit(manualSnapshotsLimit); return this; } /** *

* The current number of manual snapshots of the directory. *

* * @param manualSnapshotsCurrentCount * The current number of manual snapshots of the directory. */ public void setManualSnapshotsCurrentCount(Integer manualSnapshotsCurrentCount) { this.manualSnapshotsCurrentCount = manualSnapshotsCurrentCount; } /** *

* The current number of manual snapshots of the directory. *

* * @return The current number of manual snapshots of the directory. */ public Integer getManualSnapshotsCurrentCount() { return this.manualSnapshotsCurrentCount; } /** *

* The current number of manual snapshots of the directory. *

* * @param manualSnapshotsCurrentCount * The current number of manual snapshots of the directory. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotLimits withManualSnapshotsCurrentCount(Integer manualSnapshotsCurrentCount) { setManualSnapshotsCurrentCount(manualSnapshotsCurrentCount); return this; } /** *

* Indicates if the manual snapshot limit has been reached. *

* * @param manualSnapshotsLimitReached * Indicates if the manual snapshot limit has been reached. */ public void setManualSnapshotsLimitReached(Boolean manualSnapshotsLimitReached) { this.manualSnapshotsLimitReached = manualSnapshotsLimitReached; } /** *

* Indicates if the manual snapshot limit has been reached. *

* * @return Indicates if the manual snapshot limit has been reached. */ public Boolean getManualSnapshotsLimitReached() { return this.manualSnapshotsLimitReached; } /** *

* Indicates if the manual snapshot limit has been reached. *

* * @param manualSnapshotsLimitReached * Indicates if the manual snapshot limit has been reached. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotLimits withManualSnapshotsLimitReached(Boolean manualSnapshotsLimitReached) { setManualSnapshotsLimitReached(manualSnapshotsLimitReached); return this; } /** *

* Indicates if the manual snapshot limit has been reached. *

* * @return Indicates if the manual snapshot limit has been reached. */ public Boolean isManualSnapshotsLimitReached() { return this.manualSnapshotsLimitReached; } /** * 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 (getManualSnapshotsLimit() != null) sb.append("ManualSnapshotsLimit: ").append(getManualSnapshotsLimit()).append(","); if (getManualSnapshotsCurrentCount() != null) sb.append("ManualSnapshotsCurrentCount: ").append(getManualSnapshotsCurrentCount()).append(","); if (getManualSnapshotsLimitReached() != null) sb.append("ManualSnapshotsLimitReached: ").append(getManualSnapshotsLimitReached()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SnapshotLimits == false) return false; SnapshotLimits other = (SnapshotLimits) obj; if (other.getManualSnapshotsLimit() == null ^ this.getManualSnapshotsLimit() == null) return false; if (other.getManualSnapshotsLimit() != null && other.getManualSnapshotsLimit().equals(this.getManualSnapshotsLimit()) == false) return false; if (other.getManualSnapshotsCurrentCount() == null ^ this.getManualSnapshotsCurrentCount() == null) return false; if (other.getManualSnapshotsCurrentCount() != null && other.getManualSnapshotsCurrentCount().equals(this.getManualSnapshotsCurrentCount()) == false) return false; if (other.getManualSnapshotsLimitReached() == null ^ this.getManualSnapshotsLimitReached() == null) return false; if (other.getManualSnapshotsLimitReached() != null && other.getManualSnapshotsLimitReached().equals(this.getManualSnapshotsLimitReached()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getManualSnapshotsLimit() == null) ? 0 : getManualSnapshotsLimit().hashCode()); hashCode = prime * hashCode + ((getManualSnapshotsCurrentCount() == null) ? 0 : getManualSnapshotsCurrentCount().hashCode()); hashCode = prime * hashCode + ((getManualSnapshotsLimitReached() == null) ? 0 : getManualSnapshotsLimitReached().hashCode()); return hashCode; } @Override public SnapshotLimits clone() { try { return (SnapshotLimits) 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.directory.model.transform.SnapshotLimitsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy