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

com.amazonaws.services.workspacesweb.model.CreateIpAccessSettingsRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon WorkSpaces Web module holds the client classes that are used for communicating with Amazon WorkSpaces Web Service

The 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.workspacesweb.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 CreateIpAccessSettingsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* Additional encryption context of the IP access settings. *

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

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency * ensures that an API request completes only once. With an idempotent request, if the original request completes * successfully, subsequent retries with the same client token returns the result from the original successful * request. *

*

* If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK. *

*/ private String clientToken; /** *

* The custom managed key of the IP access settings. *

*/ private String customerManagedKey; /** *

* The description of the IP access settings. *

*/ private String description; /** *

* The display name of the IP access settings. *

*/ private String displayName; /** *

* The IP rules of the IP access settings. *

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

* The tags to add to the IP access settings resource. A tag is a key-value pair. *

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

* Additional encryption context of the IP access settings. *

* * @return Additional encryption context of the IP access settings. */ public java.util.Map getAdditionalEncryptionContext() { return additionalEncryptionContext; } /** *

* Additional encryption context of the IP access settings. *

* * @param additionalEncryptionContext * Additional encryption context of the IP access settings. */ public void setAdditionalEncryptionContext(java.util.Map additionalEncryptionContext) { this.additionalEncryptionContext = additionalEncryptionContext; } /** *

* Additional encryption context of the IP access settings. *

* * @param additionalEncryptionContext * Additional encryption context of the IP access settings. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest withAdditionalEncryptionContext(java.util.Map additionalEncryptionContext) { setAdditionalEncryptionContext(additionalEncryptionContext); return this; } /** * Add a single AdditionalEncryptionContext entry * * @see CreateIpAccessSettingsRequest#withAdditionalEncryptionContext * @returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest addAdditionalEncryptionContextEntry(String key, String value) { if (null == this.additionalEncryptionContext) { this.additionalEncryptionContext = new java.util.HashMap(); } if (this.additionalEncryptionContext.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.additionalEncryptionContext.put(key, value); return this; } /** * Removes all the entries added into AdditionalEncryptionContext. * * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest clearAdditionalEncryptionContextEntries() { this.additionalEncryptionContext = null; return this; } /** *

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency * ensures that an API request completes only once. With an idempotent request, if the original request completes * successfully, subsequent retries with the same client token returns the result from the original successful * request. *

*

* If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK. *

* * @param clientToken * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency * ensures that an API request completes only once. With an idempotent request, if the original request * completes successfully, subsequent retries with the same client token returns the result from the original * successful request.

*

* If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency * ensures that an API request completes only once. With an idempotent request, if the original request completes * successfully, subsequent retries with the same client token returns the result from the original successful * request. *

*

* If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK. *

* * @return A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. * Idempotency ensures that an API request completes only once. With an idempotent request, if the original * request completes successfully, subsequent retries with the same client token returns the result from the * original successful request.

*

* If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK. */ public String getClientToken() { return this.clientToken; } /** *

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency * ensures that an API request completes only once. With an idempotent request, if the original request completes * successfully, subsequent retries with the same client token returns the result from the original successful * request. *

*

* If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK. *

* * @param clientToken * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency * ensures that an API request completes only once. With an idempotent request, if the original request * completes successfully, subsequent retries with the same client token returns the result from the original * successful request.

*

* If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* The custom managed key of the IP access settings. *

* * @param customerManagedKey * The custom managed key of the IP access settings. */ public void setCustomerManagedKey(String customerManagedKey) { this.customerManagedKey = customerManagedKey; } /** *

* The custom managed key of the IP access settings. *

* * @return The custom managed key of the IP access settings. */ public String getCustomerManagedKey() { return this.customerManagedKey; } /** *

* The custom managed key of the IP access settings. *

* * @param customerManagedKey * The custom managed key of the IP access settings. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest withCustomerManagedKey(String customerManagedKey) { setCustomerManagedKey(customerManagedKey); return this; } /** *

* The description of the IP access settings. *

* * @param description * The description of the IP access settings. */ public void setDescription(String description) { this.description = description; } /** *

* The description of the IP access settings. *

* * @return The description of the IP access settings. */ public String getDescription() { return this.description; } /** *

* The description of the IP access settings. *

* * @param description * The description of the IP access settings. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest withDescription(String description) { setDescription(description); return this; } /** *

* The display name of the IP access settings. *

* * @param displayName * The display name of the IP access settings. */ public void setDisplayName(String displayName) { this.displayName = displayName; } /** *

* The display name of the IP access settings. *

* * @return The display name of the IP access settings. */ public String getDisplayName() { return this.displayName; } /** *

* The display name of the IP access settings. *

* * @param displayName * The display name of the IP access settings. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest withDisplayName(String displayName) { setDisplayName(displayName); return this; } /** *

* The IP rules of the IP access settings. *

* * @return The IP rules of the IP access settings. */ public java.util.List getIpRules() { return ipRules; } /** *

* The IP rules of the IP access settings. *

* * @param ipRules * The IP rules of the IP access settings. */ public void setIpRules(java.util.Collection ipRules) { if (ipRules == null) { this.ipRules = null; return; } this.ipRules = new java.util.ArrayList(ipRules); } /** *

* The IP rules of the IP access settings. *

*

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

* * @param ipRules * The IP rules of the IP access settings. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest withIpRules(IpRule... ipRules) { if (this.ipRules == null) { setIpRules(new java.util.ArrayList(ipRules.length)); } for (IpRule ele : ipRules) { this.ipRules.add(ele); } return this; } /** *

* The IP rules of the IP access settings. *

* * @param ipRules * The IP rules of the IP access settings. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest withIpRules(java.util.Collection ipRules) { setIpRules(ipRules); return this; } /** *

* The tags to add to the IP access settings resource. A tag is a key-value pair. *

* * @return The tags to add to the IP access settings resource. A tag is a key-value pair. */ public java.util.List getTags() { return tags; } /** *

* The tags to add to the IP access settings resource. A tag is a key-value pair. *

* * @param tags * The tags to add to the IP access settings resource. A tag is a key-value pair. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* The tags to add to the IP access settings resource. A tag is a key-value pair. *

*

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

* * @param tags * The tags to add to the IP access settings resource. A tag is a key-value pair. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* The tags to add to the IP access settings resource. A tag is a key-value pair. *

* * @param tags * The tags to add to the IP access settings resource. A tag is a key-value pair. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateIpAccessSettingsRequest withTags(java.util.Collection tags) { setTags(tags); 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 (getAdditionalEncryptionContext() != null) sb.append("AdditionalEncryptionContext: ").append(getAdditionalEncryptionContext()).append(","); if (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getCustomerManagedKey() != null) sb.append("CustomerManagedKey: ").append(getCustomerManagedKey()).append(","); if (getDescription() != null) sb.append("Description: ").append("***Sensitive Data Redacted***").append(","); if (getDisplayName() != null) sb.append("DisplayName: ").append("***Sensitive Data Redacted***").append(","); if (getIpRules() != null) sb.append("IpRules: ").append("***Sensitive Data Redacted***").append(","); if (getTags() != null) sb.append("Tags: ").append("***Sensitive Data Redacted***"); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateIpAccessSettingsRequest == false) return false; CreateIpAccessSettingsRequest other = (CreateIpAccessSettingsRequest) obj; if (other.getAdditionalEncryptionContext() == null ^ this.getAdditionalEncryptionContext() == null) return false; if (other.getAdditionalEncryptionContext() != null && other.getAdditionalEncryptionContext().equals(this.getAdditionalEncryptionContext()) == false) return false; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getCustomerManagedKey() == null ^ this.getCustomerManagedKey() == null) return false; if (other.getCustomerManagedKey() != null && other.getCustomerManagedKey().equals(this.getCustomerManagedKey()) == 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.getDisplayName() == null ^ this.getDisplayName() == null) return false; if (other.getDisplayName() != null && other.getDisplayName().equals(this.getDisplayName()) == false) return false; if (other.getIpRules() == null ^ this.getIpRules() == null) return false; if (other.getIpRules() != null && other.getIpRules().equals(this.getIpRules()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAdditionalEncryptionContext() == null) ? 0 : getAdditionalEncryptionContext().hashCode()); hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getCustomerManagedKey() == null) ? 0 : getCustomerManagedKey().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getDisplayName() == null) ? 0 : getDisplayName().hashCode()); hashCode = prime * hashCode + ((getIpRules() == null) ? 0 : getIpRules().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateIpAccessSettingsRequest clone() { return (CreateIpAccessSettingsRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy