
com.amazonaws.services.elasticfilesystem.model.DescribeMountTargetsRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-efs Show documentation
/*
* Copyright 2010-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.elasticfilesystem.model;
import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
*/
public class DescribeMountTargetsRequest extends AmazonWebServiceRequest
implements Serializable, Cloneable {
/**
*
* Optional. Maximum number of mount targets to return in the response. It
* must be an integer with a value greater than zero.
*
*/
private Integer maxItems;
/**
*
* Optional. String. Opaque pagination token returned from a previous
* DescribeMountTargets
operation. If present, it specifies to
* continue the list from where the previous returning call left off.
*
*/
private String marker;
/**
*
* Optional. String. The ID of the file system whose mount targets you want
* to list. It must be included in your request if
* MountTargetId
is not included.
*
*/
private String fileSystemId;
/**
*
* Optional. String. The ID of the mount target that you want to have
* described. It must be included in your request if
* FileSystemId
is not included.
*
*/
private String mountTargetId;
/**
*
* Optional. Maximum number of mount targets to return in the response. It
* must be an integer with a value greater than zero.
*
*
* @param maxItems
* Optional. Maximum number of mount targets to return in the
* response. It must be an integer with a value greater than zero.
*/
public void setMaxItems(Integer maxItems) {
this.maxItems = maxItems;
}
/**
*
* Optional. Maximum number of mount targets to return in the response. It
* must be an integer with a value greater than zero.
*
*
* @return Optional. Maximum number of mount targets to return in the
* response. It must be an integer with a value greater than zero.
*/
public Integer getMaxItems() {
return this.maxItems;
}
/**
*
* Optional. Maximum number of mount targets to return in the response. It
* must be an integer with a value greater than zero.
*
*
* @param maxItems
* Optional. Maximum number of mount targets to return in the
* response. It must be an integer with a value greater than zero.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DescribeMountTargetsRequest withMaxItems(Integer maxItems) {
setMaxItems(maxItems);
return this;
}
/**
*
* Optional. String. Opaque pagination token returned from a previous
* DescribeMountTargets
operation. If present, it specifies to
* continue the list from where the previous returning call left off.
*
*
* @param marker
* Optional. String. Opaque pagination token returned from a previous
* DescribeMountTargets
operation. If present, it
* specifies to continue the list from where the previous returning
* call left off.
*/
public void setMarker(String marker) {
this.marker = marker;
}
/**
*
* Optional. String. Opaque pagination token returned from a previous
* DescribeMountTargets
operation. If present, it specifies to
* continue the list from where the previous returning call left off.
*
*
* @return Optional. String. Opaque pagination token returned from a
* previous DescribeMountTargets
operation. If present,
* it specifies to continue the list from where the previous
* returning call left off.
*/
public String getMarker() {
return this.marker;
}
/**
*
* Optional. String. Opaque pagination token returned from a previous
* DescribeMountTargets
operation. If present, it specifies to
* continue the list from where the previous returning call left off.
*
*
* @param marker
* Optional. String. Opaque pagination token returned from a previous
* DescribeMountTargets
operation. If present, it
* specifies to continue the list from where the previous returning
* call left off.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DescribeMountTargetsRequest withMarker(String marker) {
setMarker(marker);
return this;
}
/**
*
* Optional. String. The ID of the file system whose mount targets you want
* to list. It must be included in your request if
* MountTargetId
is not included.
*
*
* @param fileSystemId
* Optional. String. The ID of the file system whose mount targets
* you want to list. It must be included in your request if
* MountTargetId
is not included.
*/
public void setFileSystemId(String fileSystemId) {
this.fileSystemId = fileSystemId;
}
/**
*
* Optional. String. The ID of the file system whose mount targets you want
* to list. It must be included in your request if
* MountTargetId
is not included.
*
*
* @return Optional. String. The ID of the file system whose mount targets
* you want to list. It must be included in your request if
* MountTargetId
is not included.
*/
public String getFileSystemId() {
return this.fileSystemId;
}
/**
*
* Optional. String. The ID of the file system whose mount targets you want
* to list. It must be included in your request if
* MountTargetId
is not included.
*
*
* @param fileSystemId
* Optional. String. The ID of the file system whose mount targets
* you want to list. It must be included in your request if
* MountTargetId
is not included.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DescribeMountTargetsRequest withFileSystemId(String fileSystemId) {
setFileSystemId(fileSystemId);
return this;
}
/**
*
* Optional. String. The ID of the mount target that you want to have
* described. It must be included in your request if
* FileSystemId
is not included.
*
*
* @param mountTargetId
* Optional. String. The ID of the mount target that you want to have
* described. It must be included in your request if
* FileSystemId
is not included.
*/
public void setMountTargetId(String mountTargetId) {
this.mountTargetId = mountTargetId;
}
/**
*
* Optional. String. The ID of the mount target that you want to have
* described. It must be included in your request if
* FileSystemId
is not included.
*
*
* @return Optional. String. The ID of the mount target that you want to
* have described. It must be included in your request if
* FileSystemId
is not included.
*/
public String getMountTargetId() {
return this.mountTargetId;
}
/**
*
* Optional. String. The ID of the mount target that you want to have
* described. It must be included in your request if
* FileSystemId
is not included.
*
*
* @param mountTargetId
* Optional. String. The ID of the mount target that you want to have
* described. It must be included in your request if
* FileSystemId
is not included.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DescribeMountTargetsRequest withMountTargetId(String mountTargetId) {
setMountTargetId(mountTargetId);
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 (getMaxItems() != null)
sb.append("MaxItems: " + getMaxItems() + ",");
if (getMarker() != null)
sb.append("Marker: " + getMarker() + ",");
if (getFileSystemId() != null)
sb.append("FileSystemId: " + getFileSystemId() + ",");
if (getMountTargetId() != null)
sb.append("MountTargetId: " + getMountTargetId());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeMountTargetsRequest == false)
return false;
DescribeMountTargetsRequest other = (DescribeMountTargetsRequest) obj;
if (other.getMaxItems() == null ^ this.getMaxItems() == null)
return false;
if (other.getMaxItems() != null
&& other.getMaxItems().equals(this.getMaxItems()) == false)
return false;
if (other.getMarker() == null ^ this.getMarker() == null)
return false;
if (other.getMarker() != null
&& other.getMarker().equals(this.getMarker()) == false)
return false;
if (other.getFileSystemId() == null ^ this.getFileSystemId() == null)
return false;
if (other.getFileSystemId() != null
&& other.getFileSystemId().equals(this.getFileSystemId()) == false)
return false;
if (other.getMountTargetId() == null ^ this.getMountTargetId() == null)
return false;
if (other.getMountTargetId() != null
&& other.getMountTargetId().equals(this.getMountTargetId()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode
+ ((getMaxItems() == null) ? 0 : getMaxItems().hashCode());
hashCode = prime * hashCode
+ ((getMarker() == null) ? 0 : getMarker().hashCode());
hashCode = prime
* hashCode
+ ((getFileSystemId() == null) ? 0 : getFileSystemId()
.hashCode());
hashCode = prime
* hashCode
+ ((getMountTargetId() == null) ? 0 : getMountTargetId()
.hashCode());
return hashCode;
}
@Override
public DescribeMountTargetsRequest clone() {
return (DescribeMountTargetsRequest) super.clone();
}
}