Skip to content

Commit a6db26e

Browse files
author
awstools
committed
feat(client-codebuild): Added test suite names to test case metadata
1 parent 04209f9 commit a6db26e

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

clients/client-codebuild/src/commands/DescribeTestCasesCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export interface DescribeTestCasesCommandOutput extends DescribeTestCasesOutput,
6060
* // durationInNanoSeconds: Number("long"),
6161
* // message: "STRING_VALUE",
6262
* // expired: new Date("TIMESTAMP"),
63+
* // testSuiteName: "STRING_VALUE",
6364
* // },
6465
* // ],
6566
* // };

clients/client-codebuild/src/models/models_0.ts

+6
Original file line numberDiff line numberDiff line change
@@ -6022,6 +6022,12 @@ export interface TestCase {
60226022
* @public
60236023
*/
60246024
expired?: Date | undefined;
6025+
6026+
/**
6027+
* <p>The name of the test suite that the test case is a part of.</p>
6028+
* @public
6029+
*/
6030+
testSuiteName?: string | undefined;
60256031
}
60266032

60276033
/**

clients/client-codebuild/src/protocols/Aws_json1_1.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3137,6 +3137,7 @@ const de_TestCase = (output: any, context: __SerdeContext): TestCase => {
31373137
reportArn: __expectString,
31383138
status: __expectString,
31393139
testRawDataPath: __expectString,
3140+
testSuiteName: __expectString,
31403141
}) as any;
31413142
};
31423143

codegen/sdk-codegen/aws-models/codebuild.json

+6
Original file line numberDiff line numberDiff line change
@@ -8735,6 +8735,12 @@
87358735
"traits": {
87368736
"smithy.api#documentation": "<p> The date and time a test case expires. A test case expires 30 days after it is\n created. An expired test case is not available to view in CodeBuild. </p>"
87378737
}
8738+
},
8739+
"testSuiteName": {
8740+
"target": "com.amazonaws.codebuild#String",
8741+
"traits": {
8742+
"smithy.api#documentation": "<p>The name of the test suite that the test case is a part of.</p>"
8743+
}
87388744
}
87398745
},
87408746
"traits": {

0 commit comments

Comments
 (0)