Skip to content

Commit

Permalink
Increase limit on allowed number of graphs in split graph widget (#1856)
Browse files Browse the repository at this point in the history
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
  • Loading branch information
api-clients-generation-pipeline[bot] and ci.datadog-api-spec authored Jan 31, 2024
1 parent c59f474 commit 5d3e96a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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.6",
"regenerated": "2024-01-31 12:10:14.248647",
"spec_repo_commit": "52641937"
"regenerated": "2024-01-31 20:51:09.699607",
"spec_repo_commit": "e545b10b"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-01-31 12:10:14.263477",
"spec_repo_commit": "52641937"
"regenerated": "2024-01-31 20:51:09.736111",
"spec_repo_commit": "e545b10b"
}
}
}
4 changes: 2 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12867,7 +12867,7 @@ components:
description: Maximum number of graphs to display in the widget.
example: 24
format: int64
maximum: 100
maximum: 500
minimum: 1
type: integer
sort:
Expand All @@ -12883,7 +12883,7 @@ components:
description: Manual selection of tags making split graph widget static
items:
$ref: '#/components/schemas/SplitVectorEntry'
maxItems: 100
maxItems: 500
type: array
required:
- split_dimensions
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v1/model/split_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
class SplitConfig(ModelNormal):
validations = {
"limit": {
"inclusive_maximum": 100,
"inclusive_maximum": 500,
"inclusive_minimum": 1,
},
"split_dimensions": {
"max_items": 1,
"min_items": 1,
},
"static_splits": {
"max_items": 100,
"max_items": 500,
},
}

Expand Down

0 comments on commit 5d3e96a

Please sign in to comment.