/* * 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 StartDeploymentRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The application ID. *

*/ private String applicationId; /** *

* The environment ID. *

*/ private String environmentId; /** *

* The deployment strategy ID. *

*/ private String deploymentStrategyId; /** *

* The configuration profile ID. *

*/ private String configurationProfileId; /** *

* The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can specify * either the version number or version label. *

*/ private String configurationVersion; /** *

* A description of the deployment. *

*/ private String description; /** *

* Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag * consists of a key and an optional value, both of which you define. *

*/ private java.util.Map tags; /** *

* The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this ID to encrypt the configuration data * using a customer managed key. *

*/ private String kmsKeyIdentifier; /** *

* 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 StartDeploymentRequest withApplicationId(String applicationId) { setApplicationId(applicationId); return this; } /** *

* The environment ID. *

* * @param environmentId * The environment ID. */ public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; } /** *

* The environment ID. *

* * @return The environment ID. */ public String getEnvironmentId() { return this.environmentId; } /** *

* The environment ID. *

* * @param environmentId * The environment ID. * @return Returns a reference to this object so that method calls can be chained together. */ public StartDeploymentRequest withEnvironmentId(String environmentId) { setEnvironmentId(environmentId); return this; } /** *

* The deployment strategy ID. *

* * @param deploymentStrategyId * The deployment strategy ID. */ public void setDeploymentStrategyId(String deploymentStrategyId) { this.deploymentStrategyId = deploymentStrategyId; } /** *

* The deployment strategy ID. *

* * @return The deployment strategy ID. */ public String getDeploymentStrategyId() { return this.deploymentStrategyId; } /** *

* The deployment strategy ID. *

* * @param deploymentStrategyId * The deployment strategy ID. * @return Returns a reference to this object so that method calls can be chained together. */ public StartDeploymentRequest withDeploymentStrategyId(String deploymentStrategyId) { setDeploymentStrategyId(deploymentStrategyId); return this; } /** *

* The configuration profile ID. *

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

* The configuration profile ID. *

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

* The configuration profile ID. *

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

* The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can specify * either the version number or version label. *

* * @param configurationVersion * The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can * specify either the version number or version label. */ public void setConfigurationVersion(String configurationVersion) { this.configurationVersion = configurationVersion; } /** *

* The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can specify * either the version number or version label. *

* * @return The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can * specify either the version number or version label. */ public String getConfigurationVersion() { return this.configurationVersion; } /** *

* The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can specify * either the version number or version label. *

* * @param configurationVersion * The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can * specify either the version number or version label. * @return Returns a reference to this object so that method calls can be chained together. */ public StartDeploymentRequest withConfigurationVersion(String configurationVersion) { setConfigurationVersion(configurationVersion); return this; } /** *

* A description of the deployment. *

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

* A description of the deployment. *

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

* A description of the deployment. *

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

* Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag * consists of a key and an optional value, both of which you define. *

* * @return Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each * tag consists of a key and an optional value, both of which you define. */ public java.util.Map getTags() { return tags; } /** *

* Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag * consists of a key and an optional value, both of which you define. *

* * @param tags * Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag * consists of a key and an optional value, both of which you define. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag * consists of a key and an optional value, both of which you define. *

* * @param tags * Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag * consists of a key and an optional value, both of which you define. * @return Returns a reference to this object so that method calls can be chained together. */ public StartDeploymentRequest withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see StartDeploymentRequest#withTags * @returns a reference to this object so that method calls can be chained together. */ public StartDeploymentRequest addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap(); } if (this.tags.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.tags.put(key, value); return this; } /** * Removes all the entries added into Tags. * * @return Returns a reference to this object so that method calls can be chained together. */ public StartDeploymentRequest clearTagsEntries() { this.tags = null; return this; } /** *

* The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this ID to encrypt the configuration data * using a customer managed key. *

* * @param kmsKeyIdentifier * The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this ID to encrypt the * configuration data using a customer managed key. */ public void setKmsKeyIdentifier(String kmsKeyIdentifier) { this.kmsKeyIdentifier = kmsKeyIdentifier; } /** *

* The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this ID to encrypt the configuration data * using a customer managed key. *

* * @return The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this ID to encrypt the * configuration data using a customer managed key. */ public String getKmsKeyIdentifier() { return this.kmsKeyIdentifier; } /** *

* The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this ID to encrypt the configuration data * using a customer managed key. *

* * @param kmsKeyIdentifier * The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this ID to encrypt the * configuration data using a customer managed key. * @return Returns a reference to this object so that method calls can be chained together. */ public StartDeploymentRequest withKmsKeyIdentifier(String kmsKeyIdentifier) { setKmsKeyIdentifier(kmsKeyIdentifier); 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 (getEnvironmentId() != null) sb.append("EnvironmentId: ").append(getEnvironmentId()).append(","); if (getDeploymentStrategyId() != null) sb.append("DeploymentStrategyId: ").append(getDeploymentStrategyId()).append(","); if (getConfigurationProfileId() != null) sb.append("ConfigurationProfileId: ").append(getConfigurationProfileId()).append(","); if (getConfigurationVersion() != null) sb.append("ConfigurationVersion: ").append(getConfigurationVersion()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getKmsKeyIdentifier() != null) sb.append("KmsKeyIdentifier: ").append(getKmsKeyIdentifier()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof StartDeploymentRequest == false) return false; StartDeploymentRequest other = (StartDeploymentRequest) obj; if (other.getApplicationId() == null ^ this.getApplicationId() == null) return false; if (other.getApplicationId() != null && other.getApplicationId().equals(this.getApplicationId()) == false) return false; if (other.getEnvironmentId() == null ^ this.getEnvironmentId() == null) return false; if (other.getEnvironmentId() != null && other.getEnvironmentId().equals(this.getEnvironmentId()) == false) return false; if (other.getDeploymentStrategyId() == null ^ this.getDeploymentStrategyId() == null) return false; if (other.getDeploymentStrategyId() != null && other.getDeploymentStrategyId().equals(this.getDeploymentStrategyId()) == 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.getConfigurationVersion() == null ^ this.getConfigurationVersion() == null) return false; if (other.getConfigurationVersion() != null && other.getConfigurationVersion().equals(this.getConfigurationVersion()) == 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.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getKmsKeyIdentifier() == null ^ this.getKmsKeyIdentifier() == null) return false; if (other.getKmsKeyIdentifier() != null && other.getKmsKeyIdentifier().equals(this.getKmsKeyIdentifier()) == 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 + ((getEnvironmentId() == null) ? 0 : getEnvironmentId().hashCode()); hashCode = prime * hashCode + ((getDeploymentStrategyId() == null) ? 0 : getDeploymentStrategyId().hashCode()); hashCode = prime * hashCode + ((getConfigurationProfileId() == null) ? 0 : getConfigurationProfileId().hashCode()); hashCode = prime * hashCode + ((getConfigurationVersion() == null) ? 0 : getConfigurationVersion().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getKmsKeyIdentifier() == null) ? 0 : getKmsKeyIdentifier().hashCode()); return hashCode; } @Override public StartDeploymentRequest clone() { return (StartDeploymentRequest) super.clone(); } }