@aws-sdk/client-codebuild 3.744.0 → 3.749.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
@@ -2203,7 +2203,8 @@ var de_TestCase = /* @__PURE__ */ __name((output, context) => {
2203
2203
  prefix: import_smithy_client.expectString,
2204
2204
  reportArn: import_smithy_client.expectString,
2205
2205
  status: import_smithy_client.expectString,
2206
- testRawDataPath: import_smithy_client.expectString
2206
+ testRawDataPath: import_smithy_client.expectString,
2207
+ testSuiteName: import_smithy_client.expectString
2207
2208
  });
2208
2209
  }, "de_TestCase");
2209
2210
  var de_TestCases = /* @__PURE__ */ __name((output, context) => {
@@ -1525,6 +1525,7 @@ const de_TestCase = (output, context) => {
1525
1525
  reportArn: __expectString,
1526
1526
  status: __expectString,
1527
1527
  testRawDataPath: __expectString,
1528
+ testSuiteName: __expectString,
1528
1529
  });
1529
1530
  };
1530
1531
  const de_TestCases = (output, context) => {
@@ -59,6 +59,7 @@ declare const DescribeTestCasesCommand_base: {
59
59
  * // durationInNanoSeconds: Number("long"),
60
60
  * // message: "STRING_VALUE",
61
61
  * // expired: new Date("TIMESTAMP"),
62
+ * // testSuiteName: "STRING_VALUE",
62
63
  * // },
63
64
  * // ],
64
65
  * // };
@@ -3705,6 +3705,12 @@ export interface Webhook {
3705
3705
  filterGroups?: WebhookFilter[][] | undefined;
3706
3706
  /**
3707
3707
  * <p>Specifies the type of build this webhook will trigger.</p>
3708
+ * <note>
3709
+ * <p>
3710
+ * <code>RUNNER_BUILDKITE_BUILD</code> is only available for <code>NO_SOURCE</code> source type projects
3711
+ * configured for Buildkite runner builds. For more information about CodeBuild-hosted Buildkite runner builds, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/sample-runner-buildkite.html">Tutorial: Configure a CodeBuild-hosted Buildkite runner</a> in the <i>CodeBuild
3712
+ * user guide</i>.</p>
3713
+ * </note>
3708
3714
  * @public
3709
3715
  */
3710
3716
  buildType?: WebhookBuildType | undefined;
@@ -4960,6 +4966,12 @@ export interface CreateWebhookInput {
4960
4966
  filterGroups?: WebhookFilter[][] | undefined;
4961
4967
  /**
4962
4968
  * <p>Specifies the type of build this webhook will trigger.</p>
4969
+ * <note>
4970
+ * <p>
4971
+ * <code>RUNNER_BUILDKITE_BUILD</code> is only available for <code>NO_SOURCE</code> source type projects
4972
+ * configured for Buildkite runner builds. For more information about CodeBuild-hosted Buildkite runner builds, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/sample-runner-buildkite.html">Tutorial: Configure a CodeBuild-hosted Buildkite runner</a> in the <i>CodeBuild
4973
+ * user guide</i>.</p>
4974
+ * </note>
4963
4975
  * @public
4964
4976
  */
4965
4977
  buildType?: WebhookBuildType | undefined;
@@ -5460,6 +5472,11 @@ export interface TestCase {
5460
5472
  * @public
5461
5473
  */
5462
5474
  expired?: Date | undefined;
5475
+ /**
5476
+ * <p>The name of the test suite that the test case is a part of.</p>
5477
+ * @public
5478
+ */
5479
+ testSuiteName?: string | undefined;
5463
5480
  }
5464
5481
  /**
5465
5482
  * @public
@@ -7987,6 +8004,12 @@ export interface UpdateWebhookInput {
7987
8004
  filterGroups?: WebhookFilter[][] | undefined;
7988
8005
  /**
7989
8006
  * <p>Specifies the type of build this webhook will trigger.</p>
8007
+ * <note>
8008
+ * <p>
8009
+ * <code>RUNNER_BUILDKITE_BUILD</code> is only available for <code>NO_SOURCE</code> source type projects
8010
+ * configured for Buildkite runner builds. For more information about CodeBuild-hosted Buildkite runner builds, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/sample-runner-buildkite.html">Tutorial: Configure a CodeBuild-hosted Buildkite runner</a> in the <i>CodeBuild
8011
+ * user guide</i>.</p>
8012
+ * </note>
7990
8013
  * @public
7991
8014
  */
7992
8015
  buildType?: WebhookBuildType | undefined;
@@ -955,6 +955,7 @@ export interface TestCase {
955
955
  durationInNanoSeconds?: number | undefined;
956
956
  message?: string | undefined;
957
957
  expired?: Date | undefined;
958
+ testSuiteName?: string | undefined;
958
959
  }
959
960
  export interface DescribeTestCasesOutput {
960
961
  nextToken?: string | undefined;
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.744.0",
4
+ "version": "3.749.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",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.744.0",
24
- "@aws-sdk/credential-provider-node": "3.744.0",
23
+ "@aws-sdk/core": "3.749.0",
24
+ "@aws-sdk/credential-provider-node": "3.749.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",
28
- "@aws-sdk/middleware-user-agent": "3.744.0",
28
+ "@aws-sdk/middleware-user-agent": "3.749.0",
29
29
  "@aws-sdk/region-config-resolver": "3.734.0",
30
30
  "@aws-sdk/types": "3.734.0",
31
31
  "@aws-sdk/util-endpoints": "3.743.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.744.0",
33
+ "@aws-sdk/util-user-agent-node": "3.749.0",
34
34
  "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.2",
35
+ "@smithy/core": "^3.1.3",
36
36
  "@smithy/fetch-http-handler": "^5.0.1",
37
37
  "@smithy/hash-node": "^4.0.1",
38
38
  "@smithy/invalid-dependency": "^4.0.1",
39
39
  "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.3",
41
- "@smithy/middleware-retry": "^4.0.4",
40
+ "@smithy/middleware-endpoint": "^4.0.4",
41
+ "@smithy/middleware-retry": "^4.0.5",
42
42
  "@smithy/middleware-serde": "^4.0.2",
43
43
  "@smithy/middleware-stack": "^4.0.1",
44
44
  "@smithy/node-config-provider": "^4.0.1",
45
45
  "@smithy/node-http-handler": "^4.0.2",
46
46
  "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.3",
47
+ "@smithy/smithy-client": "^4.1.4",
48
48
  "@smithy/types": "^4.1.0",
49
49
  "@smithy/url-parser": "^4.0.1",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.4",
54
- "@smithy/util-defaults-mode-node": "^4.0.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.5",
54
+ "@smithy/util-defaults-mode-node": "^4.0.5",
55
55
  "@smithy/util-endpoints": "^3.0.1",
56
56
  "@smithy/util-middleware": "^4.0.1",
57
57
  "@smithy/util-retry": "^4.0.1",