/* * 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.cloudwatchevidently.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 UpdateFeatureRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* To update variation configurations for this feature, or add new ones, specify this structure. In this array, * include any variations that you want to add or update. If the array includes a variation name that already exists * for this feature, it is updated. If it includes a new variation name, it is added as a new variation. *

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

* The name of the variation to use as the default variation. The default variation is served to users who are not * allocated to any ongoing launches or experiments of this feature. *

*/ private String defaultVariation; /** *

* An optional description of the feature. *

*/ private String description; /** *

* Specified users that should always be served a specific variation of a feature. Each user is specified by a * key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. * For the value, specify the name of the variation that they are to be served. *

*

* This parameter is limited to 2500 overrides or a total of 40KB. The 40KB limit includes an overhead of 6 bytes * per override. *

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

* Specify ALL_RULES to activate the traffic allocation specified by any ongoing launches or * experiments. Specify DEFAULT_VARIATION to serve the default variation to all users instead. *

*/ private String evaluationStrategy; /** *

* The name of the feature to be updated. *

*/ private String feature; /** *

* The name or ARN of the project that contains the feature to be updated. *

*/ private String project; /** *

* Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no change and * does not report an error. *

*

* This operation fails if you try to remove a variation that is part of an ongoing launch or experiment. *

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

* To update variation configurations for this feature, or add new ones, specify this structure. In this array, * include any variations that you want to add or update. If the array includes a variation name that already exists * for this feature, it is updated. If it includes a new variation name, it is added as a new variation. *

* * @return To update variation configurations for this feature, or add new ones, specify this structure. In this * array, include any variations that you want to add or update. If the array includes a variation name that * already exists for this feature, it is updated. If it includes a new variation name, it is added as a new * variation. */ public java.util.List getAddOrUpdateVariations() { return addOrUpdateVariations; } /** *

* To update variation configurations for this feature, or add new ones, specify this structure. In this array, * include any variations that you want to add or update. If the array includes a variation name that already exists * for this feature, it is updated. If it includes a new variation name, it is added as a new variation. *

* * @param addOrUpdateVariations * To update variation configurations for this feature, or add new ones, specify this structure. In this * array, include any variations that you want to add or update. If the array includes a variation name that * already exists for this feature, it is updated. If it includes a new variation name, it is added as a new * variation. */ public void setAddOrUpdateVariations(java.util.Collection addOrUpdateVariations) { if (addOrUpdateVariations == null) { this.addOrUpdateVariations = null; return; } this.addOrUpdateVariations = new java.util.ArrayList(addOrUpdateVariations); } /** *

* To update variation configurations for this feature, or add new ones, specify this structure. In this array, * include any variations that you want to add or update. If the array includes a variation name that already exists * for this feature, it is updated. If it includes a new variation name, it is added as a new variation. *

*

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

* * @param addOrUpdateVariations * To update variation configurations for this feature, or add new ones, specify this structure. In this * array, include any variations that you want to add or update. If the array includes a variation name that * already exists for this feature, it is updated. If it includes a new variation name, it is added as a new * variation. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest withAddOrUpdateVariations(VariationConfig... addOrUpdateVariations) { if (this.addOrUpdateVariations == null) { setAddOrUpdateVariations(new java.util.ArrayList(addOrUpdateVariations.length)); } for (VariationConfig ele : addOrUpdateVariations) { this.addOrUpdateVariations.add(ele); } return this; } /** *

* To update variation configurations for this feature, or add new ones, specify this structure. In this array, * include any variations that you want to add or update. If the array includes a variation name that already exists * for this feature, it is updated. If it includes a new variation name, it is added as a new variation. *

* * @param addOrUpdateVariations * To update variation configurations for this feature, or add new ones, specify this structure. In this * array, include any variations that you want to add or update. If the array includes a variation name that * already exists for this feature, it is updated. If it includes a new variation name, it is added as a new * variation. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest withAddOrUpdateVariations(java.util.Collection addOrUpdateVariations) { setAddOrUpdateVariations(addOrUpdateVariations); return this; } /** *

* The name of the variation to use as the default variation. The default variation is served to users who are not * allocated to any ongoing launches or experiments of this feature. *

* * @param defaultVariation * The name of the variation to use as the default variation. The default variation is served to users who * are not allocated to any ongoing launches or experiments of this feature. */ public void setDefaultVariation(String defaultVariation) { this.defaultVariation = defaultVariation; } /** *

* The name of the variation to use as the default variation. The default variation is served to users who are not * allocated to any ongoing launches or experiments of this feature. *

* * @return The name of the variation to use as the default variation. The default variation is served to users who * are not allocated to any ongoing launches or experiments of this feature. */ public String getDefaultVariation() { return this.defaultVariation; } /** *

* The name of the variation to use as the default variation. The default variation is served to users who are not * allocated to any ongoing launches or experiments of this feature. *

* * @param defaultVariation * The name of the variation to use as the default variation. The default variation is served to users who * are not allocated to any ongoing launches or experiments of this feature. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest withDefaultVariation(String defaultVariation) { setDefaultVariation(defaultVariation); return this; } /** *

* An optional description of the feature. *

* * @param description * An optional description of the feature. */ public void setDescription(String description) { this.description = description; } /** *

* An optional description of the feature. *

* * @return An optional description of the feature. */ public String getDescription() { return this.description; } /** *

* An optional description of the feature. *

* * @param description * An optional description of the feature. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest withDescription(String description) { setDescription(description); return this; } /** *

* Specified users that should always be served a specific variation of a feature. Each user is specified by a * key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. * For the value, specify the name of the variation that they are to be served. *

*

* This parameter is limited to 2500 overrides or a total of 40KB. The 40KB limit includes an overhead of 6 bytes * per override. *

* * @return Specified users that should always be served a specific variation of a feature. Each user is specified by * a key-value pair . For each key, specify a user by entering their user ID, account ID, or some other * identifier. For the value, specify the name of the variation that they are to be served.

*

* This parameter is limited to 2500 overrides or a total of 40KB. The 40KB limit includes an overhead of 6 * bytes per override. */ public java.util.Map getEntityOverrides() { return entityOverrides; } /** *

* Specified users that should always be served a specific variation of a feature. Each user is specified by a * key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. * For the value, specify the name of the variation that they are to be served. *

*

* This parameter is limited to 2500 overrides or a total of 40KB. The 40KB limit includes an overhead of 6 bytes * per override. *

* * @param entityOverrides * Specified users that should always be served a specific variation of a feature. Each user is specified by * a key-value pair . For each key, specify a user by entering their user ID, account ID, or some other * identifier. For the value, specify the name of the variation that they are to be served.

*

* This parameter is limited to 2500 overrides or a total of 40KB. The 40KB limit includes an overhead of 6 * bytes per override. */ public void setEntityOverrides(java.util.Map entityOverrides) { this.entityOverrides = entityOverrides; } /** *

* Specified users that should always be served a specific variation of a feature. Each user is specified by a * key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. * For the value, specify the name of the variation that they are to be served. *

*

* This parameter is limited to 2500 overrides or a total of 40KB. The 40KB limit includes an overhead of 6 bytes * per override. *

* * @param entityOverrides * Specified users that should always be served a specific variation of a feature. Each user is specified by * a key-value pair . For each key, specify a user by entering their user ID, account ID, or some other * identifier. For the value, specify the name of the variation that they are to be served.

*

* This parameter is limited to 2500 overrides or a total of 40KB. The 40KB limit includes an overhead of 6 * bytes per override. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest withEntityOverrides(java.util.Map entityOverrides) { setEntityOverrides(entityOverrides); return this; } /** * Add a single EntityOverrides entry * * @see UpdateFeatureRequest#withEntityOverrides * @returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest addEntityOverridesEntry(String key, String value) { if (null == this.entityOverrides) { this.entityOverrides = new java.util.HashMap(); } if (this.entityOverrides.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.entityOverrides.put(key, value); return this; } /** * Removes all the entries added into EntityOverrides. * * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest clearEntityOverridesEntries() { this.entityOverrides = null; return this; } /** *

* Specify ALL_RULES to activate the traffic allocation specified by any ongoing launches or * experiments. Specify DEFAULT_VARIATION to serve the default variation to all users instead. *

* * @param evaluationStrategy * Specify ALL_RULES to activate the traffic allocation specified by any ongoing launches or * experiments. Specify DEFAULT_VARIATION to serve the default variation to all users instead. * @see FeatureEvaluationStrategy */ public void setEvaluationStrategy(String evaluationStrategy) { this.evaluationStrategy = evaluationStrategy; } /** *

* Specify ALL_RULES to activate the traffic allocation specified by any ongoing launches or * experiments. Specify DEFAULT_VARIATION to serve the default variation to all users instead. *

* * @return Specify ALL_RULES to activate the traffic allocation specified by any ongoing launches or * experiments. Specify DEFAULT_VARIATION to serve the default variation to all users instead. * @see FeatureEvaluationStrategy */ public String getEvaluationStrategy() { return this.evaluationStrategy; } /** *

* Specify ALL_RULES to activate the traffic allocation specified by any ongoing launches or * experiments. Specify DEFAULT_VARIATION to serve the default variation to all users instead. *

* * @param evaluationStrategy * Specify ALL_RULES to activate the traffic allocation specified by any ongoing launches or * experiments. Specify DEFAULT_VARIATION to serve the default variation to all users instead. * @return Returns a reference to this object so that method calls can be chained together. * @see FeatureEvaluationStrategy */ public UpdateFeatureRequest withEvaluationStrategy(String evaluationStrategy) { setEvaluationStrategy(evaluationStrategy); return this; } /** *

* Specify ALL_RULES to activate the traffic allocation specified by any ongoing launches or * experiments. Specify DEFAULT_VARIATION to serve the default variation to all users instead. *

* * @param evaluationStrategy * Specify ALL_RULES to activate the traffic allocation specified by any ongoing launches or * experiments. Specify DEFAULT_VARIATION to serve the default variation to all users instead. * @return Returns a reference to this object so that method calls can be chained together. * @see FeatureEvaluationStrategy */ public UpdateFeatureRequest withEvaluationStrategy(FeatureEvaluationStrategy evaluationStrategy) { this.evaluationStrategy = evaluationStrategy.toString(); return this; } /** *

* The name of the feature to be updated. *

* * @param feature * The name of the feature to be updated. */ public void setFeature(String feature) { this.feature = feature; } /** *

* The name of the feature to be updated. *

* * @return The name of the feature to be updated. */ public String getFeature() { return this.feature; } /** *

* The name of the feature to be updated. *

* * @param feature * The name of the feature to be updated. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest withFeature(String feature) { setFeature(feature); return this; } /** *

* The name or ARN of the project that contains the feature to be updated. *

* * @param project * The name or ARN of the project that contains the feature to be updated. */ public void setProject(String project) { this.project = project; } /** *

* The name or ARN of the project that contains the feature to be updated. *

* * @return The name or ARN of the project that contains the feature to be updated. */ public String getProject() { return this.project; } /** *

* The name or ARN of the project that contains the feature to be updated. *

* * @param project * The name or ARN of the project that contains the feature to be updated. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest withProject(String project) { setProject(project); return this; } /** *

* Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no change and * does not report an error. *

*

* This operation fails if you try to remove a variation that is part of an ongoing launch or experiment. *

* * @return Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no * change and does not report an error.

*

* This operation fails if you try to remove a variation that is part of an ongoing launch or experiment. */ public java.util.List getRemoveVariations() { return removeVariations; } /** *

* Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no change and * does not report an error. *

*

* This operation fails if you try to remove a variation that is part of an ongoing launch or experiment. *

* * @param removeVariations * Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no * change and does not report an error.

*

* This operation fails if you try to remove a variation that is part of an ongoing launch or experiment. */ public void setRemoveVariations(java.util.Collection removeVariations) { if (removeVariations == null) { this.removeVariations = null; return; } this.removeVariations = new java.util.ArrayList(removeVariations); } /** *

* Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no change and * does not report an error. *

*

* This operation fails if you try to remove a variation that is part of an ongoing launch or experiment. *

*

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

* * @param removeVariations * Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no * change and does not report an error.

*

* This operation fails if you try to remove a variation that is part of an ongoing launch or experiment. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest withRemoveVariations(String... removeVariations) { if (this.removeVariations == null) { setRemoveVariations(new java.util.ArrayList(removeVariations.length)); } for (String ele : removeVariations) { this.removeVariations.add(ele); } return this; } /** *

* Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no change and * does not report an error. *

*

* This operation fails if you try to remove a variation that is part of an ongoing launch or experiment. *

* * @param removeVariations * Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no * change and does not report an error.

*

* This operation fails if you try to remove a variation that is part of an ongoing launch or experiment. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateFeatureRequest withRemoveVariations(java.util.Collection removeVariations) { setRemoveVariations(removeVariations); 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 (getAddOrUpdateVariations() != null) sb.append("AddOrUpdateVariations: ").append(getAddOrUpdateVariations()).append(","); if (getDefaultVariation() != null) sb.append("DefaultVariation: ").append(getDefaultVariation()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getEntityOverrides() != null) sb.append("EntityOverrides: ").append(getEntityOverrides()).append(","); if (getEvaluationStrategy() != null) sb.append("EvaluationStrategy: ").append(getEvaluationStrategy()).append(","); if (getFeature() != null) sb.append("Feature: ").append(getFeature()).append(","); if (getProject() != null) sb.append("Project: ").append(getProject()).append(","); if (getRemoveVariations() != null) sb.append("RemoveVariations: ").append(getRemoveVariations()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateFeatureRequest == false) return false; UpdateFeatureRequest other = (UpdateFeatureRequest) obj; if (other.getAddOrUpdateVariations() == null ^ this.getAddOrUpdateVariations() == null) return false; if (other.getAddOrUpdateVariations() != null && other.getAddOrUpdateVariations().equals(this.getAddOrUpdateVariations()) == false) return false; if (other.getDefaultVariation() == null ^ this.getDefaultVariation() == null) return false; if (other.getDefaultVariation() != null && other.getDefaultVariation().equals(this.getDefaultVariation()) == 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.getEntityOverrides() == null ^ this.getEntityOverrides() == null) return false; if (other.getEntityOverrides() != null && other.getEntityOverrides().equals(this.getEntityOverrides()) == false) return false; if (other.getEvaluationStrategy() == null ^ this.getEvaluationStrategy() == null) return false; if (other.getEvaluationStrategy() != null && other.getEvaluationStrategy().equals(this.getEvaluationStrategy()) == false) return false; if (other.getFeature() == null ^ this.getFeature() == null) return false; if (other.getFeature() != null && other.getFeature().equals(this.getFeature()) == false) return false; if (other.getProject() == null ^ this.getProject() == null) return false; if (other.getProject() != null && other.getProject().equals(this.getProject()) == false) return false; if (other.getRemoveVariations() == null ^ this.getRemoveVariations() == null) return false; if (other.getRemoveVariations() != null && other.getRemoveVariations().equals(this.getRemoveVariations()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAddOrUpdateVariations() == null) ? 0 : getAddOrUpdateVariations().hashCode()); hashCode = prime * hashCode + ((getDefaultVariation() == null) ? 0 : getDefaultVariation().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getEntityOverrides() == null) ? 0 : getEntityOverrides().hashCode()); hashCode = prime * hashCode + ((getEvaluationStrategy() == null) ? 0 : getEvaluationStrategy().hashCode()); hashCode = prime * hashCode + ((getFeature() == null) ? 0 : getFeature().hashCode()); hashCode = prime * hashCode + ((getProject() == null) ? 0 : getProject().hashCode()); hashCode = prime * hashCode + ((getRemoveVariations() == null) ? 0 : getRemoveVariations().hashCode()); return hashCode; } @Override public UpdateFeatureRequest clone() { return (UpdateFeatureRequest) super.clone(); } }