@aws-sdk/client-codebuild 3.738.0 → 3.741.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -534,7 +534,8 @@ var ProjectVisibilityType = {
534
534
  };
535
535
  var WebhookBuildType = {
536
536
  BUILD: "BUILD",
537
- BUILD_BATCH: "BUILD_BATCH"
537
+ BUILD_BATCH: "BUILD_BATCH",
538
+ RUNNER_BUILDKITE_BUILD: "RUNNER_BUILDKITE_BUILD"
538
539
  };
539
540
  var WebhookFilterType = {
540
541
  ACTOR_ACCOUNT_ID: "ACTOR_ACCOUNT_ID",
@@ -204,6 +204,7 @@ export const ProjectVisibilityType = {
204
204
  export const WebhookBuildType = {
205
205
  BUILD: "BUILD",
206
206
  BUILD_BATCH: "BUILD_BATCH",
207
+ RUNNER_BUILDKITE_BUILD: "RUNNER_BUILDKITE_BUILD",
207
208
  };
208
209
  export const WebhookFilterType = {
209
210
  ACTOR_ACCOUNT_ID: "ACTOR_ACCOUNT_ID",
@@ -183,7 +183,7 @@ declare const BatchGetProjectsCommand_base: {
183
183
  * // },
184
184
  * // ],
185
185
  * // ],
186
- * // buildType: "BUILD" || "BUILD_BATCH",
186
+ * // buildType: "BUILD" || "BUILD_BATCH" || "RUNNER_BUILDKITE_BUILD",
187
187
  * // manualCreation: true || false,
188
188
  * // lastModifiedSecret: new Date("TIMESTAMP"),
189
189
  * // scopeConfiguration: { // ScopeConfiguration
@@ -350,7 +350,7 @@ declare const CreateProjectCommand_base: {
350
350
  * // },
351
351
  * // ],
352
352
  * // ],
353
- * // buildType: "BUILD" || "BUILD_BATCH",
353
+ * // buildType: "BUILD" || "BUILD_BATCH" || "RUNNER_BUILDKITE_BUILD",
354
354
  * // manualCreation: true || false,
355
355
  * // lastModifiedSecret: new Date("TIMESTAMP"),
356
356
  * // scopeConfiguration: { // ScopeConfiguration
@@ -56,7 +56,7 @@ declare const CreateWebhookCommand_base: {
56
56
  * },
57
57
  * ],
58
58
  * ],
59
- * buildType: "BUILD" || "BUILD_BATCH",
59
+ * buildType: "BUILD" || "BUILD_BATCH" || "RUNNER_BUILDKITE_BUILD",
60
60
  * manualCreation: true || false,
61
61
  * scopeConfiguration: { // ScopeConfiguration
62
62
  * name: "STRING_VALUE", // required
@@ -81,7 +81,7 @@ declare const CreateWebhookCommand_base: {
81
81
  * // },
82
82
  * // ],
83
83
  * // ],
84
- * // buildType: "BUILD" || "BUILD_BATCH",
84
+ * // buildType: "BUILD" || "BUILD_BATCH" || "RUNNER_BUILDKITE_BUILD",
85
85
  * // manualCreation: true || false,
86
86
  * // lastModifiedSecret: new Date("TIMESTAMP"),
87
87
  * // scopeConfiguration: { // ScopeConfiguration
@@ -350,7 +350,7 @@ declare const UpdateProjectCommand_base: {
350
350
  * // },
351
351
  * // ],
352
352
  * // ],
353
- * // buildType: "BUILD" || "BUILD_BATCH",
353
+ * // buildType: "BUILD" || "BUILD_BATCH" || "RUNNER_BUILDKITE_BUILD",
354
354
  * // manualCreation: true || false,
355
355
  * // lastModifiedSecret: new Date("TIMESTAMP"),
356
356
  * // scopeConfiguration: { // ScopeConfiguration
@@ -51,7 +51,7 @@ declare const UpdateWebhookCommand_base: {
51
51
  * },
52
52
  * ],
53
53
  * ],
54
- * buildType: "BUILD" || "BUILD_BATCH",
54
+ * buildType: "BUILD" || "BUILD_BATCH" || "RUNNER_BUILDKITE_BUILD",
55
55
  * };
56
56
  * const command = new UpdateWebhookCommand(input);
57
57
  * const response = await client.send(command);
@@ -70,7 +70,7 @@ declare const UpdateWebhookCommand_base: {
70
70
  * // },
71
71
  * // ],
72
72
  * // ],
73
- * // buildType: "BUILD" || "BUILD_BATCH",
73
+ * // buildType: "BUILD" || "BUILD_BATCH" || "RUNNER_BUILDKITE_BUILD",
74
74
  * // manualCreation: true || false,
75
75
  * // lastModifiedSecret: new Date("TIMESTAMP"),
76
76
  * // scopeConfiguration: { // ScopeConfiguration
@@ -3421,6 +3421,7 @@ export type ProjectVisibilityType = (typeof ProjectVisibilityType)[keyof typeof
3421
3421
  export declare const WebhookBuildType: {
3422
3422
  readonly BUILD: "BUILD";
3423
3423
  readonly BUILD_BATCH: "BUILD_BATCH";
3424
+ readonly RUNNER_BUILDKITE_BUILD: "RUNNER_BUILDKITE_BUILD";
3424
3425
  };
3425
3426
  /**
3426
3427
  * @public
@@ -3447,7 +3448,7 @@ export declare const WebhookFilterType: {
3447
3448
  */
3448
3449
  export type WebhookFilterType = (typeof WebhookFilterType)[keyof typeof WebhookFilterType];
3449
3450
  /**
3450
- * <p> A filter used to determine which webhooks trigger a build. </p>
3451
+ * <p>A filter used to determine which webhooks trigger a build. </p>
3451
3452
  * @public
3452
3453
  */
3453
3454
  export interface WebhookFilter {
@@ -3590,6 +3591,10 @@ export interface WebhookFilter {
3590
3591
  * <note>
3591
3592
  * <p> Works with <code>WORKFLOW_JOB_QUEUED</code> events only. </p>
3592
3593
  * </note>
3594
+ * <note>
3595
+ * <p>For CodeBuild-hosted Buildkite runner builds, WORKFLOW_NAME
3596
+ * filters will filter by pipeline name.</p>
3597
+ * </note>
3593
3598
  * </li>
3594
3599
  * </ul>
3595
3600
  * </li>
@@ -590,6 +590,7 @@ export type ProjectVisibilityType =
590
590
  export declare const WebhookBuildType: {
591
591
  readonly BUILD: "BUILD";
592
592
  readonly BUILD_BATCH: "BUILD_BATCH";
593
+ readonly RUNNER_BUILDKITE_BUILD: "RUNNER_BUILDKITE_BUILD";
593
594
  };
594
595
  export type WebhookBuildType =
595
596
  (typeof WebhookBuildType)[keyof typeof WebhookBuildType];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codebuild",
3
3
  "description": "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
4
- "version": "3.738.0",
4
+ "version": "3.741.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-codebuild",
@@ -21,7 +21,7 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.734.0",
24
- "@aws-sdk/credential-provider-node": "3.738.0",
24
+ "@aws-sdk/credential-provider-node": "3.741.0",
25
25
  "@aws-sdk/middleware-host-header": "3.734.0",
26
26
  "@aws-sdk/middleware-logger": "3.734.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.734.0",