fastly 7.2.0 → 7.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: c51fd6de296c895b5292180b11c39a13a37eb55358b496d53032bd1ebac8332d
4
- data.tar.gz: 859489fb6bac8a1b724077ef601f8640572b7925cea62f8c24b5b0a1de1401f1
3
+ metadata.gz: e09b9b4f5b431772590037d0d9a5d869ecda1fee88404dbd7d33ba2c9e6f35e8
4
+ data.tar.gz: e0244e1534d8285374e46dab7f6f47989e182966ad3484421316a2054cf491e4
5
5
  SHA512:
6
- metadata.gz: c1fca4d1fffd3f8055f601ba5856f577bb18498960d1c8e2018a83191f540fe1bd2e9590dab39e6e47adfb3e00cc5481834e7a5fdfb929949e38ba2e9c91f4ea
7
- data.tar.gz: c68f0ba0192cd4b3a6674e3612cc6fb80bc50cc60800338f7c6076be86951696ac7e2aace7de839ab5b66084205f74bf6a9ae74623577094711eb10657eb3f55
6
+ metadata.gz: c6a4bf423f7c2c09174ccb29336f0b61e8c535758233d779ba0a219cc8f6e3f460cdd7dc363125dc0a5e4f82b827ef0fc2e751ea571a9a32c9101e7ed5282d39
7
+ data.tar.gz: 434e367457c93601888a8c4c2b9a065efbefc60bfd01776c959b89a328e56eb0df0632d18e1e6f8e327844211821efaec1c360115a322a021f409d45dffe4014
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [v7.2.1](https://github.com/fastly/fastly-ruby/releases/tag/release/v7.2.1) (2023-10-27)
4
+
5
+ **Documentation:**
6
+
7
+ - docs: rename Compute@Edge to Compute.
8
+
3
9
  ## [v7.2.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v7.2.0) (2023-10-24)
4
10
 
5
11
  **Enhancements:**
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fastly (7.2.0)
4
+ fastly (7.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', '~> 7.2.0'
11
+ gem 'fastly', '~> 7.2.2'
12
12
  ```
13
13
 
14
14
  Then run `bundle install`.
@@ -407,8 +407,8 @@ Class | Method | Description
407
407
  [*Fastly::OriginInspectorRealtimeApi*](docs/OriginInspectorRealtimeApi.md) | [**get_origin_inspector_last120_seconds**](docs/OriginInspectorRealtimeApi.md#get_origin_inspector_last120_seconds) | Get real-time origin data for the last 120 seconds
408
408
  [*Fastly::OriginInspectorRealtimeApi*](docs/OriginInspectorRealtimeApi.md) | [**get_origin_inspector_last_max_entries**](docs/OriginInspectorRealtimeApi.md#get_origin_inspector_last_max_entries) | Get a limited number of real-time origin data entries
409
409
  [*Fastly::OriginInspectorRealtimeApi*](docs/OriginInspectorRealtimeApi.md) | [**get_origin_inspector_last_second**](docs/OriginInspectorRealtimeApi.md#get_origin_inspector_last_second) | Get real-time origin data from specific time.
410
- [*Fastly::PackageApi*](docs/PackageApi.md) | [**get_package**](docs/PackageApi.md#get_package) | Get details of the service's Compute@Edge package.
411
- [*Fastly::PackageApi*](docs/PackageApi.md) | [**put_package**](docs/PackageApi.md#put_package) | Upload a Compute@Edge package.
410
+ [*Fastly::PackageApi*](docs/PackageApi.md) | [**get_package**](docs/PackageApi.md#get_package) | Get details of the service's Compute package.
411
+ [*Fastly::PackageApi*](docs/PackageApi.md) | [**put_package**](docs/PackageApi.md#put_package) | Upload a Compute package.
412
412
  [*Fastly::PoolApi*](docs/PoolApi.md) | [**create_server_pool**](docs/PoolApi.md#create_server_pool) | Create a server pool
413
413
  [*Fastly::PoolApi*](docs/PoolApi.md) | [**delete_server_pool**](docs/PoolApi.md#delete_server_pool) | Delete a server pool
414
414
  [*Fastly::PoolApi*](docs/PoolApi.md) | [**get_server_pool**](docs/PoolApi.md#get_server_pool) | Get a server pool
@@ -207,7 +207,7 @@ end
207
207
  ## `list_config_stores()`
208
208
 
209
209
  ```ruby
210
- list_config_stores: <Array<ConfigStoreResponse>> # List config stores
210
+ list_config_stores(opts): <Array<ConfigStoreResponse>> # List config stores
211
211
  ```
212
212
 
213
213
  List config stores.
@@ -216,10 +216,13 @@ List config stores.
216
216
 
217
217
  ```ruby
218
218
  api_instance = Fastly::ConfigStoreApi.new
219
+ opts = {
220
+ name: 'name_example', # String | Returns a one-element array containing the details for the named config store.
221
+ }
219
222
 
220
223
  begin
221
224
  # List config stores
222
- result = api_instance.list_config_stores
225
+ result = api_instance.list_config_stores(opts)
223
226
  p result
224
227
  rescue Fastly::ApiError => e
225
228
  puts "Error when calling ConfigStoreApi->list_config_stores: #{e}"
@@ -228,7 +231,9 @@ end
228
231
 
229
232
  ### Options
230
233
 
231
- This endpoint does not need any parameter.
234
+ | Name | Type | Description | Notes |
235
+ | ---- | ---- | ----------- | ----- |
236
+ | **name** | **String** | Returns a one-element array containing the details for the named config store. | [optional] |
232
237
 
233
238
  ### Return type
234
239
 
@@ -157,19 +157,19 @@
157
157
  | **compute_request_time_billed_ms** | **Float** | The total amount of request processing time you will be billed for, measured in 50 millisecond increments. | [optional] |
158
158
  | **compute_ram_used** | **Integer** | The amount of RAM used for your service by Fastly (in bytes). | [optional] |
159
159
  | **compute_execution_time_ms** | **Float** | The amount of active CPU time used to process your requests (in milliseconds). | [optional] |
160
- | **compute_req_header_bytes** | **Integer** | Total header bytes received by Compute@Edge. | [optional] |
161
- | **compute_req_body_bytes** | **Integer** | Total body bytes received by Compute@Edge. | [optional] |
162
- | **compute_resp_header_bytes** | **Integer** | Total header bytes sent from Compute@Edge to end user. | [optional] |
163
- | **compute_resp_body_bytes** | **Integer** | Total body bytes sent from Compute@Edge to end user. | [optional] |
164
- | **compute_resp_status_1xx** | **Integer** | Number of \&quot;Informational\&quot; category status codes delivered by Compute@Edge. | [optional] |
165
- | **compute_resp_status_2xx** | **Integer** | Number of \&quot;Success\&quot; category status codes delivered by Compute@Edge. | [optional] |
166
- | **compute_resp_status_3xx** | **Integer** | Number of \&quot;Redirection\&quot; category status codes delivered by Compute@Edge. | [optional] |
167
- | **compute_resp_status_4xx** | **Integer** | Number of \&quot;Client Error\&quot; category status codes delivered by Compute@Edge. | [optional] |
168
- | **compute_resp_status_5xx** | **Integer** | Number of \&quot;Server Error\&quot; category status codes delivered by Compute@Edge. | [optional] |
169
- | **compute_bereq_header_bytes** | **Integer** | Total header bytes sent to backends (origins) by Compute@Edge. | [optional] |
170
- | **compute_bereq_body_bytes** | **Integer** | Total body bytes sent to backends (origins) by Compute@Edge. | [optional] |
171
- | **compute_beresp_header_bytes** | **Integer** | Total header bytes received from backends (origins) by Compute@Edge. | [optional] |
172
- | **compute_beresp_body_bytes** | **Integer** | Total body bytes received from backends (origins) by Compute@Edge. | [optional] |
160
+ | **compute_req_header_bytes** | **Integer** | Total header bytes received by the Compute platform. | [optional] |
161
+ | **compute_req_body_bytes** | **Integer** | Total body bytes received by the Compute platform. | [optional] |
162
+ | **compute_resp_header_bytes** | **Integer** | Total header bytes sent from Compute to end user. | [optional] |
163
+ | **compute_resp_body_bytes** | **Integer** | Total body bytes sent from Compute to end user. | [optional] |
164
+ | **compute_resp_status_1xx** | **Integer** | Number of \&quot;Informational\&quot; category status codes delivered by the Compute platform. | [optional] |
165
+ | **compute_resp_status_2xx** | **Integer** | Number of \&quot;Success\&quot; category status codes delivered by the Compute platform. | [optional] |
166
+ | **compute_resp_status_3xx** | **Integer** | Number of \&quot;Redirection\&quot; category status codes delivered by the Compute platform. | [optional] |
167
+ | **compute_resp_status_4xx** | **Integer** | Number of \&quot;Client Error\&quot; category status codes delivered by the Compute platform. | [optional] |
168
+ | **compute_resp_status_5xx** | **Integer** | Number of \&quot;Server Error\&quot; category status codes delivered by the Compute platform. | [optional] |
169
+ | **compute_bereq_header_bytes** | **Integer** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] |
170
+ | **compute_bereq_body_bytes** | **Integer** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] |
171
+ | **compute_beresp_header_bytes** | **Integer** | Total header bytes received from backends (origins) by the Compute platform. | [optional] |
172
+ | **compute_beresp_body_bytes** | **Integer** | Total body bytes received from backends (origins) by the Compute platform. | [optional] |
173
173
  | **compute_bereqs** | **Integer** | Number of backend requests started. | [optional] |
174
174
  | **compute_bereq_errors** | **Integer** | Number of backend request errors, including timeouts. | [optional] |
175
175
  | **compute_resource_limit_exceeded** | **Integer** | Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. | [optional] |
@@ -80,44 +80,44 @@
80
80
  | **waf_latency_5000_to_10000ms** | **Integer** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] |
81
81
  | **waf_latency_10000_to_60000ms** | **Integer** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] |
82
82
  | **waf_latency_60000ms** | **Integer** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by the Fastly WAF. | [optional] |
83
- | **compute_responses** | **Integer** | Number of responses for origin received by Compute@Edge. | [optional] |
84
- | **compute_resp_header_bytes** | **Integer** | Number of header bytes for origin received by Compute@Edge. | [optional] |
85
- | **compute_resp_body_bytes** | **Integer** | Number of body bytes for origin received by Compute@Edge. | [optional] |
86
- | **compute_status_1xx** | **Integer** | Number of 1xx \&quot;Informational\&quot; status codes for origin received by Compute@Edge. | [optional] |
87
- | **compute_status_2xx** | **Integer** | Number of 2xx \&quot;Success\&quot; status codes for origin received by Compute@Edge. | [optional] |
88
- | **compute_status_3xx** | **Integer** | Number of 3xx \&quot;Redirection\&quot; codes for origin received by Compute@Edge. | [optional] |
89
- | **compute_status_4xx** | **Integer** | Number of 4xx \&quot;Client Error\&quot; codes for origin received by Compute@Edge. | [optional] |
90
- | **compute_status_5xx** | **Integer** | Number of 5xx \&quot;Server Error\&quot; codes for origin received by Compute@Edge. | [optional] |
91
- | **compute_status_200** | **Integer** | Number of responses received with status code 200 (Success) for origin received by Compute@Edge. | [optional] |
92
- | **compute_status_204** | **Integer** | Number of responses received with status code 204 (No Content) for origin received by Compute@Edge. | [optional] |
93
- | **compute_status_206** | **Integer** | Number of responses received with status code 206 (Partial Content) for origin received by Compute@Edge. | [optional] |
94
- | **compute_status_301** | **Integer** | Number of responses received with status code 301 (Moved Permanently) for origin received by Compute@Edge. | [optional] |
95
- | **compute_status_302** | **Integer** | Number of responses received with status code 302 (Found) for origin received by Compute@Edge. | [optional] |
96
- | **compute_status_304** | **Integer** | Number of responses received with status code 304 (Not Modified) for origin received by Compute@Edge. | [optional] |
97
- | **compute_status_400** | **Integer** | Number of responses received with status code 400 (Bad Request) for origin received by Compute@Edge. | [optional] |
98
- | **compute_status_401** | **Integer** | Number of responses received with status code 401 (Unauthorized) for origin received by Compute@Edge. | [optional] |
99
- | **compute_status_403** | **Integer** | Number of responses received with status code 403 (Forbidden) for origin received by Compute@Edge. | [optional] |
100
- | **compute_status_404** | **Integer** | Number of responses received with status code 404 (Not Found) for origin received by Compute@Edge. | [optional] |
101
- | **compute_status_416** | **Integer** | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by Compute@Edge. | [optional] |
102
- | **compute_status_429** | **Integer** | Number of responses received with status code 429 (Too Many Requests) for origin received by Compute@Edge. | [optional] |
103
- | **compute_status_500** | **Integer** | Number of responses received with status code 500 (Internal Server Error) for origin received by Compute@Edge. | [optional] |
104
- | **compute_status_501** | **Integer** | Number of responses received with status code 501 (Not Implemented) for origin received by Compute@Edge. | [optional] |
105
- | **compute_status_502** | **Integer** | Number of responses received with status code 502 (Bad Gateway) for origin received by Compute@Edge. | [optional] |
106
- | **compute_status_503** | **Integer** | Number of responses received with status code 503 (Service Unavailable) for origin received by Compute@Edge. | [optional] |
107
- | **compute_status_504** | **Integer** | Number of responses received with status code 504 (Gateway Timeout) for origin received by Compute@Edge. | [optional] |
108
- | **compute_status_505** | **Integer** | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by Compute@Edge. | [optional] |
109
- | **compute_latency_0_to_1ms** | **Integer** | Number of responses with latency between 0 and 1 millisecond for origin received by Compute@Edge. | [optional] |
110
- | **compute_latency_1_to_5ms** | **Integer** | Number of responses with latency between 1 and 5 milliseconds for origin received by Compute@Edge. | [optional] |
111
- | **compute_latency_5_to_10ms** | **Integer** | Number of responses with latency between 5 and 10 milliseconds for origin received by Compute@Edge. | [optional] |
112
- | **compute_latency_10_to_50ms** | **Integer** | Number of responses with latency between 10 and 50 milliseconds for origin received by Compute@Edge. | [optional] |
113
- | **compute_latency_50_to_100ms** | **Integer** | Number of responses with latency between 50 and 100 milliseconds for origin received by Compute@Edge. | [optional] |
114
- | **compute_latency_100_to_250ms** | **Integer** | Number of responses with latency between 100 and 250 milliseconds for origin received by Compute@Edge. | [optional] |
115
- | **compute_latency_250_to_500ms** | **Integer** | Number of responses with latency between 250 and 500 milliseconds for origin received by Compute@Edge. | [optional] |
116
- | **compute_latency_500_to_1000ms** | **Integer** | Number of responses with latency between 500 and 1,000 milliseconds for origin received by Compute@Edge. | [optional] |
117
- | **compute_latency_1000_to_5000ms** | **Integer** | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by Compute@Edge. | [optional] |
118
- | **compute_latency_5000_to_10000ms** | **Integer** | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by Compute@Edge. | [optional] |
119
- | **compute_latency_10000_to_60000ms** | **Integer** | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by Compute@Edge. | [optional] |
120
- | **compute_latency_60000ms** | **Integer** | Number of responses with latency of 60,000 milliseconds and above for origin received by Compute@Edge. | [optional] |
83
+ | **compute_responses** | **Integer** | Number of responses for origin received by the Compute platform. | [optional] |
84
+ | **compute_resp_header_bytes** | **Integer** | Number of header bytes for origin received by the Compute platform. | [optional] |
85
+ | **compute_resp_body_bytes** | **Integer** | Number of body bytes for origin received by the Compute platform. | [optional] |
86
+ | **compute_status_1xx** | **Integer** | Number of 1xx \&quot;Informational\&quot; status codes for origin received by the Compute platform. | [optional] |
87
+ | **compute_status_2xx** | **Integer** | Number of 2xx \&quot;Success\&quot; status codes for origin received by the Compute platform. | [optional] |
88
+ | **compute_status_3xx** | **Integer** | Number of 3xx \&quot;Redirection\&quot; codes for origin received by the Compute platform. | [optional] |
89
+ | **compute_status_4xx** | **Integer** | Number of 4xx \&quot;Client Error\&quot; codes for origin received by the Compute platform. | [optional] |
90
+ | **compute_status_5xx** | **Integer** | Number of 5xx \&quot;Server Error\&quot; codes for origin received by the Compute platform. | [optional] |
91
+ | **compute_status_200** | **Integer** | Number of responses received with status code 200 (Success) for origin received by the Compute platform. | [optional] |
92
+ | **compute_status_204** | **Integer** | Number of responses received with status code 204 (No Content) for origin received by the Compute platform. | [optional] |
93
+ | **compute_status_206** | **Integer** | Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. | [optional] |
94
+ | **compute_status_301** | **Integer** | Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. | [optional] |
95
+ | **compute_status_302** | **Integer** | Number of responses received with status code 302 (Found) for origin received by the Compute platform. | [optional] |
96
+ | **compute_status_304** | **Integer** | Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. | [optional] |
97
+ | **compute_status_400** | **Integer** | Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. | [optional] |
98
+ | **compute_status_401** | **Integer** | Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. | [optional] |
99
+ | **compute_status_403** | **Integer** | Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. | [optional] |
100
+ | **compute_status_404** | **Integer** | Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. | [optional] |
101
+ | **compute_status_416** | **Integer** | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. | [optional] |
102
+ | **compute_status_429** | **Integer** | Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. | [optional] |
103
+ | **compute_status_500** | **Integer** | Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. | [optional] |
104
+ | **compute_status_501** | **Integer** | Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. | [optional] |
105
+ | **compute_status_502** | **Integer** | Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. | [optional] |
106
+ | **compute_status_503** | **Integer** | Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. | [optional] |
107
+ | **compute_status_504** | **Integer** | Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. | [optional] |
108
+ | **compute_status_505** | **Integer** | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. | [optional] |
109
+ | **compute_latency_0_to_1ms** | **Integer** | Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. | [optional] |
110
+ | **compute_latency_1_to_5ms** | **Integer** | Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. | [optional] |
111
+ | **compute_latency_5_to_10ms** | **Integer** | Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. | [optional] |
112
+ | **compute_latency_10_to_50ms** | **Integer** | Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. | [optional] |
113
+ | **compute_latency_50_to_100ms** | **Integer** | Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. | [optional] |
114
+ | **compute_latency_100_to_250ms** | **Integer** | Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. | [optional] |
115
+ | **compute_latency_250_to_500ms** | **Integer** | Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. | [optional] |
116
+ | **compute_latency_500_to_1000ms** | **Integer** | Number of responses with latency between 500 and 1,000 milliseconds for origin received by the Compute platform. | [optional] |
117
+ | **compute_latency_1000_to_5000ms** | **Integer** | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by the Compute platform. | [optional] |
118
+ | **compute_latency_5000_to_10000ms** | **Integer** | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by the Compute platform. | [optional] |
119
+ | **compute_latency_10000_to_60000ms** | **Integer** | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by the Compute platform. | [optional] |
120
+ | **compute_latency_60000ms** | **Integer** | Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. | [optional] |
121
121
  | **all_responses** | **Integer** | Number of responses received for origin requests made by all sources. | [optional] |
122
122
  | **all_resp_header_bytes** | **Integer** | Number of header bytes received for origin requests made by all sources. | [optional] |
123
123
  | **all_resp_body_bytes** | **Integer** | Number of body bytes received for origin requests made by all sources. | [optional] |
@@ -80,44 +80,44 @@
80
80
  | **waf_latency_5000_to_10000ms** | **Integer** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] |
81
81
  | **waf_latency_10000_to_60000ms** | **Integer** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] |
82
82
  | **waf_latency_60000ms** | **Integer** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by the Fastly WAF. | [optional] |
83
- | **compute_responses** | **Integer** | Number of responses for origin received by Compute@Edge. | [optional] |
84
- | **compute_resp_header_bytes** | **Integer** | Number of header bytes for origin received by Compute@Edge. | [optional] |
85
- | **compute_resp_body_bytes** | **Integer** | Number of body bytes for origin received by Compute@Edge. | [optional] |
86
- | **compute_status_1xx** | **Integer** | Number of 1xx \&quot;Informational\&quot; status codes for origin received by Compute@Edge. | [optional] |
87
- | **compute_status_2xx** | **Integer** | Number of 2xx \&quot;Success\&quot; status codes for origin received by Compute@Edge. | [optional] |
88
- | **compute_status_3xx** | **Integer** | Number of 3xx \&quot;Redirection\&quot; codes for origin received by Compute@Edge. | [optional] |
89
- | **compute_status_4xx** | **Integer** | Number of 4xx \&quot;Client Error\&quot; codes for origin received by Compute@Edge. | [optional] |
90
- | **compute_status_5xx** | **Integer** | Number of 5xx \&quot;Server Error\&quot; codes for origin received by Compute@Edge. | [optional] |
91
- | **compute_status_200** | **Integer** | Number of responses received with status code 200 (Success) for origin received by Compute@Edge. | [optional] |
92
- | **compute_status_204** | **Integer** | Number of responses received with status code 204 (No Content) for origin received by Compute@Edge. | [optional] |
93
- | **compute_status_206** | **Integer** | Number of responses received with status code 206 (Partial Content) for origin received by Compute@Edge. | [optional] |
94
- | **compute_status_301** | **Integer** | Number of responses received with status code 301 (Moved Permanently) for origin received by Compute@Edge. | [optional] |
95
- | **compute_status_302** | **Integer** | Number of responses received with status code 302 (Found) for origin received by Compute@Edge. | [optional] |
96
- | **compute_status_304** | **Integer** | Number of responses received with status code 304 (Not Modified) for origin received by Compute@Edge. | [optional] |
97
- | **compute_status_400** | **Integer** | Number of responses received with status code 400 (Bad Request) for origin received by Compute@Edge. | [optional] |
98
- | **compute_status_401** | **Integer** | Number of responses received with status code 401 (Unauthorized) for origin received by Compute@Edge. | [optional] |
99
- | **compute_status_403** | **Integer** | Number of responses received with status code 403 (Forbidden) for origin received by Compute@Edge. | [optional] |
100
- | **compute_status_404** | **Integer** | Number of responses received with status code 404 (Not Found) for origin received by Compute@Edge. | [optional] |
101
- | **compute_status_416** | **Integer** | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by Compute@Edge. | [optional] |
102
- | **compute_status_429** | **Integer** | Number of responses received with status code 429 (Too Many Requests) for origin received by Compute@Edge. | [optional] |
103
- | **compute_status_500** | **Integer** | Number of responses received with status code 500 (Internal Server Error) for origin received by Compute@Edge. | [optional] |
104
- | **compute_status_501** | **Integer** | Number of responses received with status code 501 (Not Implemented) for origin received by Compute@Edge. | [optional] |
105
- | **compute_status_502** | **Integer** | Number of responses received with status code 502 (Bad Gateway) for origin received by Compute@Edge. | [optional] |
106
- | **compute_status_503** | **Integer** | Number of responses received with status code 503 (Service Unavailable) for origin received by Compute@Edge. | [optional] |
107
- | **compute_status_504** | **Integer** | Number of responses received with status code 504 (Gateway Timeout) for origin received by Compute@Edge. | [optional] |
108
- | **compute_status_505** | **Integer** | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by Compute@Edge. | [optional] |
109
- | **compute_latency_0_to_1ms** | **Integer** | Number of responses with latency between 0 and 1 millisecond for origin received by Compute@Edge. | [optional] |
110
- | **compute_latency_1_to_5ms** | **Integer** | Number of responses with latency between 1 and 5 milliseconds for origin received by Compute@Edge. | [optional] |
111
- | **compute_latency_5_to_10ms** | **Integer** | Number of responses with latency between 5 and 10 milliseconds for origin received by Compute@Edge. | [optional] |
112
- | **compute_latency_10_to_50ms** | **Integer** | Number of responses with latency between 10 and 50 milliseconds for origin received by Compute@Edge. | [optional] |
113
- | **compute_latency_50_to_100ms** | **Integer** | Number of responses with latency between 50 and 100 milliseconds for origin received by Compute@Edge. | [optional] |
114
- | **compute_latency_100_to_250ms** | **Integer** | Number of responses with latency between 100 and 250 milliseconds for origin received by Compute@Edge. | [optional] |
115
- | **compute_latency_250_to_500ms** | **Integer** | Number of responses with latency between 250 and 500 milliseconds for origin received by Compute@Edge. | [optional] |
116
- | **compute_latency_500_to_1000ms** | **Integer** | Number of responses with latency between 500 and 1,000 milliseconds for origin received by Compute@Edge. | [optional] |
117
- | **compute_latency_1000_to_5000ms** | **Integer** | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by Compute@Edge. | [optional] |
118
- | **compute_latency_5000_to_10000ms** | **Integer** | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by Compute@Edge. | [optional] |
119
- | **compute_latency_10000_to_60000ms** | **Integer** | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by Compute@Edge. | [optional] |
120
- | **compute_latency_60000ms** | **Integer** | Number of responses with latency of 60,000 milliseconds and above for origin received by Compute@Edge. | [optional] |
83
+ | **compute_responses** | **Integer** | Number of responses for origin received by the Compute platform. | [optional] |
84
+ | **compute_resp_header_bytes** | **Integer** | Number of header bytes for origin received by the Compute platform. | [optional] |
85
+ | **compute_resp_body_bytes** | **Integer** | Number of body bytes for origin received by the Compute platform. | [optional] |
86
+ | **compute_status_1xx** | **Integer** | Number of 1xx \&quot;Informational\&quot; status codes for origin received by the Compute platform. | [optional] |
87
+ | **compute_status_2xx** | **Integer** | Number of 2xx \&quot;Success\&quot; status codes for origin received by the Compute platform. | [optional] |
88
+ | **compute_status_3xx** | **Integer** | Number of 3xx \&quot;Redirection\&quot; codes for origin received by the Compute platform. | [optional] |
89
+ | **compute_status_4xx** | **Integer** | Number of 4xx \&quot;Client Error\&quot; codes for origin received by the Compute platform. | [optional] |
90
+ | **compute_status_5xx** | **Integer** | Number of 5xx \&quot;Server Error\&quot; codes for origin received by the Compute platform. | [optional] |
91
+ | **compute_status_200** | **Integer** | Number of responses received with status code 200 (Success) for origin received by the Compute platform. | [optional] |
92
+ | **compute_status_204** | **Integer** | Number of responses received with status code 204 (No Content) for origin received by the Compute platform. | [optional] |
93
+ | **compute_status_206** | **Integer** | Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. | [optional] |
94
+ | **compute_status_301** | **Integer** | Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. | [optional] |
95
+ | **compute_status_302** | **Integer** | Number of responses received with status code 302 (Found) for origin received by the Compute platform. | [optional] |
96
+ | **compute_status_304** | **Integer** | Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. | [optional] |
97
+ | **compute_status_400** | **Integer** | Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. | [optional] |
98
+ | **compute_status_401** | **Integer** | Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. | [optional] |
99
+ | **compute_status_403** | **Integer** | Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. | [optional] |
100
+ | **compute_status_404** | **Integer** | Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. | [optional] |
101
+ | **compute_status_416** | **Integer** | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. | [optional] |
102
+ | **compute_status_429** | **Integer** | Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. | [optional] |
103
+ | **compute_status_500** | **Integer** | Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. | [optional] |
104
+ | **compute_status_501** | **Integer** | Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. | [optional] |
105
+ | **compute_status_502** | **Integer** | Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. | [optional] |
106
+ | **compute_status_503** | **Integer** | Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. | [optional] |
107
+ | **compute_status_504** | **Integer** | Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. | [optional] |
108
+ | **compute_status_505** | **Integer** | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. | [optional] |
109
+ | **compute_latency_0_to_1ms** | **Integer** | Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. | [optional] |
110
+ | **compute_latency_1_to_5ms** | **Integer** | Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. | [optional] |
111
+ | **compute_latency_5_to_10ms** | **Integer** | Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. | [optional] |
112
+ | **compute_latency_10_to_50ms** | **Integer** | Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. | [optional] |
113
+ | **compute_latency_50_to_100ms** | **Integer** | Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. | [optional] |
114
+ | **compute_latency_100_to_250ms** | **Integer** | Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. | [optional] |
115
+ | **compute_latency_250_to_500ms** | **Integer** | Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. | [optional] |
116
+ | **compute_latency_500_to_1000ms** | **Integer** | Number of responses with latency between 500 and 1,000 milliseconds for origin received by the Compute platform. | [optional] |
117
+ | **compute_latency_1000_to_5000ms** | **Integer** | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by the Compute platform. | [optional] |
118
+ | **compute_latency_5000_to_10000ms** | **Integer** | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by the Compute platform. | [optional] |
119
+ | **compute_latency_10000_to_60000ms** | **Integer** | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by the Compute platform. | [optional] |
120
+ | **compute_latency_60000ms** | **Integer** | Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. | [optional] |
121
121
  | **all_responses** | **Integer** | Number of responses received for origin requests made by all sources. | [optional] |
122
122
  | **all_resp_header_bytes** | **Integer** | Number of header bytes received for origin requests made by all sources. | [optional] |
123
123
  | **all_resp_body_bytes** | **Integer** | Number of body bytes received for origin requests made by all sources. | [optional] |
data/docs/PackageApi.md CHANGED
@@ -10,17 +10,17 @@ api_instance = Fastly::PackageApi.new
10
10
 
11
11
  | Method | HTTP request | Description |
12
12
  | ------ | ------------ | ----------- |
13
- | [**get_package**](PackageApi.md#get_package) | **GET** /service/{service_id}/version/{version_id}/package | Get details of the service&#39;s Compute@Edge package. |
14
- | [**put_package**](PackageApi.md#put_package) | **PUT** /service/{service_id}/version/{version_id}/package | Upload a Compute@Edge package. |
13
+ | [**get_package**](PackageApi.md#get_package) | **GET** /service/{service_id}/version/{version_id}/package | Get details of the service&#39;s Compute package. |
14
+ | [**put_package**](PackageApi.md#put_package) | **PUT** /service/{service_id}/version/{version_id}/package | Upload a Compute package. |
15
15
 
16
16
 
17
17
  ## `get_package()`
18
18
 
19
19
  ```ruby
20
- get_package(opts): <PackageResponse> # Get details of the service's Compute@Edge package.
20
+ get_package(opts): <PackageResponse> # Get details of the service's Compute package.
21
21
  ```
22
22
 
23
- List detailed information about the Compute@Edge package for the specified service.
23
+ List detailed information about the Compute package for the specified service.
24
24
 
25
25
  ### Examples
26
26
 
@@ -32,7 +32,7 @@ opts = {
32
32
  }
33
33
 
34
34
  begin
35
- # Get details of the service's Compute@Edge package.
35
+ # Get details of the service's Compute package.
36
36
  result = api_instance.get_package(opts)
37
37
  p result
38
38
  rescue Fastly::ApiError => e
@@ -56,10 +56,10 @@ end
56
56
  ## `put_package()`
57
57
 
58
58
  ```ruby
59
- put_package(opts): <PackageResponse> # Upload a Compute@Edge package.
59
+ put_package(opts): <PackageResponse> # Upload a Compute package.
60
60
  ```
61
61
 
62
- Upload a Compute@Edge package associated with the specified service version.
62
+ Upload a Compute package associated with the specified service version.
63
63
 
64
64
  ### Examples
65
65
 
@@ -73,7 +73,7 @@ opts = {
73
73
  }
74
74
 
75
75
  begin
76
- # Upload a Compute@Edge package.
76
+ # Upload a Compute package.
77
77
  result = api_instance.put_package(opts)
78
78
  p result
79
79
  rescue Fastly::ApiError => e
@@ -4,13 +4,13 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **name** | **String** | Name of the Compute@Edge package. | [optional] |
8
- | **description** | **String** | Description of the Compute@Edge package. | [optional] |
7
+ | **name** | **String** | Name of the Compute package. | [optional] |
8
+ | **description** | **String** | Description of the Compute package. | [optional] |
9
9
  | **authors** | **Array&lt;String&gt;** | A list of package authors&#39; email addresses. | [optional] |
10
- | **language** | **String** | The language of the Compute@Edge package. | [optional] |
11
- | **size** | **Integer** | Size of the Compute@Edge package in bytes. | [optional] |
12
- | **hashsum** | **String** | Hash of the Compute@Edge package. | [optional] |
13
- | **files_hash** | **String** | Hash of the files within the Compute@Edge package. | [optional] |
10
+ | **language** | **String** | The language of the Compute package. | [optional] |
11
+ | **size** | **Integer** | Size of the Compute package in bytes. | [optional] |
12
+ | **hashsum** | **String** | Hash of the Compute package. | [optional] |
13
+ | **files_hash** | **String** | Hash of the files within the Compute package. | [optional] |
14
14
 
15
15
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
16
16
 
@@ -129,10 +129,10 @@
129
129
  | **hit_resp_body_bytes** | **Integer** | Total body bytes delivered for cache hits. | [optional] |
130
130
  | **miss_resp_body_bytes** | **Integer** | Total body bytes delivered for cache misses. | [optional] |
131
131
  | **pass_resp_body_bytes** | **Integer** | Total body bytes delivered for cache passes. | [optional] |
132
- | **compute_req_header_bytes** | **Integer** | Total header bytes received by Compute@Edge. | [optional] |
133
- | **compute_req_body_bytes** | **Integer** | Total body bytes received by Compute@Edge. | [optional] |
134
- | **compute_resp_header_bytes** | **Integer** | Total header bytes sent from Compute@Edge to end user. | [optional] |
135
- | **compute_resp_body_bytes** | **Integer** | Total body bytes sent from Compute@Edge to end user. | [optional] |
132
+ | **compute_req_header_bytes** | **Integer** | Total header bytes received by the Compute platform. | [optional] |
133
+ | **compute_req_body_bytes** | **Integer** | Total body bytes received by the Compute platform. | [optional] |
134
+ | **compute_resp_header_bytes** | **Integer** | Total header bytes sent from Compute to end user. | [optional] |
135
+ | **compute_resp_body_bytes** | **Integer** | Total body bytes sent from Compute to end user. | [optional] |
136
136
  | **imgvideo** | **Integer** | Number of video responses that came from the Fastly Image Optimizer service. | [optional] |
137
137
  | **imgvideo_frames** | **Integer** | Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] |
138
138
  | **imgvideo_resp_header_bytes** | **Integer** | Total header bytes of video delivered from the Fastly Image Optimizer service. | [optional] |
@@ -159,17 +159,17 @@
159
159
  | **shield_fetch_resp_body_bytes** | **Integer** | Total response body bytes sent from a shield to the edge. | [optional] |
160
160
  | **segblock_origin_fetches** | **Integer** | Number of `Range` requests to origin for segments of resources when using segmented caching. | [optional] |
161
161
  | **segblock_shield_fetches** | **Integer** | Number of `Range` requests to a shield for segments of resources when using segmented caching. | [optional] |
162
- | **compute_resp_status_1xx** | **Integer** | Number of \&quot;Informational\&quot; category status codes delivered by Compute@Edge. | [optional] |
163
- | **compute_resp_status_2xx** | **Integer** | Number of \&quot;Success\&quot; category status codes delivered by Compute@Edge. | [optional] |
164
- | **compute_resp_status_3xx** | **Integer** | Number of \&quot;Redirection\&quot; category status codes delivered by Compute@Edge. | [optional] |
165
- | **compute_resp_status_4xx** | **Integer** | Number of \&quot;Client Error\&quot; category status codes delivered by Compute@Edge. | [optional] |
166
- | **compute_resp_status_5xx** | **Integer** | Number of \&quot;Server Error\&quot; category status codes delivered by Compute@Edge. | [optional] |
162
+ | **compute_resp_status_1xx** | **Integer** | Number of \&quot;Informational\&quot; category status codes delivered by the Compute platform. | [optional] |
163
+ | **compute_resp_status_2xx** | **Integer** | Number of \&quot;Success\&quot; category status codes delivered by the Compute platform. | [optional] |
164
+ | **compute_resp_status_3xx** | **Integer** | Number of \&quot;Redirection\&quot; category status codes delivered by the Compute platform. | [optional] |
165
+ | **compute_resp_status_4xx** | **Integer** | Number of \&quot;Client Error\&quot; category status codes delivered by the Compute platform. | [optional] |
166
+ | **compute_resp_status_5xx** | **Integer** | Number of \&quot;Server Error\&quot; category status codes delivered by the Compute platform. | [optional] |
167
167
  | **edge_hit_requests** | **Integer** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] |
168
168
  | **edge_miss_requests** | **Integer** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] |
169
- | **compute_bereq_header_bytes** | **Integer** | Total header bytes sent to backends (origins) by Compute@Edge. | [optional] |
170
- | **compute_bereq_body_bytes** | **Integer** | Total body bytes sent to backends (origins) by Compute@Edge. | [optional] |
171
- | **compute_beresp_header_bytes** | **Integer** | Total header bytes received from backends (origins) by Compute@Edge. | [optional] |
172
- | **compute_beresp_body_bytes** | **Integer** | Total body bytes received from backends (origins) by Compute@Edge. | [optional] |
169
+ | **compute_bereq_header_bytes** | **Integer** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] |
170
+ | **compute_bereq_body_bytes** | **Integer** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] |
171
+ | **compute_beresp_header_bytes** | **Integer** | Total header bytes received from backends (origins) by the Compute platform. | [optional] |
172
+ | **compute_beresp_body_bytes** | **Integer** | Total body bytes received from backends (origins) by the Compute platform. | [optional] |
173
173
  | **origin_cache_fetches** | **Integer** | The total number of completed requests made to backends (origins) that returned cacheable content. | [optional] |
174
174
  | **shield_cache_fetches** | **Integer** | The total number of completed requests made to shields that returned cacheable content. | [optional] |
175
175
  | **compute_bereqs** | **Integer** | Number of backend requests started. | [optional] |
@@ -129,10 +129,10 @@
129
129
  | **hit_resp_body_bytes** | **Integer** | Total body bytes delivered for cache hits. | [optional] |
130
130
  | **miss_resp_body_bytes** | **Integer** | Total body bytes delivered for cache misses. | [optional] |
131
131
  | **pass_resp_body_bytes** | **Integer** | Total body bytes delivered for cache passes. | [optional] |
132
- | **compute_req_header_bytes** | **Integer** | Total header bytes received by Compute@Edge. | [optional] |
133
- | **compute_req_body_bytes** | **Integer** | Total body bytes received by Compute@Edge. | [optional] |
134
- | **compute_resp_header_bytes** | **Integer** | Total header bytes sent from Compute@Edge to end user. | [optional] |
135
- | **compute_resp_body_bytes** | **Integer** | Total body bytes sent from Compute@Edge to end user. | [optional] |
132
+ | **compute_req_header_bytes** | **Integer** | Total header bytes received by the Compute platform. | [optional] |
133
+ | **compute_req_body_bytes** | **Integer** | Total body bytes received by the Compute platform. | [optional] |
134
+ | **compute_resp_header_bytes** | **Integer** | Total header bytes sent from Compute to end user. | [optional] |
135
+ | **compute_resp_body_bytes** | **Integer** | Total body bytes sent from Compute to end user. | [optional] |
136
136
  | **imgvideo** | **Integer** | Number of video responses that came from the Fastly Image Optimizer service. | [optional] |
137
137
  | **imgvideo_frames** | **Integer** | Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] |
138
138
  | **imgvideo_resp_header_bytes** | **Integer** | Total header bytes of video delivered from the Fastly Image Optimizer service. | [optional] |
@@ -159,17 +159,17 @@
159
159
  | **shield_fetch_resp_body_bytes** | **Integer** | Total response body bytes sent from a shield to the edge. | [optional] |
160
160
  | **segblock_origin_fetches** | **Integer** | Number of `Range` requests to origin for segments of resources when using segmented caching. | [optional] |
161
161
  | **segblock_shield_fetches** | **Integer** | Number of `Range` requests to a shield for segments of resources when using segmented caching. | [optional] |
162
- | **compute_resp_status_1xx** | **Integer** | Number of \&quot;Informational\&quot; category status codes delivered by Compute@Edge. | [optional] |
163
- | **compute_resp_status_2xx** | **Integer** | Number of \&quot;Success\&quot; category status codes delivered by Compute@Edge. | [optional] |
164
- | **compute_resp_status_3xx** | **Integer** | Number of \&quot;Redirection\&quot; category status codes delivered by Compute@Edge. | [optional] |
165
- | **compute_resp_status_4xx** | **Integer** | Number of \&quot;Client Error\&quot; category status codes delivered by Compute@Edge. | [optional] |
166
- | **compute_resp_status_5xx** | **Integer** | Number of \&quot;Server Error\&quot; category status codes delivered by Compute@Edge. | [optional] |
162
+ | **compute_resp_status_1xx** | **Integer** | Number of \&quot;Informational\&quot; category status codes delivered by the Compute platform. | [optional] |
163
+ | **compute_resp_status_2xx** | **Integer** | Number of \&quot;Success\&quot; category status codes delivered by the Compute platform. | [optional] |
164
+ | **compute_resp_status_3xx** | **Integer** | Number of \&quot;Redirection\&quot; category status codes delivered by the Compute platform. | [optional] |
165
+ | **compute_resp_status_4xx** | **Integer** | Number of \&quot;Client Error\&quot; category status codes delivered by the Compute platform. | [optional] |
166
+ | **compute_resp_status_5xx** | **Integer** | Number of \&quot;Server Error\&quot; category status codes delivered by the Compute platform. | [optional] |
167
167
  | **edge_hit_requests** | **Integer** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] |
168
168
  | **edge_miss_requests** | **Integer** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] |
169
- | **compute_bereq_header_bytes** | **Integer** | Total header bytes sent to backends (origins) by Compute@Edge. | [optional] |
170
- | **compute_bereq_body_bytes** | **Integer** | Total body bytes sent to backends (origins) by Compute@Edge. | [optional] |
171
- | **compute_beresp_header_bytes** | **Integer** | Total header bytes received from backends (origins) by Compute@Edge. | [optional] |
172
- | **compute_beresp_body_bytes** | **Integer** | Total body bytes received from backends (origins) by Compute@Edge. | [optional] |
169
+ | **compute_bereq_header_bytes** | **Integer** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] |
170
+ | **compute_bereq_body_bytes** | **Integer** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] |
171
+ | **compute_beresp_header_bytes** | **Integer** | Total header bytes received from backends (origins) by the Compute platform. | [optional] |
172
+ | **compute_beresp_body_bytes** | **Integer** | Total body bytes received from backends (origins) by the Compute platform. | [optional] |
173
173
  | **origin_cache_fetches** | **Integer** | The total number of completed requests made to backends (origins) that returned cacheable content. | [optional] |
174
174
  | **shield_cache_fetches** | **Integer** | The total number of completed requests made to shields that returned cacheable content. | [optional] |
175
175
  | **compute_bereqs** | **Integer** | Number of backend requests started. | [optional] |
data/docs/Results.md CHANGED
@@ -157,19 +157,19 @@
157
157
  | **compute_request_time_billed_ms** | **Float** | The total amount of request processing time you will be billed for, measured in 50 millisecond increments. | [optional] |
158
158
  | **compute_ram_used** | **Integer** | The amount of RAM used for your service by Fastly (in bytes). | [optional] |
159
159
  | **compute_execution_time_ms** | **Float** | The amount of active CPU time used to process your requests (in milliseconds). | [optional] |
160
- | **compute_req_header_bytes** | **Integer** | Total header bytes received by Compute@Edge. | [optional] |
161
- | **compute_req_body_bytes** | **Integer** | Total body bytes received by Compute@Edge. | [optional] |
162
- | **compute_resp_header_bytes** | **Integer** | Total header bytes sent from Compute@Edge to end user. | [optional] |
163
- | **compute_resp_body_bytes** | **Integer** | Total body bytes sent from Compute@Edge to end user. | [optional] |
164
- | **compute_resp_status_1xx** | **Integer** | Number of \&quot;Informational\&quot; category status codes delivered by Compute@Edge. | [optional] |
165
- | **compute_resp_status_2xx** | **Integer** | Number of \&quot;Success\&quot; category status codes delivered by Compute@Edge. | [optional] |
166
- | **compute_resp_status_3xx** | **Integer** | Number of \&quot;Redirection\&quot; category status codes delivered by Compute@Edge. | [optional] |
167
- | **compute_resp_status_4xx** | **Integer** | Number of \&quot;Client Error\&quot; category status codes delivered by Compute@Edge. | [optional] |
168
- | **compute_resp_status_5xx** | **Integer** | Number of \&quot;Server Error\&quot; category status codes delivered by Compute@Edge. | [optional] |
169
- | **compute_bereq_header_bytes** | **Integer** | Total header bytes sent to backends (origins) by Compute@Edge. | [optional] |
170
- | **compute_bereq_body_bytes** | **Integer** | Total body bytes sent to backends (origins) by Compute@Edge. | [optional] |
171
- | **compute_beresp_header_bytes** | **Integer** | Total header bytes received from backends (origins) by Compute@Edge. | [optional] |
172
- | **compute_beresp_body_bytes** | **Integer** | Total body bytes received from backends (origins) by Compute@Edge. | [optional] |
160
+ | **compute_req_header_bytes** | **Integer** | Total header bytes received by the Compute platform. | [optional] |
161
+ | **compute_req_body_bytes** | **Integer** | Total body bytes received by the Compute platform. | [optional] |
162
+ | **compute_resp_header_bytes** | **Integer** | Total header bytes sent from Compute to end user. | [optional] |
163
+ | **compute_resp_body_bytes** | **Integer** | Total body bytes sent from Compute to end user. | [optional] |
164
+ | **compute_resp_status_1xx** | **Integer** | Number of \&quot;Informational\&quot; category status codes delivered by the Compute platform. | [optional] |
165
+ | **compute_resp_status_2xx** | **Integer** | Number of \&quot;Success\&quot; category status codes delivered by the Compute platform. | [optional] |
166
+ | **compute_resp_status_3xx** | **Integer** | Number of \&quot;Redirection\&quot; category status codes delivered by the Compute platform. | [optional] |
167
+ | **compute_resp_status_4xx** | **Integer** | Number of \&quot;Client Error\&quot; category status codes delivered by the Compute platform. | [optional] |
168
+ | **compute_resp_status_5xx** | **Integer** | Number of \&quot;Server Error\&quot; category status codes delivered by the Compute platform. | [optional] |
169
+ | **compute_bereq_header_bytes** | **Integer** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] |
170
+ | **compute_bereq_body_bytes** | **Integer** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] |
171
+ | **compute_beresp_header_bytes** | **Integer** | Total header bytes received from backends (origins) by the Compute platform. | [optional] |
172
+ | **compute_beresp_body_bytes** | **Integer** | Total body bytes received from backends (origins) by the Compute platform. | [optional] |
173
173
  | **compute_bereqs** | **Integer** | Number of backend requests started. | [optional] |
174
174
  | **compute_bereq_errors** | **Integer** | Number of backend request errors, including timeouts. | [optional] |
175
175
  | **compute_resource_limit_exceeded** | **Integer** | Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. | [optional] |
@@ -335,6 +335,7 @@ module Fastly
335
335
 
336
336
  # List config stores
337
337
  # List config stores.
338
+ # @option opts [String] :name Returns a one-element array containing the details for the named config store.
338
339
  # @return [Array<ConfigStoreResponse>]
339
340
  def list_config_stores(opts = {})
340
341
  data, _status_code, _headers = list_config_stores_with_http_info(opts)
@@ -343,6 +344,7 @@ module Fastly
343
344
 
344
345
  # List config stores
345
346
  # List config stores.
347
+ # @option opts [String] :name Returns a one-element array containing the details for the named config store.
346
348
  # @return [Array<(Array<ConfigStoreResponse>, Integer, Hash)>] Array<ConfigStoreResponse> data, response status code and response headers
347
349
  def list_config_stores_with_http_info(opts = {})
348
350
  if @api_client.config.debugging
@@ -354,6 +356,7 @@ module Fastly
354
356
 
355
357
  # query parameters
356
358
  query_params = opts[:query_params] || {}
359
+ query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
357
360
 
358
361
  # header parameters
359
362
  header_params = opts[:header_params] || {}
@@ -17,8 +17,8 @@ module Fastly
17
17
  def initialize(api_client = ApiClient.default)
18
18
  @api_client = api_client
19
19
  end
20
- # Get details of the service's Compute@Edge package.
21
- # List detailed information about the Compute@Edge package for the specified service.
20
+ # Get details of the service's Compute package.
21
+ # List detailed information about the Compute package for the specified service.
22
22
  # @option opts [String] :service_id Alphanumeric string identifying the service. (required)
23
23
  # @option opts [Integer] :version_id Integer identifying a service version. (required)
24
24
  # @return [PackageResponse]
@@ -27,8 +27,8 @@ module Fastly
27
27
  data
28
28
  end
29
29
 
30
- # Get details of the service&#39;s Compute@Edge package.
31
- # List detailed information about the Compute@Edge package for the specified service.
30
+ # Get details of the service&#39;s Compute package.
31
+ # List detailed information about the Compute package for the specified service.
32
32
  # @option opts [String] :service_id Alphanumeric string identifying the service. (required)
33
33
  # @option opts [Integer] :version_id Integer identifying a service version. (required)
34
34
  # @return [Array<(PackageResponse, Integer, Hash)>] PackageResponse data, response status code and response headers
@@ -87,8 +87,8 @@ module Fastly
87
87
  return data, status_code, headers
88
88
  end
89
89
 
90
- # Upload a Compute@Edge package.
91
- # Upload a Compute@Edge package associated with the specified service version.
90
+ # Upload a Compute package.
91
+ # Upload a Compute package associated with the specified service version.
92
92
  # @option opts [String] :service_id Alphanumeric string identifying the service. (required)
93
93
  # @option opts [Integer] :version_id Integer identifying a service version. (required)
94
94
  # @option opts [String] :expect We recommend using the Expect header because it may identify issues with the request based upon the headers alone instead of requiring you to wait until the entire binary package upload has completed.
@@ -99,8 +99,8 @@ module Fastly
99
99
  data
100
100
  end
101
101
 
102
- # Upload a Compute@Edge package.
103
- # Upload a Compute@Edge package associated with the specified service version.
102
+ # Upload a Compute package.
103
+ # Upload a Compute package associated with the specified service version.
104
104
  # @option opts [String] :service_id Alphanumeric string identifying the service. (required)
105
105
  # @option opts [Integer] :version_id Integer identifying a service version. (required)
106
106
  # @option opts [String] :expect We recommend using the Expect header because it may identify issues with the request based upon the headers alone instead of requiring you to wait until the entire binary package upload has completed.