Skip to content

Commit 086730d

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit fb5856bc of spec repo
1 parent 6883049 commit 086730d

File tree

51 files changed

+71
-71
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+71
-71
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.6",
7-
"regenerated": "2024-12-05 16:15:46.931965",
8-
"spec_repo_commit": "843392e2"
7+
"regenerated": "2024-12-05 20:46:13.766386",
8+
"spec_repo_commit": "fb5856bc"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-12-05 16:15:46.951025",
13-
"spec_repo_commit": "843392e2"
12+
"regenerated": "2024-12-05 20:46:13.785341",
13+
"spec_repo_commit": "fb5856bc"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22799,18 +22799,18 @@ components:
2279922799
type: integer
2280022800
x:
2280122801
description: The position of the widget on the x (horizontal) axis. Should
22802-
be a non-negative integer.
22802+
be a non-negative number.
2280322803
example: 0
22804-
format: int64
22804+
format: double
2280522805
minimum: 0
22806-
type: integer
22806+
type: number
2280722807
y:
2280822808
description: The position of the widget on the y (vertical) axis. Should
22809-
be a non-negative integer.
22809+
be a non-negative number.
2281022810
example: 0
22811-
format: int64
22811+
format: double
2281222812
minimum: 0
22813-
type: integer
22813+
type: number
2281422814
required:
2281522815
- x
2281622816
- y

examples/v1/dashboards/CreateDashboard_1024858348.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public static void main(String[] args) {
6666
.COUNT)))))
6767
.responseFormat(
6868
FormulaAndFunctionResponseFormat.SCALAR)))))
69-
.layout(new WidgetLayout().x(0L).y(0L).width(4L).height(4L))))
69+
.layout(new WidgetLayout().width(4L).height(4L))))
7070
.layoutType(DashboardLayoutType.ORDERED);
7171

7272
try {

examples/v1/dashboards/CreateDashboard_109450134.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static void main(String[] args) {
3030
.widgets(
3131
Collections.singletonList(
3232
new Widget()
33-
.layout(new WidgetLayout().x(0L).y(0L).width(60L).height(21L))
33+
.layout(new WidgetLayout().width(60L).height(21L))
3434
.definition(
3535
new WidgetDefinition(
3636
new SLOListWidgetDefinition()

examples/v1/dashboards/CreateDashboard_1094917386.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static void main(String[] args) {
2828
.widgets(
2929
Collections.singletonList(
3030
new Widget()
31-
.layout(new WidgetLayout().x(0L).y(0L).width(50L).height(25L))
31+
.layout(new WidgetLayout().width(50L).height(25L))
3232
.definition(
3333
new WidgetDefinition(
3434
new MonitorSummaryWidgetDefinition()

examples/v1/dashboards/CreateDashboard_1177423752.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static void main(String[] args) {
2929
.widgets(
3030
Collections.singletonList(
3131
new Widget()
32-
.layout(new WidgetLayout().x(0L).y(0L).width(47L).height(15L))
32+
.layout(new WidgetLayout().width(47L).height(15L))
3333
.definition(
3434
new WidgetDefinition(
3535
new HeatMapWidgetDefinition()

examples/v1/dashboards/CreateDashboard_1200099236.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static void main(String[] args) {
2929
.widgets(
3030
Collections.singletonList(
3131
new Widget()
32-
.layout(new WidgetLayout().x(0L).y(0L).width(47L).height(22L))
32+
.layout(new WidgetLayout().width(47L).height(22L))
3333
.definition(
3434
new WidgetDefinition(
3535
new HostMapWidgetDefinition()

examples/v1/dashboards/CreateDashboard_1213075383.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public static void main(String[] args) {
4545
.widgets(
4646
Collections.singletonList(
4747
new Widget()
48-
.layout(new WidgetLayout().x(0L).y(0L).width(47L).height(15L))
48+
.layout(new WidgetLayout().width(47L).height(15L))
4949
.definition(
5050
new WidgetDefinition(
5151
new ToplistWidgetDefinition()

examples/v1/dashboards/CreateDashboard_1413226400.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static void main(String[] args) {
4444
.widgets(
4545
Collections.singletonList(
4646
new Widget()
47-
.layout(new WidgetLayout().x(0L).y(0L).width(47L).height(15L))
47+
.layout(new WidgetLayout().width(47L).height(15L))
4848
.definition(
4949
new WidgetDefinition(
5050
new ToplistWidgetDefinition()

examples/v1/dashboards/CreateDashboard_1423904722.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static void main(String[] args) {
2828
.widgets(
2929
Collections.singletonList(
3030
new Widget()
31-
.layout(new WidgetLayout().x(0L).y(0L).width(60L).height(21L))
31+
.layout(new WidgetLayout().width(60L).height(21L))
3232
.definition(
3333
new WidgetDefinition(
3434
new SLOListWidgetDefinition()

0 commit comments

Comments
 (0)