/* * Copyright 2018-2023 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.appconfig.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 UpdateConfigurationProfileRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The application ID. *

*/ private String applicationId; /** *

* The ID of the configuration profile. *

*/ private String configurationProfileId; /** *

* The name of the configuration profile. *

*/ private String name; /** *

* A description of the configuration profile. *

*/ private String description; /** *

* The ARN of an IAM role with permission to access the configuration at the specified LocationUri. *

*/ private String retrievalRoleArn; /** *

* A list of methods for validating the configuration. *

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

* The application ID. *

* * @param applicationId * The application ID. */ public void setApplicationId(String applicationId) { this.applicationId = applicationId; } /** *

* The application ID. *

* * @return The application ID. */ public String getApplicationId() { return this.applicationId; } /** *

* The application ID. *

* * @param applicationId * The application ID. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateConfigurationProfileRequest withApplicationId(String applicationId) { setApplicationId(applicationId); return this; } /** *

* The ID of the configuration profile. *

* * @param configurationProfileId * The ID of the configuration profile. */ public void setConfigurationProfileId(String configurationProfileId) { this.configurationProfileId = configurationProfileId; } /** *

* The ID of the configuration profile. *

* * @return The ID of the configuration profile. */ public String getConfigurationProfileId() { return this.configurationProfileId; } /** *

* The ID of the configuration profile. *

* * @param configurationProfileId * The ID of the configuration profile. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateConfigurationProfileRequest withConfigurationProfileId(String configurationProfileId) { setConfigurationProfileId(configurationProfileId); return this; } /** *

* The name of the configuration profile. *

* * @param name * The name of the configuration profile. */ public void setName(String name) { this.name = name; } /** *

* The name of the configuration profile. *

* * @return The name of the configuration profile. */ public String getName() { return this.name; } /** *

* The name of the configuration profile. *

* * @param name * The name of the configuration profile. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateConfigurationProfileRequest withName(String name) { setName(name); return this; } /** *

* A description of the configuration profile. *

* * @param description * A description of the configuration profile. */ public void setDescription(String description) { this.description = description; } /** *

* A description of the configuration profile. *

* * @return A description of the configuration profile. */ public String getDescription() { return this.description; } /** *

* A description of the configuration profile. *

* * @param description * A description of the configuration profile. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateConfigurationProfileRequest withDescription(String description) { setDescription(description); return this; } /** *

* The ARN of an IAM role with permission to access the configuration at the specified LocationUri. *

* * @param retrievalRoleArn * The ARN of an IAM role with permission to access the configuration at the specified * LocationUri. */ public void setRetrievalRoleArn(String retrievalRoleArn) { this.retrievalRoleArn = retrievalRoleArn; } /** *

* The ARN of an IAM role with permission to access the configuration at the specified LocationUri. *

* * @return The ARN of an IAM role with permission to access the configuration at the specified * LocationUri. */ public String getRetrievalRoleArn() { return this.retrievalRoleArn; } /** *

* The ARN of an IAM role with permission to access the configuration at the specified LocationUri. *

* * @param retrievalRoleArn * The ARN of an IAM role with permission to access the configuration at the specified * LocationUri. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateConfigurationProfileRequest withRetrievalRoleArn(String retrievalRoleArn) { setRetrievalRoleArn(retrievalRoleArn); return this; } /** *

* A list of methods for validating the configuration. *

* * @return A list of methods for validating the configuration. */ public java.util.List getValidators() { return validators; } /** *

* A list of methods for validating the configuration. *

* * @param validators * A list of methods for validating the configuration. */ public void setValidators(java.util.Collection validators) { if (validators == null) { this.validators = null; return; } this.validators = new java.util.ArrayList(validators); } /** *

* A list of methods for validating the configuration. *

*

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

* * @param validators * A list of methods for validating the configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateConfigurationProfileRequest withValidators(Validator... validators) { if (this.validators == null) { setValidators(new java.util.ArrayList(validators.length)); } for (Validator ele : validators) { this.validators.add(ele); } return this; } /** *

* A list of methods for validating the configuration. *

* * @param validators * A list of methods for validating the configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateConfigurationProfileRequest withValidators(java.util.Collection validators) { setValidators(validators); 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 (getApplicationId() != null) sb.append("ApplicationId: ").append(getApplicationId()).append(","); if (getConfigurationProfileId() != null) sb.append("ConfigurationProfileId: ").append(getConfigurationProfileId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getRetrievalRoleArn() != null) sb.append("RetrievalRoleArn: ").append(getRetrievalRoleArn()).append(","); if (getValidators() != null) sb.append("Validators: ").append(getValidators()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateConfigurationProfileRequest == false) return false; UpdateConfigurationProfileRequest other = (UpdateConfigurationProfileRequest) obj; if (other.getApplicationId() == null ^ this.getApplicationId() == null) return false; if (other.getApplicationId() != null && other.getApplicationId().equals(this.getApplicationId()) == false) return false; if (other.getConfigurationProfileId() == null ^ this.getConfigurationProfileId() == null) return false; if (other.getConfigurationProfileId() != null && other.getConfigurationProfileId().equals(this.getConfigurationProfileId()) == 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.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getRetrievalRoleArn() == null ^ this.getRetrievalRoleArn() == null) return false; if (other.getRetrievalRoleArn() != null && other.getRetrievalRoleArn().equals(this.getRetrievalRoleArn()) == false) return false; if (other.getValidators() == null ^ this.getValidators() == null) return false; if (other.getValidators() != null && other.getValidators().equals(this.getValidators()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getApplicationId() == null) ? 0 : getApplicationId().hashCode()); hashCode = prime * hashCode + ((getConfigurationProfileId() == null) ? 0 : getConfigurationProfileId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getRetrievalRoleArn() == null) ? 0 : getRetrievalRoleArn().hashCode()); hashCode = prime * hashCode + ((getValidators() == null) ? 0 : getValidators().hashCode()); return hashCode; } @Override public UpdateConfigurationProfileRequest clone() { return (UpdateConfigurationProfileRequest) super.clone(); } }