Skip to content

Commit d91f9c5

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 979dec02 of spec repo
1 parent a7f53c4 commit d91f9c5

19 files changed

+1079
-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-06 15:59:41.504730",
8-
"spec_repo_commit": "f65a8312"
7+
"regenerated": "2023-09-07 16:08:00.328618",
8+
"spec_repo_commit": "979dec02"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-09-06 15:59:41.521256",
13-
"spec_repo_commit": "f65a8312"
12+
"regenerated": "2023-09-07 16:08:00.341198",
13+
"spec_repo_commit": "979dec02"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 170 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12028,6 +12028,170 @@ components:
1202812028
items:
1202912029
$ref: '#/components/schemas/SlackIntegrationChannel'
1203012030
type: array
12031+
SplitConfig:
12032+
description: Encapsulates all user choices about how to split a graph.
12033+
properties:
12034+
limit:
12035+
description: Maximum number of graphs to display in the widget.
12036+
example: 24
12037+
format: int64
12038+
maximum: 100
12039+
minimum: 1
12040+
type: integer
12041+
sort:
12042+
$ref: '#/components/schemas/SplitSort'
12043+
split_dimensions:
12044+
description: The dimension(s) on which to split the graph
12045+
items:
12046+
$ref: '#/components/schemas/SplitDimension'
12047+
maxItems: 1
12048+
minItems: 1
12049+
type: array
12050+
static_splits:
12051+
description: Manual selection of tags making split graph widget static
12052+
items:
12053+
$ref: '#/components/schemas/SplitVectorEntry'
12054+
maxItems: 100
12055+
minItems: 1
12056+
type: array
12057+
required:
12058+
- split_dimensions
12059+
- limit
12060+
- sort
12061+
type: object
12062+
SplitConfigSortCompute:
12063+
description: Defines the metric and aggregation used as the sort value.
12064+
properties:
12065+
aggregation:
12066+
description: The metric to use for sorting graphs.
12067+
example: sum
12068+
type: string
12069+
metric:
12070+
description: How to aggregate the sort metric for the purposes of ordering.
12071+
example: system.cpu.user
12072+
type: string
12073+
required:
12074+
- aggregation
12075+
- metric
12076+
type: object
12077+
SplitDimension:
12078+
description: The property by which the graph splits
12079+
example:
12080+
one_graph_per: service
12081+
properties:
12082+
one_graph_per:
12083+
description: The system interprets this attribute differently depending
12084+
on the data source of the query being split. For metrics, it's a tag.
12085+
For the events platform, it's an attribute or tag.
12086+
example: service
12087+
type: string
12088+
required:
12089+
- one_graph_per
12090+
type: object
12091+
SplitGraphSourceWidgetDefinition:
12092+
description: The original widget we are splitting on.
12093+
oneOf:
12094+
- $ref: '#/components/schemas/ChangeWidgetDefinition'
12095+
- $ref: '#/components/schemas/GeomapWidgetDefinition'
12096+
- $ref: '#/components/schemas/QueryValueWidgetDefinition'
12097+
- $ref: '#/components/schemas/ScatterPlotWidgetDefinition'
12098+
- $ref: '#/components/schemas/SunburstWidgetDefinition'
12099+
- $ref: '#/components/schemas/TimeseriesWidgetDefinition'
12100+
- $ref: '#/components/schemas/ToplistWidgetDefinition'
12101+
- $ref: '#/components/schemas/TreeMapWidgetDefinition'
12102+
SplitGraphVizSize:
12103+
description: Size of the individual graphs in the split.
12104+
enum:
12105+
- xs
12106+
- sm
12107+
- md
12108+
- lg
12109+
example: sm
12110+
type: string
12111+
x-enum-varnames:
12112+
- XS
12113+
- SM
12114+
- MD
12115+
- LG
12116+
SplitGraphWidgetDefinition:
12117+
description: 'The split graph widget allows you to create repeating units of
12118+
a graph - one for each value in a group (for example: one per service)
12119+
12120+
'
12121+
properties:
12122+
has_uniform_y_axes:
12123+
description: Normalize y axes across graphs
12124+
type: boolean
12125+
size:
12126+
$ref: '#/components/schemas/SplitGraphVizSize'
12127+
source_widget_definition:
12128+
$ref: '#/components/schemas/SplitGraphSourceWidgetDefinition'
12129+
split_config:
12130+
$ref: '#/components/schemas/SplitConfig'
12131+
time:
12132+
$ref: '#/components/schemas/WidgetTime'
12133+
title:
12134+
description: Title of your widget.
12135+
type: string
12136+
title_align:
12137+
$ref: '#/components/schemas/WidgetTextAlign'
12138+
title_size:
12139+
description: Size of the title.
12140+
type: string
12141+
type:
12142+
$ref: '#/components/schemas/SplitGraphWidgetDefinitionType'
12143+
required:
12144+
- size
12145+
- type
12146+
- source_widget_definition
12147+
- split_config
12148+
type: object
12149+
SplitGraphWidgetDefinitionType:
12150+
default: split_group
12151+
description: Type of the split graph widget
12152+
enum:
12153+
- split_group
12154+
example: split_group
12155+
type: string
12156+
x-enum-varnames:
12157+
- SPLIT_GROUP
12158+
SplitSort:
12159+
description: Controls the order in which graphs appear in the split.
12160+
properties:
12161+
compute:
12162+
$ref: '#/components/schemas/SplitConfigSortCompute'
12163+
order:
12164+
$ref: '#/components/schemas/WidgetSort'
12165+
required:
12166+
- order
12167+
type: object
12168+
SplitVectorEntry:
12169+
description: The widget displays one graph for each entry in this parameter.
12170+
example:
12171+
- tag_key: demo
12172+
tag_values:
12173+
- env
12174+
items:
12175+
description: The split graph list contains a graph for each value of the split
12176+
dimension.
12177+
minLength: 1
12178+
properties:
12179+
tag_key:
12180+
example: demo
12181+
minLength: 1
12182+
type: string
12183+
tag_values:
12184+
example:
12185+
- env
12186+
items:
12187+
minLength: 1
12188+
type: string
12189+
type: array
12190+
required:
12191+
- tag_key
12192+
- tag_values
12193+
type: object
12194+
type: array
1203112195
SuccessfulSignalUpdateResponse:
1203212196
description: Updated signal data following a successfully performed update.
1203312197
properties:
@@ -19484,30 +19648,31 @@ components:
1948419648
- $ref: '#/components/schemas/EventStreamWidgetDefinition'
1948519649
- $ref: '#/components/schemas/EventTimelineWidgetDefinition'
1948619650
- $ref: '#/components/schemas/FreeTextWidgetDefinition'
19651+
- $ref: '#/components/schemas/FunnelWidgetDefinition'
1948719652
- $ref: '#/components/schemas/GeomapWidgetDefinition'
1948819653
- $ref: '#/components/schemas/GroupWidgetDefinition'
1948919654
- $ref: '#/components/schemas/HeatMapWidgetDefinition'
1949019655
- $ref: '#/components/schemas/HostMapWidgetDefinition'
1949119656
- $ref: '#/components/schemas/IFrameWidgetDefinition'
1949219657
- $ref: '#/components/schemas/ImageWidgetDefinition'
19658+
- $ref: '#/components/schemas/ListStreamWidgetDefinition'
1949319659
- $ref: '#/components/schemas/LogStreamWidgetDefinition'
1949419660
- $ref: '#/components/schemas/MonitorSummaryWidgetDefinition'
1949519661
- $ref: '#/components/schemas/NoteWidgetDefinition'
1949619662
- $ref: '#/components/schemas/QueryValueWidgetDefinition'
1949719663
- $ref: '#/components/schemas/RunWorkflowWidgetDefinition'
19498-
- $ref: '#/components/schemas/ScatterPlotWidgetDefinition'
19499-
- $ref: '#/components/schemas/SLOWidgetDefinition'
1950019664
- $ref: '#/components/schemas/SLOListWidgetDefinition'
19665+
- $ref: '#/components/schemas/SLOWidgetDefinition'
19666+
- $ref: '#/components/schemas/ScatterPlotWidgetDefinition'
1950119667
- $ref: '#/components/schemas/ServiceMapWidgetDefinition'
1950219668
- $ref: '#/components/schemas/ServiceSummaryWidgetDefinition'
19669+
- $ref: '#/components/schemas/SplitGraphWidgetDefinition'
1950319670
- $ref: '#/components/schemas/SunburstWidgetDefinition'
1950419671
- $ref: '#/components/schemas/TableWidgetDefinition'
1950519672
- $ref: '#/components/schemas/TimeseriesWidgetDefinition'
1950619673
- $ref: '#/components/schemas/ToplistWidgetDefinition'
19507-
- $ref: '#/components/schemas/TreeMapWidgetDefinition'
19508-
- $ref: '#/components/schemas/ListStreamWidgetDefinition'
19509-
- $ref: '#/components/schemas/FunnelWidgetDefinition'
1951019674
- $ref: '#/components/schemas/TopologyMapWidgetDefinition'
19675+
- $ref: '#/components/schemas/TreeMapWidgetDefinition'
1951119676
WidgetDisplayType:
1951219677
description: Type of display to use for the request.
1951319678
enum:

docs/datadog_api_client.v1.model.rst

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3445,6 +3445,62 @@ slo\_widget\_definition\_type
34453445
:members:
34463446
:show-inheritance:
34473447

3448+
split\_config
3449+
-------------
3450+
3451+
.. automodule:: datadog_api_client.v1.model.split_config
3452+
:members:
3453+
:show-inheritance:
3454+
3455+
split\_config\_sort\_compute
3456+
----------------------------
3457+
3458+
.. automodule:: datadog_api_client.v1.model.split_config_sort_compute
3459+
:members:
3460+
:show-inheritance:
3461+
3462+
split\_dimension
3463+
----------------
3464+
3465+
.. automodule:: datadog_api_client.v1.model.split_dimension
3466+
:members:
3467+
:show-inheritance:
3468+
3469+
split\_graph\_source\_widget\_definition
3470+
----------------------------------------
3471+
3472+
.. automodule:: datadog_api_client.v1.model.split_graph_source_widget_definition
3473+
:members:
3474+
:show-inheritance:
3475+
3476+
split\_graph\_viz\_size
3477+
-----------------------
3478+
3479+
.. automodule:: datadog_api_client.v1.model.split_graph_viz_size
3480+
:members:
3481+
:show-inheritance:
3482+
3483+
split\_graph\_widget\_definition
3484+
--------------------------------
3485+
3486+
.. automodule:: datadog_api_client.v1.model.split_graph_widget_definition
3487+
:members:
3488+
:show-inheritance:
3489+
3490+
split\_graph\_widget\_definition\_type
3491+
--------------------------------------
3492+
3493+
.. automodule:: datadog_api_client.v1.model.split_graph_widget_definition_type
3494+
:members:
3495+
:show-inheritance:
3496+
3497+
split\_sort
3498+
-----------
3499+
3500+
.. automodule:: datadog_api_client.v1.model.split_sort
3501+
:members:
3502+
:show-inheritance:
3503+
34483504
successful\_signal\_update\_response
34493505
------------------------------------
34503506

0 commit comments

Comments
 (0)