Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
disable_product_ai_accelerator | DELETE /enabled-products/v1/ai_accelerator | Disable product |
enable_ai_accelerator | PUT /enabled-products/v1/ai_accelerator | Enable product |
get_ai_accelerator | GET /enabled-products/v1/ai_accelerator | Get product enablement status |
Disable the AI Accelerator product
let cfg = &Configuration::default();
let params = DisableProductAiAcceleratorParams {
// parameters
};
disable_product_ai_accelerator(cfg, params)
This endpoint does not need any parameter.
(empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to README]
Enable the AI Accelerator product
let cfg = &Configuration::default();
let params = EnableAiAcceleratorParams {
// parameters
};
enable_ai_accelerator(cfg, params)
This endpoint does not need any parameter.
crate::models::AiAcceleratorResponseBodyEnable
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to README]
Get the enablement status of the AI Accelerator product
let cfg = &Configuration::default();
let params = GetAiAcceleratorParams {
// parameters
};
get_ai_accelerator(cfg, params)
This endpoint does not need any parameter.
crate::models::AiAcceleratorResponseBodyEnable
- Content-Type: Not defined
- Accept: application/json