Skip to content

Commit adff7d8

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit ec2ca83e17d34f008cde724152d0b86df99930d5 of spec repo (#2161)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 2336392 commit adff7d8

File tree

94 files changed

+331
-365
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+331
-365
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": "2025-04-11 18:09:56.247353",
8-
"spec_repo_commit": "c4733a5"
7+
"regenerated": "2025-04-14 19:48:43.203674",
8+
"spec_repo_commit": "ec2ca83"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-04-11 18:09:56.263546",
13-
"spec_repo_commit": "c4733a5"
12+
"regenerated": "2025-04-14 19:48:43.219370",
13+
"spec_repo_commit": "ec2ca83"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25398,9 +25398,9 @@ components:
2539825398
type: string
2539925399
rate:
2540025400
description: 'Sample rate to apply to spans going through this retention
25401-
filter,
25401+
filter.
2540225402

25403-
a value of 1.0 keeps all spans matching the query.'
25403+
A value of 1.0 keeps all spans matching the query.'
2540425404
example: 1.0
2540525405
format: double
2540625406
type: number
@@ -25465,9 +25465,9 @@ components:
2546525465
type: string
2546625466
rate:
2546725467
description: 'Sample rate to apply to spans going through this retention
25468-
filter,
25468+
filter.
2546925469

25470-
a value of 1.0 keeps all spans matching the query.'
25470+
A value of 1.0 keeps all spans matching the query.'
2547125471
example: 1.0
2547225472
format: double
2547325473
type: number
@@ -25498,9 +25498,9 @@ components:
2549825498
type: string
2549925499
rate:
2550025500
description: 'Sample rate to apply to spans going through this retention
25501-
filter,
25501+
filter.
2550225502

25503-
a value of 1.0 keeps all spans matching the query.'
25503+
A value of 1.0 keeps all spans matching the query.'
2550425504
example: 1.0
2550525505
format: double
2550625506
type: number
@@ -25577,9 +25577,9 @@ components:
2557725577
type: string
2557825578
rate:
2557925579
description: 'Sample rate to apply to spans going through this retention
25580-
filter,
25580+
filter.
2558125581

25582-
a value of 1.0 keeps all spans matching the query.'
25582+
A value of 1.0 keeps all spans matching the query.'
2558325583
example: 1.0
2558425584
format: double
2558525585
type: number
@@ -46074,6 +46074,13 @@ paths:
4607446074
required: true
4607546075
schema:
4607646076
type: string
46077+
- description: Whether to get the IP addresses of the interfaces.
46078+
example: true
46079+
in: query
46080+
name: get_ip_addresses
46081+
required: false
46082+
schema:
46083+
type: boolean
4607746084
responses:
4607846085
'200':
4607946086
content:

features/v2/network_device_monitoring.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ Feature: Network Device Monitoring
7979
Scenario: Get the list of interfaces of the device returns "OK" response
8080
Given new "GetInterfaces" request
8181
And request contains "device_id" parameter with value "default:1.2.3.4"
82+
And request contains "get_ip_addresses" parameter with value true
8283
When the request is sent
8384
Then the response status is 200 OK
8485
And the response "data[0].type" is equal to "interface"

services/action_connection/src/v2/ActionConnectionApi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class ActionConnectionApiRequestFactory extends BaseAPIRequestFactory {
4747
]);
4848
requestContext.setHeaderParam("Content-Type", contentType);
4949
const serializedBody = ObjectSerializer.stringify(
50-
ObjectSerializer.serialize("body", "CreateActionConnectionRequest", ""),
50+
ObjectSerializer.serialize(body, "CreateActionConnectionRequest", ""),
5151
contentType,
5252
);
5353
requestContext.setBody(serializedBody);
@@ -163,7 +163,7 @@ export class ActionConnectionApiRequestFactory extends BaseAPIRequestFactory {
163163
]);
164164
requestContext.setHeaderParam("Content-Type", contentType);
165165
const serializedBody = ObjectSerializer.stringify(
166-
ObjectSerializer.serialize("body", "UpdateActionConnectionRequest", ""),
166+
ObjectSerializer.serialize(body, "UpdateActionConnectionRequest", ""),
167167
contentType,
168168
);
169169
requestContext.setBody(serializedBody);

services/agentless_scanning/src/v2/AgentlessScanningApi.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class AgentlessScanningApiRequestFactory extends BaseAPIRequestFactory {
4949
]);
5050
requestContext.setHeaderParam("Content-Type", contentType);
5151
const serializedBody = ObjectSerializer.stringify(
52-
ObjectSerializer.serialize("body", "AwsOnDemandCreateRequest", ""),
52+
ObjectSerializer.serialize(body, "AwsOnDemandCreateRequest", ""),
5353
contentType,
5454
);
5555
requestContext.setBody(serializedBody);
@@ -90,7 +90,7 @@ export class AgentlessScanningApiRequestFactory extends BaseAPIRequestFactory {
9090
]);
9191
requestContext.setHeaderParam("Content-Type", contentType);
9292
const serializedBody = ObjectSerializer.stringify(
93-
ObjectSerializer.serialize("body", "AwsScanOptionsCreateRequest", ""),
93+
ObjectSerializer.serialize(body, "AwsScanOptionsCreateRequest", ""),
9494
contentType,
9595
);
9696
requestContext.setBody(serializedBody);
@@ -257,7 +257,7 @@ export class AgentlessScanningApiRequestFactory extends BaseAPIRequestFactory {
257257
]);
258258
requestContext.setHeaderParam("Content-Type", contentType);
259259
const serializedBody = ObjectSerializer.stringify(
260-
ObjectSerializer.serialize("body", "AwsScanOptionsUpdateRequest", ""),
260+
ObjectSerializer.serialize(body, "AwsScanOptionsUpdateRequest", ""),
261261
contentType,
262262
);
263263
requestContext.setBody(serializedBody);

services/apm_retention_filters/src/v2/APMRetentionFiltersApi.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class APMRetentionFiltersApiRequestFactory extends BaseAPIRequestFactory
4848
]);
4949
requestContext.setHeaderParam("Content-Type", contentType);
5050
const serializedBody = ObjectSerializer.stringify(
51-
ObjectSerializer.serialize("body", "RetentionFilterCreateRequest", ""),
51+
ObjectSerializer.serialize(body, "RetentionFilterCreateRequest", ""),
5252
contentType,
5353
);
5454
requestContext.setBody(serializedBody);
@@ -181,7 +181,7 @@ export class APMRetentionFiltersApiRequestFactory extends BaseAPIRequestFactory
181181
]);
182182
requestContext.setHeaderParam("Content-Type", contentType);
183183
const serializedBody = ObjectSerializer.stringify(
184-
ObjectSerializer.serialize("body", "ReorderRetentionFiltersRequest", ""),
184+
ObjectSerializer.serialize(body, "ReorderRetentionFiltersRequest", ""),
185185
contentType,
186186
);
187187
requestContext.setBody(serializedBody);
@@ -232,7 +232,7 @@ export class APMRetentionFiltersApiRequestFactory extends BaseAPIRequestFactory
232232
]);
233233
requestContext.setHeaderParam("Content-Type", contentType);
234234
const serializedBody = ObjectSerializer.stringify(
235-
ObjectSerializer.serialize("body", "RetentionFilterUpdateRequest", ""),
235+
ObjectSerializer.serialize(body, "RetentionFilterUpdateRequest", ""),
236236
contentType,
237237
);
238238
requestContext.setBody(serializedBody);

services/apm_retention_filters/src/v2/models/RetentionFilterAllAttributes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ export class RetentionFilterAllAttributes {
4848
*/
4949
"name"?: string;
5050
/**
51-
* Sample rate to apply to spans going through this retention filter,
52-
* a value of 1.0 keeps all spans matching the query.
51+
* Sample rate to apply to spans going through this retention filter.
52+
* A value of 1.0 keeps all spans matching the query.
5353
*/
5454
"rate"?: number;
5555
/**

services/apm_retention_filters/src/v2/models/RetentionFilterAttributes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ export class RetentionFilterAttributes {
4848
*/
4949
"name"?: string;
5050
/**
51-
* Sample rate to apply to spans going through this retention filter,
52-
* a value of 1.0 keeps all spans matching the query.
51+
* Sample rate to apply to spans going through this retention filter.
52+
* A value of 1.0 keeps all spans matching the query.
5353
*/
5454
"rate"?: number;
5555
/**

services/apm_retention_filters/src/v2/models/RetentionFilterCreateAttributes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export class RetentionFilterCreateAttributes {
2424
*/
2525
"name": string;
2626
/**
27-
* Sample rate to apply to spans going through this retention filter,
28-
* a value of 1.0 keeps all spans matching the query.
27+
* Sample rate to apply to spans going through this retention filter.
28+
* A value of 1.0 keeps all spans matching the query.
2929
*/
3030
"rate": number;
3131
/**

services/apm_retention_filters/src/v2/models/RetentionFilterUpdateAttributes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export class RetentionFilterUpdateAttributes {
2424
*/
2525
"name": string;
2626
/**
27-
* Sample rate to apply to spans going through this retention filter,
28-
* a value of 1.0 keeps all spans matching the query.
27+
* Sample rate to apply to spans going through this retention filter.
28+
* A value of 1.0 keeps all spans matching the query.
2929
*/
3030
"rate": number;
3131
/**

0 commit comments

Comments
 (0)