Skip to content

Commit 8438e12

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 335d4956 of spec repo
1 parent 954b2f8 commit 8438e12

File tree

4 files changed

+8
-8
lines changed

4 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": "2025-02-21 19:13:52.399645",
8-
"spec_repo_commit": "47fc5add"
7+
"regenerated": "2025-02-24 10:22:35.955702",
8+
"spec_repo_commit": "335d4956"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-02-21 19:13:52.415579",
13-
"spec_repo_commit": "47fc5add"
12+
"regenerated": "2025-02-24 10:22:35.971175",
13+
"spec_repo_commit": "335d4956"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15190,7 +15190,7 @@ components:
1519015190
description: Object describing the synthetics tests to trigger.
1519115191
properties:
1519215192
tests:
15193-
description: Individual synthetics test.
15193+
description: List of Synthetic tests with overrides.
1519415194
items:
1519515195
$ref: '#/components/schemas/SyntheticsCITest'
1519615196
type: array
@@ -17274,7 +17274,7 @@ components:
1727417274
description: Object describing the Synthetic tests to trigger.
1727517275
properties:
1727617276
tests:
17277-
description: Individual Synthetic test.
17277+
description: List of Synthetic tests.
1727817278
items:
1727917279
$ref: '#/components/schemas/SyntheticsTriggerTest'
1728017280
type: array

src/datadogV1/model/model_synthetics_ci_test_body.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::fmt::{self, Formatter};
1111
#[skip_serializing_none]
1212
#[derive(Clone, Debug, PartialEq, Serialize)]
1313
pub struct SyntheticsCITestBody {
14-
/// Individual synthetics test.
14+
/// List of Synthetic tests with overrides.
1515
#[serde(rename = "tests")]
1616
pub tests: Option<Vec<crate::datadogV1::model::SyntheticsCITest>>,
1717
#[serde(flatten)]

src/datadogV1/model/model_synthetics_trigger_body.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::fmt::{self, Formatter};
1111
#[skip_serializing_none]
1212
#[derive(Clone, Debug, PartialEq, Serialize)]
1313
pub struct SyntheticsTriggerBody {
14-
/// Individual Synthetic test.
14+
/// List of Synthetic tests.
1515
#[serde(rename = "tests")]
1616
pub tests: Vec<crate::datadogV1::model::SyntheticsTriggerTest>,
1717
#[serde(flatten)]

0 commit comments

Comments
 (0)