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

software.amazon.awssdk.services.ecr.model.CreateRepositoryRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.29.39
Show newest version
/*
 * 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.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 CreateRepositoryRequest extends AmazonWebServiceRequest implements
        ToCopyableBuilder {
    private final String repositoryName;

    private CreateRepositoryRequest(BuilderImpl builder) {
        this.repositoryName = builder.repositoryName;
    }

    /**
     * 

* The name to use for the repository. The repository name may be specified on its own (such as * nginx-web-app) or it can be prepended with a namespace to group the repository into a category (such * as project-a/nginx-web-app). *

* * @return The name to use for the repository. The repository name may be specified on its own (such as * nginx-web-app) or it can be prepended with a namespace to group the repository into a * category (such as project-a/nginx-web-app). */ public String repositoryName() { return repositoryName; } @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 + ((repositoryName() == null) ? 0 : repositoryName().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof CreateRepositoryRequest)) { return false; } CreateRepositoryRequest other = (CreateRepositoryRequest) obj; if (other.repositoryName() == null ^ this.repositoryName() == null) { return false; } if (other.repositoryName() != null && !other.repositoryName().equals(this.repositoryName())) { return false; } return true; } @Override public String toString() { StringBuilder sb = new StringBuilder("{"); if (repositoryName() != null) { sb.append("RepositoryName: ").append(repositoryName()).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 "repositoryName": return Optional.of(clazz.cast(repositoryName())); default: return Optional.empty(); } } public interface Builder extends CopyableBuilder { /** *

* The name to use for the repository. The repository name may be specified on its own (such as * nginx-web-app) or it can be prepended with a namespace to group the repository into a category * (such as project-a/nginx-web-app). *

* * @param repositoryName * The name to use for the repository. The repository name may be specified on its own (such as * nginx-web-app) or it can be prepended with a namespace to group the repository into a * category (such as project-a/nginx-web-app). * @return Returns a reference to this object so that method calls can be chained together. */ Builder repositoryName(String repositoryName); } static final class BuilderImpl implements Builder { private String repositoryName; private BuilderImpl() { } private BuilderImpl(CreateRepositoryRequest model) { repositoryName(model.repositoryName); } public final String getRepositoryName() { return repositoryName; } @Override public final Builder repositoryName(String repositoryName) { this.repositoryName = repositoryName; return this; } public final void setRepositoryName(String repositoryName) { this.repositoryName = repositoryName; } @Override public CreateRepositoryRequest build() { return new CreateRepositoryRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy