Skip to content

Commit d6c4360

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
[RQ-5773]: emphasis on parameter description (#2586)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 1fae3ca commit d6c4360

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
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-11-25 17:55:59.723742",
8-
"spec_repo_commit": "3cfd102e"
7+
"regenerated": "2024-11-25 19:59:33.247243",
8+
"spec_repo_commit": "3c840607"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-11-25 17:55:59.742591",
13-
"spec_repo_commit": "3cfd102e"
12+
"regenerated": "2024-11-25 19:59:33.266976",
13+
"spec_repo_commit": "3c840607"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42837,9 +42837,9 @@ paths:
4283742837
schema:
4283842838
type: string
4283942839
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
42840-
for cost beginning this month. Either start_month or start_date should be
42841-
specified, but not both. (start_month cannot go beyond two months in the
42842-
past). Provide an `end_month` to view month-over-month cost.'
42840+
for cost beginning this month. **Either start_month or start_date should
42841+
be specified, but not both.** (start_month cannot go beyond two months in
42842+
the past). Provide an `end_month` to view month-over-month cost.'
4284342843
in: query
4284442844
name: start_month
4284542845
required: false
@@ -42855,8 +42855,8 @@ paths:
4285542855
format: date-time
4285642856
type: string
4285742857
- description: 'Datetime in ISO-8601 format, UTC, precise to day: `[YYYY-MM-DD]`
42858-
for cost beginning this day. Either start_month or start_date should be
42859-
specified, but not both. (start_date cannot go beyond two months in the
42858+
for cost beginning this day. **Either start_month or start_date should be
42859+
specified, but not both.** (start_date cannot go beyond two months in the
4286042860
past). Provide an `end_date` to view day-over-day cumulative cost.'
4286142861
in: query
4286242862
name: start_date

src/main/java/com/datadog/api/client/v2/api/UsageMeteringApi.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -649,9 +649,9 @@ public GetEstimatedCostByOrgOptionalParameters view(String view) {
649649
* Set startMonth.
650650
*
651651
* @param startMonth Datetime in ISO-8601 format, UTC, precise to month: <code>[YYYY-MM]</code>
652-
* for cost beginning this month. Either start_month or start_date should be specified, but
653-
* not both. (start_month cannot go beyond two months in the past). Provide an <code>
654-
* end_month</code> to view month-over-month cost. (optional)
652+
* for cost beginning this month. <strong>Either start_month or start_date should be
653+
* specified, but not both.</strong> (start_month cannot go beyond two months in the past).
654+
* Provide an <code>end_month</code> to view month-over-month cost. (optional)
655655
* @return GetEstimatedCostByOrgOptionalParameters
656656
*/
657657
public GetEstimatedCostByOrgOptionalParameters startMonth(OffsetDateTime startMonth) {
@@ -675,9 +675,9 @@ public GetEstimatedCostByOrgOptionalParameters endMonth(OffsetDateTime endMonth)
675675
* Set startDate.
676676
*
677677
* @param startDate Datetime in ISO-8601 format, UTC, precise to day: <code>[YYYY-MM-DD]</code>
678-
* for cost beginning this day. Either start_month or start_date should be specified, but
679-
* not both. (start_date cannot go beyond two months in the past). Provide an <code>end_date
680-
* </code> to view day-over-day cumulative cost. (optional)
678+
* for cost beginning this day. <strong>Either start_month or start_date should be
679+
* specified, but not both.</strong> (start_date cannot go beyond two months in the past).
680+
* Provide an <code>end_date</code> to view day-over-day cumulative cost. (optional)
681681
* @return GetEstimatedCostByOrgOptionalParameters
682682
*/
683683
public GetEstimatedCostByOrgOptionalParameters startDate(OffsetDateTime startDate) {

0 commit comments

Comments
 (0)