Skip to content

Commit

Permalink
Regenerate client from commit e74c9b0f of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Jan 13, 2023
1 parent 73feea0 commit 6e962e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
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.4",
"regenerated": "2023-01-12 19:46:01.914657",
"spec_repo_commit": "8506d30d"
"regenerated": "2023-01-13 14:59:48.301258",
"spec_repo_commit": "e74c9b0f"
},
"v2": {
"apigentools_version": "1.6.4",
"regenerated": "2023-01-12 19:46:01.928978",
"spec_repo_commit": "8506d30d"
"regenerated": "2023-01-13 14:59:48.312332",
"spec_repo_commit": "e74c9b0f"
}
}
}
1 change: 1 addition & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11477,6 +11477,7 @@ components:
items:
description: An individual value for a given time.
format: double
nullable: true
type: number
type: array
TimeseriesResponseValuesList:
Expand Down
5 changes: 3 additions & 2 deletions src/datadog_api_client/v2/model/timeseries_response_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from datadog_api_client.model_utils import (
ModelSimple,
cached_property,
none_type,
)


Expand All @@ -15,11 +16,11 @@ class TimeseriesResponseValues(ModelSimple):
Array of values for an individual formula or query.
:type value: [float]
:type value: [float, none_type]
"""

@cached_property
def openapi_types(_):
return {
"value": ([float],),
"value": ([float, none_type],),
}

0 comments on commit 6e962e6

Please sign in to comment.