/* * 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.apigateway.model; import java.io.Serializable; import javax.annotation.Generated; /** *

* A resource that can be distributed to callers for executing Method resources that require an API key. API keys can be * mapped to any Stage on any RestApi, which indicates that the callers with the API key can make requests to that * stage. *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateApiKeyResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* The identifier of the API Key. *

*/ private String id; /** *

* The value of the API Key. *

*/ private String value; /** *

* The name of the API Key. *

*/ private String name; /** *

* An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace. *

*/ private String customerId; /** *

* The description of the API Key. *

*/ private String description; /** *

* Specifies whether the API Key can be used by callers. *

*/ private Boolean enabled; /** *

* The timestamp when the API Key was created. *

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

* The timestamp when the API Key was last updated. *

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

* A list of Stage resources that are associated with the ApiKey resource. *

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

* The collection of tags. Each tag element is associated with a given resource. *

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

* The identifier of the API Key. *

* * @param id * The identifier of the API Key. */ public void setId(String id) { this.id = id; } /** *

* The identifier of the API Key. *

* * @return The identifier of the API Key. */ public String getId() { return this.id; } /** *

* The identifier of the API Key. *

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

* The value of the API Key. *

* * @param value * The value of the API Key. */ public void setValue(String value) { this.value = value; } /** *

* The value of the API Key. *

* * @return The value of the API Key. */ public String getValue() { return this.value; } /** *

* The value of the API Key. *

* * @param value * The value of the API Key. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult withValue(String value) { setValue(value); return this; } /** *

* The name of the API Key. *

* * @param name * The name of the API Key. */ public void setName(String name) { this.name = name; } /** *

* The name of the API Key. *

* * @return The name of the API Key. */ public String getName() { return this.name; } /** *

* The name of the API Key. *

* * @param name * The name of the API Key. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult withName(String name) { setName(name); return this; } /** *

* An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace. *

* * @param customerId * An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace. */ public void setCustomerId(String customerId) { this.customerId = customerId; } /** *

* An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace. *

* * @return An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace. */ public String getCustomerId() { return this.customerId; } /** *

* An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace. *

* * @param customerId * An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult withCustomerId(String customerId) { setCustomerId(customerId); return this; } /** *

* The description of the API Key. *

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

* The description of the API Key. *

* * @return The description of the API Key. */ public String getDescription() { return this.description; } /** *

* The description of the API Key. *

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

* Specifies whether the API Key can be used by callers. *

* * @param enabled * Specifies whether the API Key can be used by callers. */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** *

* Specifies whether the API Key can be used by callers. *

* * @return Specifies whether the API Key can be used by callers. */ public Boolean getEnabled() { return this.enabled; } /** *

* Specifies whether the API Key can be used by callers. *

* * @param enabled * Specifies whether the API Key can be used by callers. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult withEnabled(Boolean enabled) { setEnabled(enabled); return this; } /** *

* Specifies whether the API Key can be used by callers. *

* * @return Specifies whether the API Key can be used by callers. */ public Boolean isEnabled() { return this.enabled; } /** *

* The timestamp when the API Key was created. *

* * @param createdDate * The timestamp when the API Key was created. */ public void setCreatedDate(java.util.Date createdDate) { this.createdDate = createdDate; } /** *

* The timestamp when the API Key was created. *

* * @return The timestamp when the API Key was created. */ public java.util.Date getCreatedDate() { return this.createdDate; } /** *

* The timestamp when the API Key was created. *

* * @param createdDate * The timestamp when the API Key was created. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult withCreatedDate(java.util.Date createdDate) { setCreatedDate(createdDate); return this; } /** *

* The timestamp when the API Key was last updated. *

* * @param lastUpdatedDate * The timestamp when the API Key was last updated. */ public void setLastUpdatedDate(java.util.Date lastUpdatedDate) { this.lastUpdatedDate = lastUpdatedDate; } /** *

* The timestamp when the API Key was last updated. *

* * @return The timestamp when the API Key was last updated. */ public java.util.Date getLastUpdatedDate() { return this.lastUpdatedDate; } /** *

* The timestamp when the API Key was last updated. *

* * @param lastUpdatedDate * The timestamp when the API Key was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult withLastUpdatedDate(java.util.Date lastUpdatedDate) { setLastUpdatedDate(lastUpdatedDate); return this; } /** *

* A list of Stage resources that are associated with the ApiKey resource. *

* * @return A list of Stage resources that are associated with the ApiKey resource. */ public java.util.List getStageKeys() { return stageKeys; } /** *

* A list of Stage resources that are associated with the ApiKey resource. *

* * @param stageKeys * A list of Stage resources that are associated with the ApiKey resource. */ public void setStageKeys(java.util.Collection stageKeys) { if (stageKeys == null) { this.stageKeys = null; return; } this.stageKeys = new java.util.ArrayList(stageKeys); } /** *

* A list of Stage resources that are associated with the ApiKey resource. *

*

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

* * @param stageKeys * A list of Stage resources that are associated with the ApiKey resource. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult withStageKeys(String... stageKeys) { if (this.stageKeys == null) { setStageKeys(new java.util.ArrayList(stageKeys.length)); } for (String ele : stageKeys) { this.stageKeys.add(ele); } return this; } /** *

* A list of Stage resources that are associated with the ApiKey resource. *

* * @param stageKeys * A list of Stage resources that are associated with the ApiKey resource. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult withStageKeys(java.util.Collection stageKeys) { setStageKeys(stageKeys); return this; } /** *

* The collection of tags. Each tag element is associated with a given resource. *

* * @return The collection of tags. Each tag element is associated with a given resource. */ public java.util.Map getTags() { return tags; } /** *

* The collection of tags. Each tag element is associated with a given resource. *

* * @param tags * The collection of tags. Each tag element is associated with a given resource. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* The collection of tags. Each tag element is associated with a given resource. *

* * @param tags * The collection of tags. Each tag element is associated with a given resource. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see CreateApiKeyResult#withTags * @returns a reference to this object so that method calls can be chained together. */ public CreateApiKeyResult 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 CreateApiKeyResult clearTagsEntries() { this.tags = null; 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 (getValue() != null) sb.append("Value: ").append(getValue()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getCustomerId() != null) sb.append("CustomerId: ").append(getCustomerId()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getEnabled() != null) sb.append("Enabled: ").append(getEnabled()).append(","); if (getCreatedDate() != null) sb.append("CreatedDate: ").append(getCreatedDate()).append(","); if (getLastUpdatedDate() != null) sb.append("LastUpdatedDate: ").append(getLastUpdatedDate()).append(","); if (getStageKeys() != null) sb.append("StageKeys: ").append(getStageKeys()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateApiKeyResult == false) return false; CreateApiKeyResult other = (CreateApiKeyResult) obj; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getValue() == null ^ this.getValue() == null) return false; if (other.getValue() != null && other.getValue().equals(this.getValue()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getCustomerId() == null ^ this.getCustomerId() == null) return false; if (other.getCustomerId() != null && other.getCustomerId().equals(this.getCustomerId()) == 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.getEnabled() == null ^ this.getEnabled() == null) return false; if (other.getEnabled() != null && other.getEnabled().equals(this.getEnabled()) == false) return false; if (other.getCreatedDate() == null ^ this.getCreatedDate() == null) return false; if (other.getCreatedDate() != null && other.getCreatedDate().equals(this.getCreatedDate()) == false) return false; if (other.getLastUpdatedDate() == null ^ this.getLastUpdatedDate() == null) return false; if (other.getLastUpdatedDate() != null && other.getLastUpdatedDate().equals(this.getLastUpdatedDate()) == false) return false; if (other.getStageKeys() == null ^ this.getStageKeys() == null) return false; if (other.getStageKeys() != null && other.getStageKeys().equals(this.getStageKeys()) == 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 + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getValue() == null) ? 0 : getValue().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getCustomerId() == null) ? 0 : getCustomerId().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getEnabled() == null) ? 0 : getEnabled().hashCode()); hashCode = prime * hashCode + ((getCreatedDate() == null) ? 0 : getCreatedDate().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedDate() == null) ? 0 : getLastUpdatedDate().hashCode()); hashCode = prime * hashCode + ((getStageKeys() == null) ? 0 : getStageKeys().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateApiKeyResult clone() { try { return (CreateApiKeyResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }