Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
create_http3 | POST /service/{service_id}/version/{version_id}/http3 | Enable support for HTTP/3 |
delete_http3 | DELETE /service/{service_id}/version/{version_id}/http3 | Disable support for HTTP/3 |
get_http3 | GET /service/{service_id}/version/{version_id}/http3 | Get HTTP/3 status |
Enable HTTP/3 (QUIC) support for a particular service and version.
let cfg = &Configuration::default();
let params = CreateHttp3Params {
// parameters
};
create_http3(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
service_id | String | Alphanumeric string identifying the service. | [required] | |
version_id | i32 | Integer identifying a service version. | [required] | |
service_id2 | Option<String> | |||
version | Option<i32> | |||
created_at | Option<String> | Date and time in ISO 8601 format. | ||
deleted_at | Option<String> | Date and time in ISO 8601 format. | ||
updated_at | Option<String> | Date and time in ISO 8601 format. | ||
feature_revision | Option<i32> | Revision number of the HTTP/3 feature implementation. Defaults to the most recent revision. |
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to README]
Disable HTTP/3 (QUIC) support for a particular service and version.
let cfg = &Configuration::default();
let params = DeleteHttp3Params {
// parameters
};
delete_http3(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
service_id | String | Alphanumeric string identifying the service. | [required] | |
version_id | i32 | Integer identifying a service version. | [required] |
crate::models::InlineResponse200
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to README]
Get the status of HTTP/3 (QUIC) support for a particular service and version.
let cfg = &Configuration::default();
let params = GetHttp3Params {
// parameters
};
get_http3(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
service_id | String | Alphanumeric string identifying the service. | [required] | |
version_id | i32 | Integer identifying a service version. | [required] |
- Content-Type: Not defined
- Accept: application/json