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

com.amazonaws.services.resiliencehub.model.PhysicalResource Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show 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.resiliencehub.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Defines a physical resource. A physical resource is a resource that exists in your account. It can be identified * using an Amazon Resource Name (ARN) or an Resilience Hub-native identifier. *

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

* Additional configuration parameters for an Resilience Hub application. If you want to implement * additionalInfo through the Resilience Hub console rather than using an API call, see Configure the * application configuration parameters. *

* *

* Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region and one * associated account. *

*

* Key: "failover-regions" *

*

* Value: "[{"region":"<REGION>", "accounts":[{"id":"<ACCOUNT_ID>"}]}]" *

*
*/ private java.util.Map> additionalInfo; /** *

* The application components that belong to this resource. *

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

* Indicates if a resource is included or excluded from the assessment. *

*/ private Boolean excluded; /** *

* Logical identifier of the resource. *

*/ private LogicalResourceId logicalResourceId; /** *

* Name of the parent resource. *

*/ private String parentResourceName; /** *

* Identifier of the physical resource. *

*/ private PhysicalResourceId physicalResourceId; /** *

* The name of the resource. *

*/ private String resourceName; /** *

* Type of resource. *

*/ private String resourceType; /** *

* Type of input source. *

*/ private String sourceType; /** *

* Additional configuration parameters for an Resilience Hub application. If you want to implement * additionalInfo through the Resilience Hub console rather than using an API call, see Configure the * application configuration parameters. *

* *

* Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region and one * associated account. *

*

* Key: "failover-regions" *

*

* Value: "[{"region":"<REGION>", "accounts":[{"id":"<ACCOUNT_ID>"}]}]" *

*
* * @return Additional configuration parameters for an Resilience Hub application. If you want to implement * additionalInfo through the Resilience Hub console rather than using an API call, see Configure the * application configuration parameters.

*

* Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region * and one associated account. *

*

* Key: "failover-regions" *

*

* Value: "[{"region":"<REGION>", "accounts":[{"id":"<ACCOUNT_ID>"}]}]" *

*/ public java.util.Map> getAdditionalInfo() { return additionalInfo; } /** *

* Additional configuration parameters for an Resilience Hub application. If you want to implement * additionalInfo through the Resilience Hub console rather than using an API call, see Configure the * application configuration parameters. *

* *

* Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region and one * associated account. *

*

* Key: "failover-regions" *

*

* Value: "[{"region":"<REGION>", "accounts":[{"id":"<ACCOUNT_ID>"}]}]" *

*
* * @param additionalInfo * Additional configuration parameters for an Resilience Hub application. If you want to implement * additionalInfo through the Resilience Hub console rather than using an API call, see Configure the * application configuration parameters.

*

* Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region and * one associated account. *

*

* Key: "failover-regions" *

*

* Value: "[{"region":"<REGION>", "accounts":[{"id":"<ACCOUNT_ID>"}]}]" *

*/ public void setAdditionalInfo(java.util.Map> additionalInfo) { this.additionalInfo = additionalInfo; } /** *

* Additional configuration parameters for an Resilience Hub application. If you want to implement * additionalInfo through the Resilience Hub console rather than using an API call, see Configure the * application configuration parameters. *

* *

* Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region and one * associated account. *

*

* Key: "failover-regions" *

*

* Value: "[{"region":"<REGION>", "accounts":[{"id":"<ACCOUNT_ID>"}]}]" *

*
* * @param additionalInfo * Additional configuration parameters for an Resilience Hub application. If you want to implement * additionalInfo through the Resilience Hub console rather than using an API call, see Configure the * application configuration parameters.

*

* Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region and * one associated account. *

*

* Key: "failover-regions" *

*

* Value: "[{"region":"<REGION>", "accounts":[{"id":"<ACCOUNT_ID>"}]}]" *

* @return Returns a reference to this object so that method calls can be chained together. */ public PhysicalResource withAdditionalInfo(java.util.Map> additionalInfo) { setAdditionalInfo(additionalInfo); return this; } /** * Add a single AdditionalInfo entry * * @see PhysicalResource#withAdditionalInfo * @returns a reference to this object so that method calls can be chained together. */ public PhysicalResource addAdditionalInfoEntry(String key, java.util.List value) { if (null == this.additionalInfo) { this.additionalInfo = new java.util.HashMap>(); } if (this.additionalInfo.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.additionalInfo.put(key, value); return this; } /** * Removes all the entries added into AdditionalInfo. * * @return Returns a reference to this object so that method calls can be chained together. */ public PhysicalResource clearAdditionalInfoEntries() { this.additionalInfo = null; return this; } /** *

* The application components that belong to this resource. *

* * @return The application components that belong to this resource. */ public java.util.List getAppComponents() { return appComponents; } /** *

* The application components that belong to this resource. *

* * @param appComponents * The application components that belong to this resource. */ public void setAppComponents(java.util.Collection appComponents) { if (appComponents == null) { this.appComponents = null; return; } this.appComponents = new java.util.ArrayList(appComponents); } /** *

* The application components that belong to this resource. *

*

* 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 application components that belong to this resource. * @return Returns a reference to this object so that method calls can be chained together. */ public PhysicalResource withAppComponents(AppComponent... appComponents) { if (this.appComponents == null) { setAppComponents(new java.util.ArrayList(appComponents.length)); } for (AppComponent ele : appComponents) { this.appComponents.add(ele); } return this; } /** *

* The application components that belong to this resource. *

* * @param appComponents * The application components that belong to this resource. * @return Returns a reference to this object so that method calls can be chained together. */ public PhysicalResource withAppComponents(java.util.Collection appComponents) { setAppComponents(appComponents); return this; } /** *

* Indicates if a resource is included or excluded from the assessment. *

* * @param excluded * Indicates if a resource is included or excluded from the assessment. */ public void setExcluded(Boolean excluded) { this.excluded = excluded; } /** *

* Indicates if a resource is included or excluded from the assessment. *

* * @return Indicates if a resource is included or excluded from the assessment. */ public Boolean getExcluded() { return this.excluded; } /** *

* Indicates if a resource is included or excluded from the assessment. *

* * @param excluded * Indicates if a resource is included or excluded from the assessment. * @return Returns a reference to this object so that method calls can be chained together. */ public PhysicalResource withExcluded(Boolean excluded) { setExcluded(excluded); return this; } /** *

* Indicates if a resource is included or excluded from the assessment. *

* * @return Indicates if a resource is included or excluded from the assessment. */ public Boolean isExcluded() { return this.excluded; } /** *

* Logical identifier of the resource. *

* * @param logicalResourceId * Logical identifier of the resource. */ public void setLogicalResourceId(LogicalResourceId logicalResourceId) { this.logicalResourceId = logicalResourceId; } /** *

* Logical identifier of the resource. *

* * @return Logical identifier of the resource. */ public LogicalResourceId getLogicalResourceId() { return this.logicalResourceId; } /** *

* Logical identifier of the resource. *

* * @param logicalResourceId * Logical identifier of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public PhysicalResource withLogicalResourceId(LogicalResourceId logicalResourceId) { setLogicalResourceId(logicalResourceId); return this; } /** *

* Name of the parent resource. *

* * @param parentResourceName * Name of the parent resource. */ public void setParentResourceName(String parentResourceName) { this.parentResourceName = parentResourceName; } /** *

* Name of the parent resource. *

* * @return Name of the parent resource. */ public String getParentResourceName() { return this.parentResourceName; } /** *

* Name of the parent resource. *

* * @param parentResourceName * Name of the parent resource. * @return Returns a reference to this object so that method calls can be chained together. */ public PhysicalResource withParentResourceName(String parentResourceName) { setParentResourceName(parentResourceName); return this; } /** *

* Identifier of the physical resource. *

* * @param physicalResourceId * Identifier of the physical resource. */ public void setPhysicalResourceId(PhysicalResourceId physicalResourceId) { this.physicalResourceId = physicalResourceId; } /** *

* Identifier of the physical resource. *

* * @return Identifier of the physical resource. */ public PhysicalResourceId getPhysicalResourceId() { return this.physicalResourceId; } /** *

* Identifier of the physical resource. *

* * @param physicalResourceId * Identifier of the physical resource. * @return Returns a reference to this object so that method calls can be chained together. */ public PhysicalResource withPhysicalResourceId(PhysicalResourceId 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 PhysicalResource withResourceName(String resourceName) { setResourceName(resourceName); return this; } /** *

* Type of resource. *

* * @param resourceType * Type of resource. */ public void setResourceType(String resourceType) { this.resourceType = resourceType; } /** *

* Type of resource. *

* * @return Type of resource. */ public String getResourceType() { return this.resourceType; } /** *

* Type of resource. *

* * @param resourceType * Type of resource. * @return Returns a reference to this object so that method calls can be chained together. */ public PhysicalResource withResourceType(String resourceType) { setResourceType(resourceType); return this; } /** *

* Type of input source. *

* * @param sourceType * Type of input source. * @see ResourceSourceType */ public void setSourceType(String sourceType) { this.sourceType = sourceType; } /** *

* Type of input source. *

* * @return Type of input source. * @see ResourceSourceType */ public String getSourceType() { return this.sourceType; } /** *

* Type of input source. *

* * @param sourceType * Type of input source. * @return Returns a reference to this object so that method calls can be chained together. * @see ResourceSourceType */ public PhysicalResource withSourceType(String sourceType) { setSourceType(sourceType); return this; } /** *

* Type of input source. *

* * @param sourceType * Type of input source. * @return Returns a reference to this object so that method calls can be chained together. * @see ResourceSourceType */ public PhysicalResource withSourceType(ResourceSourceType sourceType) { this.sourceType = sourceType.toString(); 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 (getAppComponents() != null) sb.append("AppComponents: ").append(getAppComponents()).append(","); if (getExcluded() != null) sb.append("Excluded: ").append(getExcluded()).append(","); if (getLogicalResourceId() != null) sb.append("LogicalResourceId: ").append(getLogicalResourceId()).append(","); if (getParentResourceName() != null) sb.append("ParentResourceName: ").append(getParentResourceName()).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()).append(","); if (getSourceType() != null) sb.append("SourceType: ").append(getSourceType()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PhysicalResource == false) return false; PhysicalResource other = (PhysicalResource) obj; if (other.getAdditionalInfo() == null ^ this.getAdditionalInfo() == null) return false; if (other.getAdditionalInfo() != null && other.getAdditionalInfo().equals(this.getAdditionalInfo()) == 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.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.getParentResourceName() == null ^ this.getParentResourceName() == null) return false; if (other.getParentResourceName() != null && other.getParentResourceName().equals(this.getParentResourceName()) == 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; if (other.getSourceType() == null ^ this.getSourceType() == null) return false; if (other.getSourceType() != null && other.getSourceType().equals(this.getSourceType()) == 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 + ((getAppComponents() == null) ? 0 : getAppComponents().hashCode()); hashCode = prime * hashCode + ((getExcluded() == null) ? 0 : getExcluded().hashCode()); hashCode = prime * hashCode + ((getLogicalResourceId() == null) ? 0 : getLogicalResourceId().hashCode()); hashCode = prime * hashCode + ((getParentResourceName() == null) ? 0 : getParentResourceName().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()); hashCode = prime * hashCode + ((getSourceType() == null) ? 0 : getSourceType().hashCode()); return hashCode; } @Override public PhysicalResource clone() { try { return (PhysicalResource) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.resiliencehub.model.transform.PhysicalResourceMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy