Skip to content

Specify format of report_id parameter #510

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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.4.1.dev11",
"regenerated": "2021-07-06 10:22:35.169011",
"spec_repo_commit": "cbb2404"
"regenerated": "2021-07-07 06:41:55.952850",
"spec_repo_commit": "0eabb4b"
},
"v2": {
"apigentools_version": "1.4.1.dev11",
"regenerated": "2021-07-06 10:23:00.356460",
"spec_repo_commit": "cbb2404"
"regenerated": "2021-07-07 06:42:22.677446",
"spec_repo_commit": "0eabb4b"
}
}
}
8 changes: 4 additions & 4 deletions docs/v1/UsageMeteringApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ configuration.unstable_operations["get_specified_daily_custom_reports"] = True
with ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = usage_metering_api.UsageMeteringApi(api_client)
report_id = "report_id_example" # str | The specified ID to search results for.
report_id = "report_id_example" # str | Date of the report in the format `YYYY-MM-DD`.

# example passing only required values which don't have defaults set
try:
Expand All @@ -371,7 +371,7 @@ with ApiClient(configuration) as api_client:

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**report_id** | **str**| The specified ID to search results for. |
**report_id** | **str**| Date of the report in the format `YYYY-MM-DD`. |

### Return type

Expand Down Expand Up @@ -420,7 +420,7 @@ configuration.unstable_operations["get_specified_monthly_custom_reports"] = True
with ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = usage_metering_api.UsageMeteringApi(api_client)
report_id = "report_id_example" # str | The specified ID to search results for.
report_id = "report_id_example" # str | Date of the report in the format `YYYY-MM-DD`.

# example passing only required values which don't have defaults set
try:
Expand All @@ -436,7 +436,7 @@ with ApiClient(configuration) as api_client:

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**report_id** | **str**| The specified ID to search results for. |
**report_id** | **str**| Date of the report in the format `YYYY-MM-DD`. |

### Return type

Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v1/api/usage_metering_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1784,7 +1784,7 @@ def get_specified_daily_custom_reports(self, report_id, **kwargs):
>>> result = thread.get()

Args:
report_id (str): The specified ID to search results for.
report_id (str): Date of the report in the format `YYYY-MM-DD`.

Keyword Args:
_return_http_data_only (bool): response data without head status
Expand Down Expand Up @@ -1827,7 +1827,7 @@ def get_specified_monthly_custom_reports(self, report_id, **kwargs):
>>> result = thread.get()

Args:
report_id (str): The specified ID to search results for.
report_id (str): Date of the report in the format `YYYY-MM-DD`.

Keyword Args:
_return_http_data_only (bool): response data without head status
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14055,7 +14055,7 @@ paths:
description: Get specified daily custom reports.
operationId: GetSpecifiedDailyCustomReports
parameters:
- description: The specified ID to search results for.
- description: Date of the report in the format `YYYY-MM-DD`.
in: path
name: report_id
required: true
Expand Down Expand Up @@ -18176,7 +18176,7 @@ paths:
description: Get specified monthly custom reports.
operationId: GetSpecifiedMonthlyCustomReports
parameters:
- description: The specified ID to search results for.
- description: Date of the report in the format `YYYY-MM-DD`.
in: path
name: report_id
required: true
Expand Down