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

com.amazonaws.services.codebuild.model.ProjectBuildBatchConfig Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Code Build module holds the client classes that are used for communicating with AWS Code Build.

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2019-2024 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 com.amazonaws.services.codebuild.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Contains configuration information about a batch build project. *

* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ProjectBuildBatchConfig implements Serializable, Cloneable, StructuredPojo { /** *

* Specifies the service role ARN for the batch build project. *

*/ private String serviceRole; /** *

* Specifies if the build artifacts for the batch build should be combined into a single artifact location. *

*/ private Boolean combineArtifacts; /** *

* A BatchRestrictions object that specifies the restrictions for the batch build. *

*/ private BatchRestrictions restrictions; /** *

* Specifies the maximum amount of time, in minutes, that the batch build must be completed in. *

*/ private Integer timeoutInMins; /** *

* Specifies how build status reports are sent to the source provider for the batch build. This property is only * used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your project is * configured to report build statuses to the source provider. *

*
*
REPORT_AGGREGATED_BATCH
*
*

* (Default) Aggregate all of the build statuses into a single status report. *

*
*
REPORT_INDIVIDUAL_BUILDS
*
*

* Send a separate status report for each individual build. *

*
*
*/ private String batchReportMode; /** *

* Specifies the service role ARN for the batch build project. *

* * @param serviceRole * Specifies the service role ARN for the batch build project. */ public void setServiceRole(String serviceRole) { this.serviceRole = serviceRole; } /** *

* Specifies the service role ARN for the batch build project. *

* * @return Specifies the service role ARN for the batch build project. */ public String getServiceRole() { return this.serviceRole; } /** *

* Specifies the service role ARN for the batch build project. *

* * @param serviceRole * Specifies the service role ARN for the batch build project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectBuildBatchConfig withServiceRole(String serviceRole) { setServiceRole(serviceRole); return this; } /** *

* Specifies if the build artifacts for the batch build should be combined into a single artifact location. *

* * @param combineArtifacts * Specifies if the build artifacts for the batch build should be combined into a single artifact location. */ public void setCombineArtifacts(Boolean combineArtifacts) { this.combineArtifacts = combineArtifacts; } /** *

* Specifies if the build artifacts for the batch build should be combined into a single artifact location. *

* * @return Specifies if the build artifacts for the batch build should be combined into a single artifact location. */ public Boolean getCombineArtifacts() { return this.combineArtifacts; } /** *

* Specifies if the build artifacts for the batch build should be combined into a single artifact location. *

* * @param combineArtifacts * Specifies if the build artifacts for the batch build should be combined into a single artifact location. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectBuildBatchConfig withCombineArtifacts(Boolean combineArtifacts) { setCombineArtifacts(combineArtifacts); return this; } /** *

* Specifies if the build artifacts for the batch build should be combined into a single artifact location. *

* * @return Specifies if the build artifacts for the batch build should be combined into a single artifact location. */ public Boolean isCombineArtifacts() { return this.combineArtifacts; } /** *

* A BatchRestrictions object that specifies the restrictions for the batch build. *

* * @param restrictions * A BatchRestrictions object that specifies the restrictions for the batch build. */ public void setRestrictions(BatchRestrictions restrictions) { this.restrictions = restrictions; } /** *

* A BatchRestrictions object that specifies the restrictions for the batch build. *

* * @return A BatchRestrictions object that specifies the restrictions for the batch build. */ public BatchRestrictions getRestrictions() { return this.restrictions; } /** *

* A BatchRestrictions object that specifies the restrictions for the batch build. *

* * @param restrictions * A BatchRestrictions object that specifies the restrictions for the batch build. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectBuildBatchConfig withRestrictions(BatchRestrictions restrictions) { setRestrictions(restrictions); return this; } /** *

* Specifies the maximum amount of time, in minutes, that the batch build must be completed in. *

* * @param timeoutInMins * Specifies the maximum amount of time, in minutes, that the batch build must be completed in. */ public void setTimeoutInMins(Integer timeoutInMins) { this.timeoutInMins = timeoutInMins; } /** *

* Specifies the maximum amount of time, in minutes, that the batch build must be completed in. *

* * @return Specifies the maximum amount of time, in minutes, that the batch build must be completed in. */ public Integer getTimeoutInMins() { return this.timeoutInMins; } /** *

* Specifies the maximum amount of time, in minutes, that the batch build must be completed in. *

* * @param timeoutInMins * Specifies the maximum amount of time, in minutes, that the batch build must be completed in. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectBuildBatchConfig withTimeoutInMins(Integer timeoutInMins) { setTimeoutInMins(timeoutInMins); return this; } /** *

* Specifies how build status reports are sent to the source provider for the batch build. This property is only * used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your project is * configured to report build statuses to the source provider. *

*
*
REPORT_AGGREGATED_BATCH
*
*

* (Default) Aggregate all of the build statuses into a single status report. *

*
*
REPORT_INDIVIDUAL_BUILDS
*
*

* Send a separate status report for each individual build. *

*
*
* * @param batchReportMode * Specifies how build status reports are sent to the source provider for the batch build. This property is * only used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your * project is configured to report build statuses to the source provider.

*
*
REPORT_AGGREGATED_BATCH
*
*

* (Default) Aggregate all of the build statuses into a single status report. *

*
*
REPORT_INDIVIDUAL_BUILDS
*
*

* Send a separate status report for each individual build. *

*
* @see BatchReportModeType */ public void setBatchReportMode(String batchReportMode) { this.batchReportMode = batchReportMode; } /** *

* Specifies how build status reports are sent to the source provider for the batch build. This property is only * used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your project is * configured to report build statuses to the source provider. *

*
*
REPORT_AGGREGATED_BATCH
*
*

* (Default) Aggregate all of the build statuses into a single status report. *

*
*
REPORT_INDIVIDUAL_BUILDS
*
*

* Send a separate status report for each individual build. *

*
*
* * @return Specifies how build status reports are sent to the source provider for the batch build. This property is * only used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your * project is configured to report build statuses to the source provider.

*
*
REPORT_AGGREGATED_BATCH
*
*

* (Default) Aggregate all of the build statuses into a single status report. *

*
*
REPORT_INDIVIDUAL_BUILDS
*
*

* Send a separate status report for each individual build. *

*
* @see BatchReportModeType */ public String getBatchReportMode() { return this.batchReportMode; } /** *

* Specifies how build status reports are sent to the source provider for the batch build. This property is only * used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your project is * configured to report build statuses to the source provider. *

*
*
REPORT_AGGREGATED_BATCH
*
*

* (Default) Aggregate all of the build statuses into a single status report. *

*
*
REPORT_INDIVIDUAL_BUILDS
*
*

* Send a separate status report for each individual build. *

*
*
* * @param batchReportMode * Specifies how build status reports are sent to the source provider for the batch build. This property is * only used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your * project is configured to report build statuses to the source provider.

*
*
REPORT_AGGREGATED_BATCH
*
*

* (Default) Aggregate all of the build statuses into a single status report. *

*
*
REPORT_INDIVIDUAL_BUILDS
*
*

* Send a separate status report for each individual build. *

*
* @return Returns a reference to this object so that method calls can be chained together. * @see BatchReportModeType */ public ProjectBuildBatchConfig withBatchReportMode(String batchReportMode) { setBatchReportMode(batchReportMode); return this; } /** *

* Specifies how build status reports are sent to the source provider for the batch build. This property is only * used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your project is * configured to report build statuses to the source provider. *

*
*
REPORT_AGGREGATED_BATCH
*
*

* (Default) Aggregate all of the build statuses into a single status report. *

*
*
REPORT_INDIVIDUAL_BUILDS
*
*

* Send a separate status report for each individual build. *

*
*
* * @param batchReportMode * Specifies how build status reports are sent to the source provider for the batch build. This property is * only used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your * project is configured to report build statuses to the source provider.

*
*
REPORT_AGGREGATED_BATCH
*
*

* (Default) Aggregate all of the build statuses into a single status report. *

*
*
REPORT_INDIVIDUAL_BUILDS
*
*

* Send a separate status report for each individual build. *

*
* @return Returns a reference to this object so that method calls can be chained together. * @see BatchReportModeType */ public ProjectBuildBatchConfig withBatchReportMode(BatchReportModeType batchReportMode) { this.batchReportMode = batchReportMode.toString(); return this; } /** * 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. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getServiceRole() != null) sb.append("ServiceRole: ").append(getServiceRole()).append(","); if (getCombineArtifacts() != null) sb.append("CombineArtifacts: ").append(getCombineArtifacts()).append(","); if (getRestrictions() != null) sb.append("Restrictions: ").append(getRestrictions()).append(","); if (getTimeoutInMins() != null) sb.append("TimeoutInMins: ").append(getTimeoutInMins()).append(","); if (getBatchReportMode() != null) sb.append("BatchReportMode: ").append(getBatchReportMode()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ProjectBuildBatchConfig == false) return false; ProjectBuildBatchConfig other = (ProjectBuildBatchConfig) obj; if (other.getServiceRole() == null ^ this.getServiceRole() == null) return false; if (other.getServiceRole() != null && other.getServiceRole().equals(this.getServiceRole()) == false) return false; if (other.getCombineArtifacts() == null ^ this.getCombineArtifacts() == null) return false; if (other.getCombineArtifacts() != null && other.getCombineArtifacts().equals(this.getCombineArtifacts()) == false) return false; if (other.getRestrictions() == null ^ this.getRestrictions() == null) return false; if (other.getRestrictions() != null && other.getRestrictions().equals(this.getRestrictions()) == false) return false; if (other.getTimeoutInMins() == null ^ this.getTimeoutInMins() == null) return false; if (other.getTimeoutInMins() != null && other.getTimeoutInMins().equals(this.getTimeoutInMins()) == false) return false; if (other.getBatchReportMode() == null ^ this.getBatchReportMode() == null) return false; if (other.getBatchReportMode() != null && other.getBatchReportMode().equals(this.getBatchReportMode()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getServiceRole() == null) ? 0 : getServiceRole().hashCode()); hashCode = prime * hashCode + ((getCombineArtifacts() == null) ? 0 : getCombineArtifacts().hashCode()); hashCode = prime * hashCode + ((getRestrictions() == null) ? 0 : getRestrictions().hashCode()); hashCode = prime * hashCode + ((getTimeoutInMins() == null) ? 0 : getTimeoutInMins().hashCode()); hashCode = prime * hashCode + ((getBatchReportMode() == null) ? 0 : getBatchReportMode().hashCode()); return hashCode; } @Override public ProjectBuildBatchConfig clone() { try { return (ProjectBuildBatchConfig) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.codebuild.model.transform.ProjectBuildBatchConfigMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy