Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-17 14:14:39.709330",
"spec_repo_commit": "fb024a45"
"regenerated": "2024-10-18 21:00:50.939199",
"spec_repo_commit": "37070fd4"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-17 14:14:39.728219",
"spec_repo_commit": "fb024a45"
"regenerated": "2024-10-18 21:00:50.957619",
"spec_repo_commit": "37070fd4"
}
}
}
1 change: 0 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9917,7 +9917,6 @@ components:
HTTPLogItem:
additionalProperties:
description: Additional log attributes.
type: string
description: Logs that are sent over HTTP.
properties:
ddsource:
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/com/datadog/api/client/v2/model/HTTPLogItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void setService(String service) {
* A container for additional, undeclared properties. This is a holder for any undeclared
* properties as specified with the 'additionalProperties' keyword in the OAS document.
*/
private Map<String, String> additionalProperties;
private Map<String, Object> additionalProperties;

/**
* Set the additional (undeclared) property with the specified name and value. If the property
Expand All @@ -181,9 +181,9 @@ public void setService(String service) {
* @return HTTPLogItem
*/
@JsonAnySetter
public HTTPLogItem putAdditionalProperty(String key, String value) {
public HTTPLogItem putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, String>();
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
Expand All @@ -195,7 +195,7 @@ public HTTPLogItem putAdditionalProperty(String key, String value) {
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, String> getAdditionalProperties() {
public Map<String, Object> getAdditionalProperties() {
return additionalProperties;
}

Expand All @@ -205,7 +205,7 @@ public Map<String, String> getAdditionalProperties() {
* @param key The arbitrary key to get
* @return The specific additional property for the given key
*/
public String getAdditionalProperty(String key) {
public Object getAdditionalProperty(String key) {
if (this.additionalProperties == null) {
return null;
}
Expand Down
Loading