software.amazon.awssdk.services.codebuild.model.BuildGroup 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.io.Serializable;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
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.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Contains information about a batch build build group. Build groups are used to combine builds that can run in
* parallel, while still being able to set dependencies on other build groups.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class BuildGroup implements SdkPojo, Serializable, ToCopyableBuilder {
private static final SdkField IDENTIFIER_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("identifier").getter(getter(BuildGroup::identifier)).setter(setter(Builder::identifier))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("identifier").build()).build();
private static final SdkField> DEPENDS_ON_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("dependsOn")
.getter(getter(BuildGroup::dependsOn))
.setter(setter(Builder::dependsOn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("dependsOn").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.STRING)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final SdkField IGNORE_FAILURE_FIELD = SdkField. builder(MarshallingType.BOOLEAN)
.memberName("ignoreFailure").getter(getter(BuildGroup::ignoreFailure)).setter(setter(Builder::ignoreFailure))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ignoreFailure").build()).build();
private static final SdkField CURRENT_BUILD_SUMMARY_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("currentBuildSummary")
.getter(getter(BuildGroup::currentBuildSummary)).setter(setter(Builder::currentBuildSummary))
.constructor(BuildSummary::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("currentBuildSummary").build())
.build();
private static final SdkField> PRIOR_BUILD_SUMMARY_LIST_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("priorBuildSummaryList")
.getter(getter(BuildGroup::priorBuildSummaryList))
.setter(setter(Builder::priorBuildSummaryList))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("priorBuildSummaryList").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.SDK_POJO)
.constructor(BuildSummary::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(IDENTIFIER_FIELD,
DEPENDS_ON_FIELD, IGNORE_FAILURE_FIELD, CURRENT_BUILD_SUMMARY_FIELD, PRIOR_BUILD_SUMMARY_LIST_FIELD));
private static final Map> SDK_NAME_TO_FIELD = memberNameToFieldInitializer();
private static final long serialVersionUID = 1L;
private final String identifier;
private final List dependsOn;
private final Boolean ignoreFailure;
private final BuildSummary currentBuildSummary;
private final List priorBuildSummaryList;
private BuildGroup(BuilderImpl builder) {
this.identifier = builder.identifier;
this.dependsOn = builder.dependsOn;
this.ignoreFailure = builder.ignoreFailure;
this.currentBuildSummary = builder.currentBuildSummary;
this.priorBuildSummaryList = builder.priorBuildSummaryList;
}
/**
*
* Contains the identifier of the build group.
*
*
* @return Contains the identifier of the build group.
*/
public final String identifier() {
return identifier;
}
/**
* For responses, this returns true if the service returned a value for the DependsOn property. This DOES NOT check
* that the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). This is
* useful because the SDK will never return a null collection or map, but you may need to differentiate between the
* service returning nothing (or null) and the service returning an empty collection or map. For requests, this
* returns true if a value for the property was specified in the request builder, and false if a value was not
* specified.
*/
public final boolean hasDependsOn() {
return dependsOn != null && !(dependsOn instanceof SdkAutoConstructList);
}
/**
*
* An array of strings that contain the identifiers of the build groups that this build group depends on.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* This method will never return null. If you would like to know whether the service returned this field (so that
* you can differentiate between null and empty), you can use the {@link #hasDependsOn} method.
*
*
* @return An array of strings that contain the identifiers of the build groups that this build group depends on.
*/
public final List dependsOn() {
return dependsOn;
}
/**
*
* Specifies if failures in this build group can be ignored.
*
*
* @return Specifies if failures in this build group can be ignored.
*/
public final Boolean ignoreFailure() {
return ignoreFailure;
}
/**
*
* A BuildSummary
object that contains a summary of the current build group.
*
*
* @return A BuildSummary
object that contains a summary of the current build group.
*/
public final BuildSummary currentBuildSummary() {
return currentBuildSummary;
}
/**
* For responses, this returns true if the service returned a value for the PriorBuildSummaryList property. This
* DOES NOT check that the value is non-empty (for which, you should check the {@code isEmpty()} method on the
* property). This is useful because the SDK will never return a null collection or map, but you may need to
* differentiate between the service returning nothing (or null) and the service returning an empty collection or
* map. For requests, this returns true if a value for the property was specified in the request builder, and false
* if a value was not specified.
*/
public final boolean hasPriorBuildSummaryList() {
return priorBuildSummaryList != null && !(priorBuildSummaryList instanceof SdkAutoConstructList);
}
/**
*
* An array of BuildSummary
objects that contain summaries of previous build groups.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* This method will never return null. If you would like to know whether the service returned this field (so that
* you can differentiate between null and empty), you can use the {@link #hasPriorBuildSummaryList} method.
*
*
* @return An array of BuildSummary
objects that contain summaries of previous build groups.
*/
public final List priorBuildSummaryList() {
return priorBuildSummaryList;
}
@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 + Objects.hashCode(identifier());
hashCode = 31 * hashCode + Objects.hashCode(hasDependsOn() ? dependsOn() : null);
hashCode = 31 * hashCode + Objects.hashCode(ignoreFailure());
hashCode = 31 * hashCode + Objects.hashCode(currentBuildSummary());
hashCode = 31 * hashCode + Objects.hashCode(hasPriorBuildSummaryList() ? priorBuildSummaryList() : null);
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof BuildGroup)) {
return false;
}
BuildGroup other = (BuildGroup) obj;
return Objects.equals(identifier(), other.identifier()) && hasDependsOn() == other.hasDependsOn()
&& Objects.equals(dependsOn(), other.dependsOn()) && Objects.equals(ignoreFailure(), other.ignoreFailure())
&& Objects.equals(currentBuildSummary(), other.currentBuildSummary())
&& hasPriorBuildSummaryList() == other.hasPriorBuildSummaryList()
&& Objects.equals(priorBuildSummaryList(), other.priorBuildSummaryList());
}
/**
* 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("BuildGroup").add("Identifier", identifier())
.add("DependsOn", hasDependsOn() ? dependsOn() : null).add("IgnoreFailure", ignoreFailure())
.add("CurrentBuildSummary", currentBuildSummary())
.add("PriorBuildSummaryList", hasPriorBuildSummaryList() ? priorBuildSummaryList() : null).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "identifier":
return Optional.ofNullable(clazz.cast(identifier()));
case "dependsOn":
return Optional.ofNullable(clazz.cast(dependsOn()));
case "ignoreFailure":
return Optional.ofNullable(clazz.cast(ignoreFailure()));
case "currentBuildSummary":
return Optional.ofNullable(clazz.cast(currentBuildSummary()));
case "priorBuildSummaryList":
return Optional.ofNullable(clazz.cast(priorBuildSummaryList()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
@Override
public final Map> sdkFieldNameToField() {
return SDK_NAME_TO_FIELD;
}
private static Map> memberNameToFieldInitializer() {
Map> map = new HashMap<>();
map.put("identifier", IDENTIFIER_FIELD);
map.put("dependsOn", DEPENDS_ON_FIELD);
map.put("ignoreFailure", IGNORE_FAILURE_FIELD);
map.put("currentBuildSummary", CURRENT_BUILD_SUMMARY_FIELD);
map.put("priorBuildSummaryList", PRIOR_BUILD_SUMMARY_LIST_FIELD);
return Collections.unmodifiableMap(map);
}
private static Function