fastly 13.1.0 → 14.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +25 -0
  3. data/Gemfile.lock +4 -4
  4. data/README.md +16 -4
  5. data/docs/AttackReport.md +19 -0
  6. data/docs/AttackSignal.md +12 -0
  7. data/docs/AttackSource.md +13 -0
  8. data/docs/Backend.md +4 -4
  9. data/docs/BackendApi.md +10 -10
  10. data/docs/BackendResponse.md +4 -4
  11. data/docs/DdosProtectionApi.md +40 -0
  12. data/docs/DdosProtectionAttributeStats.md +1 -1
  13. data/docs/DdosProtectionInvalidRequest.md +13 -0
  14. data/docs/{LogTimeseriesResultDimensions.md → DdosProtectionNotAuthorized.md} +3 -2
  15. data/docs/DdosProtectionRule.md +1 -1
  16. data/docs/DdosProtectionRuleAllOf.md +1 -1
  17. data/docs/DdosProtectionRulePatch.md +10 -0
  18. data/docs/HistoricalApi.md +2 -0
  19. data/docs/KvStoreApi.md +2 -0
  20. data/docs/ListAttackReport.md +11 -0
  21. data/docs/{DdosProtectionTrafficAttribute.md → ListAttackReportMeta.md} +2 -1
  22. data/docs/{DdosProtectionAction.md → ListSignalReport.md} +2 -1
  23. data/docs/LogExplorerApi.md +1 -1
  24. data/docs/NgwafReportsApi.md +99 -0
  25. data/docs/ObservabilityTimeseriesApi.md +67 -0
  26. data/docs/PoolApi.md +4 -4
  27. data/docs/PoolResponse.md +1 -1
  28. data/docs/PoolResponseCommon.md +1 -1
  29. data/docs/PoolResponsePost.md +1 -1
  30. data/docs/SignalReport.md +13 -0
  31. data/docs/TimeseriesGetResponse.md +11 -0
  32. data/docs/TimeseriesMeta.md +13 -0
  33. data/docs/TimeseriesResult.md +11 -0
  34. data/docs/TlsSubscriptionsApi.md +0 -2
  35. data/docs/TopWorkspace.md +12 -0
  36. data/lib/fastly/api/backend_api.rb +16 -16
  37. data/lib/fastly/api/ddos_protection_api.rb +70 -0
  38. data/lib/fastly/api/historical_api.rb +3 -0
  39. data/lib/fastly/api/kv_store_api.rb +3 -0
  40. data/lib/fastly/api/ngwaf_reports_api.rb +161 -0
  41. data/lib/fastly/api/{observability_timeseries_for_logs_api.rb → observability_timeseries_api.rb} +38 -43
  42. data/lib/fastly/api/pool_api.rb +4 -4
  43. data/lib/fastly/api/tls_subscriptions_api.rb +0 -3
  44. data/lib/fastly/configuration.rb +19 -1
  45. data/lib/fastly/models/attack_report.rb +359 -0
  46. data/lib/fastly/models/attack_signal.rb +252 -0
  47. data/lib/fastly/models/attack_source.rb +267 -0
  48. data/lib/fastly/models/backend.rb +7 -1
  49. data/lib/fastly/models/backend_response.rb +7 -1
  50. data/lib/fastly/models/ddos_protection_attribute_stats.rb +2 -1
  51. data/lib/fastly/models/ddos_protection_invalid_request.rb +309 -0
  52. data/lib/fastly/models/{log_timeseries_filter_field_item.rb → ddos_protection_not_authorized.rb} +24 -36
  53. data/lib/fastly/models/ddos_protection_rule.rb +2 -1
  54. data/lib/fastly/models/ddos_protection_rule_all_of.rb +2 -1
  55. data/lib/fastly/models/ddos_protection_rule_patch.rb +219 -0
  56. data/lib/fastly/models/{log_timeseries_get_response.rb → list_attack_report.rb} +5 -5
  57. data/lib/fastly/models/list_attack_report_meta.rb +218 -0
  58. data/lib/fastly/models/{log_timeseries_result_dimensions.rb → list_signal_report.rb} +12 -10
  59. data/lib/fastly/models/pool_response.rb +1 -1
  60. data/lib/fastly/models/pool_response_common.rb +1 -1
  61. data/lib/fastly/models/pool_response_post.rb +1 -1
  62. data/lib/fastly/models/signal_report.rb +249 -0
  63. data/lib/fastly/models/{log_timeseries_get_response_meta_filters.rb → timeseries_get_response.rb} +20 -13
  64. data/lib/fastly/models/{log_timeseries_get_response_meta.rb → timeseries_meta.rb} +23 -32
  65. data/lib/fastly/models/{log_timeseries_result.rb → timeseries_result.rb} +9 -5
  66. data/lib/fastly/models/top_workspace.rb +238 -0
  67. data/lib/fastly/version.rb +1 -1
  68. data/lib/fastly.rb +16 -10
  69. data/sig.json +1 -1
  70. metadata +34 -22
  71. data/docs/LogTimeseriesFilterFieldItem.md +0 -12
  72. data/docs/LogTimeseriesGetResponse.md +0 -11
  73. data/docs/LogTimeseriesGetResponseMeta.md +0 -14
  74. data/docs/LogTimeseriesGetResponseMetaFilters.md +0 -10
  75. data/docs/LogTimeseriesResult.md +0 -11
  76. data/docs/LogTimeseriesValueField.md +0 -59
  77. data/docs/ObservabilityTimeseriesForLogsApi.md +0 -67
  78. data/lib/fastly/models/ddos_protection_action.rb +0 -37
  79. data/lib/fastly/models/ddos_protection_traffic_attribute.rb +0 -40
  80. data/lib/fastly/models/log_timeseries_value_field.rb +0 -108
@@ -12,29 +12,26 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Fastly
15
- class LogTimeseriesGetResponseMeta
16
- # ID of the service for which data was returned.
17
- attr_accessor :service_id
18
-
15
+ class TimeseriesMeta
19
16
  # Start time for the query as supplied in the request.
20
- attr_accessor :start
17
+ attr_accessor :from
21
18
 
22
19
  # End time for the query as supplied in the request.
23
- attr_accessor :_end
20
+ attr_accessor :to
24
21
 
25
22
  # The granularity of the time buckets in the response.
26
23
  attr_accessor :granularity
27
24
 
28
- attr_accessor :filters
25
+ # Maximum number of results returned in the request.
26
+ attr_accessor :limit
29
27
 
30
28
  # Attribute mapping from ruby-style variable name to JSON key.
31
29
  def self.attribute_map
32
30
  {
33
- :'service_id' => :'service_id',
34
- :'start' => :'start',
35
- :'_end' => :'end',
31
+ :'from' => :'from',
32
+ :'to' => :'to',
36
33
  :'granularity' => :'granularity',
37
- :'filters' => :'filters'
34
+ :'limit' => :'limit'
38
35
  }
39
36
  end
40
37
 
@@ -46,11 +43,10 @@ module Fastly
46
43
  # Attribute type mapping.
47
44
  def self.fastly_types
48
45
  {
49
- :'service_id' => :'String',
50
- :'start' => :'String',
51
- :'_end' => :'String',
46
+ :'from' => :'String',
47
+ :'to' => :'String',
52
48
  :'granularity' => :'String',
53
- :'filters' => :'LogTimeseriesGetResponseMetaFilters'
49
+ :'limit' => :'String'
54
50
  }
55
51
  end
56
52
 
@@ -64,35 +60,31 @@ module Fastly
64
60
  # @param [Hash] attributes Model attributes in the form of hash
65
61
  def initialize(attributes = {})
66
62
  if (!attributes.is_a?(Hash))
67
- fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::LogTimeseriesGetResponseMeta` initialize method"
63
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::TimeseriesMeta` initialize method"
68
64
  end
69
65
 
70
66
  # check to see if the attribute exists and convert string to symbol for hash key
71
67
  attributes = attributes.each_with_object({}) { |(k, v), h|
72
68
  if (!self.class.attribute_map.key?(k.to_sym))
73
- fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::LogTimeseriesGetResponseMeta`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
69
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::TimeseriesMeta`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
74
70
  end
75
71
  h[k.to_sym] = v
76
72
  }
77
73
 
78
- if attributes.key?(:'service_id')
79
- self.service_id = attributes[:'service_id']
80
- end
81
-
82
- if attributes.key?(:'start')
83
- self.start = attributes[:'start']
74
+ if attributes.key?(:'from')
75
+ self.from = attributes[:'from']
84
76
  end
85
77
 
86
- if attributes.key?(:'_end')
87
- self._end = attributes[:'_end']
78
+ if attributes.key?(:'to')
79
+ self.to = attributes[:'to']
88
80
  end
89
81
 
90
82
  if attributes.key?(:'granularity')
91
83
  self.granularity = attributes[:'granularity']
92
84
  end
93
85
 
94
- if attributes.key?(:'filters')
95
- self.filters = attributes[:'filters']
86
+ if attributes.key?(:'limit')
87
+ self.limit = attributes[:'limit']
96
88
  end
97
89
  end
98
90
 
@@ -114,11 +106,10 @@ module Fastly
114
106
  def ==(o)
115
107
  return true if self.equal?(o)
116
108
  self.class == o.class &&
117
- service_id == o.service_id &&
118
- start == o.start &&
119
- _end == o._end &&
109
+ from == o.from &&
110
+ to == o.to &&
120
111
  granularity == o.granularity &&
121
- filters == o.filters
112
+ limit == o.limit
122
113
  end
123
114
 
124
115
  # @see the `==` method
@@ -130,7 +121,7 @@ module Fastly
130
121
  # Calculates hash code according to all attributes.
131
122
  # @return [Integer] Hash code
132
123
  def hash
133
- [service_id, start, _end, granularity, filters].hash
124
+ [from, to, granularity, limit].hash
134
125
  end
135
126
 
136
127
  # Builds the object from hash
@@ -12,9 +12,11 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Fastly
15
- class LogTimeseriesResult
15
+ class TimeseriesResult
16
+ # An object containing each requested dimension and time as properties.
16
17
  attr_accessor :dimensions
17
18
 
19
+ # An object containing each requested series as a property.
18
20
  attr_accessor :values
19
21
 
20
22
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -33,7 +35,7 @@ module Fastly
33
35
  # Attribute type mapping.
34
36
  def self.fastly_types
35
37
  {
36
- :'dimensions' => :'LogTimeseriesResultDimensions',
38
+ :'dimensions' => :'Hash<String, Object>',
37
39
  :'values' => :'Hash<String, Object>'
38
40
  }
39
41
  end
@@ -48,19 +50,21 @@ module Fastly
48
50
  # @param [Hash] attributes Model attributes in the form of hash
49
51
  def initialize(attributes = {})
50
52
  if (!attributes.is_a?(Hash))
51
- fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::LogTimeseriesResult` initialize method"
53
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::TimeseriesResult` initialize method"
52
54
  end
53
55
 
54
56
  # check to see if the attribute exists and convert string to symbol for hash key
55
57
  attributes = attributes.each_with_object({}) { |(k, v), h|
56
58
  if (!self.class.attribute_map.key?(k.to_sym))
57
- fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::LogTimeseriesResult`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
59
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::TimeseriesResult`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
58
60
  end
59
61
  h[k.to_sym] = v
60
62
  }
61
63
 
62
64
  if attributes.key?(:'dimensions')
63
- self.dimensions = attributes[:'dimensions']
65
+ if (value = attributes[:'dimensions']).is_a?(Hash)
66
+ self.dimensions = value
67
+ end
64
68
  end
65
69
 
66
70
  if attributes.key?(:'values')
@@ -0,0 +1,238 @@
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://www.fastly.com/documentation/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
+ # This object, found within the `top_workspaces` array, contains the workspace information and count for the requested signal.
16
+ class TopWorkspace
17
+ # ID of the workspace.
18
+ attr_accessor :id
19
+
20
+ # Name of the workspace.
21
+ attr_accessor :name
22
+
23
+ # Count of attacks on this workspace for the specific attack type.
24
+ attr_accessor :count
25
+
26
+ # Attribute mapping from ruby-style variable name to JSON key.
27
+ def self.attribute_map
28
+ {
29
+ :'id' => :'id',
30
+ :'name' => :'name',
31
+ :'count' => :'count'
32
+ }
33
+ end
34
+
35
+ # Returns all the JSON keys this model knows about
36
+ def self.acceptable_attributes
37
+ attribute_map.values
38
+ end
39
+
40
+ # Attribute type mapping.
41
+ def self.fastly_types
42
+ {
43
+ :'id' => :'String',
44
+ :'name' => :'String',
45
+ :'count' => :'Integer'
46
+ }
47
+ end
48
+
49
+ # List of attributes with nullable: true
50
+ def self.fastly_nullable
51
+ Set.new([
52
+ ])
53
+ end
54
+
55
+ # Initializes the object
56
+ # @param [Hash] attributes Model attributes in the form of hash
57
+ def initialize(attributes = {})
58
+ if (!attributes.is_a?(Hash))
59
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::TopWorkspace` initialize method"
60
+ end
61
+
62
+ # check to see if the attribute exists and convert string to symbol for hash key
63
+ attributes = attributes.each_with_object({}) { |(k, v), h|
64
+ if (!self.class.attribute_map.key?(k.to_sym))
65
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::TopWorkspace`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
66
+ end
67
+ h[k.to_sym] = v
68
+ }
69
+
70
+ if attributes.key?(:'id')
71
+ self.id = attributes[:'id']
72
+ end
73
+
74
+ if attributes.key?(:'name')
75
+ self.name = attributes[:'name']
76
+ end
77
+
78
+ if attributes.key?(:'count')
79
+ self.count = attributes[:'count']
80
+ end
81
+ end
82
+
83
+ # Show invalid properties with the reasons. Usually used together with valid?
84
+ # @return Array for valid properties with the reasons
85
+ def list_invalid_properties
86
+ invalid_properties = Array.new
87
+ invalid_properties
88
+ end
89
+
90
+ # Check to see if the all the properties in the model are valid
91
+ # @return true if the model is valid
92
+ def valid?
93
+ true
94
+ end
95
+
96
+ # Checks equality by comparing each attribute.
97
+ # @param [Object] Object to be compared
98
+ def ==(o)
99
+ return true if self.equal?(o)
100
+ self.class == o.class &&
101
+ id == o.id &&
102
+ name == o.name &&
103
+ count == o.count
104
+ end
105
+
106
+ # @see the `==` method
107
+ # @param [Object] Object to be compared
108
+ def eql?(o)
109
+ self == o
110
+ end
111
+
112
+ # Calculates hash code according to all attributes.
113
+ # @return [Integer] Hash code
114
+ def hash
115
+ [id, name, count].hash
116
+ end
117
+
118
+ # Builds the object from hash
119
+ # @param [Hash] attributes Model attributes in the form of hash
120
+ # @return [Object] Returns the model itself
121
+ def self.build_from_hash(attributes)
122
+ new.build_from_hash(attributes)
123
+ end
124
+
125
+ # Builds the object from hash
126
+ # @param [Hash] attributes Model attributes in the form of hash
127
+ # @return [Object] Returns the model itself
128
+ def build_from_hash(attributes)
129
+ return nil unless attributes.is_a?(Hash)
130
+ self.class.fastly_types.each_pair do |key, type|
131
+ if attributes[self.class.attribute_map[key]].nil? && self.class.fastly_nullable.include?(key)
132
+ self.send("#{key}=", nil)
133
+ elsif type =~ /\AArray<(.*)>/i
134
+ # check to ensure the input is an array given that the attribute
135
+ # is documented as an array but the input is not
136
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
137
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
138
+ end
139
+ elsif !attributes[self.class.attribute_map[key]].nil?
140
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
141
+ end
142
+ end
143
+
144
+ self
145
+ end
146
+
147
+ # Deserializes the data based on type
148
+ # @param string type Data type
149
+ # @param string value Value to be deserialized
150
+ # @return [Object] Deserialized data
151
+ def _deserialize(type, value)
152
+ case type.to_sym
153
+ when :Time
154
+ Time.parse(value)
155
+ when :Date
156
+ Date.parse(value)
157
+ when :String
158
+ value.to_s
159
+ when :Integer
160
+ value.to_i
161
+ when :Float
162
+ value.to_f
163
+ when :Boolean
164
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
165
+ true
166
+ else
167
+ false
168
+ end
169
+ when :Object
170
+ # generic object (usually a Hash), return directly
171
+ value
172
+ when /\AArray<(?<inner_type>.+)>\z/
173
+ inner_type = Regexp.last_match[:inner_type]
174
+ value.map { |v| _deserialize(inner_type, v) }
175
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
176
+ k_type = Regexp.last_match[:k_type]
177
+ v_type = Regexp.last_match[:v_type]
178
+ {}.tap do |hash|
179
+ value.each do |k, v|
180
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
181
+ end
182
+ end
183
+ else # model
184
+ # models (e.g. Pet) or oneOf
185
+ klass = Fastly.const_get(type)
186
+ klass.respond_to?(:fastly_one_of) ? klass.build(value) : klass.build_from_hash(value)
187
+ end
188
+ end
189
+
190
+ # Returns the string representation of the object
191
+ # @return [String] String presentation of the object
192
+ def to_s
193
+ to_hash.to_s
194
+ end
195
+
196
+ # to_body is an alias to to_hash (backward compatibility)
197
+ # @return [Hash] Returns the object in the form of hash
198
+ def to_body
199
+ to_hash
200
+ end
201
+
202
+ # Returns the object in the form of hash
203
+ # @return [Hash] Returns the object in the form of hash
204
+ def to_hash
205
+ hash = {}
206
+ self.class.attribute_map.each_pair do |attr, param|
207
+ value = self.send(attr)
208
+ if value.nil?
209
+ is_nullable = self.class.fastly_nullable.include?(attr)
210
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
211
+ end
212
+
213
+ hash[param] = _to_hash(value)
214
+ end
215
+ hash
216
+ end
217
+
218
+ # Outputs non-array value in the form of hash
219
+ # For object, use to_hash. Otherwise, just return the value
220
+ # @param [Object] value Any valid value
221
+ # @return [Hash] Returns the value in the form of hash
222
+ def _to_hash(value)
223
+ if value.is_a?(Array)
224
+ value.compact.map { |v| _to_hash(v) }
225
+ elsif value.is_a?(Hash)
226
+ {}.tap do |hash|
227
+ value.each { |k, v| hash[k] = _to_hash(v) }
228
+ end
229
+ elsif value.respond_to? :to_hash
230
+ value.to_hash
231
+ else
232
+ value
233
+ end
234
+ end
235
+
236
+ end
237
+
238
+ end
@@ -9,5 +9,5 @@ Contact: oss@fastly.com
9
9
  =end
10
10
 
11
11
  module Fastly
12
- VERSION = '13.1.0'
12
+ VERSION = '14.0.0'
13
13
  end
data/lib/fastly.rb CHANGED
@@ -33,6 +33,9 @@ require 'fastly/models/ai_accelerator_response_product_product'
33
33
  require 'fastly/models/apex_redirect'
34
34
  require 'fastly/models/apex_redirect_all_of'
35
35
  require 'fastly/models/async_response'
36
+ require 'fastly/models/attack_report'
37
+ require 'fastly/models/attack_signal'
38
+ require 'fastly/models/attack_source'
36
39
  require 'fastly/models/automation_token'
37
40
  require 'fastly/models/automation_token_create_request'
38
41
  require 'fastly/models/automation_token_create_request_attributes'
@@ -124,14 +127,15 @@ require 'fastly/models/dashboard_item_property_visualization'
124
127
  require 'fastly/models/dashboard_item_property_visualization_property_config'
125
128
  require 'fastly/models/dashboard_property_created_by'
126
129
  require 'fastly/models/dashboard_property_updated_by'
127
- require 'fastly/models/ddos_protection_action'
128
130
  require 'fastly/models/ddos_protection_attribute_stats'
129
131
  require 'fastly/models/ddos_protection_attribute_value'
130
132
  require 'fastly/models/ddos_protection_error'
131
133
  require 'fastly/models/ddos_protection_error_errors'
132
134
  require 'fastly/models/ddos_protection_event'
133
135
  require 'fastly/models/ddos_protection_event_all_of'
136
+ require 'fastly/models/ddos_protection_invalid_request'
134
137
  require 'fastly/models/ddos_protection_not_authenticated'
138
+ require 'fastly/models/ddos_protection_not_authorized'
135
139
  require 'fastly/models/ddos_protection_not_found'
136
140
  require 'fastly/models/ddos_protection_request_update_configuration'
137
141
  require 'fastly/models/ddos_protection_response_body_get_all_services'
@@ -150,7 +154,7 @@ require 'fastly/models/ddos_protection_response_product_product'
150
154
  require 'fastly/models/ddos_protection_response_service'
151
155
  require 'fastly/models/ddos_protection_rule'
152
156
  require 'fastly/models/ddos_protection_rule_all_of'
153
- require 'fastly/models/ddos_protection_traffic_attribute'
157
+ require 'fastly/models/ddos_protection_rule_patch'
154
158
  require 'fastly/models/ddos_protection_traffic_stats'
155
159
  require 'fastly/models/ddos_protection_traffic_stats_all_of'
156
160
  require 'fastly/models/default_settings'
@@ -314,9 +318,12 @@ require 'fastly/models/kv_store_batch_response_errors'
314
318
  require 'fastly/models/kv_store_details'
315
319
  require 'fastly/models/kv_store_request_create'
316
320
  require 'fastly/models/kv_store_upsert_batch'
321
+ require 'fastly/models/list_attack_report'
322
+ require 'fastly/models/list_attack_report_meta'
317
323
  require 'fastly/models/list_customer_addresses_response'
318
324
  require 'fastly/models/list_dashboards_response'
319
325
  require 'fastly/models/list_eom_invoices_response'
326
+ require 'fastly/models/list_signal_report'
320
327
  require 'fastly/models/listinvoices'
321
328
  require 'fastly/models/log_aggregations_filter_field_item'
322
329
  require 'fastly/models/log_aggregations_get_response'
@@ -343,13 +350,6 @@ require 'fastly/models/log_insights_meta_filter'
343
350
  require 'fastly/models/log_insights_values'
344
351
  require 'fastly/models/log_property_service_id'
345
352
  require 'fastly/models/log_record'
346
- require 'fastly/models/log_timeseries_filter_field_item'
347
- require 'fastly/models/log_timeseries_get_response'
348
- require 'fastly/models/log_timeseries_get_response_meta'
349
- require 'fastly/models/log_timeseries_get_response_meta_filters'
350
- require 'fastly/models/log_timeseries_result'
351
- require 'fastly/models/log_timeseries_result_dimensions'
352
- require 'fastly/models/log_timeseries_value_field'
353
353
  require 'fastly/models/logging_address_and_port'
354
354
  require 'fastly/models/logging_azureblob_additional'
355
355
  require 'fastly/models/logging_azureblob_response'
@@ -656,6 +656,7 @@ require 'fastly/models/serviceusagetype'
656
656
  require 'fastly/models/serviceusagetypes'
657
657
  require 'fastly/models/settings'
658
658
  require 'fastly/models/settings_response'
659
+ require 'fastly/models/signal_report'
659
660
  require 'fastly/models/signing_key'
660
661
  require 'fastly/models/snippet'
661
662
  require 'fastly/models/snippet_response'
@@ -668,6 +669,9 @@ require 'fastly/models/stats'
668
669
  require 'fastly/models/sudo_generic_token_error'
669
670
  require 'fastly/models/sudo_request'
670
671
  require 'fastly/models/sudo_response'
672
+ require 'fastly/models/timeseries_get_response'
673
+ require 'fastly/models/timeseries_meta'
674
+ require 'fastly/models/timeseries_result'
671
675
  require 'fastly/models/timestamps'
672
676
  require 'fastly/models/timestamps_no_delete'
673
677
  require 'fastly/models/tls_activation'
@@ -746,6 +750,7 @@ require 'fastly/models/token_created_response_all_of'
746
750
  require 'fastly/models/token_response'
747
751
  require 'fastly/models/token_response_all_of'
748
752
  require 'fastly/models/tokens_additional_props'
753
+ require 'fastly/models/top_workspace'
749
754
  require 'fastly/models/type_billing_address'
750
755
  require 'fastly/models/type_contact'
751
756
  require 'fastly/models/type_customer'
@@ -889,10 +894,11 @@ require 'fastly/api/logging_splunk_api'
889
894
  require 'fastly/api/logging_sumologic_api'
890
895
  require 'fastly/api/logging_syslog_api'
891
896
  require 'fastly/api/mutual_authentication_api'
897
+ require 'fastly/api/ngwaf_reports_api'
892
898
  require 'fastly/api/object_storage_access_keys_api'
893
899
  require 'fastly/api/observability_aggregations_for_logs_api'
894
900
  require 'fastly/api/observability_custom_dashboards_api'
895
- require 'fastly/api/observability_timeseries_for_logs_api'
901
+ require 'fastly/api/observability_timeseries_api'
896
902
  require 'fastly/api/origin_inspector_historical_api'
897
903
  require 'fastly/api/origin_inspector_realtime_api'
898
904
  require 'fastly/api/package_api'
data/sig.json CHANGED
@@ -1 +1 @@
1
- {"G": "bb3cb969", "D": "6e6e26c6"}
1
+ {"G": "bb3cb969", "D": "3441d86a"}