fastly 5.2.1 → 5.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fff4b181bef5d860ddd9253c3cfa50c1dc9e3779b9d4aed2f86bf65b71b75fcf
4
- data.tar.gz: 2b42d0accade248081949656743b269e197aa02516e0ead6f435f5c6c8351161
3
+ metadata.gz: ab5a10e8b798ab9c93218ab4cd005873408b6f9be753eb11c9ca20d33da87614
4
+ data.tar.gz: fe1fbf9eb94ffde41be15cabbcef01316c910d530abb57b8baab85f9a6d5b7e0
5
5
  SHA512:
6
- metadata.gz: c1af89277b82ddce9c72a90de9a1af1fa9e35cffc914a31d86287e0022715424ecdab5a3ccde38ed1fc650a270c8a9316a800ead19eb74581cf9d56fcd01ecb0
7
- data.tar.gz: 5ab546da4cc53670559f00cc2e1a9d81c65304cd9abf3329a52bb5649187a62f9f09b26530114f64a3ce0e713309e4ad41cfdc7f862df7feaf802468389608da
6
+ metadata.gz: 1654d1693e6611befdf9227e489522298ffcc1fba856330b6147e970cc2dbce78e6f6357cde5366239c1ac0337445d87dcd5806aac5f87ca0220c9f0e15938b1
7
+ data.tar.gz: 73b717ccec4e4b429a21fdcffeeec4dc0ee3439b451eb7c4a6b8a5950face7a277b7eb58defae267dec5a75ab0d10b985f74360a60e51bc22551b535653e474d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [v5.2.2](https://github.com/fastly/fastly-ruby/releases/tag/release/v5.2.2) (2023-06-23)
4
+
5
+ **Bug fixes:**
6
+
7
+ - fix(historical_stats): generate missing models.
8
+
3
9
  ## [v5.2.1](https://github.com/fastly/fastly-ruby/releases/tag/release/v5.2.1) (2023-06-21)
4
10
 
5
11
  **Bug fixes:**
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fastly (5.2.1)
4
+ fastly (5.2.2)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -8,7 +8,7 @@ A Ruby client library for interacting with most facets of the [Fastly API](https
8
8
  To install via RubyGems, add the following to your project's `Gemfile`:
9
9
 
10
10
  ```ruby
11
- gem 'fastly', '~> 5.2.1'
11
+ gem 'fastly', '~> 5.2.2'
12
12
  ```
13
13
 
14
14
  Then run `bundle install`.
@@ -1,4 +1,4 @@
1
- # Fastly::HistoricalFieldResponseAllOf
1
+ # Fastly::HistoricalFieldResponseDataField
2
2
 
3
3
  ## Properties
4
4
 
@@ -1,4 +1,4 @@
1
- # Fastly::HistoricalResponseAllOf
1
+ # Fastly::HistoricalResponseDataField
2
2
 
3
3
  ## Properties
4
4
 
@@ -0,0 +1,10 @@
1
+ # Fastly::HistoricalService
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | The name of the service. | [optional] |
8
+
9
+ [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
10
+
@@ -7,7 +7,7 @@
7
7
  | **status** | **String** | Whether or not we were able to successfully execute the query. | [optional] |
8
8
  | **meta** | [**HistoricalMeta**](HistoricalMeta.md) | | [optional] |
9
9
  | **msg** | **String** | If the query was not successful, this will provide a string that explains why. | [optional] |
10
- | **data** | [**HistoricalUsageMonthResponseAllOfData**](HistoricalUsageMonthResponseAllOfData.md) | | [optional] |
10
+ | **data** | [**HistoricalUsageMonthResponseData**](HistoricalUsageMonthResponseData.md) | | [optional] |
11
11
 
12
12
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
13
13
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **data** | [**HistoricalUsageMonthResponseAllOfData**](HistoricalUsageMonthResponseAllOfData.md) | | [optional] |
7
+ | **data** | [**HistoricalUsageMonthResponseData**](HistoricalUsageMonthResponseData.md) | | [optional] |
8
8
 
9
9
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
10
10
 
@@ -1,11 +1,11 @@
1
- # Fastly::HistoricalUsageMonthResponseAllOfData
1
+ # Fastly::HistoricalUsageMonthResponseData
2
2
 
3
3
  ## Properties
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **customer_id** | **String** | | [optional][readonly] |
8
- | **services** | **Hash<String, Hash<String, HistoricalUsageResults>>** | | [optional] |
8
+ | **services** | [**Hash<String, HistoricalService>**](HistoricalService.md) | | [optional] |
9
9
  | **total** | [**HistoricalUsageResults**](HistoricalUsageResults.md) | | [optional] |
10
10
 
11
11
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
@@ -59,7 +59,7 @@ module Fastly
59
59
  def self.fastly_all_of
60
60
  [
61
61
  :'Historical',
62
- :'HistoricalFieldResponseAllOf'
62
+ :'HistoricalFieldResponseDataField'
63
63
  ]
64
64
  end
65
65
 
@@ -12,7 +12,7 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Fastly
15
- class HistoricalFieldResponseAllOf
15
+ class HistoricalFieldResponseDataField
16
16
  attr_accessor :data
17
17
 
18
18
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -44,13 +44,13 @@ module Fastly
44
44
  # @param [Hash] attributes Model attributes in the form of hash
45
45
  def initialize(attributes = {})
46
46
  if (!attributes.is_a?(Hash))
47
- fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::HistoricalFieldResponseAllOf` initialize method"
47
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::HistoricalFieldResponseDataField` initialize method"
48
48
  end
49
49
 
50
50
  # check to see if the attribute exists and convert string to symbol for hash key
51
51
  attributes = attributes.each_with_object({}) { |(k, v), h|
52
52
  if (!self.class.attribute_map.key?(k.to_sym))
53
- fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::HistoricalFieldResponseAllOf`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
53
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::HistoricalFieldResponseDataField`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
54
54
  end
55
55
  h[k.to_sym] = v
56
56
  }
@@ -60,7 +60,7 @@ module Fastly
60
60
  def self.fastly_all_of
61
61
  [
62
62
  :'Historical',
63
- :'HistoricalResponseAllOf'
63
+ :'HistoricalResponseDataField'
64
64
  ]
65
65
  end
66
66
 
@@ -12,7 +12,7 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Fastly
15
- class HistoricalResponseAllOf
15
+ class HistoricalResponseDataField
16
16
  # Contains the results of the query, organized by *service ID*, into arrays where each element describes one service over a *time span*.
17
17
  attr_accessor :data
18
18
 
@@ -45,13 +45,13 @@ module Fastly
45
45
  # @param [Hash] attributes Model attributes in the form of hash
46
46
  def initialize(attributes = {})
47
47
  if (!attributes.is_a?(Hash))
48
- fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::HistoricalResponseAllOf` initialize method"
48
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::HistoricalResponseDataField` initialize method"
49
49
  end
50
50
 
51
51
  # check to see if the attribute exists and convert string to symbol for hash key
52
52
  attributes = attributes.each_with_object({}) { |(k, v), h|
53
53
  if (!self.class.attribute_map.key?(k.to_sym))
54
- fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::HistoricalResponseAllOf`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
54
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::HistoricalResponseDataField`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
55
55
  end
56
56
  h[k.to_sym] = v
57
57
  }
@@ -0,0 +1,217 @@
1
+ =begin
2
+ #Fastly API
3
+
4
+ #Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: oss@fastly.com
8
+
9
+ =end
10
+
11
+ require 'date'
12
+ require 'time'
13
+
14
+ module Fastly
15
+ class HistoricalService
16
+ # The name of the service.
17
+ attr_accessor :name
18
+
19
+ # Attribute mapping from ruby-style variable name to JSON key.
20
+ def self.attribute_map
21
+ {
22
+ :'name' => :'name'
23
+ }
24
+ end
25
+
26
+ # Returns all the JSON keys this model knows about
27
+ def self.acceptable_attributes
28
+ attribute_map.values
29
+ end
30
+
31
+ # Attribute type mapping.
32
+ def self.fastly_types
33
+ {
34
+ :'name' => :'String'
35
+ }
36
+ end
37
+
38
+ # List of attributes with nullable: true
39
+ def self.fastly_nullable
40
+ Set.new([
41
+ ])
42
+ end
43
+
44
+ # Initializes the object
45
+ # @param [Hash] attributes Model attributes in the form of hash
46
+ def initialize(attributes = {})
47
+ if (!attributes.is_a?(Hash))
48
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::HistoricalService` initialize method"
49
+ end
50
+
51
+ # check to see if the attribute exists and convert string to symbol for hash key
52
+ attributes = attributes.each_with_object({}) { |(k, v), h|
53
+ if (!self.class.attribute_map.key?(k.to_sym))
54
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::HistoricalService`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
55
+ end
56
+ h[k.to_sym] = v
57
+ }
58
+
59
+ if attributes.key?(:'name')
60
+ self.name = attributes[:'name']
61
+ end
62
+ end
63
+
64
+ # Show invalid properties with the reasons. Usually used together with valid?
65
+ # @return Array for valid properties with the reasons
66
+ def list_invalid_properties
67
+ invalid_properties = Array.new
68
+ invalid_properties
69
+ end
70
+
71
+ # Check to see if the all the properties in the model are valid
72
+ # @return true if the model is valid
73
+ def valid?
74
+ true
75
+ end
76
+
77
+ # Checks equality by comparing each attribute.
78
+ # @param [Object] Object to be compared
79
+ def ==(o)
80
+ return true if self.equal?(o)
81
+ self.class == o.class &&
82
+ name == o.name
83
+ end
84
+
85
+ # @see the `==` method
86
+ # @param [Object] Object to be compared
87
+ def eql?(o)
88
+ self == o
89
+ end
90
+
91
+ # Calculates hash code according to all attributes.
92
+ # @return [Integer] Hash code
93
+ def hash
94
+ [name].hash
95
+ end
96
+
97
+ # Builds the object from hash
98
+ # @param [Hash] attributes Model attributes in the form of hash
99
+ # @return [Object] Returns the model itself
100
+ def self.build_from_hash(attributes)
101
+ new.build_from_hash(attributes)
102
+ end
103
+
104
+ # Builds the object from hash
105
+ # @param [Hash] attributes Model attributes in the form of hash
106
+ # @return [Object] Returns the model itself
107
+ def build_from_hash(attributes)
108
+ return nil unless attributes.is_a?(Hash)
109
+ self.class.fastly_types.each_pair do |key, type|
110
+ if attributes[self.class.attribute_map[key]].nil? && self.class.fastly_nullable.include?(key)
111
+ self.send("#{key}=", nil)
112
+ elsif type =~ /\AArray<(.*)>/i
113
+ # check to ensure the input is an array given that the attribute
114
+ # is documented as an array but the input is not
115
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
116
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
117
+ end
118
+ elsif !attributes[self.class.attribute_map[key]].nil?
119
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
120
+ end
121
+ end
122
+
123
+ self
124
+ end
125
+
126
+ # Deserializes the data based on type
127
+ # @param string type Data type
128
+ # @param string value Value to be deserialized
129
+ # @return [Object] Deserialized data
130
+ def _deserialize(type, value)
131
+ case type.to_sym
132
+ when :Time
133
+ Time.parse(value)
134
+ when :Date
135
+ Date.parse(value)
136
+ when :String
137
+ value.to_s
138
+ when :Integer
139
+ value.to_i
140
+ when :Float
141
+ value.to_f
142
+ when :Boolean
143
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
144
+ true
145
+ else
146
+ false
147
+ end
148
+ when :Object
149
+ # generic object (usually a Hash), return directly
150
+ value
151
+ when /\AArray<(?<inner_type>.+)>\z/
152
+ inner_type = Regexp.last_match[:inner_type]
153
+ value.map { |v| _deserialize(inner_type, v) }
154
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
155
+ k_type = Regexp.last_match[:k_type]
156
+ v_type = Regexp.last_match[:v_type]
157
+ {}.tap do |hash|
158
+ value.each do |k, v|
159
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
160
+ end
161
+ end
162
+ else # model
163
+ # models (e.g. Pet) or oneOf
164
+ klass = Fastly.const_get(type)
165
+ klass.respond_to?(:fastly_one_of) ? klass.build(value) : klass.build_from_hash(value)
166
+ end
167
+ end
168
+
169
+ # Returns the string representation of the object
170
+ # @return [String] String presentation of the object
171
+ def to_s
172
+ to_hash.to_s
173
+ end
174
+
175
+ # to_body is an alias to to_hash (backward compatibility)
176
+ # @return [Hash] Returns the object in the form of hash
177
+ def to_body
178
+ to_hash
179
+ end
180
+
181
+ # Returns the object in the form of hash
182
+ # @return [Hash] Returns the object in the form of hash
183
+ def to_hash
184
+ hash = {}
185
+ self.class.attribute_map.each_pair do |attr, param|
186
+ value = self.send(attr)
187
+ if value.nil?
188
+ is_nullable = self.class.fastly_nullable.include?(attr)
189
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
190
+ end
191
+
192
+ hash[param] = _to_hash(value)
193
+ end
194
+ hash
195
+ end
196
+
197
+ # Outputs non-array value in the form of hash
198
+ # For object, use to_hash. Otherwise, just return the value
199
+ # @param [Object] value Any valid value
200
+ # @return [Hash] Returns the value in the form of hash
201
+ def _to_hash(value)
202
+ if value.is_a?(Array)
203
+ value.compact.map { |v| _to_hash(v) }
204
+ elsif value.is_a?(Hash)
205
+ {}.tap do |hash|
206
+ value.each { |k, v| hash[k] = _to_hash(v) }
207
+ end
208
+ elsif value.respond_to? :to_hash
209
+ value.to_hash
210
+ else
211
+ value
212
+ end
213
+ end
214
+
215
+ end
216
+
217
+ end
@@ -44,7 +44,7 @@ module Fastly
44
44
  :'status' => :'String',
45
45
  :'meta' => :'HistoricalMeta',
46
46
  :'msg' => :'String',
47
- :'data' => :'HistoricalUsageMonthResponseAllOfData'
47
+ :'data' => :'HistoricalUsageMonthResponseData'
48
48
  }
49
49
  end
50
50
 
@@ -30,7 +30,7 @@ module Fastly
30
30
  # Attribute type mapping.
31
31
  def self.fastly_types
32
32
  {
33
- :'data' => :'HistoricalUsageMonthResponseAllOfData'
33
+ :'data' => :'HistoricalUsageMonthResponseData'
34
34
  }
35
35
  end
36
36
 
@@ -12,7 +12,7 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Fastly
15
- class HistoricalUsageMonthResponseAllOfData
15
+ class HistoricalUsageMonthResponseData
16
16
  attr_accessor :customer_id
17
17
 
18
18
  attr_accessor :services
@@ -37,7 +37,7 @@ module Fastly
37
37
  def self.fastly_types
38
38
  {
39
39
  :'customer_id' => :'String',
40
- :'services' => :'Hash<String, Hash<String, HistoricalUsageResults>>',
40
+ :'services' => :'Hash<String, HistoricalService>',
41
41
  :'total' => :'HistoricalUsageResults'
42
42
  }
43
43
  end
@@ -52,13 +52,13 @@ module Fastly
52
52
  # @param [Hash] attributes Model attributes in the form of hash
53
53
  def initialize(attributes = {})
54
54
  if (!attributes.is_a?(Hash))
55
- fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::HistoricalUsageMonthResponseAllOfData` initialize method"
55
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::HistoricalUsageMonthResponseData` initialize method"
56
56
  end
57
57
 
58
58
  # check to see if the attribute exists and convert string to symbol for hash key
59
59
  attributes = attributes.each_with_object({}) { |(k, v), h|
60
60
  if (!self.class.attribute_map.key?(k.to_sym))
61
- fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::HistoricalUsageMonthResponseAllOfData`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
61
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::HistoricalUsageMonthResponseData`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
62
62
  end
63
63
  h[k.to_sym] = v
64
64
  }
@@ -9,5 +9,5 @@ Contact: oss@fastly.com
9
9
  =end
10
10
 
11
11
  module Fastly
12
- VERSION = '5.2.1'
12
+ VERSION = '5.2.2'
13
13
  end
data/lib/fastly.rb CHANGED
@@ -117,18 +117,19 @@ require 'fastly/models/historical_aggregate_response_all_of'
117
117
  require 'fastly/models/historical_field_aggregate_response'
118
118
  require 'fastly/models/historical_field_aggregate_response_all_of'
119
119
  require 'fastly/models/historical_field_response'
120
- require 'fastly/models/historical_field_response_all_of'
120
+ require 'fastly/models/historical_field_response_data_field'
121
121
  require 'fastly/models/historical_field_results_attributes'
122
122
  require 'fastly/models/historical_field_results_attributes_all_of'
123
123
  require 'fastly/models/historical_meta'
124
124
  require 'fastly/models/historical_regions_response'
125
125
  require 'fastly/models/historical_regions_response_all_of'
126
126
  require 'fastly/models/historical_response'
127
- require 'fastly/models/historical_response_all_of'
127
+ require 'fastly/models/historical_response_data_field'
128
+ require 'fastly/models/historical_service'
128
129
  require 'fastly/models/historical_usage_aggregate_response'
129
130
  require 'fastly/models/historical_usage_month_response'
130
131
  require 'fastly/models/historical_usage_month_response_all_of'
131
- require 'fastly/models/historical_usage_month_response_all_of_data'
132
+ require 'fastly/models/historical_usage_month_response_data'
132
133
  require 'fastly/models/historical_usage_results'
133
134
  require 'fastly/models/historical_usage_service_response'
134
135
  require 'fastly/models/historical_usage_service_response_all_of'
data/sig.json CHANGED
@@ -1 +1 @@
1
- {"G": "7a7ec0a2", "D": "a64b7e5f"}
1
+ {"G": "70bf90be", "D": "bd27032c"}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastly
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.1
4
+ version: 5.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fastly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-21 00:00:00.000000000 Z
11
+ date: 2023-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -181,18 +181,19 @@ files:
181
181
  - docs/HistoricalFieldAggregateResponse.md
182
182
  - docs/HistoricalFieldAggregateResponseAllOf.md
183
183
  - docs/HistoricalFieldResponse.md
184
- - docs/HistoricalFieldResponseAllOf.md
184
+ - docs/HistoricalFieldResponseDataField.md
185
185
  - docs/HistoricalFieldResultsAttributes.md
186
186
  - docs/HistoricalFieldResultsAttributesAllOf.md
187
187
  - docs/HistoricalMeta.md
188
188
  - docs/HistoricalRegionsResponse.md
189
189
  - docs/HistoricalRegionsResponseAllOf.md
190
190
  - docs/HistoricalResponse.md
191
- - docs/HistoricalResponseAllOf.md
191
+ - docs/HistoricalResponseDataField.md
192
+ - docs/HistoricalService.md
192
193
  - docs/HistoricalUsageAggregateResponse.md
193
194
  - docs/HistoricalUsageMonthResponse.md
194
195
  - docs/HistoricalUsageMonthResponseAllOf.md
195
- - docs/HistoricalUsageMonthResponseAllOfData.md
196
+ - docs/HistoricalUsageMonthResponseData.md
196
197
  - docs/HistoricalUsageResults.md
197
198
  - docs/HistoricalUsageServiceResponse.md
198
199
  - docs/HistoricalUsageServiceResponseAllOf.md
@@ -958,18 +959,19 @@ files:
958
959
  - lib/fastly/models/historical_field_aggregate_response.rb
959
960
  - lib/fastly/models/historical_field_aggregate_response_all_of.rb
960
961
  - lib/fastly/models/historical_field_response.rb
961
- - lib/fastly/models/historical_field_response_all_of.rb
962
+ - lib/fastly/models/historical_field_response_data_field.rb
962
963
  - lib/fastly/models/historical_field_results_attributes.rb
963
964
  - lib/fastly/models/historical_field_results_attributes_all_of.rb
964
965
  - lib/fastly/models/historical_meta.rb
965
966
  - lib/fastly/models/historical_regions_response.rb
966
967
  - lib/fastly/models/historical_regions_response_all_of.rb
967
968
  - lib/fastly/models/historical_response.rb
968
- - lib/fastly/models/historical_response_all_of.rb
969
+ - lib/fastly/models/historical_response_data_field.rb
970
+ - lib/fastly/models/historical_service.rb
969
971
  - lib/fastly/models/historical_usage_aggregate_response.rb
970
972
  - lib/fastly/models/historical_usage_month_response.rb
971
973
  - lib/fastly/models/historical_usage_month_response_all_of.rb
972
- - lib/fastly/models/historical_usage_month_response_all_of_data.rb
974
+ - lib/fastly/models/historical_usage_month_response_data.rb
973
975
  - lib/fastly/models/historical_usage_results.rb
974
976
  - lib/fastly/models/historical_usage_service_response.rb
975
977
  - lib/fastly/models/historical_usage_service_response_all_of.rb