Skip to content

Commit 9d67ba3

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit f509be8e of spec repo
1 parent a9de9b6 commit 9d67ba3

File tree

3 files changed

+4
-53
lines changed

3 files changed

+4
-53
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-05-27 10:37:49.383412",
8-
"spec_repo_commit": "c75940cb"
7+
"regenerated": "2025-05-27 13:44:04.234322",
8+
"spec_repo_commit": "f509be8e"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-05-27 10:37:49.403493",
13-
"spec_repo_commit": "c75940cb"
12+
"regenerated": "2025-05-27 13:44:04.308811",
13+
"spec_repo_commit": "f509be8e"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1298,20 +1298,10 @@ components:
12981298
$ref: '#/components/schemas/AWSAccountPartition'
12991299
aws_regions:
13001300
$ref: '#/components/schemas/AWSRegions'
1301-
created_at:
1302-
description: Timestamp of when the account integration was created.
1303-
format: date-time
1304-
readOnly: true
1305-
type: string
13061301
logs_config:
13071302
$ref: '#/components/schemas/AWSLogsConfig'
13081303
metrics_config:
13091304
$ref: '#/components/schemas/AWSMetricsConfig'
1310-
modified_at:
1311-
description: Timestamp of when the account integration was updated.
1312-
format: date-time
1313-
readOnly: true
1314-
type: string
13151305
resources_config:
13161306
$ref: '#/components/schemas/AWSResourcesConfig'
13171307
traces_config:

src/main/java/com/datadog/api/client/v2/model/AWSAccountResponseAttributes.java

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import com.fasterxml.jackson.annotation.JsonInclude;
1414
import com.fasterxml.jackson.annotation.JsonProperty;
1515
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
16-
import java.time.OffsetDateTime;
1716
import java.util.ArrayList;
1817
import java.util.HashMap;
1918
import java.util.List;
@@ -28,10 +27,8 @@
2827
AWSAccountResponseAttributes.JSON_PROPERTY_AWS_ACCOUNT_ID,
2928
AWSAccountResponseAttributes.JSON_PROPERTY_AWS_PARTITION,
3029
AWSAccountResponseAttributes.JSON_PROPERTY_AWS_REGIONS,
31-
AWSAccountResponseAttributes.JSON_PROPERTY_CREATED_AT,
3230
AWSAccountResponseAttributes.JSON_PROPERTY_LOGS_CONFIG,
3331
AWSAccountResponseAttributes.JSON_PROPERTY_METRICS_CONFIG,
34-
AWSAccountResponseAttributes.JSON_PROPERTY_MODIFIED_AT,
3532
AWSAccountResponseAttributes.JSON_PROPERTY_RESOURCES_CONFIG,
3633
AWSAccountResponseAttributes.JSON_PROPERTY_TRACES_CONFIG
3734
})
@@ -54,18 +51,12 @@ public class AWSAccountResponseAttributes {
5451
public static final String JSON_PROPERTY_AWS_REGIONS = "aws_regions";
5552
private AWSRegions awsRegions;
5653

57-
public static final String JSON_PROPERTY_CREATED_AT = "created_at";
58-
private OffsetDateTime createdAt;
59-
6054
public static final String JSON_PROPERTY_LOGS_CONFIG = "logs_config";
6155
private AWSLogsConfig logsConfig;
6256

6357
public static final String JSON_PROPERTY_METRICS_CONFIG = "metrics_config";
6458
private AWSMetricsConfig metricsConfig;
6559

66-
public static final String JSON_PROPERTY_MODIFIED_AT = "modified_at";
67-
private OffsetDateTime modifiedAt;
68-
6960
public static final String JSON_PROPERTY_RESOURCES_CONFIG = "resources_config";
7061
private AWSResourcesConfig resourcesConfig;
7162

@@ -214,18 +205,6 @@ public void setAwsRegions(AWSRegions awsRegions) {
214205
this.awsRegions = awsRegions;
215206
}
216207

217-
/**
218-
* Timestamp of when the account integration was created.
219-
*
220-
* @return createdAt
221-
*/
222-
@jakarta.annotation.Nullable
223-
@JsonProperty(JSON_PROPERTY_CREATED_AT)
224-
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
225-
public OffsetDateTime getCreatedAt() {
226-
return createdAt;
227-
}
228-
229208
public AWSAccountResponseAttributes logsConfig(AWSLogsConfig logsConfig) {
230209
this.logsConfig = logsConfig;
231210
this.unparsed |= logsConfig.unparsed;
@@ -270,18 +249,6 @@ public void setMetricsConfig(AWSMetricsConfig metricsConfig) {
270249
this.metricsConfig = metricsConfig;
271250
}
272251

273-
/**
274-
* Timestamp of when the account integration was updated.
275-
*
276-
* @return modifiedAt
277-
*/
278-
@jakarta.annotation.Nullable
279-
@JsonProperty(JSON_PROPERTY_MODIFIED_AT)
280-
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
281-
public OffsetDateTime getModifiedAt() {
282-
return modifiedAt;
283-
}
284-
285252
public AWSAccountResponseAttributes resourcesConfig(AWSResourcesConfig resourcesConfig) {
286253
this.resourcesConfig = resourcesConfig;
287254
this.unparsed |= resourcesConfig.unparsed;
@@ -387,10 +354,8 @@ public boolean equals(Object o) {
387354
&& Objects.equals(this.awsAccountId, awsAccountResponseAttributes.awsAccountId)
388355
&& Objects.equals(this.awsPartition, awsAccountResponseAttributes.awsPartition)
389356
&& Objects.equals(this.awsRegions, awsAccountResponseAttributes.awsRegions)
390-
&& Objects.equals(this.createdAt, awsAccountResponseAttributes.createdAt)
391357
&& Objects.equals(this.logsConfig, awsAccountResponseAttributes.logsConfig)
392358
&& Objects.equals(this.metricsConfig, awsAccountResponseAttributes.metricsConfig)
393-
&& Objects.equals(this.modifiedAt, awsAccountResponseAttributes.modifiedAt)
394359
&& Objects.equals(this.resourcesConfig, awsAccountResponseAttributes.resourcesConfig)
395360
&& Objects.equals(this.tracesConfig, awsAccountResponseAttributes.tracesConfig)
396361
&& Objects.equals(
@@ -405,10 +370,8 @@ public int hashCode() {
405370
awsAccountId,
406371
awsPartition,
407372
awsRegions,
408-
createdAt,
409373
logsConfig,
410374
metricsConfig,
411-
modifiedAt,
412375
resourcesConfig,
413376
tracesConfig,
414377
additionalProperties);
@@ -423,10 +386,8 @@ public String toString() {
423386
sb.append(" awsAccountId: ").append(toIndentedString(awsAccountId)).append("\n");
424387
sb.append(" awsPartition: ").append(toIndentedString(awsPartition)).append("\n");
425388
sb.append(" awsRegions: ").append(toIndentedString(awsRegions)).append("\n");
426-
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
427389
sb.append(" logsConfig: ").append(toIndentedString(logsConfig)).append("\n");
428390
sb.append(" metricsConfig: ").append(toIndentedString(metricsConfig)).append("\n");
429-
sb.append(" modifiedAt: ").append(toIndentedString(modifiedAt)).append("\n");
430391
sb.append(" resourcesConfig: ").append(toIndentedString(resourcesConfig)).append("\n");
431392
sb.append(" tracesConfig: ").append(toIndentedString(tracesConfig)).append("\n");
432393
sb.append(" additionalProperties: ")

0 commit comments

Comments
 (0)