Skip to content

Commit cc7a117

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 2b0735ab of spec repo
1 parent 9c880ed commit cc7a117

20 files changed

+1113
-32
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.5",
7-
"regenerated": "2023-09-13 14:37:22.996999",
8-
"spec_repo_commit": "ec46249d"
7+
"regenerated": "2023-09-14 14:17:07.853128",
8+
"spec_repo_commit": "2b0735ab"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-09-13 14:37:23.013431",
13-
"spec_repo_commit": "ec46249d"
12+
"regenerated": "2023-09-14 14:17:07.866562",
13+
"spec_repo_commit": "2b0735ab"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 169 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12043,6 +12043,169 @@ components:
1204312043
items:
1204412044
$ref: '#/components/schemas/SlackIntegrationChannel'
1204512045
type: array
12046+
SplitConfig:
12047+
description: Encapsulates all user choices about how to split a graph.
12048+
properties:
12049+
limit:
12050+
description: Maximum number of graphs to display in the widget.
12051+
example: 24
12052+
format: int64
12053+
maximum: 100
12054+
minimum: 1
12055+
type: integer
12056+
sort:
12057+
$ref: '#/components/schemas/SplitSort'
12058+
split_dimensions:
12059+
description: The dimension(s) on which to split the graph
12060+
items:
12061+
$ref: '#/components/schemas/SplitDimension'
12062+
maxItems: 1
12063+
minItems: 1
12064+
type: array
12065+
static_splits:
12066+
description: Manual selection of tags making split graph widget static
12067+
items:
12068+
$ref: '#/components/schemas/SplitVectorEntry'
12069+
maxItems: 100
12070+
type: array
12071+
required:
12072+
- split_dimensions
12073+
- limit
12074+
- sort
12075+
type: object
12076+
SplitConfigSortCompute:
12077+
description: Defines the metric and aggregation used as the sort value.
12078+
properties:
12079+
aggregation:
12080+
description: The metric to use for sorting graphs.
12081+
example: sum
12082+
type: string
12083+
metric:
12084+
description: How to aggregate the sort metric for the purposes of ordering.
12085+
example: system.cpu.user
12086+
type: string
12087+
required:
12088+
- aggregation
12089+
- metric
12090+
type: object
12091+
SplitDimension:
12092+
description: The property by which the graph splits
12093+
example:
12094+
one_graph_per: service
12095+
properties:
12096+
one_graph_per:
12097+
description: The system interprets this attribute differently depending
12098+
on the data source of the query being split. For metrics, it's a tag.
12099+
For the events platform, it's an attribute or tag.
12100+
example: service
12101+
type: string
12102+
required:
12103+
- one_graph_per
12104+
type: object
12105+
SplitGraphSourceWidgetDefinition:
12106+
description: The original widget we are splitting on.
12107+
oneOf:
12108+
- $ref: '#/components/schemas/ChangeWidgetDefinition'
12109+
- $ref: '#/components/schemas/GeomapWidgetDefinition'
12110+
- $ref: '#/components/schemas/QueryValueWidgetDefinition'
12111+
- $ref: '#/components/schemas/ScatterPlotWidgetDefinition'
12112+
- $ref: '#/components/schemas/SunburstWidgetDefinition'
12113+
- $ref: '#/components/schemas/TimeseriesWidgetDefinition'
12114+
- $ref: '#/components/schemas/ToplistWidgetDefinition'
12115+
- $ref: '#/components/schemas/TreeMapWidgetDefinition'
12116+
SplitGraphVizSize:
12117+
description: Size of the individual graphs in the split.
12118+
enum:
12119+
- xs
12120+
- sm
12121+
- md
12122+
- lg
12123+
example: sm
12124+
type: string
12125+
x-enum-varnames:
12126+
- XS
12127+
- SM
12128+
- MD
12129+
- LG
12130+
SplitGraphWidgetDefinition:
12131+
description: 'The split graph widget allows you to create repeating units of
12132+
a graph - one for each value in a group (for example: one per service)
12133+
12134+
'
12135+
properties:
12136+
has_uniform_y_axes:
12137+
description: Normalize y axes across graphs
12138+
type: boolean
12139+
size:
12140+
$ref: '#/components/schemas/SplitGraphVizSize'
12141+
source_widget_definition:
12142+
$ref: '#/components/schemas/SplitGraphSourceWidgetDefinition'
12143+
split_config:
12144+
$ref: '#/components/schemas/SplitConfig'
12145+
time:
12146+
$ref: '#/components/schemas/WidgetTime'
12147+
title:
12148+
description: Title of your widget.
12149+
type: string
12150+
type:
12151+
$ref: '#/components/schemas/SplitGraphWidgetDefinitionType'
12152+
required:
12153+
- size
12154+
- type
12155+
- source_widget_definition
12156+
- split_config
12157+
type: object
12158+
SplitGraphWidgetDefinitionType:
12159+
default: split_group
12160+
description: Type of the split graph widget
12161+
enum:
12162+
- split_group
12163+
example: split_group
12164+
type: string
12165+
x-enum-varnames:
12166+
- SPLIT_GROUP
12167+
SplitSort:
12168+
description: Controls the order in which graphs appear in the split.
12169+
properties:
12170+
compute:
12171+
$ref: '#/components/schemas/SplitConfigSortCompute'
12172+
order:
12173+
$ref: '#/components/schemas/WidgetSort'
12174+
required:
12175+
- order
12176+
type: object
12177+
SplitVectorEntry:
12178+
description: The widget displays one graph for each entry in this parameter.
12179+
example:
12180+
- tag_key: demo
12181+
tag_values:
12182+
- env
12183+
items:
12184+
$ref: '#/components/schemas/SplitVectorEntryItem'
12185+
minItems: 1
12186+
type: array
12187+
SplitVectorEntryItem:
12188+
description: The split graph list contains a graph for each value of the split
12189+
dimension.
12190+
minLength: 1
12191+
properties:
12192+
tag_key:
12193+
description: The tag key.
12194+
example: demo
12195+
minLength: 1
12196+
type: string
12197+
tag_values:
12198+
description: The tag values.
12199+
example:
12200+
- env
12201+
items:
12202+
minLength: 1
12203+
type: string
12204+
type: array
12205+
required:
12206+
- tag_key
12207+
- tag_values
12208+
type: object
1204612209
SuccessfulSignalUpdateResponse:
1204712210
description: Updated signal data following a successfully performed update.
1204812211
properties:
@@ -19510,30 +19673,31 @@ components:
1951019673
- $ref: '#/components/schemas/EventStreamWidgetDefinition'
1951119674
- $ref: '#/components/schemas/EventTimelineWidgetDefinition'
1951219675
- $ref: '#/components/schemas/FreeTextWidgetDefinition'
19676+
- $ref: '#/components/schemas/FunnelWidgetDefinition'
1951319677
- $ref: '#/components/schemas/GeomapWidgetDefinition'
1951419678
- $ref: '#/components/schemas/GroupWidgetDefinition'
1951519679
- $ref: '#/components/schemas/HeatMapWidgetDefinition'
1951619680
- $ref: '#/components/schemas/HostMapWidgetDefinition'
1951719681
- $ref: '#/components/schemas/IFrameWidgetDefinition'
1951819682
- $ref: '#/components/schemas/ImageWidgetDefinition'
19683+
- $ref: '#/components/schemas/ListStreamWidgetDefinition'
1951919684
- $ref: '#/components/schemas/LogStreamWidgetDefinition'
1952019685
- $ref: '#/components/schemas/MonitorSummaryWidgetDefinition'
1952119686
- $ref: '#/components/schemas/NoteWidgetDefinition'
1952219687
- $ref: '#/components/schemas/QueryValueWidgetDefinition'
1952319688
- $ref: '#/components/schemas/RunWorkflowWidgetDefinition'
19524-
- $ref: '#/components/schemas/ScatterPlotWidgetDefinition'
19525-
- $ref: '#/components/schemas/SLOWidgetDefinition'
1952619689
- $ref: '#/components/schemas/SLOListWidgetDefinition'
19690+
- $ref: '#/components/schemas/SLOWidgetDefinition'
19691+
- $ref: '#/components/schemas/ScatterPlotWidgetDefinition'
1952719692
- $ref: '#/components/schemas/ServiceMapWidgetDefinition'
1952819693
- $ref: '#/components/schemas/ServiceSummaryWidgetDefinition'
19694+
- $ref: '#/components/schemas/SplitGraphWidgetDefinition'
1952919695
- $ref: '#/components/schemas/SunburstWidgetDefinition'
1953019696
- $ref: '#/components/schemas/TableWidgetDefinition'
1953119697
- $ref: '#/components/schemas/TimeseriesWidgetDefinition'
1953219698
- $ref: '#/components/schemas/ToplistWidgetDefinition'
19533-
- $ref: '#/components/schemas/TreeMapWidgetDefinition'
19534-
- $ref: '#/components/schemas/ListStreamWidgetDefinition'
19535-
- $ref: '#/components/schemas/FunnelWidgetDefinition'
1953619699
- $ref: '#/components/schemas/TopologyMapWidgetDefinition'
19700+
- $ref: '#/components/schemas/TreeMapWidgetDefinition'
1953719701
WidgetDisplayType:
1953819702
description: Type of display to use for the request.
1953919703
enum:

docs/datadog_api_client.v1.model.rst

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3452,6 +3452,69 @@ slo\_widget\_definition\_type
34523452
:members:
34533453
:show-inheritance:
34543454

3455+
split\_config
3456+
-------------
3457+
3458+
.. automodule:: datadog_api_client.v1.model.split_config
3459+
:members:
3460+
:show-inheritance:
3461+
3462+
split\_config\_sort\_compute
3463+
----------------------------
3464+
3465+
.. automodule:: datadog_api_client.v1.model.split_config_sort_compute
3466+
:members:
3467+
:show-inheritance:
3468+
3469+
split\_dimension
3470+
----------------
3471+
3472+
.. automodule:: datadog_api_client.v1.model.split_dimension
3473+
:members:
3474+
:show-inheritance:
3475+
3476+
split\_graph\_source\_widget\_definition
3477+
----------------------------------------
3478+
3479+
.. automodule:: datadog_api_client.v1.model.split_graph_source_widget_definition
3480+
:members:
3481+
:show-inheritance:
3482+
3483+
split\_graph\_viz\_size
3484+
-----------------------
3485+
3486+
.. automodule:: datadog_api_client.v1.model.split_graph_viz_size
3487+
:members:
3488+
:show-inheritance:
3489+
3490+
split\_graph\_widget\_definition
3491+
--------------------------------
3492+
3493+
.. automodule:: datadog_api_client.v1.model.split_graph_widget_definition
3494+
:members:
3495+
:show-inheritance:
3496+
3497+
split\_graph\_widget\_definition\_type
3498+
--------------------------------------
3499+
3500+
.. automodule:: datadog_api_client.v1.model.split_graph_widget_definition_type
3501+
:members:
3502+
:show-inheritance:
3503+
3504+
split\_sort
3505+
-----------
3506+
3507+
.. automodule:: datadog_api_client.v1.model.split_sort
3508+
:members:
3509+
:show-inheritance:
3510+
3511+
split\_vector\_entry\_item
3512+
--------------------------
3513+
3514+
.. automodule:: datadog_api_client.v1.model.split_vector_entry_item
3515+
:members:
3516+
:show-inheritance:
3517+
34553518
successful\_signal\_update\_response
34563519
------------------------------------
34573520

0 commit comments

Comments
 (0)