Skip to content

Commit 5aee24f

Browse files
author
github-actions
committed
Generated v4.2.1
1 parent 55b3b05 commit 5aee24f

19 files changed

+261
-255
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [v4.2.1](https://github.com/fastly/fastly-rust/releases/tag/release/v4.2.1) (2023-10-27)
4+
5+
**Documentation:**
6+
7+
- docs: rename Compute@Edge to Compute.
8+
39
## [v4.2.0](https://github.com/fastly/fastly-rust/releases/tag/release/v4.2.0) (2023-10-24)
410

511
**Enhancements:**

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fastly-api"
3-
version = "4.2.0"
3+
version = "4.2.1"
44
authors = ["Fastly <[email protected]>"]
55
edition = "2021"
66
description = "Fastly API client"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A Rust client library for interacting with most facets of the [Fastly API](https://developer.fastly.com/reference/api).
44

5-
> **NOTE:** This API client is auto-generated from Fastly's OpenAPI specification and may not function correctly when used on the Compute@Edge platform. Support for Compute@Edge is on the roadmap but has not yet been prioritised.
5+
> **NOTE:** This API client is auto-generated from Fastly's OpenAPI specification and may not function correctly when used on the Compute platform. Support for Compute is on the roadmap but has not yet been prioritised.
66
77

88
## Requirements
@@ -14,7 +14,7 @@ Rust 2021 Edition
1414
Add the following to `Cargo.toml` under `[dependencies]`:
1515

1616
```toml
17-
fastly-api = "4.2.0"
17+
fastly-api = "4.2.1"
1818
```
1919

2020
## Usage
@@ -409,8 +409,8 @@ Class | Method | HTTP request | Description
409409
*OriginInspectorRealtimeApi* | [**get_origin_inspector_last120_seconds**](docs/OriginInspectorRealtimeApi.md#get_origin_inspector_last120_seconds) | **GET** /v1/origins/{service_id}/ts/h | Get real-time origin data for the last 120 seconds
410410
*OriginInspectorRealtimeApi* | [**get_origin_inspector_last_max_entries**](docs/OriginInspectorRealtimeApi.md#get_origin_inspector_last_max_entries) | **GET** /v1/origins/{service_id}/ts/h/limit/{max_entries} | Get a limited number of real-time origin data entries
411411
*OriginInspectorRealtimeApi* | [**get_origin_inspector_last_second**](docs/OriginInspectorRealtimeApi.md#get_origin_inspector_last_second) | **GET** /v1/origins/{service_id}/ts/{start_timestamp} | Get real-time origin data from specific time.
412-
*PackageApi* | [**get_package**](docs/PackageApi.md#get_package) | **GET** /service/{service_id}/version/{version_id}/package | Get details of the service's Compute@Edge package.
413-
*PackageApi* | [**put_package**](docs/PackageApi.md#put_package) | **PUT** /service/{service_id}/version/{version_id}/package | Upload a Compute@Edge package.
412+
*PackageApi* | [**get_package**](docs/PackageApi.md#get_package) | **GET** /service/{service_id}/version/{version_id}/package | Get details of the service's Compute package.
413+
*PackageApi* | [**put_package**](docs/PackageApi.md#put_package) | **PUT** /service/{service_id}/version/{version_id}/package | Upload a Compute package.
414414
*PoolApi* | [**create_server_pool**](docs/PoolApi.md#create_server_pool) | **POST** /service/{service_id}/version/{version_id}/pool | Create a server pool
415415
*PoolApi* | [**delete_server_pool**](docs/PoolApi.md#delete_server_pool) | **DELETE** /service/{service_id}/version/{version_id}/pool/{pool_name} | Delete a server pool
416416
*PoolApi* | [**get_server_pool**](docs/PoolApi.md#get_server_pool) | **GET** /service/{service_id}/version/{version_id}/pool/{pool_name} | Get a server pool

docs/OriginInspectorMeasurements.md

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -80,44 +80,44 @@ Name | Type | Description | Notes
8080
**waf_latency_5000_to_10000ms** | Option<**i32**> | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by the Fastly WAF. |
8181
**waf_latency_10000_to_60000ms** | Option<**i32**> | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by the Fastly WAF. |
8282
**waf_latency_60000ms** | Option<**i32**> | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by the Fastly WAF. |
83-
**compute_responses** | Option<**i32**> | Number of responses for origin received by Compute@Edge. |
84-
**compute_resp_header_bytes** | Option<**i32**> | Number of header bytes for origin received by Compute@Edge. |
85-
**compute_resp_body_bytes** | Option<**i32**> | Number of body bytes for origin received by Compute@Edge. |
86-
**compute_status_1xx** | Option<**i32**> | Number of 1xx \"Informational\" status codes for origin received by Compute@Edge. |
87-
**compute_status_2xx** | Option<**i32**> | Number of 2xx \"Success\" status codes for origin received by Compute@Edge. |
88-
**compute_status_3xx** | Option<**i32**> | Number of 3xx \"Redirection\" codes for origin received by Compute@Edge. |
89-
**compute_status_4xx** | Option<**i32**> | Number of 4xx \"Client Error\" codes for origin received by Compute@Edge. |
90-
**compute_status_5xx** | Option<**i32**> | Number of 5xx \"Server Error\" codes for origin received by Compute@Edge. |
91-
**compute_status_200** | Option<**i32**> | Number of responses received with status code 200 (Success) for origin received by Compute@Edge. |
92-
**compute_status_204** | Option<**i32**> | Number of responses received with status code 204 (No Content) for origin received by Compute@Edge. |
93-
**compute_status_206** | Option<**i32**> | Number of responses received with status code 206 (Partial Content) for origin received by Compute@Edge. |
94-
**compute_status_301** | Option<**i32**> | Number of responses received with status code 301 (Moved Permanently) for origin received by Compute@Edge. |
95-
**compute_status_302** | Option<**i32**> | Number of responses received with status code 302 (Found) for origin received by Compute@Edge. |
96-
**compute_status_304** | Option<**i32**> | Number of responses received with status code 304 (Not Modified) for origin received by Compute@Edge. |
97-
**compute_status_400** | Option<**i32**> | Number of responses received with status code 400 (Bad Request) for origin received by Compute@Edge. |
98-
**compute_status_401** | Option<**i32**> | Number of responses received with status code 401 (Unauthorized) for origin received by Compute@Edge. |
99-
**compute_status_403** | Option<**i32**> | Number of responses received with status code 403 (Forbidden) for origin received by Compute@Edge. |
100-
**compute_status_404** | Option<**i32**> | Number of responses received with status code 404 (Not Found) for origin received by Compute@Edge. |
101-
**compute_status_416** | Option<**i32**> | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by Compute@Edge. |
102-
**compute_status_429** | Option<**i32**> | Number of responses received with status code 429 (Too Many Requests) for origin received by Compute@Edge. |
103-
**compute_status_500** | Option<**i32**> | Number of responses received with status code 500 (Internal Server Error) for origin received by Compute@Edge. |
104-
**compute_status_501** | Option<**i32**> | Number of responses received with status code 501 (Not Implemented) for origin received by Compute@Edge. |
105-
**compute_status_502** | Option<**i32**> | Number of responses received with status code 502 (Bad Gateway) for origin received by Compute@Edge. |
106-
**compute_status_503** | Option<**i32**> | Number of responses received with status code 503 (Service Unavailable) for origin received by Compute@Edge. |
107-
**compute_status_504** | Option<**i32**> | Number of responses received with status code 504 (Gateway Timeout) for origin received by Compute@Edge. |
108-
**compute_status_505** | Option<**i32**> | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by Compute@Edge. |
109-
**compute_latency_0_to_1ms** | Option<**i32**> | Number of responses with latency between 0 and 1 millisecond for origin received by Compute@Edge. |
110-
**compute_latency_1_to_5ms** | Option<**i32**> | Number of responses with latency between 1 and 5 milliseconds for origin received by Compute@Edge. |
111-
**compute_latency_5_to_10ms** | Option<**i32**> | Number of responses with latency between 5 and 10 milliseconds for origin received by Compute@Edge. |
112-
**compute_latency_10_to_50ms** | Option<**i32**> | Number of responses with latency between 10 and 50 milliseconds for origin received by Compute@Edge. |
113-
**compute_latency_50_to_100ms** | Option<**i32**> | Number of responses with latency between 50 and 100 milliseconds for origin received by Compute@Edge. |
114-
**compute_latency_100_to_250ms** | Option<**i32**> | Number of responses with latency between 100 and 250 milliseconds for origin received by Compute@Edge. |
115-
**compute_latency_250_to_500ms** | Option<**i32**> | Number of responses with latency between 250 and 500 milliseconds for origin received by Compute@Edge. |
116-
**compute_latency_500_to_1000ms** | Option<**i32**> | Number of responses with latency between 500 and 1,000 milliseconds for origin received by Compute@Edge. |
117-
**compute_latency_1000_to_5000ms** | Option<**i32**> | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by Compute@Edge. |
118-
**compute_latency_5000_to_10000ms** | Option<**i32**> | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by Compute@Edge. |
119-
**compute_latency_10000_to_60000ms** | Option<**i32**> | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by Compute@Edge. |
120-
**compute_latency_60000ms** | Option<**i32**> | Number of responses with latency of 60,000 milliseconds and above for origin received by Compute@Edge. |
83+
**compute_responses** | Option<**i32**> | Number of responses for origin received by the Compute platform. |
84+
**compute_resp_header_bytes** | Option<**i32**> | Number of header bytes for origin received by the Compute platform. |
85+
**compute_resp_body_bytes** | Option<**i32**> | Number of body bytes for origin received by the Compute platform. |
86+
**compute_status_1xx** | Option<**i32**> | Number of 1xx \"Informational\" status codes for origin received by the Compute platform. |
87+
**compute_status_2xx** | Option<**i32**> | Number of 2xx \"Success\" status codes for origin received by the Compute platform. |
88+
**compute_status_3xx** | Option<**i32**> | Number of 3xx \"Redirection\" codes for origin received by the Compute platform. |
89+
**compute_status_4xx** | Option<**i32**> | Number of 4xx \"Client Error\" codes for origin received by the Compute platform. |
90+
**compute_status_5xx** | Option<**i32**> | Number of 5xx \"Server Error\" codes for origin received by the Compute platform. |
91+
**compute_status_200** | Option<**i32**> | Number of responses received with status code 200 (Success) for origin received by the Compute platform. |
92+
**compute_status_204** | Option<**i32**> | Number of responses received with status code 204 (No Content) for origin received by the Compute platform. |
93+
**compute_status_206** | Option<**i32**> | Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. |
94+
**compute_status_301** | Option<**i32**> | Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. |
95+
**compute_status_302** | Option<**i32**> | Number of responses received with status code 302 (Found) for origin received by the Compute platform. |
96+
**compute_status_304** | Option<**i32**> | Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. |
97+
**compute_status_400** | Option<**i32**> | Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. |
98+
**compute_status_401** | Option<**i32**> | Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. |
99+
**compute_status_403** | Option<**i32**> | Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. |
100+
**compute_status_404** | Option<**i32**> | Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. |
101+
**compute_status_416** | Option<**i32**> | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. |
102+
**compute_status_429** | Option<**i32**> | Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. |
103+
**compute_status_500** | Option<**i32**> | Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. |
104+
**compute_status_501** | Option<**i32**> | Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. |
105+
**compute_status_502** | Option<**i32**> | Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. |
106+
**compute_status_503** | Option<**i32**> | Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. |
107+
**compute_status_504** | Option<**i32**> | Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. |
108+
**compute_status_505** | Option<**i32**> | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. |
109+
**compute_latency_0_to_1ms** | Option<**i32**> | Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. |
110+
**compute_latency_1_to_5ms** | Option<**i32**> | Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. |
111+
**compute_latency_5_to_10ms** | Option<**i32**> | Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. |
112+
**compute_latency_10_to_50ms** | Option<**i32**> | Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. |
113+
**compute_latency_50_to_100ms** | Option<**i32**> | Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. |
114+
**compute_latency_100_to_250ms** | Option<**i32**> | Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. |
115+
**compute_latency_250_to_500ms** | Option<**i32**> | Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. |
116+
**compute_latency_500_to_1000ms** | Option<**i32**> | Number of responses with latency between 500 and 1,000 milliseconds for origin received by the Compute platform. |
117+
**compute_latency_1000_to_5000ms** | Option<**i32**> | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by the Compute platform. |
118+
**compute_latency_5000_to_10000ms** | Option<**i32**> | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by the Compute platform. |
119+
**compute_latency_10000_to_60000ms** | Option<**i32**> | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by the Compute platform. |
120+
**compute_latency_60000ms** | Option<**i32**> | Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. |
121121
**all_responses** | Option<**i32**> | Number of responses received for origin requests made by all sources. |
122122
**all_resp_header_bytes** | Option<**i32**> | Number of header bytes received for origin requests made by all sources. |
123123
**all_resp_body_bytes** | Option<**i32**> | Number of body bytes received for origin requests made by all sources. |

0 commit comments

Comments
 (0)