software.amazon.awssdk.services.ecr.model.GetAuthorizationTokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ecr Show documentation
Show all versions of ecr Show documentation
The AWS Java SDK for the Amazon EC2 Container Registry holds the client classes that are used for
communicating with the
Amazon EC2 Container Registry Service
/*
* Copyright 2012-2017 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.ecr.model;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.Optional;
import javax.annotation.Generated;
import software.amazon.awssdk.core.AmazonWebServiceRequest;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public class GetAuthorizationTokenRequest extends AmazonWebServiceRequest implements
ToCopyableBuilder {
private final List registryIds;
private GetAuthorizationTokenRequest(BuilderImpl builder) {
this.registryIds = builder.registryIds;
}
/**
*
* A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If you
* do not specify a registry, the default registry is assumed.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* @return A list of AWS account IDs that are associated with the registries for which to get authorization tokens.
* If you do not specify a registry, the default registry is assumed.
*/
public List registryIds() {
return registryIds;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + ((registryIds() == null) ? 0 : registryIds().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof GetAuthorizationTokenRequest)) {
return false;
}
GetAuthorizationTokenRequest other = (GetAuthorizationTokenRequest) obj;
if (other.registryIds() == null ^ this.registryIds() == null) {
return false;
}
if (other.registryIds() != null && !other.registryIds().equals(this.registryIds())) {
return false;
}
return true;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("{");
if (registryIds() != null) {
sb.append("RegistryIds: ").append(registryIds()).append(",");
}
if (sb.length() > 1) {
sb.setLength(sb.length() - 1);
}
sb.append("}");
return sb.toString();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "registryIds":
return Optional.of(clazz.cast(registryIds()));
default:
return Optional.empty();
}
}
public interface Builder extends CopyableBuilder {
/**
*
* A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If
* you do not specify a registry, the default registry is assumed.
*
*
* @param registryIds
* A list of AWS account IDs that are associated with the registries for which to get authorization
* tokens. If you do not specify a registry, the default registry is assumed.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder registryIds(Collection registryIds);
/**
*
* A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If
* you do not specify a registry, the default registry is assumed.
*
*
* @param registryIds
* A list of AWS account IDs that are associated with the registries for which to get authorization
* tokens. If you do not specify a registry, the default registry is assumed.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder registryIds(String... registryIds);
}
static final class BuilderImpl implements Builder {
private List registryIds;
private BuilderImpl() {
}
private BuilderImpl(GetAuthorizationTokenRequest model) {
registryIds(model.registryIds);
}
public final Collection getRegistryIds() {
return registryIds;
}
@Override
public final Builder registryIds(Collection registryIds) {
this.registryIds = GetAuthorizationTokenRegistryIdListCopier.copy(registryIds);
return this;
}
@Override
@SafeVarargs
public final Builder registryIds(String... registryIds) {
registryIds(Arrays.asList(registryIds));
return this;
}
public final void setRegistryIds(Collection registryIds) {
this.registryIds = GetAuthorizationTokenRegistryIdListCopier.copy(registryIds);
}
@Override
public GetAuthorizationTokenRequest build() {
return new GetAuthorizationTokenRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy