Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-11-25 17:55:59.723742",
"spec_repo_commit": "3cfd102e"
"regenerated": "2024-11-25 19:59:33.247243",
"spec_repo_commit": "3c840607"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-11-25 17:55:59.742591",
"spec_repo_commit": "3cfd102e"
"regenerated": "2024-11-25 19:59:33.266976",
"spec_repo_commit": "3c840607"
}
}
}
10 changes: 5 additions & 5 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42837,9 +42837,9 @@ paths:
schema:
type: string
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
for cost beginning this month. Either start_month or start_date should be
specified, but not both. (start_month cannot go beyond two months in the
past). Provide an `end_month` to view month-over-month cost.'
for cost beginning this month. **Either start_month or start_date should
be specified, but not both.** (start_month cannot go beyond two months in
the past). Provide an `end_month` to view month-over-month cost.'
in: query
name: start_month
required: false
Expand All @@ -42855,8 +42855,8 @@ paths:
format: date-time
type: string
- description: 'Datetime in ISO-8601 format, UTC, precise to day: `[YYYY-MM-DD]`
for cost beginning this day. Either start_month or start_date should be
specified, but not both. (start_date cannot go beyond two months in the
for cost beginning this day. **Either start_month or start_date should be
specified, but not both.** (start_date cannot go beyond two months in the
past). Provide an `end_date` to view day-over-day cumulative cost.'
in: query
name: start_date
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -649,9 +649,9 @@ public GetEstimatedCostByOrgOptionalParameters view(String view) {
* Set startMonth.
*
* @param startMonth Datetime in ISO-8601 format, UTC, precise to month: <code>[YYYY-MM]</code>
* for cost beginning this month. Either start_month or start_date should be specified, but
* not both. (start_month cannot go beyond two months in the past). Provide an <code>
* end_month</code> to view month-over-month cost. (optional)
* for cost beginning this month. <strong>Either start_month or start_date should be
* specified, but not both.</strong> (start_month cannot go beyond two months in the past).
* Provide an <code>end_month</code> to view month-over-month cost. (optional)
* @return GetEstimatedCostByOrgOptionalParameters
*/
public GetEstimatedCostByOrgOptionalParameters startMonth(OffsetDateTime startMonth) {
Expand All @@ -675,9 +675,9 @@ public GetEstimatedCostByOrgOptionalParameters endMonth(OffsetDateTime endMonth)
* Set startDate.
*
* @param startDate Datetime in ISO-8601 format, UTC, precise to day: <code>[YYYY-MM-DD]</code>
* for cost beginning this day. Either start_month or start_date should be specified, but
* not both. (start_date cannot go beyond two months in the past). Provide an <code>end_date
* </code> to view day-over-day cumulative cost. (optional)
* for cost beginning this day. <strong>Either start_month or start_date should be
* specified, but not both.</strong> (start_date cannot go beyond two months in the past).
* Provide an <code>end_date</code> to view day-over-day cumulative cost. (optional)
* @return GetEstimatedCostByOrgOptionalParameters
*/
public GetEstimatedCostByOrgOptionalParameters startDate(OffsetDateTime startDate) {
Expand Down