Skip to content

Commit 17d80dd

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 36ed353e of spec repo
1 parent 585cfaf commit 17d80dd

File tree

3 files changed

+4
-36
lines changed

3 files changed

+4
-36
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": "2025-07-08 07:29:01.236919",
8-
"spec_repo_commit": "d9879085"
7+
"regenerated": "2025-07-08 15:25:28.999425",
8+
"spec_repo_commit": "36ed353e"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-07-08 07:29:01.320596",
13-
"spec_repo_commit": "d9879085"
12+
"regenerated": "2025-07-08 15:25:29.095301",
13+
"spec_repo_commit": "36ed353e"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11880,10 +11880,6 @@ components:
1188011880
description: A monitor tag.
1188111881
type: string
1188211882
type: array
11883-
name:
11884-
description: The name of the service level objective object.
11885-
example: Custom Metric SLO
11886-
type: string
1188711883
query:
1188811884
$ref: '#/components/schemas/ServiceLevelObjectiveQuery'
1188911885
sli_specification:

src/main/java/com/datadog/api/client/v1/model/SLOResponseData.java

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
SLOResponseData.JSON_PROPERTY_MODIFIED_AT,
3434
SLOResponseData.JSON_PROPERTY_MONITOR_IDS,
3535
SLOResponseData.JSON_PROPERTY_MONITOR_TAGS,
36-
SLOResponseData.JSON_PROPERTY_NAME,
3736
SLOResponseData.JSON_PROPERTY_QUERY,
3837
SLOResponseData.JSON_PROPERTY_SLI_SPECIFICATION,
3938
SLOResponseData.JSON_PROPERTY_TAGS,
@@ -74,9 +73,6 @@ public class SLOResponseData {
7473
public static final String JSON_PROPERTY_MONITOR_TAGS = "monitor_tags";
7574
private List<String> monitorTags = null;
7675

77-
public static final String JSON_PROPERTY_NAME = "name";
78-
private String name;
79-
8076
public static final String JSON_PROPERTY_QUERY = "query";
8177
private ServiceLevelObjectiveQuery query;
8278

@@ -315,27 +311,6 @@ public void setMonitorTags(List<String> monitorTags) {
315311
this.monitorTags = monitorTags;
316312
}
317313

318-
public SLOResponseData name(String name) {
319-
this.name = name;
320-
return this;
321-
}
322-
323-
/**
324-
* The name of the service level objective object.
325-
*
326-
* @return name
327-
*/
328-
@jakarta.annotation.Nullable
329-
@JsonProperty(JSON_PROPERTY_NAME)
330-
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
331-
public String getName() {
332-
return name;
333-
}
334-
335-
public void setName(String name) {
336-
this.name = name;
337-
}
338-
339314
public SLOResponseData query(ServiceLevelObjectiveQuery query) {
340315
this.query = query;
341316
this.unparsed |= query.unparsed;
@@ -606,7 +581,6 @@ public boolean equals(Object o) {
606581
&& Objects.equals(this.modifiedAt, sloResponseData.modifiedAt)
607582
&& Objects.equals(this.monitorIds, sloResponseData.monitorIds)
608583
&& Objects.equals(this.monitorTags, sloResponseData.monitorTags)
609-
&& Objects.equals(this.name, sloResponseData.name)
610584
&& Objects.equals(this.query, sloResponseData.query)
611585
&& Objects.equals(this.sliSpecification, sloResponseData.sliSpecification)
612586
&& Objects.equals(this.tags, sloResponseData.tags)
@@ -630,7 +604,6 @@ public int hashCode() {
630604
modifiedAt,
631605
monitorIds,
632606
monitorTags,
633-
name,
634607
query,
635608
sliSpecification,
636609
tags,
@@ -655,7 +628,6 @@ public String toString() {
655628
sb.append(" modifiedAt: ").append(toIndentedString(modifiedAt)).append("\n");
656629
sb.append(" monitorIds: ").append(toIndentedString(monitorIds)).append("\n");
657630
sb.append(" monitorTags: ").append(toIndentedString(monitorTags)).append("\n");
658-
sb.append(" name: ").append(toIndentedString(name)).append("\n");
659631
sb.append(" query: ").append(toIndentedString(query)).append("\n");
660632
sb.append(" sliSpecification: ").append(toIndentedString(sliSpecification)).append("\n");
661633
sb.append(" tags: ").append(toIndentedString(tags)).append("\n");

0 commit comments

Comments
 (0)