Skip to content

Commit 7994bd3

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 07e8561 of spec repo
1 parent 290cd23 commit 7994bd3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59588,13 +59588,14 @@ paths:
5958859588
results.'
5958959589
operationId: ListFleetAgents
5959059590
parameters:
59591-
- description: Page number for pagination (must be greater than 0).
59591+
- description: Page number for pagination (starts at 0).
5959259592
in: query
5959359593
name: page_number
5959459594
required: false
5959559595
schema:
59596+
default: 0
5959659597
format: int64
59597-
minimum: 1
59598+
minimum: 0
5959859599
type: integer
5959959600
- description: Number of results per page (must be greater than 0 and less than
5960059601
or equal to 100).

src/datadogV2/api/api_fleet_automation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ impl GetFleetDeploymentOptionalParams {
3838
#[non_exhaustive]
3939
#[derive(Clone, Default, Debug)]
4040
pub struct ListFleetAgentsOptionalParams {
41-
/// Page number for pagination (must be greater than 0).
41+
/// Page number for pagination (starts at 0).
4242
pub page_number: Option<i64>,
4343
/// Number of results per page (must be greater than 0 and less than or equal to 100).
4444
pub page_size: Option<i64>,
@@ -53,7 +53,7 @@ pub struct ListFleetAgentsOptionalParams {
5353
}
5454

5555
impl ListFleetAgentsOptionalParams {
56-
/// Page number for pagination (must be greater than 0).
56+
/// Page number for pagination (starts at 0).
5757
pub fn page_number(mut self, value: i64) -> Self {
5858
self.page_number = Some(value);
5959
self

0 commit comments

Comments
 (0)