Skip to content

Commit

Permalink
Generated v4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 27, 2023
1 parent 55b3b05 commit 5aee24f
Show file tree
Hide file tree
Showing 19 changed files with 261 additions and 255 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [v4.2.1](https://github.com/fastly/fastly-rust/releases/tag/release/v4.2.1) (2023-10-27)

**Documentation:**

- docs: rename Compute@Edge to Compute.

## [v4.2.0](https://github.com/fastly/fastly-rust/releases/tag/release/v4.2.0) (2023-10-24)

**Enhancements:**
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastly-api"
version = "4.2.0"
version = "4.2.1"
authors = ["Fastly <[email protected]>"]
edition = "2021"
description = "Fastly API client"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

> **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.
> **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.

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

```toml
fastly-api = "4.2.0"
fastly-api = "4.2.1"
```

## Usage
Expand Down Expand Up @@ -409,8 +409,8 @@ Class | Method | HTTP request | Description
*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
*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
*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.
*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.
*PackageApi* | [**put_package**](docs/PackageApi.md#put_package) | **PUT** /service/{service_id}/version/{version_id}/package | Upload a Compute@Edge package.
*PackageApi* | [**get_package**](docs/PackageApi.md#get_package) | **GET** /service/{service_id}/version/{version_id}/package | Get details of the service's Compute package.
*PackageApi* | [**put_package**](docs/PackageApi.md#put_package) | **PUT** /service/{service_id}/version/{version_id}/package | Upload a Compute package.
*PoolApi* | [**create_server_pool**](docs/PoolApi.md#create_server_pool) | **POST** /service/{service_id}/version/{version_id}/pool | Create a server pool
*PoolApi* | [**delete_server_pool**](docs/PoolApi.md#delete_server_pool) | **DELETE** /service/{service_id}/version/{version_id}/pool/{pool_name} | Delete a server pool
*PoolApi* | [**get_server_pool**](docs/PoolApi.md#get_server_pool) | **GET** /service/{service_id}/version/{version_id}/pool/{pool_name} | Get a server pool
Expand Down
76 changes: 38 additions & 38 deletions docs/OriginInspectorMeasurements.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,44 +80,44 @@ Name | Type | Description | Notes
**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. |
**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. |
**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. |
**compute_responses** | Option<**i32**> | Number of responses for origin received by Compute@Edge. |
**compute_resp_header_bytes** | Option<**i32**> | Number of header bytes for origin received by Compute@Edge. |
**compute_resp_body_bytes** | Option<**i32**> | Number of body bytes for origin received by Compute@Edge. |
**compute_status_1xx** | Option<**i32**> | Number of 1xx \"Informational\" status codes for origin received by Compute@Edge. |
**compute_status_2xx** | Option<**i32**> | Number of 2xx \"Success\" status codes for origin received by Compute@Edge. |
**compute_status_3xx** | Option<**i32**> | Number of 3xx \"Redirection\" codes for origin received by Compute@Edge. |
**compute_status_4xx** | Option<**i32**> | Number of 4xx \"Client Error\" codes for origin received by Compute@Edge. |
**compute_status_5xx** | Option<**i32**> | Number of 5xx \"Server Error\" codes for origin received by Compute@Edge. |
**compute_status_200** | Option<**i32**> | Number of responses received with status code 200 (Success) for origin received by Compute@Edge. |
**compute_status_204** | Option<**i32**> | Number of responses received with status code 204 (No Content) for origin received by Compute@Edge. |
**compute_status_206** | Option<**i32**> | Number of responses received with status code 206 (Partial Content) for origin received by Compute@Edge. |
**compute_status_301** | Option<**i32**> | Number of responses received with status code 301 (Moved Permanently) for origin received by Compute@Edge. |
**compute_status_302** | Option<**i32**> | Number of responses received with status code 302 (Found) for origin received by Compute@Edge. |
**compute_status_304** | Option<**i32**> | Number of responses received with status code 304 (Not Modified) for origin received by Compute@Edge. |
**compute_status_400** | Option<**i32**> | Number of responses received with status code 400 (Bad Request) for origin received by Compute@Edge. |
**compute_status_401** | Option<**i32**> | Number of responses received with status code 401 (Unauthorized) for origin received by Compute@Edge. |
**compute_status_403** | Option<**i32**> | Number of responses received with status code 403 (Forbidden) for origin received by Compute@Edge. |
**compute_status_404** | Option<**i32**> | Number of responses received with status code 404 (Not Found) for origin received by Compute@Edge. |
**compute_status_416** | Option<**i32**> | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by Compute@Edge. |
**compute_status_429** | Option<**i32**> | Number of responses received with status code 429 (Too Many Requests) for origin received by Compute@Edge. |
**compute_status_500** | Option<**i32**> | Number of responses received with status code 500 (Internal Server Error) for origin received by Compute@Edge. |
**compute_status_501** | Option<**i32**> | Number of responses received with status code 501 (Not Implemented) for origin received by Compute@Edge. |
**compute_status_502** | Option<**i32**> | Number of responses received with status code 502 (Bad Gateway) for origin received by Compute@Edge. |
**compute_status_503** | Option<**i32**> | Number of responses received with status code 503 (Service Unavailable) for origin received by Compute@Edge. |
**compute_status_504** | Option<**i32**> | Number of responses received with status code 504 (Gateway Timeout) for origin received by Compute@Edge. |
**compute_status_505** | Option<**i32**> | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by Compute@Edge. |
**compute_latency_0_to_1ms** | Option<**i32**> | Number of responses with latency between 0 and 1 millisecond for origin received by Compute@Edge. |
**compute_latency_1_to_5ms** | Option<**i32**> | Number of responses with latency between 1 and 5 milliseconds for origin received by Compute@Edge. |
**compute_latency_5_to_10ms** | Option<**i32**> | Number of responses with latency between 5 and 10 milliseconds for origin received by Compute@Edge. |
**compute_latency_10_to_50ms** | Option<**i32**> | Number of responses with latency between 10 and 50 milliseconds for origin received by Compute@Edge. |
**compute_latency_50_to_100ms** | Option<**i32**> | Number of responses with latency between 50 and 100 milliseconds for origin received by Compute@Edge. |
**compute_latency_100_to_250ms** | Option<**i32**> | Number of responses with latency between 100 and 250 milliseconds for origin received by Compute@Edge. |
**compute_latency_250_to_500ms** | Option<**i32**> | Number of responses with latency between 250 and 500 milliseconds for origin received by Compute@Edge. |
**compute_latency_500_to_1000ms** | Option<**i32**> | Number of responses with latency between 500 and 1,000 milliseconds for origin received by Compute@Edge. |
**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. |
**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. |
**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. |
**compute_latency_60000ms** | Option<**i32**> | Number of responses with latency of 60,000 milliseconds and above for origin received by Compute@Edge. |
**compute_responses** | Option<**i32**> | Number of responses for origin received by the Compute platform. |
**compute_resp_header_bytes** | Option<**i32**> | Number of header bytes for origin received by the Compute platform. |
**compute_resp_body_bytes** | Option<**i32**> | Number of body bytes for origin received by the Compute platform. |
**compute_status_1xx** | Option<**i32**> | Number of 1xx \"Informational\" status codes for origin received by the Compute platform. |
**compute_status_2xx** | Option<**i32**> | Number of 2xx \"Success\" status codes for origin received by the Compute platform. |
**compute_status_3xx** | Option<**i32**> | Number of 3xx \"Redirection\" codes for origin received by the Compute platform. |
**compute_status_4xx** | Option<**i32**> | Number of 4xx \"Client Error\" codes for origin received by the Compute platform. |
**compute_status_5xx** | Option<**i32**> | Number of 5xx \"Server Error\" codes for origin received by the Compute platform. |
**compute_status_200** | Option<**i32**> | Number of responses received with status code 200 (Success) for origin received by the Compute platform. |
**compute_status_204** | Option<**i32**> | Number of responses received with status code 204 (No Content) for origin received by the Compute platform. |
**compute_status_206** | Option<**i32**> | Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. |
**compute_status_301** | Option<**i32**> | Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. |
**compute_status_302** | Option<**i32**> | Number of responses received with status code 302 (Found) for origin received by the Compute platform. |
**compute_status_304** | Option<**i32**> | Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. |
**compute_status_400** | Option<**i32**> | Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. |
**compute_status_401** | Option<**i32**> | Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. |
**compute_status_403** | Option<**i32**> | Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. |
**compute_status_404** | Option<**i32**> | Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. |
**compute_status_416** | Option<**i32**> | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. |
**compute_status_429** | Option<**i32**> | Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. |
**compute_status_500** | Option<**i32**> | Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. |
**compute_status_501** | Option<**i32**> | Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. |
**compute_status_502** | Option<**i32**> | Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. |
**compute_status_503** | Option<**i32**> | Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. |
**compute_status_504** | Option<**i32**> | Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. |
**compute_status_505** | Option<**i32**> | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. |
**compute_latency_0_to_1ms** | Option<**i32**> | Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. |
**compute_latency_1_to_5ms** | Option<**i32**> | Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. |
**compute_latency_5_to_10ms** | Option<**i32**> | Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. |
**compute_latency_10_to_50ms** | Option<**i32**> | Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. |
**compute_latency_50_to_100ms** | Option<**i32**> | Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. |
**compute_latency_100_to_250ms** | Option<**i32**> | Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. |
**compute_latency_250_to_500ms** | Option<**i32**> | Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. |
**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. |
**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. |
**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. |
**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. |
**compute_latency_60000ms** | Option<**i32**> | Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. |
**all_responses** | Option<**i32**> | Number of responses received for origin requests made by all sources. |
**all_resp_header_bytes** | Option<**i32**> | Number of header bytes received for origin requests made by all sources. |
**all_resp_body_bytes** | Option<**i32**> | Number of body bytes received for origin requests made by all sources. |
Expand Down
Loading

0 comments on commit 5aee24f

Please sign in to comment.