/* * 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. */ /* * Do not modify this file. This file is generated from the codebuild-2016-10-06.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CodeBuild.Model { /// /// Container for the parameters to the CreateWebhook operation. /// For an existing CodeBuild build project that has its source code stored in a GitHub /// or Bitbucket repository, enables CodeBuild to start rebuilding the source code every /// time a code change is pushed to the repository. /// /// /// /// If you enable webhooks for an CodeBuild project, and the project is used as a build /// step in CodePipeline, then two identical builds are created for each commit. One build /// is triggered through webhooks, and one through CodePipeline. Because billing is on /// a per-build basis, you are billed for both builds. Therefore, if you are using CodePipeline, /// we recommend that you disable webhooks in CodeBuild. In the CodeBuild console, clear /// the Webhook box. For more information, see step 5 in Change /// a Build Project's Settings. /// /// /// public partial class CreateWebhookRequest : AmazonCodeBuildRequest { private string _branchFilter; private WebhookBuildType _buildType; private List> _filterGroups = new List>(); private string _projectName; /// /// Gets and sets the property BranchFilter. /// /// A regular expression used to determine which repository branches are built when a /// webhook is triggered. If the name of a branch matches the regular expression, then /// it is built. If branchFilter is empty, then all branches are built. /// /// /// /// It is recommended that you use filterGroups instead of branchFilter. /// /// /// /// public string BranchFilter { get { return this._branchFilter; } set { this._branchFilter = value; } } // Check to see if BranchFilter property is set internal bool IsSetBranchFilter() { return this._branchFilter != null; } /// /// Gets and sets the property BuildType. /// /// Specifies the type of build this webhook will trigger. /// /// public WebhookBuildType BuildType { get { return this._buildType; } set { this._buildType = value; } } // Check to see if BuildType property is set internal bool IsSetBuildType() { return this._buildType != null; } /// /// Gets and sets the property FilterGroups. /// /// An array of arrays of WebhookFilter objects used to determine which webhooks /// are triggered. At least one WebhookFilter in the array must specify EVENT /// as its type. /// /// /// /// For a build to be triggered, at least one filter group in the filterGroups /// array must pass. For a filter group to pass, each of its filters must pass. /// /// public List> FilterGroups { get { return this._filterGroups; } set { this._filterGroups = value; } } // Check to see if FilterGroups property is set internal bool IsSetFilterGroups() { return this._filterGroups != null && this._filterGroups.Count > 0; } /// /// Gets and sets the property ProjectName. /// /// The name of the CodeBuild project. /// /// [AWSProperty(Required=true, Min=2, Max=255)] public string ProjectName { get { return this._projectName; } set { this._projectName = value; } } // Check to see if ProjectName property is set internal bool IsSetProjectName() { return this._projectName != null; } } }