Skip to content

Commit 847ca3f

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
change schema used in FastlyServicesResponse (#1828)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 031ea35 commit 847ca3f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2024-09-23 19:10:12.102309",
8-
"spec_repo_commit": "41592dc6"
7+
"regenerated": "2024-09-24 13:40:00.575999",
8+
"spec_repo_commit": "7752efd3"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-09-23 19:10:12.123133",
13-
"spec_repo_commit": "41592dc6"
12+
"regenerated": "2024-09-24 13:40:00.590776",
13+
"spec_repo_commit": "7752efd3"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9200,7 +9200,7 @@ components:
92009200
data:
92019201
description: The JSON:API data schema.
92029202
items:
9203-
$ref: '#/components/schemas/FastlyServiceResponse'
9203+
$ref: '#/components/schemas/FastlyServiceData'
92049204
type: array
92059205
type: object
92069206
Finding:

packages/datadog-api-client-v2/models/FastlyServicesResponse.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This product includes software developed at Datadog (https://www.datadoghq.com/).
44
* Copyright 2020-Present Datadog, Inc.
55
*/
6-
import { FastlyServiceResponse } from "./FastlyServiceResponse";
6+
import { FastlyServiceData } from "./FastlyServiceData";
77

88
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
99

@@ -14,7 +14,7 @@ export class FastlyServicesResponse {
1414
/**
1515
* The JSON:API data schema.
1616
*/
17-
"data"?: Array<FastlyServiceResponse>;
17+
"data"?: Array<FastlyServiceData>;
1818

1919
/**
2020
* A container for additional, undeclared properties.
@@ -34,7 +34,7 @@ export class FastlyServicesResponse {
3434
static readonly attributeTypeMap: AttributeTypeMap = {
3535
data: {
3636
baseName: "data",
37-
type: "Array<FastlyServiceResponse>",
37+
type: "Array<FastlyServiceData>",
3838
},
3939
additionalProperties: {
4040
baseName: "additionalProperties",

0 commit comments

Comments
 (0)