/* * 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.resiliencehub.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 UpdateAppVersionResourceRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* Currently, there is no supported additional information for resources. *
*/ private java.util.Map
* The Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For more
* information about ARNs, see
* Amazon Resource Names (ARNs) in the AWS General Reference guide.
*
* The list of Application Components that this resource belongs to. If an Application Component is not part of the * Resilience Hub application, it will be added. *
*/ private java.util.List* The Amazon Web Services account that owns the physical resource. *
*/ private String awsAccountId; /** ** The Amazon Web Services region that owns the physical resource. *
*/ private String awsRegion; /** ** Indicates if a resource is excluded from an Resilience Hub application. *
** You can exclude only imported resources from an Resilience Hub application. *
** The logical identifier of the resource. *
*/ private LogicalResourceId logicalResourceId; /** ** The physical identifier of the resource. *
*/ private String physicalResourceId; /** ** The name of the resource. *
*/ private String resourceName; /** ** The type of resource. *
*/ private String resourceType; /** ** Currently, there is no supported additional information for resources. *
* * @return Currently, there is no supported additional information for resources. */ public java.util.Map* Currently, there is no supported additional information for resources. *
* * @param additionalInfo * Currently, there is no supported additional information for resources. */ public void setAdditionalInfo(java.util.Map* Currently, there is no supported additional information for resources. *
* * @param additionalInfo * Currently, there is no supported additional information for resources. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withAdditionalInfo(java.util.Map
* The Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For more
* information about ARNs, see
* Amazon Resource Names (ARNs) in the AWS General Reference guide.
*
partition
:resiliencehub:region
:account
:app/app-id
. For
* more information about ARNs, see Amazon Resource Names
* (ARNs) in the AWS General Reference guide.
*/
public void setAppArn(String appArn) {
this.appArn = appArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For more
* information about ARNs, see
* Amazon Resource Names (ARNs) in the AWS General Reference guide.
*
partition
:resiliencehub:region
:account
:app/app-id
.
* For more information about ARNs, see Amazon Resource Names
* (ARNs) in the AWS General Reference guide.
*/
public String getAppArn() {
return this.appArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For more
* information about ARNs, see
* Amazon Resource Names (ARNs) in the AWS General Reference guide.
*
partition
:resiliencehub:region
:account
:app/app-id
. For
* more information about ARNs, see Amazon Resource Names
* (ARNs) in the AWS General Reference guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateAppVersionResourceRequest withAppArn(String appArn) {
setAppArn(appArn);
return this;
}
/**
* * The list of Application Components that this resource belongs to. If an Application Component is not part of the * Resilience Hub application, it will be added. *
* * @return The list of Application Components that this resource belongs to. If an Application Component is not part * of the Resilience Hub application, it will be added. */ public java.util.List* The list of Application Components that this resource belongs to. If an Application Component is not part of the * Resilience Hub application, it will be added. *
* * @param appComponents * The list of Application Components that this resource belongs to. If an Application Component is not part * of the Resilience Hub application, it will be added. */ public void setAppComponents(java.util.Collection* The list of Application Components that this resource belongs to. If an Application Component is not part of the * Resilience Hub application, it will be added. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setAppComponents(java.util.Collection)} or {@link #withAppComponents(java.util.Collection)} if you want * to override the existing values. *
* * @param appComponents * The list of Application Components that this resource belongs to. If an Application Component is not part * of the Resilience Hub application, it will be added. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withAppComponents(String... appComponents) { if (this.appComponents == null) { setAppComponents(new java.util.ArrayList* The list of Application Components that this resource belongs to. If an Application Component is not part of the * Resilience Hub application, it will be added. *
* * @param appComponents * The list of Application Components that this resource belongs to. If an Application Component is not part * of the Resilience Hub application, it will be added. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withAppComponents(java.util.Collection* The Amazon Web Services account that owns the physical resource. *
* * @param awsAccountId * The Amazon Web Services account that owns the physical resource. */ public void setAwsAccountId(String awsAccountId) { this.awsAccountId = awsAccountId; } /** ** The Amazon Web Services account that owns the physical resource. *
* * @return The Amazon Web Services account that owns the physical resource. */ public String getAwsAccountId() { return this.awsAccountId; } /** ** The Amazon Web Services account that owns the physical resource. *
* * @param awsAccountId * The Amazon Web Services account that owns the physical resource. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withAwsAccountId(String awsAccountId) { setAwsAccountId(awsAccountId); return this; } /** ** The Amazon Web Services region that owns the physical resource. *
* * @param awsRegion * The Amazon Web Services region that owns the physical resource. */ public void setAwsRegion(String awsRegion) { this.awsRegion = awsRegion; } /** ** The Amazon Web Services region that owns the physical resource. *
* * @return The Amazon Web Services region that owns the physical resource. */ public String getAwsRegion() { return this.awsRegion; } /** ** The Amazon Web Services region that owns the physical resource. *
* * @param awsRegion * The Amazon Web Services region that owns the physical resource. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withAwsRegion(String awsRegion) { setAwsRegion(awsRegion); return this; } /** ** Indicates if a resource is excluded from an Resilience Hub application. *
** You can exclude only imported resources from an Resilience Hub application. *
** You can exclude only imported resources from an Resilience Hub application. *
*/ public void setExcluded(Boolean excluded) { this.excluded = excluded; } /** ** Indicates if a resource is excluded from an Resilience Hub application. *
** You can exclude only imported resources from an Resilience Hub application. *
** You can exclude only imported resources from an Resilience Hub application. *
*/ public Boolean getExcluded() { return this.excluded; } /** ** Indicates if a resource is excluded from an Resilience Hub application. *
** You can exclude only imported resources from an Resilience Hub application. *
** You can exclude only imported resources from an Resilience Hub application. *
* @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withExcluded(Boolean excluded) { setExcluded(excluded); return this; } /** ** Indicates if a resource is excluded from an Resilience Hub application. *
** You can exclude only imported resources from an Resilience Hub application. *
** You can exclude only imported resources from an Resilience Hub application. *
*/ public Boolean isExcluded() { return this.excluded; } /** ** The logical identifier of the resource. *
* * @param logicalResourceId * The logical identifier of the resource. */ public void setLogicalResourceId(LogicalResourceId logicalResourceId) { this.logicalResourceId = logicalResourceId; } /** ** The logical identifier of the resource. *
* * @return The logical identifier of the resource. */ public LogicalResourceId getLogicalResourceId() { return this.logicalResourceId; } /** ** The logical identifier of the resource. *
* * @param logicalResourceId * The logical identifier of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withLogicalResourceId(LogicalResourceId logicalResourceId) { setLogicalResourceId(logicalResourceId); return this; } /** ** The physical identifier of the resource. *
* * @param physicalResourceId * The physical identifier of the resource. */ public void setPhysicalResourceId(String physicalResourceId) { this.physicalResourceId = physicalResourceId; } /** ** The physical identifier of the resource. *
* * @return The physical identifier of the resource. */ public String getPhysicalResourceId() { return this.physicalResourceId; } /** ** The physical identifier of the resource. *
* * @param physicalResourceId * The physical identifier of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withPhysicalResourceId(String physicalResourceId) { setPhysicalResourceId(physicalResourceId); return this; } /** ** The name of the resource. *
* * @param resourceName * The name of the resource. */ public void setResourceName(String resourceName) { this.resourceName = resourceName; } /** ** The name of the resource. *
* * @return The name of the resource. */ public String getResourceName() { return this.resourceName; } /** ** The name of the resource. *
* * @param resourceName * The name of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withResourceName(String resourceName) { setResourceName(resourceName); return this; } /** ** The type of resource. *
* * @param resourceType * The type of resource. */ public void setResourceType(String resourceType) { this.resourceType = resourceType; } /** ** The type of resource. *
* * @return The type of resource. */ public String getResourceType() { return this.resourceType; } /** ** The type of resource. *
* * @param resourceType * The type of resource. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAppVersionResourceRequest withResourceType(String resourceType) { setResourceType(resourceType); 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 (getAdditionalInfo() != null) sb.append("AdditionalInfo: ").append(getAdditionalInfo()).append(","); if (getAppArn() != null) sb.append("AppArn: ").append(getAppArn()).append(","); if (getAppComponents() != null) sb.append("AppComponents: ").append(getAppComponents()).append(","); if (getAwsAccountId() != null) sb.append("AwsAccountId: ").append(getAwsAccountId()).append(","); if (getAwsRegion() != null) sb.append("AwsRegion: ").append(getAwsRegion()).append(","); if (getExcluded() != null) sb.append("Excluded: ").append(getExcluded()).append(","); if (getLogicalResourceId() != null) sb.append("LogicalResourceId: ").append(getLogicalResourceId()).append(","); if (getPhysicalResourceId() != null) sb.append("PhysicalResourceId: ").append(getPhysicalResourceId()).append(","); if (getResourceName() != null) sb.append("ResourceName: ").append(getResourceName()).append(","); if (getResourceType() != null) sb.append("ResourceType: ").append(getResourceType()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateAppVersionResourceRequest == false) return false; UpdateAppVersionResourceRequest other = (UpdateAppVersionResourceRequest) obj; if (other.getAdditionalInfo() == null ^ this.getAdditionalInfo() == null) return false; if (other.getAdditionalInfo() != null && other.getAdditionalInfo().equals(this.getAdditionalInfo()) == false) return false; if (other.getAppArn() == null ^ this.getAppArn() == null) return false; if (other.getAppArn() != null && other.getAppArn().equals(this.getAppArn()) == false) return false; if (other.getAppComponents() == null ^ this.getAppComponents() == null) return false; if (other.getAppComponents() != null && other.getAppComponents().equals(this.getAppComponents()) == false) return false; if (other.getAwsAccountId() == null ^ this.getAwsAccountId() == null) return false; if (other.getAwsAccountId() != null && other.getAwsAccountId().equals(this.getAwsAccountId()) == false) return false; if (other.getAwsRegion() == null ^ this.getAwsRegion() == null) return false; if (other.getAwsRegion() != null && other.getAwsRegion().equals(this.getAwsRegion()) == false) return false; if (other.getExcluded() == null ^ this.getExcluded() == null) return false; if (other.getExcluded() != null && other.getExcluded().equals(this.getExcluded()) == false) return false; if (other.getLogicalResourceId() == null ^ this.getLogicalResourceId() == null) return false; if (other.getLogicalResourceId() != null && other.getLogicalResourceId().equals(this.getLogicalResourceId()) == false) return false; if (other.getPhysicalResourceId() == null ^ this.getPhysicalResourceId() == null) return false; if (other.getPhysicalResourceId() != null && other.getPhysicalResourceId().equals(this.getPhysicalResourceId()) == false) return false; if (other.getResourceName() == null ^ this.getResourceName() == null) return false; if (other.getResourceName() != null && other.getResourceName().equals(this.getResourceName()) == false) return false; if (other.getResourceType() == null ^ this.getResourceType() == null) return false; if (other.getResourceType() != null && other.getResourceType().equals(this.getResourceType()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAdditionalInfo() == null) ? 0 : getAdditionalInfo().hashCode()); hashCode = prime * hashCode + ((getAppArn() == null) ? 0 : getAppArn().hashCode()); hashCode = prime * hashCode + ((getAppComponents() == null) ? 0 : getAppComponents().hashCode()); hashCode = prime * hashCode + ((getAwsAccountId() == null) ? 0 : getAwsAccountId().hashCode()); hashCode = prime * hashCode + ((getAwsRegion() == null) ? 0 : getAwsRegion().hashCode()); hashCode = prime * hashCode + ((getExcluded() == null) ? 0 : getExcluded().hashCode()); hashCode = prime * hashCode + ((getLogicalResourceId() == null) ? 0 : getLogicalResourceId().hashCode()); hashCode = prime * hashCode + ((getPhysicalResourceId() == null) ? 0 : getPhysicalResourceId().hashCode()); hashCode = prime * hashCode + ((getResourceName() == null) ? 0 : getResourceName().hashCode()); hashCode = prime * hashCode + ((getResourceType() == null) ? 0 : getResourceType().hashCode()); return hashCode; } @Override public UpdateAppVersionResourceRequest clone() { return (UpdateAppVersionResourceRequest) super.clone(); } }