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

com.amazonaws.services.elasticfilesystem.model.MountTargetDescription Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Elastic File System module holds the client classes that are used for communicating with Amazon Elastic File System

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2012-2017 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 javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Provides a description of a mount target. *

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

* AWS account ID that owns the resource. *

*/ private String ownerId; /** *

* System-assigned mount target ID. *

*/ private String mountTargetId; /** *

* ID of the file system for which the mount target is intended. *

*/ private String fileSystemId; /** *

* ID of the mount target's subnet. *

*/ private String subnetId; /** *

* Lifecycle state of the mount target. *

*/ private String lifeCycleState; /** *

* Address at which the file system may be mounted via the mount target. *

*/ private String ipAddress; /** *

* ID of the network interface that Amazon EFS created when it created the mount target. *

*/ private String networkInterfaceId; /** *

* AWS account ID that owns the resource. *

* * @param ownerId * AWS account ID that owns the resource. */ public void setOwnerId(String ownerId) { this.ownerId = ownerId; } /** *

* AWS account ID that owns the resource. *

* * @return AWS account ID that owns the resource. */ public String getOwnerId() { return this.ownerId; } /** *

* AWS account ID that owns the resource. *

* * @param ownerId * AWS account ID that owns the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public MountTargetDescription withOwnerId(String ownerId) { setOwnerId(ownerId); return this; } /** *

* System-assigned mount target ID. *

* * @param mountTargetId * System-assigned mount target ID. */ public void setMountTargetId(String mountTargetId) { this.mountTargetId = mountTargetId; } /** *

* System-assigned mount target ID. *

* * @return System-assigned mount target ID. */ public String getMountTargetId() { return this.mountTargetId; } /** *

* System-assigned mount target ID. *

* * @param mountTargetId * System-assigned mount target ID. * @return Returns a reference to this object so that method calls can be chained together. */ public MountTargetDescription withMountTargetId(String mountTargetId) { setMountTargetId(mountTargetId); return this; } /** *

* ID of the file system for which the mount target is intended. *

* * @param fileSystemId * ID of the file system for which the mount target is intended. */ public void setFileSystemId(String fileSystemId) { this.fileSystemId = fileSystemId; } /** *

* ID of the file system for which the mount target is intended. *

* * @return ID of the file system for which the mount target is intended. */ public String getFileSystemId() { return this.fileSystemId; } /** *

* ID of the file system for which the mount target is intended. *

* * @param fileSystemId * ID of the file system for which the mount target is intended. * @return Returns a reference to this object so that method calls can be chained together. */ public MountTargetDescription withFileSystemId(String fileSystemId) { setFileSystemId(fileSystemId); return this; } /** *

* ID of the mount target's subnet. *

* * @param subnetId * ID of the mount target's subnet. */ public void setSubnetId(String subnetId) { this.subnetId = subnetId; } /** *

* ID of the mount target's subnet. *

* * @return ID of the mount target's subnet. */ public String getSubnetId() { return this.subnetId; } /** *

* ID of the mount target's subnet. *

* * @param subnetId * ID of the mount target's subnet. * @return Returns a reference to this object so that method calls can be chained together. */ public MountTargetDescription withSubnetId(String subnetId) { setSubnetId(subnetId); return this; } /** *

* Lifecycle state of the mount target. *

* * @param lifeCycleState * Lifecycle state of the mount target. * @see LifeCycleState */ public void setLifeCycleState(String lifeCycleState) { this.lifeCycleState = lifeCycleState; } /** *

* Lifecycle state of the mount target. *

* * @return Lifecycle state of the mount target. * @see LifeCycleState */ public String getLifeCycleState() { return this.lifeCycleState; } /** *

* Lifecycle state of the mount target. *

* * @param lifeCycleState * Lifecycle state of the mount target. * @return Returns a reference to this object so that method calls can be chained together. * @see LifeCycleState */ public MountTargetDescription withLifeCycleState(String lifeCycleState) { setLifeCycleState(lifeCycleState); return this; } /** *

* Lifecycle state of the mount target. *

* * @param lifeCycleState * Lifecycle state of the mount target. * @see LifeCycleState */ public void setLifeCycleState(LifeCycleState lifeCycleState) { withLifeCycleState(lifeCycleState); } /** *

* Lifecycle state of the mount target. *

* * @param lifeCycleState * Lifecycle state of the mount target. * @return Returns a reference to this object so that method calls can be chained together. * @see LifeCycleState */ public MountTargetDescription withLifeCycleState(LifeCycleState lifeCycleState) { this.lifeCycleState = lifeCycleState.toString(); return this; } /** *

* Address at which the file system may be mounted via the mount target. *

* * @param ipAddress * Address at which the file system may be mounted via the mount target. */ public void setIpAddress(String ipAddress) { this.ipAddress = ipAddress; } /** *

* Address at which the file system may be mounted via the mount target. *

* * @return Address at which the file system may be mounted via the mount target. */ public String getIpAddress() { return this.ipAddress; } /** *

* Address at which the file system may be mounted via the mount target. *

* * @param ipAddress * Address at which the file system may be mounted via the mount target. * @return Returns a reference to this object so that method calls can be chained together. */ public MountTargetDescription withIpAddress(String ipAddress) { setIpAddress(ipAddress); return this; } /** *

* ID of the network interface that Amazon EFS created when it created the mount target. *

* * @param networkInterfaceId * ID of the network interface that Amazon EFS created when it created the mount target. */ public void setNetworkInterfaceId(String networkInterfaceId) { this.networkInterfaceId = networkInterfaceId; } /** *

* ID of the network interface that Amazon EFS created when it created the mount target. *

* * @return ID of the network interface that Amazon EFS created when it created the mount target. */ public String getNetworkInterfaceId() { return this.networkInterfaceId; } /** *

* ID of the network interface that Amazon EFS created when it created the mount target. *

* * @param networkInterfaceId * ID of the network interface that Amazon EFS created when it created the mount target. * @return Returns a reference to this object so that method calls can be chained together. */ public MountTargetDescription withNetworkInterfaceId(String networkInterfaceId) { setNetworkInterfaceId(networkInterfaceId); 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 (getOwnerId() != null) sb.append("OwnerId: ").append(getOwnerId()).append(","); if (getMountTargetId() != null) sb.append("MountTargetId: ").append(getMountTargetId()).append(","); if (getFileSystemId() != null) sb.append("FileSystemId: ").append(getFileSystemId()).append(","); if (getSubnetId() != null) sb.append("SubnetId: ").append(getSubnetId()).append(","); if (getLifeCycleState() != null) sb.append("LifeCycleState: ").append(getLifeCycleState()).append(","); if (getIpAddress() != null) sb.append("IpAddress: ").append(getIpAddress()).append(","); if (getNetworkInterfaceId() != null) sb.append("NetworkInterfaceId: ").append(getNetworkInterfaceId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof MountTargetDescription == false) return false; MountTargetDescription other = (MountTargetDescription) obj; if (other.getOwnerId() == null ^ this.getOwnerId() == null) return false; if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false; if (other.getMountTargetId() == null ^ this.getMountTargetId() == null) return false; if (other.getMountTargetId() != null && other.getMountTargetId().equals(this.getMountTargetId()) == 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.getSubnetId() == null ^ this.getSubnetId() == null) return false; if (other.getSubnetId() != null && other.getSubnetId().equals(this.getSubnetId()) == false) return false; if (other.getLifeCycleState() == null ^ this.getLifeCycleState() == null) return false; if (other.getLifeCycleState() != null && other.getLifeCycleState().equals(this.getLifeCycleState()) == false) return false; if (other.getIpAddress() == null ^ this.getIpAddress() == null) return false; if (other.getIpAddress() != null && other.getIpAddress().equals(this.getIpAddress()) == false) return false; if (other.getNetworkInterfaceId() == null ^ this.getNetworkInterfaceId() == null) return false; if (other.getNetworkInterfaceId() != null && other.getNetworkInterfaceId().equals(this.getNetworkInterfaceId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode()); hashCode = prime * hashCode + ((getMountTargetId() == null) ? 0 : getMountTargetId().hashCode()); hashCode = prime * hashCode + ((getFileSystemId() == null) ? 0 : getFileSystemId().hashCode()); hashCode = prime * hashCode + ((getSubnetId() == null) ? 0 : getSubnetId().hashCode()); hashCode = prime * hashCode + ((getLifeCycleState() == null) ? 0 : getLifeCycleState().hashCode()); hashCode = prime * hashCode + ((getIpAddress() == null) ? 0 : getIpAddress().hashCode()); hashCode = prime * hashCode + ((getNetworkInterfaceId() == null) ? 0 : getNetworkInterfaceId().hashCode()); return hashCode; } @Override public MountTargetDescription clone() { try { return (MountTargetDescription) 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.elasticfilesystem.model.transform.MountTargetDescriptionMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy