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

com.amazonaws.services.fis.model.ExperimentTemplate Maven / Gradle / Ivy

/*
 * 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.fis.model;

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

/**
 * 

* Describes an experiment template. *

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

* The ID of the experiment template. *

*/ private String id; /** *

* The Amazon Resource Name (ARN) of the experiment template. *

*/ private String arn; /** *

* The description for the experiment template. *

*/ private String description; /** *

* The targets for the experiment. *

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

* The actions for the experiment. *

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

* The stop conditions for the experiment. *

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

* The time the experiment template was created. *

*/ private java.util.Date creationTime; /** *

* The time the experiment template was last updated. *

*/ private java.util.Date lastUpdateTime; /** *

* The Amazon Resource Name (ARN) of an IAM role. *

*/ private String roleArn; /** *

* The tags for the experiment template. *

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

* The configuration for experiment logging. *

*/ private ExperimentTemplateLogConfiguration logConfiguration; /** *

* The experiment options for an experiment template. *

*/ private ExperimentTemplateExperimentOptions experimentOptions; /** *

* The count of target account configurations for the experiment template. *

*/ private Long targetAccountConfigurationsCount; /** *

* The ID of the experiment template. *

* * @param id * The ID of the experiment template. */ public void setId(String id) { this.id = id; } /** *

* The ID of the experiment template. *

* * @return The ID of the experiment template. */ public String getId() { return this.id; } /** *

* The ID of the experiment template. *

* * @param id * The ID of the experiment template. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withId(String id) { setId(id); return this; } /** *

* The Amazon Resource Name (ARN) of the experiment template. *

* * @param arn * The Amazon Resource Name (ARN) of the experiment template. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) of the experiment template. *

* * @return The Amazon Resource Name (ARN) of the experiment template. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) of the experiment template. *

* * @param arn * The Amazon Resource Name (ARN) of the experiment template. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withArn(String arn) { setArn(arn); return this; } /** *

* The description for the experiment template. *

* * @param description * The description for the experiment template. */ public void setDescription(String description) { this.description = description; } /** *

* The description for the experiment template. *

* * @return The description for the experiment template. */ public String getDescription() { return this.description; } /** *

* The description for the experiment template. *

* * @param description * The description for the experiment template. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withDescription(String description) { setDescription(description); return this; } /** *

* The targets for the experiment. *

* * @return The targets for the experiment. */ public java.util.Map getTargets() { return targets; } /** *

* The targets for the experiment. *

* * @param targets * The targets for the experiment. */ public void setTargets(java.util.Map targets) { this.targets = targets; } /** *

* The targets for the experiment. *

* * @param targets * The targets for the experiment. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withTargets(java.util.Map targets) { setTargets(targets); return this; } /** * Add a single Targets entry * * @see ExperimentTemplate#withTargets * @returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate addTargetsEntry(String key, ExperimentTemplateTarget value) { if (null == this.targets) { this.targets = new java.util.HashMap(); } if (this.targets.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.targets.put(key, value); return this; } /** * Removes all the entries added into Targets. * * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate clearTargetsEntries() { this.targets = null; return this; } /** *

* The actions for the experiment. *

* * @return The actions for the experiment. */ public java.util.Map getActions() { return actions; } /** *

* The actions for the experiment. *

* * @param actions * The actions for the experiment. */ public void setActions(java.util.Map actions) { this.actions = actions; } /** *

* The actions for the experiment. *

* * @param actions * The actions for the experiment. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withActions(java.util.Map actions) { setActions(actions); return this; } /** * Add a single Actions entry * * @see ExperimentTemplate#withActions * @returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate addActionsEntry(String key, ExperimentTemplateAction value) { if (null == this.actions) { this.actions = new java.util.HashMap(); } if (this.actions.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.actions.put(key, value); return this; } /** * Removes all the entries added into Actions. * * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate clearActionsEntries() { this.actions = null; return this; } /** *

* The stop conditions for the experiment. *

* * @return The stop conditions for the experiment. */ public java.util.List getStopConditions() { return stopConditions; } /** *

* The stop conditions for the experiment. *

* * @param stopConditions * The stop conditions for the experiment. */ public void setStopConditions(java.util.Collection stopConditions) { if (stopConditions == null) { this.stopConditions = null; return; } this.stopConditions = new java.util.ArrayList(stopConditions); } /** *

* The stop conditions for the experiment. *

*

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

* * @param stopConditions * The stop conditions for the experiment. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withStopConditions(ExperimentTemplateStopCondition... stopConditions) { if (this.stopConditions == null) { setStopConditions(new java.util.ArrayList(stopConditions.length)); } for (ExperimentTemplateStopCondition ele : stopConditions) { this.stopConditions.add(ele); } return this; } /** *

* The stop conditions for the experiment. *

* * @param stopConditions * The stop conditions for the experiment. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withStopConditions(java.util.Collection stopConditions) { setStopConditions(stopConditions); return this; } /** *

* The time the experiment template was created. *

* * @param creationTime * The time the experiment template was created. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** *

* The time the experiment template was created. *

* * @return The time the experiment template was created. */ public java.util.Date getCreationTime() { return this.creationTime; } /** *

* The time the experiment template was created. *

* * @param creationTime * The time the experiment template was created. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** *

* The time the experiment template was last updated. *

* * @param lastUpdateTime * The time the experiment template was last updated. */ public void setLastUpdateTime(java.util.Date lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; } /** *

* The time the experiment template was last updated. *

* * @return The time the experiment template was last updated. */ public java.util.Date getLastUpdateTime() { return this.lastUpdateTime; } /** *

* The time the experiment template was last updated. *

* * @param lastUpdateTime * The time the experiment template was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withLastUpdateTime(java.util.Date lastUpdateTime) { setLastUpdateTime(lastUpdateTime); return this; } /** *

* The Amazon Resource Name (ARN) of an IAM role. *

* * @param roleArn * The Amazon Resource Name (ARN) of an IAM role. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** *

* The Amazon Resource Name (ARN) of an IAM role. *

* * @return The Amazon Resource Name (ARN) of an IAM role. */ public String getRoleArn() { return this.roleArn; } /** *

* The Amazon Resource Name (ARN) of an IAM role. *

* * @param roleArn * The Amazon Resource Name (ARN) of an IAM role. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** *

* The tags for the experiment template. *

* * @return The tags for the experiment template. */ public java.util.Map getTags() { return tags; } /** *

* The tags for the experiment template. *

* * @param tags * The tags for the experiment template. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* The tags for the experiment template. *

* * @param tags * The tags for the experiment template. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see ExperimentTemplate#withTags * @returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate 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 ExperimentTemplate clearTagsEntries() { this.tags = null; return this; } /** *

* The configuration for experiment logging. *

* * @param logConfiguration * The configuration for experiment logging. */ public void setLogConfiguration(ExperimentTemplateLogConfiguration logConfiguration) { this.logConfiguration = logConfiguration; } /** *

* The configuration for experiment logging. *

* * @return The configuration for experiment logging. */ public ExperimentTemplateLogConfiguration getLogConfiguration() { return this.logConfiguration; } /** *

* The configuration for experiment logging. *

* * @param logConfiguration * The configuration for experiment logging. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withLogConfiguration(ExperimentTemplateLogConfiguration logConfiguration) { setLogConfiguration(logConfiguration); return this; } /** *

* The experiment options for an experiment template. *

* * @param experimentOptions * The experiment options for an experiment template. */ public void setExperimentOptions(ExperimentTemplateExperimentOptions experimentOptions) { this.experimentOptions = experimentOptions; } /** *

* The experiment options for an experiment template. *

* * @return The experiment options for an experiment template. */ public ExperimentTemplateExperimentOptions getExperimentOptions() { return this.experimentOptions; } /** *

* The experiment options for an experiment template. *

* * @param experimentOptions * The experiment options for an experiment template. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withExperimentOptions(ExperimentTemplateExperimentOptions experimentOptions) { setExperimentOptions(experimentOptions); return this; } /** *

* The count of target account configurations for the experiment template. *

* * @param targetAccountConfigurationsCount * The count of target account configurations for the experiment template. */ public void setTargetAccountConfigurationsCount(Long targetAccountConfigurationsCount) { this.targetAccountConfigurationsCount = targetAccountConfigurationsCount; } /** *

* The count of target account configurations for the experiment template. *

* * @return The count of target account configurations for the experiment template. */ public Long getTargetAccountConfigurationsCount() { return this.targetAccountConfigurationsCount; } /** *

* The count of target account configurations for the experiment template. *

* * @param targetAccountConfigurationsCount * The count of target account configurations for the experiment template. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplate withTargetAccountConfigurationsCount(Long targetAccountConfigurationsCount) { setTargetAccountConfigurationsCount(targetAccountConfigurationsCount); 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 (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getTargets() != null) sb.append("Targets: ").append(getTargets()).append(","); if (getActions() != null) sb.append("Actions: ").append(getActions()).append(","); if (getStopConditions() != null) sb.append("StopConditions: ").append(getStopConditions()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getLastUpdateTime() != null) sb.append("LastUpdateTime: ").append(getLastUpdateTime()).append(","); if (getRoleArn() != null) sb.append("RoleArn: ").append(getRoleArn()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getLogConfiguration() != null) sb.append("LogConfiguration: ").append(getLogConfiguration()).append(","); if (getExperimentOptions() != null) sb.append("ExperimentOptions: ").append(getExperimentOptions()).append(","); if (getTargetAccountConfigurationsCount() != null) sb.append("TargetAccountConfigurationsCount: ").append(getTargetAccountConfigurationsCount()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ExperimentTemplate == false) return false; ExperimentTemplate other = (ExperimentTemplate) obj; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == 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.getTargets() == null ^ this.getTargets() == null) return false; if (other.getTargets() != null && other.getTargets().equals(this.getTargets()) == false) return false; if (other.getActions() == null ^ this.getActions() == null) return false; if (other.getActions() != null && other.getActions().equals(this.getActions()) == false) return false; if (other.getStopConditions() == null ^ this.getStopConditions() == null) return false; if (other.getStopConditions() != null && other.getStopConditions().equals(this.getStopConditions()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false) return false; if (other.getLastUpdateTime() == null ^ this.getLastUpdateTime() == null) return false; if (other.getLastUpdateTime() != null && other.getLastUpdateTime().equals(this.getLastUpdateTime()) == false) return false; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == 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.getLogConfiguration() == null ^ this.getLogConfiguration() == null) return false; if (other.getLogConfiguration() != null && other.getLogConfiguration().equals(this.getLogConfiguration()) == false) return false; if (other.getExperimentOptions() == null ^ this.getExperimentOptions() == null) return false; if (other.getExperimentOptions() != null && other.getExperimentOptions().equals(this.getExperimentOptions()) == false) return false; if (other.getTargetAccountConfigurationsCount() == null ^ this.getTargetAccountConfigurationsCount() == null) return false; if (other.getTargetAccountConfigurationsCount() != null && other.getTargetAccountConfigurationsCount().equals(this.getTargetAccountConfigurationsCount()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getTargets() == null) ? 0 : getTargets().hashCode()); hashCode = prime * hashCode + ((getActions() == null) ? 0 : getActions().hashCode()); hashCode = prime * hashCode + ((getStopConditions() == null) ? 0 : getStopConditions().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getLastUpdateTime() == null) ? 0 : getLastUpdateTime().hashCode()); hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getLogConfiguration() == null) ? 0 : getLogConfiguration().hashCode()); hashCode = prime * hashCode + ((getExperimentOptions() == null) ? 0 : getExperimentOptions().hashCode()); hashCode = prime * hashCode + ((getTargetAccountConfigurationsCount() == null) ? 0 : getTargetAccountConfigurationsCount().hashCode()); return hashCode; } @Override public ExperimentTemplate clone() { try { return (ExperimentTemplate) 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.fis.model.transform.ExperimentTemplateMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy