Skip to content

Commit

Permalink
Regenerate client from commit c2e7326e of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Jan 31, 2024
1 parent c59f474 commit 3697195
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 15:55:45.182987",
"spec_repo_commit": "c2e7326e"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-01-31 12:10:14.263477",
"spec_repo_commit": "52641937"
"regenerated": "2024-01-31 15:55:45.196310",
"spec_repo_commit": "c2e7326e"
}
}
}
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 3697195

Please sign in to comment.