Skip to content

Commit 7efd62b

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Remove duplicate words from text strings (#498)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent affdecb commit 7efd62b

7 files changed

+21
-23
lines changed

.apigentools-info

+4-4
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-11 09:59:44.838748",
8-
"spec_repo_commit": "b980d49f"
7+
"regenerated": "2025-02-12 15:28:26.243068",
8+
"spec_repo_commit": "b56263de"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-02-11 09:59:44.853754",
13-
"spec_repo_commit": "b980d49f"
12+
"regenerated": "2025-02-12 15:28:26.258871",
13+
"spec_repo_commit": "b56263de"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+10-12
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ components:
10341034
example: {}
10351035
properties:
10361036
ok:
1037-
description: An array of of Monitor IDs that can be safely deleted.
1037+
description: An array of Monitor IDs that can be safely deleted.
10381038
items:
10391039
description: ID of a monitor that can be safely deleted.
10401040
format: int64
@@ -1057,7 +1057,7 @@ components:
10571057
description: An array of service level objective objects.
10581058
properties:
10591059
ok:
1060-
description: An array of of SLO IDs that can be safely deleted.
1060+
description: An array of SLO IDs that can be safely deleted.
10611061
items:
10621062
description: An SLO ID.
10631063
type: string
@@ -10516,7 +10516,7 @@ components:
1051610516
description: A list of SLO correction objects.
1051710517
properties:
1051810518
data:
10519-
description: The list of of SLO corrections objects.
10519+
description: The list of SLO corrections objects.
1052010520
items:
1052110521
$ref: '#/components/schemas/SLOCorrection'
1052210522
type: array
@@ -15724,8 +15724,7 @@ components:
1572415724
description: User locator to find the element.
1572515725
properties:
1572615726
failTestOnCannotLocate:
15727-
description: Whether if the the test should fail if the element cannot be
15728-
found.
15727+
description: Whether if the test should fail if the element cannot be found.
1572915728
type: boolean
1573015729
values:
1573115730
description: Values of the user locator.
@@ -21713,9 +21712,8 @@ components:
2171321712
format: int64
2171421713
type: integer
2171521714
cspm_container_hwm_sum:
21716-
description: Shows the sum of the the high-water marks of Cloud Security
21717-
Management Pro containers over all hours in the current month for all
21718-
organizations.
21715+
description: Shows the sum of the high-water marks of Cloud Security Management
21716+
Pro containers over all hours in the current month for all organizations.
2171921717
format: int64
2172021718
type: integer
2172121719
cspm_gcp_host_top99p_sum:
@@ -21936,8 +21934,8 @@ components:
2193621934
format: int64
2193721935
type: integer
2193821936
incident_management_monthly_active_users_hwm_sum:
21939-
description: Shows sum of the the high-water marks of incident management
21940-
monthly active users in the current month for all organizations.
21937+
description: Shows sum of the high-water marks of incident management monthly
21938+
active users in the current month for all organizations.
2194121939
format: int64
2194221940
type: integer
2194321941
indexed_events_count_agg_sum:
@@ -21968,8 +21966,8 @@ components:
2196821966
format: int64
2196921967
type: integer
2197021968
last_updated:
21971-
description: Shows the the most recent hour in the current month for all
21972-
organizations for which all usages were calculated.
21969+
description: Shows the most recent hour in the current month for all organizations
21970+
for which all usages were calculated.
2197321971
format: date-time
2197421972
type: string
2197521973
live_indexed_events_agg_sum:

src/datadogV1/model/model_check_can_delete_monitor_response_data.rs

+1-1
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 CheckCanDeleteMonitorResponseData {
14-
/// An array of of Monitor IDs that can be safely deleted.
14+
/// An array of Monitor IDs that can be safely deleted.
1515
#[serde(rename = "ok")]
1616
pub ok: Option<Vec<i64>>,
1717
#[serde(flatten)]

src/datadogV1/model/model_check_can_delete_slo_response_data.rs

+1-1
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 CheckCanDeleteSLOResponseData {
14-
/// An array of of SLO IDs that can be safely deleted.
14+
/// An array of SLO IDs that can be safely deleted.
1515
#[serde(rename = "ok")]
1616
pub ok: Option<Vec<String>>,
1717
#[serde(flatten)]

src/datadogV1/model/model_slo_correction_list_response.rs

+1-1
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 SLOCorrectionListResponse {
14-
/// The list of of SLO corrections objects.
14+
/// The list of SLO corrections objects.
1515
#[serde(rename = "data")]
1616
pub data: Option<Vec<crate::datadogV1::model::SLOCorrection>>,
1717
/// Object describing meta attributes of response.

src/datadogV1/model/model_synthetics_mobile_step_params_element_user_locator.rs

+1-1
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 SyntheticsMobileStepParamsElementUserLocator {
14-
/// Whether if the the test should fail if the element cannot be found.
14+
/// Whether if the test should fail if the element cannot be found.
1515
#[serde(rename = "failTestOnCannotLocate")]
1616
pub fail_test_on_cannot_locate: Option<bool>,
1717
/// Values of the user locator.

src/datadogV1/model/model_usage_summary_response.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ pub struct UsageSummaryResponse {
161161
/// Shows the average number of Cloud Security Management Pro containers over all hours in the current month for all organizations.
162162
#[serde(rename = "cspm_container_avg_sum")]
163163
pub cspm_container_avg_sum: Option<i64>,
164-
/// Shows the sum of the the high-water marks of Cloud Security Management Pro containers over all hours in the current month for all organizations.
164+
/// Shows the sum of the high-water marks of Cloud Security Management Pro containers over all hours in the current month for all organizations.
165165
#[serde(rename = "cspm_container_hwm_sum")]
166166
pub cspm_container_hwm_sum: Option<i64>,
167167
/// Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current month for all organizations.
@@ -293,7 +293,7 @@ pub struct UsageSummaryResponse {
293293
/// Shows the 99th percentile of all Heroku dynos over all hours in the current month for all organizations.
294294
#[serde(rename = "heroku_host_top99p_sum")]
295295
pub heroku_host_top99p_sum: Option<i64>,
296-
/// Shows sum of the the high-water marks of incident management monthly active users in the current month for all organizations.
296+
/// Shows sum of the high-water marks of incident management monthly active users in the current month for all organizations.
297297
#[serde(rename = "incident_management_monthly_active_users_hwm_sum")]
298298
pub incident_management_monthly_active_users_hwm_sum: Option<i64>,
299299
/// Shows the sum of all log events indexed over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
@@ -312,7 +312,7 @@ pub struct UsageSummaryResponse {
312312
/// Shows the 99th percentile of all IoT devices over all hours in the current month of all organizations.
313313
#[serde(rename = "iot_device_top99p_sum")]
314314
pub iot_device_top99p_sum: Option<i64>,
315-
/// Shows the the most recent hour in the current month for all organizations for which all usages were calculated.
315+
/// Shows the most recent hour in the current month for all organizations for which all usages were calculated.
316316
#[serde(rename = "last_updated")]
317317
pub last_updated: Option<chrono::DateTime<chrono::Utc>>,
318318
/// Shows the sum of all live logs indexed over all hours in the current month for all organization (To be deprecated on October 1st, 2024).

0 commit comments

Comments
 (0)