@@ -25,8 +25,6 @@ type AWSAccountResponseAttributes struct {
2525 AwsPartition * AWSAccountPartition `json:"aws_partition,omitempty"`
2626 // AWS Regions to collect data from. Defaults to `include_all`.
2727 AwsRegions * AWSRegions `json:"aws_regions,omitempty"`
28- // AWS Cloud Cost Management config.
29- CcmConfig * AWSCCMConfig `json:"ccm_config,omitempty"`
3028 // Timestamp of when the account integration was created.
3129 CreatedAt * time.Time `json:"created_at,omitempty"`
3230 // AWS Logs Collection config.
@@ -208,34 +206,6 @@ func (o *AWSAccountResponseAttributes) SetAwsRegions(v AWSRegions) {
208206 o .AwsRegions = & v
209207}
210208
211- // GetCcmConfig returns the CcmConfig field value if set, zero value otherwise.
212- func (o * AWSAccountResponseAttributes ) GetCcmConfig () AWSCCMConfig {
213- if o == nil || o .CcmConfig == nil {
214- var ret AWSCCMConfig
215- return ret
216- }
217- return * o .CcmConfig
218- }
219-
220- // GetCcmConfigOk returns a tuple with the CcmConfig field value if set, nil otherwise
221- // and a boolean to check if the value has been set.
222- func (o * AWSAccountResponseAttributes ) GetCcmConfigOk () (* AWSCCMConfig , bool ) {
223- if o == nil || o .CcmConfig == nil {
224- return nil , false
225- }
226- return o .CcmConfig , true
227- }
228-
229- // HasCcmConfig returns a boolean if a field has been set.
230- func (o * AWSAccountResponseAttributes ) HasCcmConfig () bool {
231- return o != nil && o .CcmConfig != nil
232- }
233-
234- // SetCcmConfig gets a reference to the given AWSCCMConfig and assigns it to the CcmConfig field.
235- func (o * AWSAccountResponseAttributes ) SetCcmConfig (v AWSCCMConfig ) {
236- o .CcmConfig = & v
237- }
238-
239209// GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.
240210func (o * AWSAccountResponseAttributes ) GetCreatedAt () time.Time {
241211 if o == nil || o .CreatedAt == nil {
@@ -423,9 +393,6 @@ func (o AWSAccountResponseAttributes) MarshalJSON() ([]byte, error) {
423393 if o .AwsRegions != nil {
424394 toSerialize ["aws_regions" ] = o .AwsRegions
425395 }
426- if o .CcmConfig != nil {
427- toSerialize ["ccm_config" ] = o .CcmConfig
428- }
429396 if o .CreatedAt != nil {
430397 if o .CreatedAt .Nanosecond () == 0 {
431398 toSerialize ["created_at" ] = o .CreatedAt .Format ("2006-01-02T15:04:05Z07:00" )
@@ -467,7 +434,6 @@ func (o *AWSAccountResponseAttributes) UnmarshalJSON(bytes []byte) (err error) {
467434 AwsAccountId * string `json:"aws_account_id"`
468435 AwsPartition * AWSAccountPartition `json:"aws_partition,omitempty"`
469436 AwsRegions * AWSRegions `json:"aws_regions,omitempty"`
470- CcmConfig * AWSCCMConfig `json:"ccm_config,omitempty"`
471437 CreatedAt * time.Time `json:"created_at,omitempty"`
472438 LogsConfig * AWSLogsConfig `json:"logs_config,omitempty"`
473439 MetricsConfig * AWSMetricsConfig `json:"metrics_config,omitempty"`
@@ -483,7 +449,7 @@ func (o *AWSAccountResponseAttributes) UnmarshalJSON(bytes []byte) (err error) {
483449 }
484450 additionalProperties := make (map [string ]interface {})
485451 if err = datadog .Unmarshal (bytes , & additionalProperties ); err == nil {
486- datadog .DeleteKeys (additionalProperties , & []string {"account_tags" , "auth_config" , "aws_account_id" , "aws_partition" , "aws_regions" , "ccm_config" , " created_at" , "logs_config" , "metrics_config" , "modified_at" , "resources_config" , "traces_config" })
452+ datadog .DeleteKeys (additionalProperties , & []string {"account_tags" , "auth_config" , "aws_account_id" , "aws_partition" , "aws_regions" , "created_at" , "logs_config" , "metrics_config" , "modified_at" , "resources_config" , "traces_config" })
487453 } else {
488454 return err
489455 }
@@ -498,10 +464,6 @@ func (o *AWSAccountResponseAttributes) UnmarshalJSON(bytes []byte) (err error) {
498464 o .AwsPartition = all .AwsPartition
499465 }
500466 o .AwsRegions = all .AwsRegions
501- if all .CcmConfig != nil && all .CcmConfig .UnparsedObject != nil && o .UnparsedObject == nil {
502- hasInvalidField = true
503- }
504- o .CcmConfig = all .CcmConfig
505467 o .CreatedAt = all .CreatedAt
506468 if all .LogsConfig != nil && all .LogsConfig .UnparsedObject != nil && o .UnparsedObject == nil {
507469 hasInvalidField = true
0 commit comments