Skip to content

Commit 004d497

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 7679754f of spec repo
1 parent 28d292d commit 004d497

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-10-04 10:38:24.095988",
8-
"spec_repo_commit": "7a63d530"
7+
"regenerated": "2024-10-04 13:47:51.718305",
8+
"spec_repo_commit": "7679754f"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-10-04 10:38:24.110677",
13-
"spec_repo_commit": "7a63d530"
12+
"regenerated": "2024-10-04 13:47:51.732772",
13+
"spec_repo_commit": "7679754f"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22548,18 +22548,18 @@ components:
2254822548
type: integer
2254922549
x:
2255022550
description: The position of the widget on the x (horizontal) axis. Should
22551-
be a non-negative integer.
22551+
be a non-negative number.
2255222552
example: 0
22553-
format: int64
22553+
format: double
2255422554
minimum: 0
22555-
type: integer
22555+
type: number
2255622556
y:
2255722557
description: The position of the widget on the y (vertical) axis. Should
22558-
be a non-negative integer.
22558+
be a non-negative number.
2255922559
example: 0
22560-
format: int64
22560+
format: double
2256122561
minimum: 0
22562-
type: integer
22562+
type: number
2256322563
required:
2256422564
- x
2256522565
- 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)