1313import com .fasterxml .jackson .annotation .JsonInclude ;
1414import com .fasterxml .jackson .annotation .JsonProperty ;
1515import com .fasterxml .jackson .annotation .JsonPropertyOrder ;
16- import java .time .OffsetDateTime ;
1716import java .util .ArrayList ;
1817import java .util .HashMap ;
1918import java .util .List ;
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