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

com.amazonaws.services.iotdeviceadvisor.model.SuiteRunConfiguration Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS IoT Core Device Advisor module holds the client classes that are used for communicating with AWS IoT Core Device Advisor 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.iotdeviceadvisor.model;

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

/**
 * 

* Gets suite run configuration. *

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

* Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN. *

*/ private DeviceUnderTest primaryDevice; /** *

* Sets test case list. *

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

* TRUE if multiple test suites run in parallel. *

*/ private Boolean parallelRun; /** *

* Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN. *

* * @param primaryDevice * Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN. */ public void setPrimaryDevice(DeviceUnderTest primaryDevice) { this.primaryDevice = primaryDevice; } /** *

* Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN. *

* * @return Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN. */ public DeviceUnderTest getPrimaryDevice() { return this.primaryDevice; } /** *

* Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN. *

* * @param primaryDevice * Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN. * @return Returns a reference to this object so that method calls can be chained together. */ public SuiteRunConfiguration withPrimaryDevice(DeviceUnderTest primaryDevice) { setPrimaryDevice(primaryDevice); return this; } /** *

* Sets test case list. *

* * @return Sets test case list. */ public java.util.List getSelectedTestList() { return selectedTestList; } /** *

* Sets test case list. *

* * @param selectedTestList * Sets test case list. */ public void setSelectedTestList(java.util.Collection selectedTestList) { if (selectedTestList == null) { this.selectedTestList = null; return; } this.selectedTestList = new java.util.ArrayList(selectedTestList); } /** *

* Sets test case list. *

*

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

* * @param selectedTestList * Sets test case list. * @return Returns a reference to this object so that method calls can be chained together. */ public SuiteRunConfiguration withSelectedTestList(String... selectedTestList) { if (this.selectedTestList == null) { setSelectedTestList(new java.util.ArrayList(selectedTestList.length)); } for (String ele : selectedTestList) { this.selectedTestList.add(ele); } return this; } /** *

* Sets test case list. *

* * @param selectedTestList * Sets test case list. * @return Returns a reference to this object so that method calls can be chained together. */ public SuiteRunConfiguration withSelectedTestList(java.util.Collection selectedTestList) { setSelectedTestList(selectedTestList); return this; } /** *

* TRUE if multiple test suites run in parallel. *

* * @param parallelRun * TRUE if multiple test suites run in parallel. */ public void setParallelRun(Boolean parallelRun) { this.parallelRun = parallelRun; } /** *

* TRUE if multiple test suites run in parallel. *

* * @return TRUE if multiple test suites run in parallel. */ public Boolean getParallelRun() { return this.parallelRun; } /** *

* TRUE if multiple test suites run in parallel. *

* * @param parallelRun * TRUE if multiple test suites run in parallel. * @return Returns a reference to this object so that method calls can be chained together. */ public SuiteRunConfiguration withParallelRun(Boolean parallelRun) { setParallelRun(parallelRun); return this; } /** *

* TRUE if multiple test suites run in parallel. *

* * @return TRUE if multiple test suites run in parallel. */ public Boolean isParallelRun() { return this.parallelRun; } /** * 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 (getPrimaryDevice() != null) sb.append("PrimaryDevice: ").append(getPrimaryDevice()).append(","); if (getSelectedTestList() != null) sb.append("SelectedTestList: ").append(getSelectedTestList()).append(","); if (getParallelRun() != null) sb.append("ParallelRun: ").append(getParallelRun()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SuiteRunConfiguration == false) return false; SuiteRunConfiguration other = (SuiteRunConfiguration) obj; if (other.getPrimaryDevice() == null ^ this.getPrimaryDevice() == null) return false; if (other.getPrimaryDevice() != null && other.getPrimaryDevice().equals(this.getPrimaryDevice()) == false) return false; if (other.getSelectedTestList() == null ^ this.getSelectedTestList() == null) return false; if (other.getSelectedTestList() != null && other.getSelectedTestList().equals(this.getSelectedTestList()) == false) return false; if (other.getParallelRun() == null ^ this.getParallelRun() == null) return false; if (other.getParallelRun() != null && other.getParallelRun().equals(this.getParallelRun()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPrimaryDevice() == null) ? 0 : getPrimaryDevice().hashCode()); hashCode = prime * hashCode + ((getSelectedTestList() == null) ? 0 : getSelectedTestList().hashCode()); hashCode = prime * hashCode + ((getParallelRun() == null) ? 0 : getParallelRun().hashCode()); return hashCode; } @Override public SuiteRunConfiguration clone() { try { return (SuiteRunConfiguration) 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.iotdeviceadvisor.model.transform.SuiteRunConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy