Skip to content

Commit c007518

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 8a2ddba0 of spec repo
1 parent 8afd43f commit c007518

File tree

50 files changed

+70
-70
lines changed

Some content is hidden

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

50 files changed

+70
-70
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-01 14:24:18.377100",
8-
"spec_repo_commit": "d90ee2ef"
7+
"regenerated": "2024-10-01 16:08:29.858509",
8+
"spec_repo_commit": "8a2ddba0"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-10-01 14:24:18.393189",
13-
"spec_repo_commit": "d90ee2ef"
12+
"regenerated": "2024-10-01 16:08:29.873484",
13+
"spec_repo_commit": "8a2ddba0"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22079,18 +22079,18 @@ components:
2207922079
type: integer
2208022080
x:
2208122081
description: The position of the widget on the x (horizontal) axis. Should
22082-
be a non-negative integer.
22082+
be a non-negative number.
2208322083
example: 0
22084-
format: int64
22084+
format: double
2208522085
minimum: 0
22086-
type: integer
22086+
type: number
2208722087
y:
2208822088
description: The position of the widget on the y (vertical) axis. Should
22089-
be a non-negative integer.
22089+
be a non-negative number.
2209022090
example: 0
22091-
format: int64
22091+
format: double
2209222092
minimum: 0
22093-
type: integer
22093+
type: number
2209422094
required:
2209522095
- x
2209622096
- 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_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()

examples/v1/dashboards/CreateDashboard_1442588603.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public static void main(String[] args) {
8181
DistributionWidgetHistogramRequestType
8282
.HISTOGRAM)
8383
.style(new WidgetStyle().palette("dog_classic"))))))
84-
.layout(new WidgetLayout().x(8L).y(0L).width(4L).height(2L))))
84+
.layout(new WidgetLayout().x(8.0).width(4L).height(2L))))
8585
.layoutType(DashboardLayoutType.ORDERED);
8686

8787
try {

0 commit comments

Comments
 (0)