Skip to content

Commit

Permalink
feat(client-codebuild): Added test suite names to test case metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Feb 14, 2025
1 parent 04209f9 commit a6db26e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export interface DescribeTestCasesCommandOutput extends DescribeTestCasesOutput,
* // durationInNanoSeconds: Number("long"),
* // message: "STRING_VALUE",
* // expired: new Date("TIMESTAMP"),
* // testSuiteName: "STRING_VALUE",
* // },
* // ],
* // };
Expand Down
6 changes: 6 additions & 0 deletions clients/client-codebuild/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6022,6 +6022,12 @@ export interface TestCase {
* @public
*/
expired?: Date | undefined;

/**
* <p>The name of the test suite that the test case is a part of.</p>
* @public
*/
testSuiteName?: string | undefined;
}

/**
Expand Down
1 change: 1 addition & 0 deletions clients/client-codebuild/src/protocols/Aws_json1_1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3137,6 +3137,7 @@ const de_TestCase = (output: any, context: __SerdeContext): TestCase => {
reportArn: __expectString,
status: __expectString,
testRawDataPath: __expectString,
testSuiteName: __expectString,
}) as any;
};

Expand Down
6 changes: 6 additions & 0 deletions codegen/sdk-codegen/aws-models/codebuild.json
Original file line number Diff line number Diff line change
Expand Up @@ -8735,6 +8735,12 @@
"traits": {
"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>"
}
},
"testSuiteName": {
"target": "com.amazonaws.codebuild#String",
"traits": {
"smithy.api#documentation": "<p>The name of the test suite that the test case is a part of.</p>"
}
}
},
"traits": {
Expand Down

0 comments on commit a6db26e

Please sign in to comment.