@@ -21,6 +21,12 @@ module DatadogAPIClient::V2
2121 class CustomCostListResponseMeta
2222 include BaseGenericModel
2323
24+ # Number of Custom Costs files per status.
25+ attr_accessor :count_by_status
26+
27+ # List of available providers.
28+ attr_accessor :providers
29+
2430 # Number of Custom Costs files returned by the List Custom Costs endpoint
2531 attr_accessor :total_filtered_count
2632
@@ -33,6 +39,8 @@ class CustomCostListResponseMeta
3339 # @!visibility private
3440 def self . attribute_map
3541 {
42+ :'count_by_status' => :'count_by_status' ,
43+ :'providers' => :'providers' ,
3644 :'total_filtered_count' => :'total_filtered_count' ,
3745 :'version' => :'version'
3846 }
@@ -42,6 +50,8 @@ def self.attribute_map
4250 # @!visibility private
4351 def self . openapi_types
4452 {
53+ :'count_by_status' => :'Hash<String, Integer>' ,
54+ :'providers' => :'Array<String>' ,
4555 :'total_filtered_count' => :'Integer' ,
4656 :'version' => :'String'
4757 }
@@ -65,6 +75,16 @@ def initialize(attributes = {})
6575 end
6676 }
6777
78+ if attributes . key? ( :'count_by_status' )
79+ self . count_by_status = attributes [ :'count_by_status' ]
80+ end
81+
82+ if attributes . key? ( :'providers' )
83+ if ( value = attributes [ :'providers' ] ) . is_a? ( Array )
84+ self . providers = value
85+ end
86+ end
87+
6888 if attributes . key? ( :'total_filtered_count' )
6989 self . total_filtered_count = attributes [ :'total_filtered_count' ]
7090 end
@@ -100,6 +120,8 @@ def to_hash
100120 def ==( o )
101121 return true if self . equal? ( o )
102122 self . class == o . class &&
123+ count_by_status == o . count_by_status &&
124+ providers == o . providers &&
103125 total_filtered_count == o . total_filtered_count &&
104126 version == o . version &&
105127 additional_properties == o . additional_properties
@@ -109,7 +131,7 @@ def ==(o)
109131 # @return [Integer] Hash code
110132 # @!visibility private
111133 def hash
112- [ total_filtered_count , version , additional_properties ] . hash
134+ [ count_by_status , providers , total_filtered_count , version , additional_properties ] . hash
113135 end
114136 end
115137end
0 commit comments