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

software.amazon.awssdk.services.apigateway.model.GetApiKeyResponse Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon API Gateway module holds the client classes that are used for communicating with Amazon API Gateway

There is a newer version: 2.0.0-preview-11
Show newest version
/*
 * Copyright 2013-2018 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 software.amazon.awssdk.services.apigateway.model;

import java.time.Instant;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Generated;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* 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("software.amazon.awssdk:codegen") public class GetApiKeyResponse extends APIGatewayResponse implements ToCopyableBuilder { private final String id; private final String value; private final String name; private final String customerId; private final String description; private final Boolean enabled; private final Instant createdDate; private final Instant lastUpdatedDate; private final List stageKeys; private GetApiKeyResponse(BuilderImpl builder) { super(builder); this.id = builder.id; this.value = builder.value; this.name = builder.name; this.customerId = builder.customerId; this.description = builder.description; this.enabled = builder.enabled; this.createdDate = builder.createdDate; this.lastUpdatedDate = builder.lastUpdatedDate; this.stageKeys = builder.stageKeys; } /** *

* The identifier of the API Key. *

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

* The value of the API Key. *

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

* The name of the API Key. *

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

* 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 customerId() { return customerId; } /** *

* The description of the API Key. *

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

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

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

* The timestamp when the API Key was created. *

* * @return The timestamp when the API Key was created. */ public Instant createdDate() { return createdDate; } /** *

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

* * @return The timestamp when the API Key was last updated. */ public Instant lastUpdatedDate() { return lastUpdatedDate; } /** *

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

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

* * @return A list of Stage resources that are associated with the ApiKey resource. */ public List stageKeys() { return stageKeys; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(id()); hashCode = 31 * hashCode + Objects.hashCode(value()); hashCode = 31 * hashCode + Objects.hashCode(name()); hashCode = 31 * hashCode + Objects.hashCode(customerId()); hashCode = 31 * hashCode + Objects.hashCode(description()); hashCode = 31 * hashCode + Objects.hashCode(enabled()); hashCode = 31 * hashCode + Objects.hashCode(createdDate()); hashCode = 31 * hashCode + Objects.hashCode(lastUpdatedDate()); hashCode = 31 * hashCode + Objects.hashCode(stageKeys()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof GetApiKeyResponse)) { return false; } GetApiKeyResponse other = (GetApiKeyResponse) obj; return Objects.equals(id(), other.id()) && Objects.equals(value(), other.value()) && Objects.equals(name(), other.name()) && Objects.equals(customerId(), other.customerId()) && Objects.equals(description(), other.description()) && Objects.equals(enabled(), other.enabled()) && Objects.equals(createdDate(), other.createdDate()) && Objects.equals(lastUpdatedDate(), other.lastUpdatedDate()) && Objects.equals(stageKeys(), other.stageKeys()); } @Override public String toString() { return ToString.builder("GetApiKeyResponse").add("Id", id()).add("Value", value()).add("Name", name()) .add("CustomerId", customerId()).add("Description", description()).add("Enabled", enabled()) .add("CreatedDate", createdDate()).add("LastUpdatedDate", lastUpdatedDate()).add("StageKeys", stageKeys()) .build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "id": return Optional.of(clazz.cast(id())); case "value": return Optional.of(clazz.cast(value())); case "name": return Optional.of(clazz.cast(name())); case "customerId": return Optional.of(clazz.cast(customerId())); case "description": return Optional.of(clazz.cast(description())); case "enabled": return Optional.of(clazz.cast(enabled())); case "createdDate": return Optional.of(clazz.cast(createdDate())); case "lastUpdatedDate": return Optional.of(clazz.cast(lastUpdatedDate())); case "stageKeys": return Optional.of(clazz.cast(stageKeys())); default: return Optional.empty(); } } public interface Builder extends APIGatewayResponse.Builder, CopyableBuilder { /** *

* 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. */ Builder id(String id); /** *

* 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. */ Builder value(String value); /** *

* 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. */ Builder name(String name); /** *

* 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. */ Builder customerId(String customerId); /** *

* 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. */ Builder description(String description); /** *

* 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. */ Builder enabled(Boolean enabled); /** *

* 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. */ Builder createdDate(Instant createdDate); /** *

* 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. */ Builder lastUpdatedDate(Instant lastUpdatedDate); /** *

* 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. */ Builder stageKeys(Collection 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. * @return Returns a reference to this object so that method calls can be chained together. */ Builder stageKeys(String... stageKeys); } static final class BuilderImpl extends APIGatewayResponse.BuilderImpl implements Builder { private String id; private String value; private String name; private String customerId; private String description; private Boolean enabled; private Instant createdDate; private Instant lastUpdatedDate; private List stageKeys; private BuilderImpl() { } private BuilderImpl(GetApiKeyResponse model) { id(model.id); value(model.value); name(model.name); customerId(model.customerId); description(model.description); enabled(model.enabled); createdDate(model.createdDate); lastUpdatedDate(model.lastUpdatedDate); stageKeys(model.stageKeys); } public final String getId() { return id; } @Override public final Builder id(String id) { this.id = id; return this; } public final void setId(String id) { this.id = id; } public final String getValue() { return value; } @Override public final Builder value(String value) { this.value = value; return this; } public final void setValue(String value) { this.value = value; } public final String getName() { return name; } @Override public final Builder name(String name) { this.name = name; return this; } public final void setName(String name) { this.name = name; } public final String getCustomerId() { return customerId; } @Override public final Builder customerId(String customerId) { this.customerId = customerId; return this; } public final void setCustomerId(String customerId) { this.customerId = customerId; } public final String getDescription() { return description; } @Override public final Builder description(String description) { this.description = description; return this; } public final void setDescription(String description) { this.description = description; } public final Boolean getEnabled() { return enabled; } @Override public final Builder enabled(Boolean enabled) { this.enabled = enabled; return this; } public final void setEnabled(Boolean enabled) { this.enabled = enabled; } public final Instant getCreatedDate() { return createdDate; } @Override public final Builder createdDate(Instant createdDate) { this.createdDate = createdDate; return this; } public final void setCreatedDate(Instant createdDate) { this.createdDate = createdDate; } public final Instant getLastUpdatedDate() { return lastUpdatedDate; } @Override public final Builder lastUpdatedDate(Instant lastUpdatedDate) { this.lastUpdatedDate = lastUpdatedDate; return this; } public final void setLastUpdatedDate(Instant lastUpdatedDate) { this.lastUpdatedDate = lastUpdatedDate; } public final Collection getStageKeys() { return stageKeys; } @Override public final Builder stageKeys(Collection stageKeys) { this.stageKeys = ListOfStringCopier.copy(stageKeys); return this; } @Override @SafeVarargs public final Builder stageKeys(String... stageKeys) { stageKeys(Arrays.asList(stageKeys)); return this; } public final void setStageKeys(Collection stageKeys) { this.stageKeys = ListOfStringCopier.copy(stageKeys); } @Override public GetApiKeyResponse build() { return new GetApiKeyResponse(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy