fastly 8.1.0 → 8.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -695,6 +695,69 @@ module Fastly
695
695
  # The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution.
696
696
  attr_accessor :bot_challenges_failed
697
697
 
698
+ # The number of times the downgrade action was taken. The downgrade action restricts the client to http1.
699
+ attr_accessor :ddos_action_downgrade
700
+
701
+ # The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1.
702
+ attr_accessor :ddos_action_downgraded_connections
703
+
704
+ # Number of cache hits for a VCL service running on Compute.
705
+ attr_accessor :vcl_on_compute_hit_requests
706
+
707
+ # Number of cache misses for a VCL service running on Compute.
708
+ attr_accessor :vcl_on_compute_miss_requests
709
+
710
+ # Number of requests that passed through the CDN without being cached for a VCL service running on Compute.
711
+ attr_accessor :vcl_on_compute_pass_requests
712
+
713
+ # Number of cache errors for a VCL service running on Compute.
714
+ attr_accessor :vcl_on_compute_error_requests
715
+
716
+ # Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service running on Compute.
717
+ attr_accessor :vcl_on_compute_synth_requests
718
+
719
+ # Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service running on Compute.
720
+ attr_accessor :vcl_on_compute_edge_hit_requests
721
+
722
+ # Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service running on Compute.
723
+ attr_accessor :vcl_on_compute_edge_miss_requests
724
+
725
+ # Number of cache hits for a VCL service.
726
+ attr_accessor :all_hit_requests
727
+
728
+ # Number of cache misses for a VCL service.
729
+ attr_accessor :all_miss_requests
730
+
731
+ # Number of requests that passed through the CDN without being cached for a VCL service.
732
+ attr_accessor :all_pass_requests
733
+
734
+ # Number of cache errors for a VCL service.
735
+ attr_accessor :all_error_requests
736
+
737
+ # Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service.
738
+ attr_accessor :all_synth_requests
739
+
740
+ # Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service.
741
+ attr_accessor :all_edge_hit_requests
742
+
743
+ # Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service.
744
+ attr_accessor :all_edge_miss_requests
745
+
746
+ # Number of \"Informational\" category status codes delivered for all sources.
747
+ attr_accessor :all_status_1xx
748
+
749
+ # Number of \"Success\" status codes delivered for all sources.
750
+ attr_accessor :all_status_2xx
751
+
752
+ # Number of \"Redirection\" codes delivered for all sources.
753
+ attr_accessor :all_status_3xx
754
+
755
+ # Number of \"Client Error\" codes delivered for all sources.
756
+ attr_accessor :all_status_4xx
757
+
758
+ # Number of \"Server Error\" codes delivered for all sources.
759
+ attr_accessor :all_status_5xx
760
+
698
761
  attr_accessor :service_id
699
762
 
700
763
  # Timestamp for the start of the time period being reported
@@ -930,6 +993,27 @@ module Fastly
930
993
  :'bot_challenges_issued' => :'bot_challenges_issued',
931
994
  :'bot_challenges_succeeded' => :'bot_challenges_succeeded',
932
995
  :'bot_challenges_failed' => :'bot_challenges_failed',
996
+ :'ddos_action_downgrade' => :'ddos_action_downgrade',
997
+ :'ddos_action_downgraded_connections' => :'ddos_action_downgraded_connections',
998
+ :'vcl_on_compute_hit_requests' => :'vcl_on_compute_hit_requests',
999
+ :'vcl_on_compute_miss_requests' => :'vcl_on_compute_miss_requests',
1000
+ :'vcl_on_compute_pass_requests' => :'vcl_on_compute_pass_requests',
1001
+ :'vcl_on_compute_error_requests' => :'vcl_on_compute_error_requests',
1002
+ :'vcl_on_compute_synth_requests' => :'vcl_on_compute_synth_requests',
1003
+ :'vcl_on_compute_edge_hit_requests' => :'vcl_on_compute_edge_hit_requests',
1004
+ :'vcl_on_compute_edge_miss_requests' => :'vcl_on_compute_edge_miss_requests',
1005
+ :'all_hit_requests' => :'all_hit_requests',
1006
+ :'all_miss_requests' => :'all_miss_requests',
1007
+ :'all_pass_requests' => :'all_pass_requests',
1008
+ :'all_error_requests' => :'all_error_requests',
1009
+ :'all_synth_requests' => :'all_synth_requests',
1010
+ :'all_edge_hit_requests' => :'all_edge_hit_requests',
1011
+ :'all_edge_miss_requests' => :'all_edge_miss_requests',
1012
+ :'all_status_1xx' => :'all_status_1xx',
1013
+ :'all_status_2xx' => :'all_status_2xx',
1014
+ :'all_status_3xx' => :'all_status_3xx',
1015
+ :'all_status_4xx' => :'all_status_4xx',
1016
+ :'all_status_5xx' => :'all_status_5xx',
933
1017
  :'service_id' => :'service_id',
934
1018
  :'start_time' => :'start_time'
935
1019
  }
@@ -1170,6 +1254,27 @@ module Fastly
1170
1254
  :'bot_challenges_issued' => :'Integer',
1171
1255
  :'bot_challenges_succeeded' => :'Integer',
1172
1256
  :'bot_challenges_failed' => :'Integer',
1257
+ :'ddos_action_downgrade' => :'Integer',
1258
+ :'ddos_action_downgraded_connections' => :'Integer',
1259
+ :'vcl_on_compute_hit_requests' => :'Integer',
1260
+ :'vcl_on_compute_miss_requests' => :'Integer',
1261
+ :'vcl_on_compute_pass_requests' => :'Integer',
1262
+ :'vcl_on_compute_error_requests' => :'Integer',
1263
+ :'vcl_on_compute_synth_requests' => :'Integer',
1264
+ :'vcl_on_compute_edge_hit_requests' => :'Integer',
1265
+ :'vcl_on_compute_edge_miss_requests' => :'Integer',
1266
+ :'all_hit_requests' => :'Integer',
1267
+ :'all_miss_requests' => :'Integer',
1268
+ :'all_pass_requests' => :'Integer',
1269
+ :'all_error_requests' => :'Integer',
1270
+ :'all_synth_requests' => :'Integer',
1271
+ :'all_edge_hit_requests' => :'Integer',
1272
+ :'all_edge_miss_requests' => :'Integer',
1273
+ :'all_status_1xx' => :'Integer',
1274
+ :'all_status_2xx' => :'Integer',
1275
+ :'all_status_3xx' => :'Integer',
1276
+ :'all_status_4xx' => :'Integer',
1277
+ :'all_status_5xx' => :'Integer',
1173
1278
  :'service_id' => :'String',
1174
1279
  :'start_time' => :'Integer'
1175
1280
  }
@@ -2105,6 +2210,90 @@ module Fastly
2105
2210
  self.bot_challenges_failed = attributes[:'bot_challenges_failed']
2106
2211
  end
2107
2212
 
2213
+ if attributes.key?(:'ddos_action_downgrade')
2214
+ self.ddos_action_downgrade = attributes[:'ddos_action_downgrade']
2215
+ end
2216
+
2217
+ if attributes.key?(:'ddos_action_downgraded_connections')
2218
+ self.ddos_action_downgraded_connections = attributes[:'ddos_action_downgraded_connections']
2219
+ end
2220
+
2221
+ if attributes.key?(:'vcl_on_compute_hit_requests')
2222
+ self.vcl_on_compute_hit_requests = attributes[:'vcl_on_compute_hit_requests']
2223
+ end
2224
+
2225
+ if attributes.key?(:'vcl_on_compute_miss_requests')
2226
+ self.vcl_on_compute_miss_requests = attributes[:'vcl_on_compute_miss_requests']
2227
+ end
2228
+
2229
+ if attributes.key?(:'vcl_on_compute_pass_requests')
2230
+ self.vcl_on_compute_pass_requests = attributes[:'vcl_on_compute_pass_requests']
2231
+ end
2232
+
2233
+ if attributes.key?(:'vcl_on_compute_error_requests')
2234
+ self.vcl_on_compute_error_requests = attributes[:'vcl_on_compute_error_requests']
2235
+ end
2236
+
2237
+ if attributes.key?(:'vcl_on_compute_synth_requests')
2238
+ self.vcl_on_compute_synth_requests = attributes[:'vcl_on_compute_synth_requests']
2239
+ end
2240
+
2241
+ if attributes.key?(:'vcl_on_compute_edge_hit_requests')
2242
+ self.vcl_on_compute_edge_hit_requests = attributes[:'vcl_on_compute_edge_hit_requests']
2243
+ end
2244
+
2245
+ if attributes.key?(:'vcl_on_compute_edge_miss_requests')
2246
+ self.vcl_on_compute_edge_miss_requests = attributes[:'vcl_on_compute_edge_miss_requests']
2247
+ end
2248
+
2249
+ if attributes.key?(:'all_hit_requests')
2250
+ self.all_hit_requests = attributes[:'all_hit_requests']
2251
+ end
2252
+
2253
+ if attributes.key?(:'all_miss_requests')
2254
+ self.all_miss_requests = attributes[:'all_miss_requests']
2255
+ end
2256
+
2257
+ if attributes.key?(:'all_pass_requests')
2258
+ self.all_pass_requests = attributes[:'all_pass_requests']
2259
+ end
2260
+
2261
+ if attributes.key?(:'all_error_requests')
2262
+ self.all_error_requests = attributes[:'all_error_requests']
2263
+ end
2264
+
2265
+ if attributes.key?(:'all_synth_requests')
2266
+ self.all_synth_requests = attributes[:'all_synth_requests']
2267
+ end
2268
+
2269
+ if attributes.key?(:'all_edge_hit_requests')
2270
+ self.all_edge_hit_requests = attributes[:'all_edge_hit_requests']
2271
+ end
2272
+
2273
+ if attributes.key?(:'all_edge_miss_requests')
2274
+ self.all_edge_miss_requests = attributes[:'all_edge_miss_requests']
2275
+ end
2276
+
2277
+ if attributes.key?(:'all_status_1xx')
2278
+ self.all_status_1xx = attributes[:'all_status_1xx']
2279
+ end
2280
+
2281
+ if attributes.key?(:'all_status_2xx')
2282
+ self.all_status_2xx = attributes[:'all_status_2xx']
2283
+ end
2284
+
2285
+ if attributes.key?(:'all_status_3xx')
2286
+ self.all_status_3xx = attributes[:'all_status_3xx']
2287
+ end
2288
+
2289
+ if attributes.key?(:'all_status_4xx')
2290
+ self.all_status_4xx = attributes[:'all_status_4xx']
2291
+ end
2292
+
2293
+ if attributes.key?(:'all_status_5xx')
2294
+ self.all_status_5xx = attributes[:'all_status_5xx']
2295
+ end
2296
+
2108
2297
  if attributes.key?(:'service_id')
2109
2298
  self.service_id = attributes[:'service_id']
2110
2299
  end
@@ -2359,6 +2548,27 @@ module Fastly
2359
2548
  bot_challenges_issued == o.bot_challenges_issued &&
2360
2549
  bot_challenges_succeeded == o.bot_challenges_succeeded &&
2361
2550
  bot_challenges_failed == o.bot_challenges_failed &&
2551
+ ddos_action_downgrade == o.ddos_action_downgrade &&
2552
+ ddos_action_downgraded_connections == o.ddos_action_downgraded_connections &&
2553
+ vcl_on_compute_hit_requests == o.vcl_on_compute_hit_requests &&
2554
+ vcl_on_compute_miss_requests == o.vcl_on_compute_miss_requests &&
2555
+ vcl_on_compute_pass_requests == o.vcl_on_compute_pass_requests &&
2556
+ vcl_on_compute_error_requests == o.vcl_on_compute_error_requests &&
2557
+ vcl_on_compute_synth_requests == o.vcl_on_compute_synth_requests &&
2558
+ vcl_on_compute_edge_hit_requests == o.vcl_on_compute_edge_hit_requests &&
2559
+ vcl_on_compute_edge_miss_requests == o.vcl_on_compute_edge_miss_requests &&
2560
+ all_hit_requests == o.all_hit_requests &&
2561
+ all_miss_requests == o.all_miss_requests &&
2562
+ all_pass_requests == o.all_pass_requests &&
2563
+ all_error_requests == o.all_error_requests &&
2564
+ all_synth_requests == o.all_synth_requests &&
2565
+ all_edge_hit_requests == o.all_edge_hit_requests &&
2566
+ all_edge_miss_requests == o.all_edge_miss_requests &&
2567
+ all_status_1xx == o.all_status_1xx &&
2568
+ all_status_2xx == o.all_status_2xx &&
2569
+ all_status_3xx == o.all_status_3xx &&
2570
+ all_status_4xx == o.all_status_4xx &&
2571
+ all_status_5xx == o.all_status_5xx &&
2362
2572
  service_id == o.service_id &&
2363
2573
  start_time == o.start_time
2364
2574
  end
@@ -2372,7 +2582,7 @@ module Fastly
2372
2582
  # Calculates hash code according to all attributes.
2373
2583
  # @return [Integer] Hash code
2374
2584
  def hash
2375
- [requests, hits, hits_time, miss, miss_time, pass, pass_time, errors, restarts, hit_ratio, bandwidth, body_size, header_size, req_body_bytes, req_header_bytes, resp_body_bytes, resp_header_bytes, bereq_body_bytes, bereq_header_bytes, uncacheable, pipe, synth, tls, tls_v10, tls_v11, tls_v12, tls_v13, edge_requests, edge_resp_header_bytes, edge_resp_body_bytes, edge_hit_requests, edge_miss_requests, origin_fetches, origin_fetch_header_bytes, origin_fetch_body_bytes, origin_fetch_resp_header_bytes, origin_fetch_resp_body_bytes, origin_revalidations, origin_cache_fetches, shield, shield_resp_body_bytes, shield_resp_header_bytes, shield_fetches, shield_fetch_header_bytes, shield_fetch_body_bytes, shield_fetch_resp_header_bytes, shield_fetch_resp_body_bytes, shield_revalidations, shield_cache_fetches, ipv6, otfp, otfp_resp_body_bytes, otfp_resp_header_bytes, otfp_shield_resp_body_bytes, otfp_shield_resp_header_bytes, otfp_manifests, otfp_deliver_time, otfp_shield_time, video, pci, log, log_bytes, http2, http3, waf_logged, waf_blocked, waf_passed, attack_req_body_bytes, attack_req_header_bytes, attack_logged_req_body_bytes, attack_logged_req_header_bytes, attack_blocked_req_body_bytes, attack_blocked_req_header_bytes, attack_passed_req_body_bytes, attack_passed_req_header_bytes, attack_resp_synth_bytes, imgopto, imgopto_resp_body_bytes, imgopto_resp_header_bytes, imgopto_shield, imgopto_shield_resp_body_bytes, imgopto_shield_resp_header_bytes, imgopto_transforms, imgvideo, imgvideo_frames, imgvideo_resp_header_bytes, imgvideo_resp_body_bytes, imgvideo_shield_resp_header_bytes, imgvideo_shield_resp_body_bytes, imgvideo_shield, imgvideo_shield_frames, status_200, status_204, status_206, status_301, status_302, status_304, status_400, status_401, status_403, status_404, status_406, status_416, status_429, status_500, status_501, status_502, status_503, status_504, status_505, status_1xx, status_2xx, status_3xx, status_4xx, status_5xx, object_size_1k, object_size_10k, object_size_100k, object_size_1m, object_size_10m, object_size_100m, object_size_1g, recv_sub_time, recv_sub_count, hash_sub_time, hash_sub_count, miss_sub_time, miss_sub_count, fetch_sub_time, fetch_sub_count, pass_sub_time, pass_sub_count, pipe_sub_time, pipe_sub_count, deliver_sub_time, deliver_sub_count, error_sub_time, error_sub_count, hit_sub_time, hit_sub_count, prehash_sub_time, prehash_sub_count, predeliver_sub_time, predeliver_sub_count, tls_handshake_sent_bytes, hit_resp_body_bytes, miss_resp_body_bytes, pass_resp_body_bytes, segblock_origin_fetches, segblock_shield_fetches, compute_requests, compute_request_time_ms, compute_request_time_billed_ms, compute_ram_used, compute_execution_time_ms, compute_req_header_bytes, compute_req_body_bytes, compute_resp_header_bytes, compute_resp_body_bytes, compute_resp_status_1xx, compute_resp_status_2xx, compute_resp_status_3xx, compute_resp_status_4xx, compute_resp_status_5xx, compute_bereq_header_bytes, compute_bereq_body_bytes, compute_beresp_header_bytes, compute_beresp_body_bytes, compute_bereqs, compute_bereq_errors, compute_resource_limit_exceeded, compute_heap_limit_exceeded, compute_stack_limit_exceeded, compute_globals_limit_exceeded, compute_guest_errors, compute_runtime_errors, edge_hit_resp_body_bytes, edge_hit_resp_header_bytes, edge_miss_resp_body_bytes, edge_miss_resp_header_bytes, origin_cache_fetch_resp_body_bytes, origin_cache_fetch_resp_header_bytes, shield_hit_requests, shield_miss_requests, shield_hit_resp_header_bytes, shield_hit_resp_body_bytes, shield_miss_resp_header_bytes, shield_miss_resp_body_bytes, websocket_req_header_bytes, websocket_req_body_bytes, websocket_resp_header_bytes, websocket_resp_body_bytes, websocket_bereq_header_bytes, websocket_bereq_body_bytes, websocket_beresp_header_bytes, websocket_beresp_body_bytes, websocket_conn_time_ms, fanout_recv_publishes, fanout_send_publishes, kv_store_class_a_operations, kv_store_class_b_operations, object_store_class_a_operations, object_store_class_b_operations, fanout_req_header_bytes, fanout_req_body_bytes, fanout_resp_header_bytes, fanout_resp_body_bytes, fanout_bereq_header_bytes, fanout_bereq_body_bytes, fanout_beresp_header_bytes, fanout_beresp_body_bytes, fanout_conn_time_ms, ddos_action_limit_streams_connections, ddos_action_limit_streams_requests, ddos_action_tarpit_accept, ddos_action_tarpit, ddos_action_close, ddos_action_blackhole, bot_challenge_starts, bot_challenge_complete_tokens_passed, bot_challenge_complete_tokens_failed, bot_challenge_complete_tokens_checked, bot_challenge_complete_tokens_disabled, bot_challenge_complete_tokens_issued, bot_challenges_issued, bot_challenges_succeeded, bot_challenges_failed, service_id, start_time].hash
2585
+ [requests, hits, hits_time, miss, miss_time, pass, pass_time, errors, restarts, hit_ratio, bandwidth, body_size, header_size, req_body_bytes, req_header_bytes, resp_body_bytes, resp_header_bytes, bereq_body_bytes, bereq_header_bytes, uncacheable, pipe, synth, tls, tls_v10, tls_v11, tls_v12, tls_v13, edge_requests, edge_resp_header_bytes, edge_resp_body_bytes, edge_hit_requests, edge_miss_requests, origin_fetches, origin_fetch_header_bytes, origin_fetch_body_bytes, origin_fetch_resp_header_bytes, origin_fetch_resp_body_bytes, origin_revalidations, origin_cache_fetches, shield, shield_resp_body_bytes, shield_resp_header_bytes, shield_fetches, shield_fetch_header_bytes, shield_fetch_body_bytes, shield_fetch_resp_header_bytes, shield_fetch_resp_body_bytes, shield_revalidations, shield_cache_fetches, ipv6, otfp, otfp_resp_body_bytes, otfp_resp_header_bytes, otfp_shield_resp_body_bytes, otfp_shield_resp_header_bytes, otfp_manifests, otfp_deliver_time, otfp_shield_time, video, pci, log, log_bytes, http2, http3, waf_logged, waf_blocked, waf_passed, attack_req_body_bytes, attack_req_header_bytes, attack_logged_req_body_bytes, attack_logged_req_header_bytes, attack_blocked_req_body_bytes, attack_blocked_req_header_bytes, attack_passed_req_body_bytes, attack_passed_req_header_bytes, attack_resp_synth_bytes, imgopto, imgopto_resp_body_bytes, imgopto_resp_header_bytes, imgopto_shield, imgopto_shield_resp_body_bytes, imgopto_shield_resp_header_bytes, imgopto_transforms, imgvideo, imgvideo_frames, imgvideo_resp_header_bytes, imgvideo_resp_body_bytes, imgvideo_shield_resp_header_bytes, imgvideo_shield_resp_body_bytes, imgvideo_shield, imgvideo_shield_frames, status_200, status_204, status_206, status_301, status_302, status_304, status_400, status_401, status_403, status_404, status_406, status_416, status_429, status_500, status_501, status_502, status_503, status_504, status_505, status_1xx, status_2xx, status_3xx, status_4xx, status_5xx, object_size_1k, object_size_10k, object_size_100k, object_size_1m, object_size_10m, object_size_100m, object_size_1g, recv_sub_time, recv_sub_count, hash_sub_time, hash_sub_count, miss_sub_time, miss_sub_count, fetch_sub_time, fetch_sub_count, pass_sub_time, pass_sub_count, pipe_sub_time, pipe_sub_count, deliver_sub_time, deliver_sub_count, error_sub_time, error_sub_count, hit_sub_time, hit_sub_count, prehash_sub_time, prehash_sub_count, predeliver_sub_time, predeliver_sub_count, tls_handshake_sent_bytes, hit_resp_body_bytes, miss_resp_body_bytes, pass_resp_body_bytes, segblock_origin_fetches, segblock_shield_fetches, compute_requests, compute_request_time_ms, compute_request_time_billed_ms, compute_ram_used, compute_execution_time_ms, compute_req_header_bytes, compute_req_body_bytes, compute_resp_header_bytes, compute_resp_body_bytes, compute_resp_status_1xx, compute_resp_status_2xx, compute_resp_status_3xx, compute_resp_status_4xx, compute_resp_status_5xx, compute_bereq_header_bytes, compute_bereq_body_bytes, compute_beresp_header_bytes, compute_beresp_body_bytes, compute_bereqs, compute_bereq_errors, compute_resource_limit_exceeded, compute_heap_limit_exceeded, compute_stack_limit_exceeded, compute_globals_limit_exceeded, compute_guest_errors, compute_runtime_errors, edge_hit_resp_body_bytes, edge_hit_resp_header_bytes, edge_miss_resp_body_bytes, edge_miss_resp_header_bytes, origin_cache_fetch_resp_body_bytes, origin_cache_fetch_resp_header_bytes, shield_hit_requests, shield_miss_requests, shield_hit_resp_header_bytes, shield_hit_resp_body_bytes, shield_miss_resp_header_bytes, shield_miss_resp_body_bytes, websocket_req_header_bytes, websocket_req_body_bytes, websocket_resp_header_bytes, websocket_resp_body_bytes, websocket_bereq_header_bytes, websocket_bereq_body_bytes, websocket_beresp_header_bytes, websocket_beresp_body_bytes, websocket_conn_time_ms, fanout_recv_publishes, fanout_send_publishes, kv_store_class_a_operations, kv_store_class_b_operations, object_store_class_a_operations, object_store_class_b_operations, fanout_req_header_bytes, fanout_req_body_bytes, fanout_resp_header_bytes, fanout_resp_body_bytes, fanout_bereq_header_bytes, fanout_bereq_body_bytes, fanout_beresp_header_bytes, fanout_beresp_body_bytes, fanout_conn_time_ms, ddos_action_limit_streams_connections, ddos_action_limit_streams_requests, ddos_action_tarpit_accept, ddos_action_tarpit, ddos_action_close, ddos_action_blackhole, bot_challenge_starts, bot_challenge_complete_tokens_passed, bot_challenge_complete_tokens_failed, bot_challenge_complete_tokens_checked, bot_challenge_complete_tokens_disabled, bot_challenge_complete_tokens_issued, bot_challenges_issued, bot_challenges_succeeded, bot_challenges_failed, ddos_action_downgrade, ddos_action_downgraded_connections, vcl_on_compute_hit_requests, vcl_on_compute_miss_requests, vcl_on_compute_pass_requests, vcl_on_compute_error_requests, vcl_on_compute_synth_requests, vcl_on_compute_edge_hit_requests, vcl_on_compute_edge_miss_requests, all_hit_requests, all_miss_requests, all_pass_requests, all_error_requests, all_synth_requests, all_edge_hit_requests, all_edge_miss_requests, all_status_1xx, all_status_2xx, all_status_3xx, all_status_4xx, all_status_5xx, service_id, start_time].hash
2376
2586
  end
2377
2587
 
2378
2588
  # Builds the object from hash
@@ -93,7 +93,7 @@ module Fastly
93
93
  # Check to see if the all the properties in the model are valid
94
94
  # @return true if the model is valid
95
95
  def valid?
96
- certificate_authority_validator = EnumAttributeValidator.new('String', ["lets-encrypt", "certainly", "globalsign"])
96
+ certificate_authority_validator = EnumAttributeValidator.new('String', ["certainly", "lets-encrypt", "globalsign"])
97
97
  return false unless certificate_authority_validator.valid?(@certificate_authority)
98
98
  true
99
99
  end
@@ -101,7 +101,7 @@ module Fastly
101
101
  # Custom attribute writer method checking allowed values (enum).
102
102
  # @param [Object] certificate_authority Object to be assigned
103
103
  def certificate_authority=(certificate_authority)
104
- validator = EnumAttributeValidator.new('String', ["lets-encrypt", "certainly", "globalsign"])
104
+ validator = EnumAttributeValidator.new('String', ["certainly", "lets-encrypt", "globalsign"])
105
105
  unless validator.valid?(certificate_authority)
106
106
  fail ArgumentError, "invalid value for \"certificate_authority\", must be one of #{validator.allowable_values}."
107
107
  end
@@ -9,5 +9,5 @@ Contact: oss@fastly.com
9
9
  =end
10
10
 
11
11
  module Fastly
12
- VERSION = '8.1.0'
12
+ VERSION = '8.2.0'
13
13
  end
data/sig.json CHANGED
@@ -1 +1 @@
1
- {"G": "fba34a94", "D": "3069431b"}
1
+ {"G": "78194d35", "D": "aed6fda1"}
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: 8.1.0
4
+ version: 8.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fastly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-28 00:00:00.000000000 Z
11
+ date: 2024-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -1684,7 +1684,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1684
1684
  - !ruby/object:Gem::Version
1685
1685
  version: '0'
1686
1686
  requirements: []
1687
- rubygems_version: 3.3.26
1687
+ rubygems_version: 3.3.27
1688
1688
  signing_key:
1689
1689
  specification_version: 4
1690
1690
  summary: Fastly API Ruby Gem