software.amazon.awssdk.services.codebuild.model.ImportSourceCredentialsRequest Maven / Gradle / Ivy
Show all versions of codebuild Show documentation
/*
* 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.codebuild.model;
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.awscore.AwsRequestOverrideConfiguration;
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 ImportSourceCredentialsRequest extends CodeBuildRequest implements
ToCopyableBuilder {
private static final SdkField USERNAME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("username").getter(getter(ImportSourceCredentialsRequest::username)).setter(setter(Builder::username))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("username").build()).build();
private static final SdkField TOKEN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("token")
.getter(getter(ImportSourceCredentialsRequest::token)).setter(setter(Builder::token))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("token").build()).build();
private static final SdkField SERVER_TYPE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("serverType").getter(getter(ImportSourceCredentialsRequest::serverTypeAsString))
.setter(setter(Builder::serverType))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("serverType").build()).build();
private static final SdkField AUTH_TYPE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("authType").getter(getter(ImportSourceCredentialsRequest::authTypeAsString))
.setter(setter(Builder::authType))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("authType").build()).build();
private static final SdkField SHOULD_OVERWRITE_FIELD = SdkField. builder(MarshallingType.BOOLEAN)
.memberName("shouldOverwrite").getter(getter(ImportSourceCredentialsRequest::shouldOverwrite))
.setter(setter(Builder::shouldOverwrite))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("shouldOverwrite").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(USERNAME_FIELD, TOKEN_FIELD,
SERVER_TYPE_FIELD, AUTH_TYPE_FIELD, SHOULD_OVERWRITE_FIELD));
private final String username;
private final String token;
private final String serverType;
private final String authType;
private final Boolean shouldOverwrite;
private ImportSourceCredentialsRequest(BuilderImpl builder) {
super(builder);
this.username = builder.username;
this.token = builder.token;
this.serverType = builder.serverType;
this.authType = builder.authType;
this.shouldOverwrite = builder.shouldOverwrite;
}
/**
*
* The Bitbucket username when the authType
is BASIC_AUTH. This parameter is not valid for other types
* of source providers or connections.
*
*
* @return The Bitbucket username when the authType
is BASIC_AUTH. This parameter is not valid for
* other types of source providers or connections.
*/
public final String username() {
return username;
}
/**
*
* For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is the app password.
*
*
* @return For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is the app
* password.
*/
public final String token() {
return token;
}
/**
*
* The source provider used for this project.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #serverType} will
* return {@link ServerType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #serverTypeAsString}.
*
*
* @return The source provider used for this project.
* @see ServerType
*/
public final ServerType serverType() {
return ServerType.fromValue(serverType);
}
/**
*
* The source provider used for this project.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #serverType} will
* return {@link ServerType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #serverTypeAsString}.
*
*
* @return The source provider used for this project.
* @see ServerType
*/
public final String serverTypeAsString() {
return serverType;
}
/**
*
* The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An OAUTH
* connection is not supported by the API and must be created using the CodeBuild console.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #authType} will
* return {@link AuthType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #authTypeAsString}.
*
*
* @return The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An
* OAUTH connection is not supported by the API and must be created using the CodeBuild console.
* @see AuthType
*/
public final AuthType authType() {
return AuthType.fromValue(authType);
}
/**
*
* The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An OAUTH
* connection is not supported by the API and must be created using the CodeBuild console.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #authType} will
* return {@link AuthType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #authTypeAsString}.
*
*
* @return The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An
* OAUTH connection is not supported by the API and must be created using the CodeBuild console.
* @see AuthType
*/
public final String authTypeAsString() {
return authType;
}
/**
*
* Set to false
to prevent overwriting the repository source credentials. Set to true
to
* overwrite the repository source credentials. The default value is true
.
*
*
* @return Set to false
to prevent overwriting the repository source credentials. Set to
* true
to overwrite the repository source credentials. The default value is true
.
*/
public final Boolean shouldOverwrite() {
return shouldOverwrite;
}
@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 final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + super.hashCode();
hashCode = 31 * hashCode + Objects.hashCode(username());
hashCode = 31 * hashCode + Objects.hashCode(token());
hashCode = 31 * hashCode + Objects.hashCode(serverTypeAsString());
hashCode = 31 * hashCode + Objects.hashCode(authTypeAsString());
hashCode = 31 * hashCode + Objects.hashCode(shouldOverwrite());
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 ImportSourceCredentialsRequest)) {
return false;
}
ImportSourceCredentialsRequest other = (ImportSourceCredentialsRequest) obj;
return Objects.equals(username(), other.username()) && Objects.equals(token(), other.token())
&& Objects.equals(serverTypeAsString(), other.serverTypeAsString())
&& Objects.equals(authTypeAsString(), other.authTypeAsString())
&& Objects.equals(shouldOverwrite(), other.shouldOverwrite());
}
/**
* 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("ImportSourceCredentialsRequest").add("Username", username())
.add("Token", token() == null ? null : "*** Sensitive Data Redacted ***").add("ServerType", serverTypeAsString())
.add("AuthType", authTypeAsString()).add("ShouldOverwrite", shouldOverwrite()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "username":
return Optional.ofNullable(clazz.cast(username()));
case "token":
return Optional.ofNullable(clazz.cast(token()));
case "serverType":
return Optional.ofNullable(clazz.cast(serverTypeAsString()));
case "authType":
return Optional.ofNullable(clazz.cast(authTypeAsString()));
case "shouldOverwrite":
return Optional.ofNullable(clazz.cast(shouldOverwrite()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function