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

com.amazonaws.services.deadline.model.UpdateStorageProfileRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWSDeadlineCloud module holds the client classes that are used for communicating with AWSDeadlineCloud Service

The 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.deadline.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

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

    /**
     * 

* The unique token which the server uses to recognize retries of the same request. *

*/ private String clientToken; /** *

* The display name of the storage profile to update. *

*/ private String displayName; /** *

* The farm ID to update. *

*/ private String farmId; /** *

* The file system location names to add. *

*/ private java.util.List fileSystemLocationsToAdd; /** *

* The file system location names to remove. *

*/ private java.util.List fileSystemLocationsToRemove; /** *

* The OS system to update. *

*/ private String osFamily; /** *

* The storage profile ID to update. *

*/ private String storageProfileId; /** *

* The unique token which the server uses to recognize retries of the same request. *

* * @param clientToken * The unique token which the server uses to recognize retries of the same request. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* The unique token which the server uses to recognize retries of the same request. *

* * @return The unique token which the server uses to recognize retries of the same request. */ public String getClientToken() { return this.clientToken; } /** *

* The unique token which the server uses to recognize retries of the same request. *

* * @param clientToken * The unique token which the server uses to recognize retries of the same request. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateStorageProfileRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* The display name of the storage profile to update. *

* * @param displayName * The display name of the storage profile to update. */ public void setDisplayName(String displayName) { this.displayName = displayName; } /** *

* The display name of the storage profile to update. *

* * @return The display name of the storage profile to update. */ public String getDisplayName() { return this.displayName; } /** *

* The display name of the storage profile to update. *

* * @param displayName * The display name of the storage profile to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateStorageProfileRequest withDisplayName(String displayName) { setDisplayName(displayName); return this; } /** *

* The farm ID to update. *

* * @param farmId * The farm ID to update. */ public void setFarmId(String farmId) { this.farmId = farmId; } /** *

* The farm ID to update. *

* * @return The farm ID to update. */ public String getFarmId() { return this.farmId; } /** *

* The farm ID to update. *

* * @param farmId * The farm ID to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateStorageProfileRequest withFarmId(String farmId) { setFarmId(farmId); return this; } /** *

* The file system location names to add. *

* * @return The file system location names to add. */ public java.util.List getFileSystemLocationsToAdd() { return fileSystemLocationsToAdd; } /** *

* The file system location names to add. *

* * @param fileSystemLocationsToAdd * The file system location names to add. */ public void setFileSystemLocationsToAdd(java.util.Collection fileSystemLocationsToAdd) { if (fileSystemLocationsToAdd == null) { this.fileSystemLocationsToAdd = null; return; } this.fileSystemLocationsToAdd = new java.util.ArrayList(fileSystemLocationsToAdd); } /** *

* The file system location names to add. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setFileSystemLocationsToAdd(java.util.Collection)} or * {@link #withFileSystemLocationsToAdd(java.util.Collection)} if you want to override the existing values. *

* * @param fileSystemLocationsToAdd * The file system location names to add. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateStorageProfileRequest withFileSystemLocationsToAdd(FileSystemLocation... fileSystemLocationsToAdd) { if (this.fileSystemLocationsToAdd == null) { setFileSystemLocationsToAdd(new java.util.ArrayList(fileSystemLocationsToAdd.length)); } for (FileSystemLocation ele : fileSystemLocationsToAdd) { this.fileSystemLocationsToAdd.add(ele); } return this; } /** *

* The file system location names to add. *

* * @param fileSystemLocationsToAdd * The file system location names to add. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateStorageProfileRequest withFileSystemLocationsToAdd(java.util.Collection fileSystemLocationsToAdd) { setFileSystemLocationsToAdd(fileSystemLocationsToAdd); return this; } /** *

* The file system location names to remove. *

* * @return The file system location names to remove. */ public java.util.List getFileSystemLocationsToRemove() { return fileSystemLocationsToRemove; } /** *

* The file system location names to remove. *

* * @param fileSystemLocationsToRemove * The file system location names to remove. */ public void setFileSystemLocationsToRemove(java.util.Collection fileSystemLocationsToRemove) { if (fileSystemLocationsToRemove == null) { this.fileSystemLocationsToRemove = null; return; } this.fileSystemLocationsToRemove = new java.util.ArrayList(fileSystemLocationsToRemove); } /** *

* The file system location names to remove. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setFileSystemLocationsToRemove(java.util.Collection)} or * {@link #withFileSystemLocationsToRemove(java.util.Collection)} if you want to override the existing values. *

* * @param fileSystemLocationsToRemove * The file system location names to remove. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateStorageProfileRequest withFileSystemLocationsToRemove(FileSystemLocation... fileSystemLocationsToRemove) { if (this.fileSystemLocationsToRemove == null) { setFileSystemLocationsToRemove(new java.util.ArrayList(fileSystemLocationsToRemove.length)); } for (FileSystemLocation ele : fileSystemLocationsToRemove) { this.fileSystemLocationsToRemove.add(ele); } return this; } /** *

* The file system location names to remove. *

* * @param fileSystemLocationsToRemove * The file system location names to remove. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateStorageProfileRequest withFileSystemLocationsToRemove(java.util.Collection fileSystemLocationsToRemove) { setFileSystemLocationsToRemove(fileSystemLocationsToRemove); return this; } /** *

* The OS system to update. *

* * @param osFamily * The OS system to update. * @see StorageProfileOperatingSystemFamily */ public void setOsFamily(String osFamily) { this.osFamily = osFamily; } /** *

* The OS system to update. *

* * @return The OS system to update. * @see StorageProfileOperatingSystemFamily */ public String getOsFamily() { return this.osFamily; } /** *

* The OS system to update. *

* * @param osFamily * The OS system to update. * @return Returns a reference to this object so that method calls can be chained together. * @see StorageProfileOperatingSystemFamily */ public UpdateStorageProfileRequest withOsFamily(String osFamily) { setOsFamily(osFamily); return this; } /** *

* The OS system to update. *

* * @param osFamily * The OS system to update. * @return Returns a reference to this object so that method calls can be chained together. * @see StorageProfileOperatingSystemFamily */ public UpdateStorageProfileRequest withOsFamily(StorageProfileOperatingSystemFamily osFamily) { this.osFamily = osFamily.toString(); return this; } /** *

* The storage profile ID to update. *

* * @param storageProfileId * The storage profile ID to update. */ public void setStorageProfileId(String storageProfileId) { this.storageProfileId = storageProfileId; } /** *

* The storage profile ID to update. *

* * @return The storage profile ID to update. */ public String getStorageProfileId() { return this.storageProfileId; } /** *

* The storage profile ID to update. *

* * @param storageProfileId * The storage profile ID to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateStorageProfileRequest withStorageProfileId(String storageProfileId) { setStorageProfileId(storageProfileId); return this; } /** * 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 (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getDisplayName() != null) sb.append("DisplayName: ").append(getDisplayName()).append(","); if (getFarmId() != null) sb.append("FarmId: ").append(getFarmId()).append(","); if (getFileSystemLocationsToAdd() != null) sb.append("FileSystemLocationsToAdd: ").append("***Sensitive Data Redacted***").append(","); if (getFileSystemLocationsToRemove() != null) sb.append("FileSystemLocationsToRemove: ").append("***Sensitive Data Redacted***").append(","); if (getOsFamily() != null) sb.append("OsFamily: ").append(getOsFamily()).append(","); if (getStorageProfileId() != null) sb.append("StorageProfileId: ").append(getStorageProfileId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateStorageProfileRequest == false) return false; UpdateStorageProfileRequest other = (UpdateStorageProfileRequest) obj; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getDisplayName() == null ^ this.getDisplayName() == null) return false; if (other.getDisplayName() != null && other.getDisplayName().equals(this.getDisplayName()) == false) return false; if (other.getFarmId() == null ^ this.getFarmId() == null) return false; if (other.getFarmId() != null && other.getFarmId().equals(this.getFarmId()) == false) return false; if (other.getFileSystemLocationsToAdd() == null ^ this.getFileSystemLocationsToAdd() == null) return false; if (other.getFileSystemLocationsToAdd() != null && other.getFileSystemLocationsToAdd().equals(this.getFileSystemLocationsToAdd()) == false) return false; if (other.getFileSystemLocationsToRemove() == null ^ this.getFileSystemLocationsToRemove() == null) return false; if (other.getFileSystemLocationsToRemove() != null && other.getFileSystemLocationsToRemove().equals(this.getFileSystemLocationsToRemove()) == false) return false; if (other.getOsFamily() == null ^ this.getOsFamily() == null) return false; if (other.getOsFamily() != null && other.getOsFamily().equals(this.getOsFamily()) == false) return false; if (other.getStorageProfileId() == null ^ this.getStorageProfileId() == null) return false; if (other.getStorageProfileId() != null && other.getStorageProfileId().equals(this.getStorageProfileId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getDisplayName() == null) ? 0 : getDisplayName().hashCode()); hashCode = prime * hashCode + ((getFarmId() == null) ? 0 : getFarmId().hashCode()); hashCode = prime * hashCode + ((getFileSystemLocationsToAdd() == null) ? 0 : getFileSystemLocationsToAdd().hashCode()); hashCode = prime * hashCode + ((getFileSystemLocationsToRemove() == null) ? 0 : getFileSystemLocationsToRemove().hashCode()); hashCode = prime * hashCode + ((getOsFamily() == null) ? 0 : getOsFamily().hashCode()); hashCode = prime * hashCode + ((getStorageProfileId() == null) ? 0 : getStorageProfileId().hashCode()); return hashCode; } @Override public UpdateStorageProfileRequest clone() { return (UpdateStorageProfileRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy