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

com.amazonaws.services.elasticfilesystem.model.CreateFileSystemResult 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;

/**
 * 

* Description of the file system. *

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

* AWS account that created the file system. If the file system was created by an IAM user, the parent account to * which the user belongs is the owner. *

*/ private String ownerId; /** *

* Opaque string specified in the request. *

*/ private String creationToken; /** *

* ID of the file system, assigned by Amazon EFS. *

*/ private String fileSystemId; /** *

* Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z). *

*/ private java.util.Date creationTime; /** *

* Lifecycle phase of the file system. *

*/ private String lifeCycleState; /** *

* You can add tags to a file system, including a Name tag. For more information, see * CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field. *

*/ private String name; /** *

* Current number of mount targets that the file system has. For more information, see CreateMountTarget. *

*/ private Integer numberOfMountTargets; /** *

* Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value * field, and the time at which that size was determined in its Timestamp field. The * Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value * does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when * there are no writes to the file system. That is, the value will represent actual size only if the file system is * not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file * system was at any instant in time. *

*/ private FileSystemSize sizeInBytes; /** *

* The PerformanceMode of the file system. *

*/ private String performanceMode; /** *

* A boolean value that, if true, indicates that the file system is encrypted. *

*/ private Boolean encrypted; /** *

* The id of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the * encrypted file system. *

*/ private String kmsKeyId; /** *

* AWS account that created the file system. If the file system was created by an IAM user, the parent account to * which the user belongs is the owner. *

* * @param ownerId * AWS account that created the file system. If the file system was created by an IAM user, the parent * account to which the user belongs is the owner. */ public void setOwnerId(String ownerId) { this.ownerId = ownerId; } /** *

* AWS account that created the file system. If the file system was created by an IAM user, the parent account to * which the user belongs is the owner. *

* * @return AWS account that created the file system. If the file system was created by an IAM user, the parent * account to which the user belongs is the owner. */ public String getOwnerId() { return this.ownerId; } /** *

* AWS account that created the file system. If the file system was created by an IAM user, the parent account to * which the user belongs is the owner. *

* * @param ownerId * AWS account that created the file system. If the file system was created by an IAM user, the parent * account to which the user belongs is the owner. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFileSystemResult withOwnerId(String ownerId) { setOwnerId(ownerId); return this; } /** *

* Opaque string specified in the request. *

* * @param creationToken * Opaque string specified in the request. */ public void setCreationToken(String creationToken) { this.creationToken = creationToken; } /** *

* Opaque string specified in the request. *

* * @return Opaque string specified in the request. */ public String getCreationToken() { return this.creationToken; } /** *

* Opaque string specified in the request. *

* * @param creationToken * Opaque string specified in the request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFileSystemResult withCreationToken(String creationToken) { setCreationToken(creationToken); return this; } /** *

* ID of the file system, assigned by Amazon EFS. *

* * @param fileSystemId * ID of the file system, assigned by Amazon EFS. */ public void setFileSystemId(String fileSystemId) { this.fileSystemId = fileSystemId; } /** *

* ID of the file system, assigned by Amazon EFS. *

* * @return ID of the file system, assigned by Amazon EFS. */ public String getFileSystemId() { return this.fileSystemId; } /** *

* ID of the file system, assigned by Amazon EFS. *

* * @param fileSystemId * ID of the file system, assigned by Amazon EFS. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFileSystemResult withFileSystemId(String fileSystemId) { setFileSystemId(fileSystemId); return this; } /** *

* Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z). *

* * @param creationTime * Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z). */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** *

* Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z). *

* * @return Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z). */ public java.util.Date getCreationTime() { return this.creationTime; } /** *

* Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z). *

* * @param creationTime * Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z). * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFileSystemResult withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** *

* Lifecycle phase of the file system. *

* * @param lifeCycleState * Lifecycle phase of the file system. * @see LifeCycleState */ public void setLifeCycleState(String lifeCycleState) { this.lifeCycleState = lifeCycleState; } /** *

* Lifecycle phase of the file system. *

* * @return Lifecycle phase of the file system. * @see LifeCycleState */ public String getLifeCycleState() { return this.lifeCycleState; } /** *

* Lifecycle phase of the file system. *

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

* Lifecycle phase of the file system. *

* * @param lifeCycleState * Lifecycle phase of the file system. * @see LifeCycleState */ public void setLifeCycleState(LifeCycleState lifeCycleState) { withLifeCycleState(lifeCycleState); } /** *

* Lifecycle phase of the file system. *

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

* You can add tags to a file system, including a Name tag. For more information, see * CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field. *

* * @param name * You can add tags to a file system, including a Name tag. For more information, see * CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this * field. */ public void setName(String name) { this.name = name; } /** *

* You can add tags to a file system, including a Name tag. For more information, see * CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field. *

* * @return You can add tags to a file system, including a Name tag. For more information, see * CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this * field. */ public String getName() { return this.name; } /** *

* You can add tags to a file system, including a Name tag. For more information, see * CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field. *

* * @param name * You can add tags to a file system, including a Name tag. For more information, see * CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this * field. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFileSystemResult withName(String name) { setName(name); return this; } /** *

* Current number of mount targets that the file system has. For more information, see CreateMountTarget. *

* * @param numberOfMountTargets * Current number of mount targets that the file system has. For more information, see * CreateMountTarget. */ public void setNumberOfMountTargets(Integer numberOfMountTargets) { this.numberOfMountTargets = numberOfMountTargets; } /** *

* Current number of mount targets that the file system has. For more information, see CreateMountTarget. *

* * @return Current number of mount targets that the file system has. For more information, see * CreateMountTarget. */ public Integer getNumberOfMountTargets() { return this.numberOfMountTargets; } /** *

* Current number of mount targets that the file system has. For more information, see CreateMountTarget. *

* * @param numberOfMountTargets * Current number of mount targets that the file system has. For more information, see * CreateMountTarget. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFileSystemResult withNumberOfMountTargets(Integer numberOfMountTargets) { setNumberOfMountTargets(numberOfMountTargets); return this; } /** *

* Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value * field, and the time at which that size was determined in its Timestamp field. The * Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value * does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when * there are no writes to the file system. That is, the value will represent actual size only if the file system is * not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file * system was at any instant in time. *

* * @param sizeInBytes * Latest known metered size (in bytes) of data stored in the file system, in bytes, in its * Value field, and the time at which that size was determined in its Timestamp * field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note * that the value does not represent the size of a consistent snapshot of the file system, but it is * eventually consistent when there are no writes to the file system. That is, the value will represent * actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, * the value is not the exact size the file system was at any instant in time. */ public void setSizeInBytes(FileSystemSize sizeInBytes) { this.sizeInBytes = sizeInBytes; } /** *

* Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value * field, and the time at which that size was determined in its Timestamp field. The * Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value * does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when * there are no writes to the file system. That is, the value will represent actual size only if the file system is * not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file * system was at any instant in time. *

* * @return Latest known metered size (in bytes) of data stored in the file system, in bytes, in its * Value field, and the time at which that size was determined in its Timestamp * field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note * that the value does not represent the size of a consistent snapshot of the file system, but it is * eventually consistent when there are no writes to the file system. That is, the value will represent * actual size only if the file system is not modified for a period longer than a couple of hours. * Otherwise, the value is not the exact size the file system was at any instant in time. */ public FileSystemSize getSizeInBytes() { return this.sizeInBytes; } /** *

* Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value * field, and the time at which that size was determined in its Timestamp field. The * Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value * does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when * there are no writes to the file system. That is, the value will represent actual size only if the file system is * not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file * system was at any instant in time. *

* * @param sizeInBytes * Latest known metered size (in bytes) of data stored in the file system, in bytes, in its * Value field, and the time at which that size was determined in its Timestamp * field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note * that the value does not represent the size of a consistent snapshot of the file system, but it is * eventually consistent when there are no writes to the file system. That is, the value will represent * actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, * the value is not the exact size the file system was at any instant in time. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFileSystemResult withSizeInBytes(FileSystemSize sizeInBytes) { setSizeInBytes(sizeInBytes); return this; } /** *

* The PerformanceMode of the file system. *

* * @param performanceMode * The PerformanceMode of the file system. * @see PerformanceMode */ public void setPerformanceMode(String performanceMode) { this.performanceMode = performanceMode; } /** *

* The PerformanceMode of the file system. *

* * @return The PerformanceMode of the file system. * @see PerformanceMode */ public String getPerformanceMode() { return this.performanceMode; } /** *

* The PerformanceMode of the file system. *

* * @param performanceMode * The PerformanceMode of the file system. * @return Returns a reference to this object so that method calls can be chained together. * @see PerformanceMode */ public CreateFileSystemResult withPerformanceMode(String performanceMode) { setPerformanceMode(performanceMode); return this; } /** *

* The PerformanceMode of the file system. *

* * @param performanceMode * The PerformanceMode of the file system. * @see PerformanceMode */ public void setPerformanceMode(PerformanceMode performanceMode) { withPerformanceMode(performanceMode); } /** *

* The PerformanceMode of the file system. *

* * @param performanceMode * The PerformanceMode of the file system. * @return Returns a reference to this object so that method calls can be chained together. * @see PerformanceMode */ public CreateFileSystemResult withPerformanceMode(PerformanceMode performanceMode) { this.performanceMode = performanceMode.toString(); return this; } /** *

* A boolean value that, if true, indicates that the file system is encrypted. *

* * @param encrypted * A boolean value that, if true, indicates that the file system is encrypted. */ public void setEncrypted(Boolean encrypted) { this.encrypted = encrypted; } /** *

* A boolean value that, if true, indicates that the file system is encrypted. *

* * @return A boolean value that, if true, indicates that the file system is encrypted. */ public Boolean getEncrypted() { return this.encrypted; } /** *

* A boolean value that, if true, indicates that the file system is encrypted. *

* * @param encrypted * A boolean value that, if true, indicates that the file system is encrypted. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFileSystemResult withEncrypted(Boolean encrypted) { setEncrypted(encrypted); return this; } /** *

* A boolean value that, if true, indicates that the file system is encrypted. *

* * @return A boolean value that, if true, indicates that the file system is encrypted. */ public Boolean isEncrypted() { return this.encrypted; } /** *

* The id of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the * encrypted file system. *

* * @param kmsKeyId * The id of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the * encrypted file system. */ public void setKmsKeyId(String kmsKeyId) { this.kmsKeyId = kmsKeyId; } /** *

* The id of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the * encrypted file system. *

* * @return The id of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the * encrypted file system. */ public String getKmsKeyId() { return this.kmsKeyId; } /** *

* The id of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the * encrypted file system. *

* * @param kmsKeyId * The id of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the * encrypted file system. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFileSystemResult withKmsKeyId(String kmsKeyId) { setKmsKeyId(kmsKeyId); 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 (getCreationToken() != null) sb.append("CreationToken: ").append(getCreationToken()).append(","); if (getFileSystemId() != null) sb.append("FileSystemId: ").append(getFileSystemId()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getLifeCycleState() != null) sb.append("LifeCycleState: ").append(getLifeCycleState()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getNumberOfMountTargets() != null) sb.append("NumberOfMountTargets: ").append(getNumberOfMountTargets()).append(","); if (getSizeInBytes() != null) sb.append("SizeInBytes: ").append(getSizeInBytes()).append(","); if (getPerformanceMode() != null) sb.append("PerformanceMode: ").append(getPerformanceMode()).append(","); if (getEncrypted() != null) sb.append("Encrypted: ").append(getEncrypted()).append(","); if (getKmsKeyId() != null) sb.append("KmsKeyId: ").append(getKmsKeyId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateFileSystemResult == false) return false; CreateFileSystemResult other = (CreateFileSystemResult) obj; if (other.getOwnerId() == null ^ this.getOwnerId() == null) return false; if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false; if (other.getCreationToken() == null ^ this.getCreationToken() == null) return false; if (other.getCreationToken() != null && other.getCreationToken().equals(this.getCreationToken()) == 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.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == 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.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getNumberOfMountTargets() == null ^ this.getNumberOfMountTargets() == null) return false; if (other.getNumberOfMountTargets() != null && other.getNumberOfMountTargets().equals(this.getNumberOfMountTargets()) == false) return false; if (other.getSizeInBytes() == null ^ this.getSizeInBytes() == null) return false; if (other.getSizeInBytes() != null && other.getSizeInBytes().equals(this.getSizeInBytes()) == false) return false; if (other.getPerformanceMode() == null ^ this.getPerformanceMode() == null) return false; if (other.getPerformanceMode() != null && other.getPerformanceMode().equals(this.getPerformanceMode()) == false) return false; if (other.getEncrypted() == null ^ this.getEncrypted() == null) return false; if (other.getEncrypted() != null && other.getEncrypted().equals(this.getEncrypted()) == false) return false; if (other.getKmsKeyId() == null ^ this.getKmsKeyId() == null) return false; if (other.getKmsKeyId() != null && other.getKmsKeyId().equals(this.getKmsKeyId()) == 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 + ((getCreationToken() == null) ? 0 : getCreationToken().hashCode()); hashCode = prime * hashCode + ((getFileSystemId() == null) ? 0 : getFileSystemId().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getLifeCycleState() == null) ? 0 : getLifeCycleState().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getNumberOfMountTargets() == null) ? 0 : getNumberOfMountTargets().hashCode()); hashCode = prime * hashCode + ((getSizeInBytes() == null) ? 0 : getSizeInBytes().hashCode()); hashCode = prime * hashCode + ((getPerformanceMode() == null) ? 0 : getPerformanceMode().hashCode()); hashCode = prime * hashCode + ((getEncrypted() == null) ? 0 : getEncrypted().hashCode()); hashCode = prime * hashCode + ((getKmsKeyId() == null) ? 0 : getKmsKeyId().hashCode()); return hashCode; } @Override public CreateFileSystemResult clone() { try { return (CreateFileSystemResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy