Skip to content

Commit

Permalink
Regenerate client from commit 684dc00c of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Oct 22, 2024
1 parent 56f96c2 commit 0ac6476
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-21 20:59:46.944958",
"spec_repo_commit": "9ac9609b"
"regenerated": "2024-10-22 16:07:49.400569",
"spec_repo_commit": "684dc00c"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-21 20:59:46.962979",
"spec_repo_commit": "9ac9609b"
"regenerated": "2024-10-22 16:07:49.419137",
"spec_repo_commit": "684dc00c"
}
}
}
5 changes: 5 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16168,6 +16168,9 @@ components:
SyntheticsStepDetail:
description: Object describing a step for a Synthetic test.
properties:
allowFailure:
description: Whether or not the step was allowed to fail.
type: boolean
browserErrors:
description: Array of errors collected for a browser test.
items:
Expand All @@ -16185,6 +16188,8 @@ components:
error:
description: Error returned by the test.
type: string
failure:
$ref: '#/components/schemas/SyntheticsBrowserTestResultFailure'
playingTab:
$ref: '#/components/schemas/SyntheticsPlayingTab'
screenshotBucketKey:
Expand Down
17 changes: 17 additions & 0 deletions packages/datadog-api-client-v1/models/SyntheticsStepDetail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Copyright 2020-Present Datadog, Inc.
*/
import { SyntheticsBrowserError } from "./SyntheticsBrowserError";
import { SyntheticsBrowserTestResultFailure } from "./SyntheticsBrowserTestResultFailure";
import { SyntheticsCheckType } from "./SyntheticsCheckType";
import { SyntheticsCoreWebVitals } from "./SyntheticsCoreWebVitals";
import { SyntheticsPlayingTab } from "./SyntheticsPlayingTab";
Expand All @@ -16,6 +17,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
* Object describing a step for a Synthetic test.
*/
export class SyntheticsStepDetail {
/**
* Whether or not the step was allowed to fail.
*/
"allowFailure"?: boolean;
/**
* Array of errors collected for a browser test.
*/
Expand All @@ -36,6 +41,10 @@ export class SyntheticsStepDetail {
* Error returned by the test.
*/
"error"?: string;
/**
* The browser test failure details.
*/
"failure"?: SyntheticsBrowserTestResultFailure;
/**
* Navigate between different tabs for your browser test.
*/
Expand Down Expand Up @@ -102,6 +111,10 @@ export class SyntheticsStepDetail {
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap = {
allowFailure: {
baseName: "allowFailure",
type: "boolean",
},
browserErrors: {
baseName: "browserErrors",
type: "Array<SyntheticsBrowserError>",
Expand All @@ -123,6 +136,10 @@ export class SyntheticsStepDetail {
baseName: "error",
type: "string",
},
failure: {
baseName: "failure",
type: "SyntheticsBrowserTestResultFailure",
},
playingTab: {
baseName: "playingTab",
type: "SyntheticsPlayingTab",
Expand Down

0 comments on commit 0ac6476

Please sign in to comment.