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

com.amazonaws.services.wellarchitected.model.WorkloadDiscoveryConfig Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Well-Architected Tool module holds the client classes that are used for communicating with AWS Well-Architected Tool Service

There is a newer version: 1.12.778
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.wellarchitected.model;

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

/**
 * 

* Discovery configuration associated to the workload. *

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

* Discovery integration status in respect to Trusted Advisor for the workload. *

*/ private String trustedAdvisorIntegrationStatus; /** *

* The mode to use for identifying resources associated with the workload. *

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. *

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

* Discovery integration status in respect to Trusted Advisor for the workload. *

* * @param trustedAdvisorIntegrationStatus * Discovery integration status in respect to Trusted Advisor for the workload. * @see TrustedAdvisorIntegrationStatus */ public void setTrustedAdvisorIntegrationStatus(String trustedAdvisorIntegrationStatus) { this.trustedAdvisorIntegrationStatus = trustedAdvisorIntegrationStatus; } /** *

* Discovery integration status in respect to Trusted Advisor for the workload. *

* * @return Discovery integration status in respect to Trusted Advisor for the workload. * @see TrustedAdvisorIntegrationStatus */ public String getTrustedAdvisorIntegrationStatus() { return this.trustedAdvisorIntegrationStatus; } /** *

* Discovery integration status in respect to Trusted Advisor for the workload. *

* * @param trustedAdvisorIntegrationStatus * Discovery integration status in respect to Trusted Advisor for the workload. * @return Returns a reference to this object so that method calls can be chained together. * @see TrustedAdvisorIntegrationStatus */ public WorkloadDiscoveryConfig withTrustedAdvisorIntegrationStatus(String trustedAdvisorIntegrationStatus) { setTrustedAdvisorIntegrationStatus(trustedAdvisorIntegrationStatus); return this; } /** *

* Discovery integration status in respect to Trusted Advisor for the workload. *

* * @param trustedAdvisorIntegrationStatus * Discovery integration status in respect to Trusted Advisor for the workload. * @return Returns a reference to this object so that method calls can be chained together. * @see TrustedAdvisorIntegrationStatus */ public WorkloadDiscoveryConfig withTrustedAdvisorIntegrationStatus(TrustedAdvisorIntegrationStatus trustedAdvisorIntegrationStatus) { this.trustedAdvisorIntegrationStatus = trustedAdvisorIntegrationStatus.toString(); return this; } /** *

* The mode to use for identifying resources associated with the workload. *

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. *

* * @return The mode to use for identifying resources associated with the workload.

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. * @see DefinitionType */ public java.util.List getWorkloadResourceDefinition() { return workloadResourceDefinition; } /** *

* The mode to use for identifying resources associated with the workload. *

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. *

* * @param workloadResourceDefinition * The mode to use for identifying resources associated with the workload.

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. * @see DefinitionType */ public void setWorkloadResourceDefinition(java.util.Collection workloadResourceDefinition) { if (workloadResourceDefinition == null) { this.workloadResourceDefinition = null; return; } this.workloadResourceDefinition = new java.util.ArrayList(workloadResourceDefinition); } /** *

* The mode to use for identifying resources associated with the workload. *

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. *

*

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

* * @param workloadResourceDefinition * The mode to use for identifying resources associated with the workload.

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. * @return Returns a reference to this object so that method calls can be chained together. * @see DefinitionType */ public WorkloadDiscoveryConfig withWorkloadResourceDefinition(String... workloadResourceDefinition) { if (this.workloadResourceDefinition == null) { setWorkloadResourceDefinition(new java.util.ArrayList(workloadResourceDefinition.length)); } for (String ele : workloadResourceDefinition) { this.workloadResourceDefinition.add(ele); } return this; } /** *

* The mode to use for identifying resources associated with the workload. *

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. *

* * @param workloadResourceDefinition * The mode to use for identifying resources associated with the workload.

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. * @return Returns a reference to this object so that method calls can be chained together. * @see DefinitionType */ public WorkloadDiscoveryConfig withWorkloadResourceDefinition(java.util.Collection workloadResourceDefinition) { setWorkloadResourceDefinition(workloadResourceDefinition); return this; } /** *

* The mode to use for identifying resources associated with the workload. *

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. *

* * @param workloadResourceDefinition * The mode to use for identifying resources associated with the workload.

*

* You can specify WORKLOAD_METADATA, APP_REGISTRY, or both. * @return Returns a reference to this object so that method calls can be chained together. * @see DefinitionType */ public WorkloadDiscoveryConfig withWorkloadResourceDefinition(DefinitionType... workloadResourceDefinition) { java.util.ArrayList workloadResourceDefinitionCopy = new java.util.ArrayList(workloadResourceDefinition.length); for (DefinitionType value : workloadResourceDefinition) { workloadResourceDefinitionCopy.add(value.toString()); } if (getWorkloadResourceDefinition() == null) { setWorkloadResourceDefinition(workloadResourceDefinitionCopy); } else { getWorkloadResourceDefinition().addAll(workloadResourceDefinitionCopy); } 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 (getTrustedAdvisorIntegrationStatus() != null) sb.append("TrustedAdvisorIntegrationStatus: ").append(getTrustedAdvisorIntegrationStatus()).append(","); if (getWorkloadResourceDefinition() != null) sb.append("WorkloadResourceDefinition: ").append(getWorkloadResourceDefinition()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof WorkloadDiscoveryConfig == false) return false; WorkloadDiscoveryConfig other = (WorkloadDiscoveryConfig) obj; if (other.getTrustedAdvisorIntegrationStatus() == null ^ this.getTrustedAdvisorIntegrationStatus() == null) return false; if (other.getTrustedAdvisorIntegrationStatus() != null && other.getTrustedAdvisorIntegrationStatus().equals(this.getTrustedAdvisorIntegrationStatus()) == false) return false; if (other.getWorkloadResourceDefinition() == null ^ this.getWorkloadResourceDefinition() == null) return false; if (other.getWorkloadResourceDefinition() != null && other.getWorkloadResourceDefinition().equals(this.getWorkloadResourceDefinition()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTrustedAdvisorIntegrationStatus() == null) ? 0 : getTrustedAdvisorIntegrationStatus().hashCode()); hashCode = prime * hashCode + ((getWorkloadResourceDefinition() == null) ? 0 : getWorkloadResourceDefinition().hashCode()); return hashCode; } @Override public WorkloadDiscoveryConfig clone() { try { return (WorkloadDiscoveryConfig) 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.wellarchitected.model.transform.WorkloadDiscoveryConfigMarshaller.getInstance().marshall(this, protocolMarshaller); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy