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

software.amazon.awssdk.services.sagemaker.model.DescribeCodeRepositoryResponse Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.28.4
Show newest version
/*
 * Copyright 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.sagemaker.model;

import java.time.Instant;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 */
@Generated("software.amazon.awssdk:codegen")
public final class DescribeCodeRepositoryResponse extends SageMakerResponse implements
        ToCopyableBuilder {
    private static final SdkField CODE_REPOSITORY_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("CodeRepositoryName").getter(getter(DescribeCodeRepositoryResponse::codeRepositoryName))
            .setter(setter(Builder::codeRepositoryName))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CodeRepositoryName").build())
            .build();

    private static final SdkField CODE_REPOSITORY_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("CodeRepositoryArn").getter(getter(DescribeCodeRepositoryResponse::codeRepositoryArn))
            .setter(setter(Builder::codeRepositoryArn))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CodeRepositoryArn").build()).build();

    private static final SdkField CREATION_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT)
            .memberName("CreationTime").getter(getter(DescribeCodeRepositoryResponse::creationTime))
            .setter(setter(Builder::creationTime))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreationTime").build()).build();

    private static final SdkField LAST_MODIFIED_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT)
            .memberName("LastModifiedTime").getter(getter(DescribeCodeRepositoryResponse::lastModifiedTime))
            .setter(setter(Builder::lastModifiedTime))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastModifiedTime").build()).build();

    private static final SdkField GIT_CONFIG_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("GitConfig").getter(getter(DescribeCodeRepositoryResponse::gitConfig)).setter(setter(Builder::gitConfig))
            .constructor(GitConfig::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("GitConfig").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CODE_REPOSITORY_NAME_FIELD,
            CODE_REPOSITORY_ARN_FIELD, CREATION_TIME_FIELD, LAST_MODIFIED_TIME_FIELD, GIT_CONFIG_FIELD));

    private final String codeRepositoryName;

    private final String codeRepositoryArn;

    private final Instant creationTime;

    private final Instant lastModifiedTime;

    private final GitConfig gitConfig;

    private DescribeCodeRepositoryResponse(BuilderImpl builder) {
        super(builder);
        this.codeRepositoryName = builder.codeRepositoryName;
        this.codeRepositoryArn = builder.codeRepositoryArn;
        this.creationTime = builder.creationTime;
        this.lastModifiedTime = builder.lastModifiedTime;
        this.gitConfig = builder.gitConfig;
    }

    /**
     * 

* The name of the Git repository. *

* * @return The name of the Git repository. */ public final String codeRepositoryName() { return codeRepositoryName; } /** *

* The Amazon Resource Name (ARN) of the Git repository. *

* * @return The Amazon Resource Name (ARN) of the Git repository. */ public final String codeRepositoryArn() { return codeRepositoryArn; } /** *

* The date and time that the repository was created. *

* * @return The date and time that the repository was created. */ public final Instant creationTime() { return creationTime; } /** *

* The date and time that the repository was last changed. *

* * @return The date and time that the repository was last changed. */ public final Instant lastModifiedTime() { return lastModifiedTime; } /** *

* Configuration details about the repository, including the URL where the repository is located, the default * branch, and the Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the * credentials used to access the repository. *

* * @return Configuration details about the repository, including the URL where the repository is located, the * default branch, and the Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that * contains the credentials used to access the repository. */ public final GitConfig gitConfig() { return gitConfig; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(codeRepositoryName()); hashCode = 31 * hashCode + Objects.hashCode(codeRepositoryArn()); hashCode = 31 * hashCode + Objects.hashCode(creationTime()); hashCode = 31 * hashCode + Objects.hashCode(lastModifiedTime()); hashCode = 31 * hashCode + Objects.hashCode(gitConfig()); return hashCode; } @Override public final boolean equals(Object obj) { return super.equals(obj) && equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof DescribeCodeRepositoryResponse)) { return false; } DescribeCodeRepositoryResponse other = (DescribeCodeRepositoryResponse) obj; return Objects.equals(codeRepositoryName(), other.codeRepositoryName()) && Objects.equals(codeRepositoryArn(), other.codeRepositoryArn()) && Objects.equals(creationTime(), other.creationTime()) && Objects.equals(lastModifiedTime(), other.lastModifiedTime()) && Objects.equals(gitConfig(), other.gitConfig()); } /** * 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. */ @Override public final String toString() { return ToString.builder("DescribeCodeRepositoryResponse").add("CodeRepositoryName", codeRepositoryName()) .add("CodeRepositoryArn", codeRepositoryArn()).add("CreationTime", creationTime()) .add("LastModifiedTime", lastModifiedTime()).add("GitConfig", gitConfig()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "CodeRepositoryName": return Optional.ofNullable(clazz.cast(codeRepositoryName())); case "CodeRepositoryArn": return Optional.ofNullable(clazz.cast(codeRepositoryArn())); case "CreationTime": return Optional.ofNullable(clazz.cast(creationTime())); case "LastModifiedTime": return Optional.ofNullable(clazz.cast(lastModifiedTime())); case "GitConfig": return Optional.ofNullable(clazz.cast(gitConfig())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((DescribeCodeRepositoryResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder { /** *

* The name of the Git repository. *

* * @param codeRepositoryName * The name of the Git repository. * @return Returns a reference to this object so that method calls can be chained together. */ Builder codeRepositoryName(String codeRepositoryName); /** *

* The Amazon Resource Name (ARN) of the Git repository. *

* * @param codeRepositoryArn * The Amazon Resource Name (ARN) of the Git repository. * @return Returns a reference to this object so that method calls can be chained together. */ Builder codeRepositoryArn(String codeRepositoryArn); /** *

* The date and time that the repository was created. *

* * @param creationTime * The date and time that the repository was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder creationTime(Instant creationTime); /** *

* The date and time that the repository was last changed. *

* * @param lastModifiedTime * The date and time that the repository was last changed. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastModifiedTime(Instant lastModifiedTime); /** *

* Configuration details about the repository, including the URL where the repository is located, the default * branch, and the Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains * the credentials used to access the repository. *

* * @param gitConfig * Configuration details about the repository, including the URL where the repository is located, the * default branch, and the Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret * that contains the credentials used to access the repository. * @return Returns a reference to this object so that method calls can be chained together. */ Builder gitConfig(GitConfig gitConfig); /** *

* Configuration details about the repository, including the URL where the repository is located, the default * branch, and the Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains * the credentials used to access the repository. *

* This is a convenience method that creates an instance of the {@link GitConfig.Builder} avoiding the need to * create one manually via {@link GitConfig#builder()}. * *

* When the {@link Consumer} completes, {@link GitConfig.Builder#build()} is called immediately and its result * is passed to {@link #gitConfig(GitConfig)}. * * @param gitConfig * a consumer that will call methods on {@link GitConfig.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #gitConfig(GitConfig) */ default Builder gitConfig(Consumer gitConfig) { return gitConfig(GitConfig.builder().applyMutation(gitConfig).build()); } } static final class BuilderImpl extends SageMakerResponse.BuilderImpl implements Builder { private String codeRepositoryName; private String codeRepositoryArn; private Instant creationTime; private Instant lastModifiedTime; private GitConfig gitConfig; private BuilderImpl() { } private BuilderImpl(DescribeCodeRepositoryResponse model) { super(model); codeRepositoryName(model.codeRepositoryName); codeRepositoryArn(model.codeRepositoryArn); creationTime(model.creationTime); lastModifiedTime(model.lastModifiedTime); gitConfig(model.gitConfig); } public final String getCodeRepositoryName() { return codeRepositoryName; } public final void setCodeRepositoryName(String codeRepositoryName) { this.codeRepositoryName = codeRepositoryName; } @Override public final Builder codeRepositoryName(String codeRepositoryName) { this.codeRepositoryName = codeRepositoryName; return this; } public final String getCodeRepositoryArn() { return codeRepositoryArn; } public final void setCodeRepositoryArn(String codeRepositoryArn) { this.codeRepositoryArn = codeRepositoryArn; } @Override public final Builder codeRepositoryArn(String codeRepositoryArn) { this.codeRepositoryArn = codeRepositoryArn; return this; } public final Instant getCreationTime() { return creationTime; } public final void setCreationTime(Instant creationTime) { this.creationTime = creationTime; } @Override public final Builder creationTime(Instant creationTime) { this.creationTime = creationTime; return this; } public final Instant getLastModifiedTime() { return lastModifiedTime; } public final void setLastModifiedTime(Instant lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; } @Override public final Builder lastModifiedTime(Instant lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; return this; } public final GitConfig.Builder getGitConfig() { return gitConfig != null ? gitConfig.toBuilder() : null; } public final void setGitConfig(GitConfig.BuilderImpl gitConfig) { this.gitConfig = gitConfig != null ? gitConfig.build() : null; } @Override public final Builder gitConfig(GitConfig gitConfig) { this.gitConfig = gitConfig; return this; } @Override public DescribeCodeRepositoryResponse build() { return new DescribeCodeRepositoryResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy