Skip to content
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

Add tileDef sort attribute #1826

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.6.6",
"regenerated": "2024-05-23 10:59:59.851281",
"spec_repo_commit": "b829bfa2"
"regenerated": "2024-05-23 18:14:50.405657",
"spec_repo_commit": "95a954a4"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-05-23 10:59:59.869149",
"spec_repo_commit": "b829bfa2"
"regenerated": "2024-05-23 18:14:50.423297",
"spec_repo_commit": "95a954a4"
}
}
}
75 changes: 75 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3043,6 +3043,14 @@ components:
type: string
x-enum-varnames:
- METRIC
FormulaType:
description: Set the sort type to formula.
enum:
- formula
example: formula
type: string
x-enum-varnames:
- FORMULA
FreeTextWidgetDefinition:
description: Free text is a widget that allows you to add headings to your screenboard.
Commonly used to state the overall purpose of the dashboard. Only available
Expand Down Expand Up @@ -3411,6 +3419,8 @@ components:
$ref: '#/components/schemas/LogQueryDefinition'
security_query:
$ref: '#/components/schemas/LogQueryDefinition'
sort:
$ref: '#/components/schemas/WidgetSortBy'
type: object
GraphSnapshot:
description: Object representing a graph snapshot.
Expand All @@ -3431,6 +3441,14 @@ components:
example: https://app.datadoghq.com/s/f12345678/aaa-bbb-ccc
type: string
type: object
GroupType:
description: Set the sort type to group.
enum:
- group
example: group
type: string
x-enum-varnames:
- GROUP
GroupWidgetDefinition:
description: The groups widget allows you to keep similar graphs together on
your timeboard. Each group has a custom header, can hold one to many graphs,
Expand Down Expand Up @@ -16392,6 +16410,8 @@ components:
$ref: '#/components/schemas/LogQueryDefinition'
security_query:
$ref: '#/components/schemas/LogQueryDefinition'
sort:
$ref: '#/components/schemas/WidgetSortBy'
type: object
TagToHosts:
description: In this object, the key is the tag, the value is a list of host
Expand Down Expand Up @@ -16728,6 +16748,8 @@ components:
$ref: '#/components/schemas/LogQueryDefinition'
security_query:
$ref: '#/components/schemas/LogQueryDefinition'
sort:
$ref: '#/components/schemas/WidgetSortBy'
style:
$ref: '#/components/schemas/WidgetRequestStyle'
type: object
Expand Down Expand Up @@ -20939,6 +20961,24 @@ components:
order:
$ref: '#/components/schemas/QuerySortOrder'
type: object
WidgetFormulaSort:
description: The formula to sort the widget by.
properties:
index:
description: The index of the formula to sort by.
example: 0
format: int64
minimum: 0
type: integer
order:
$ref: '#/components/schemas/WidgetSort'
type:
$ref: '#/components/schemas/FormulaType'
required:
- type
- index
- order
type: object
WidgetFormulaStyle:
description: Styling options for widget formulas.
properties:
Expand All @@ -20953,6 +20993,22 @@ components:
format: int64
type: integer
type: object
WidgetGroupSort:
description: The group to sort the widget by.
properties:
name:
description: The name of the group.
example: group_name
type: string
order:
$ref: '#/components/schemas/WidgetSort'
type:
$ref: '#/components/schemas/GroupType'
required:
- type
- name
- order
type: object
WidgetGrouping:
description: The kind of grouping to use.
enum:
Expand Down Expand Up @@ -21328,6 +21384,25 @@ components:
x-enum-varnames:
- ASCENDING
- DESCENDING
WidgetSortBy:
description: The controls for sorting the widget.
properties:
count:
description: The number of items to limit the widget to.
format: int64
minimum: 0
type: integer
order_by:
description: The array of items to sort the widget by in order.
items:
$ref: '#/components/schemas/WidgetSortOrderBy'
type: array
type: object
WidgetSortOrderBy:
description: The item to sort the widget by.
oneOf:
- $ref: '#/components/schemas/WidgetFormulaSort'
- $ref: '#/components/schemas/WidgetGroupSort'
WidgetStyle:
description: Widget style definition.
properties:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2024-05-21T14:43:42.680Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2022-01-06T00:50:33.370Z
2024-05-15T20:07:40.997Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2022-09-22T15:06:29.061Z
2024-05-15T20:07:41.518Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2022-01-06T00:50:38.157Z
2024-05-15T20:07:41.983Z
Loading
Loading