Skip to content

Latest commit

 

History

History
108 lines (65 loc) · 2.43 KB

ProductAiAcceleratorApi.md

File metadata and controls

108 lines (65 loc) · 2.43 KB

ProductAiAcceleratorApi

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_product_ai_accelerator

Disable the AI Accelerator product

let cfg = &Configuration::default();
let params = DisableProductAiAcceleratorParams {
    // parameters
};
disable_product_ai_accelerator(cfg, params)

Parameters

This endpoint does not need any parameter.

Return type

(empty response body)

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to README]

enable_ai_accelerator

Enable the AI Accelerator product

let cfg = &Configuration::default();
let params = EnableAiAcceleratorParams {
    // parameters
};
enable_ai_accelerator(cfg, params)

Parameters

This endpoint does not need any parameter.

Return type

crate::models::AiAcceleratorResponseBodyEnable

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to README]

get_ai_accelerator

Get the enablement status of the AI Accelerator product

let cfg = &Configuration::default();
let params = GetAiAcceleratorParams {
    // parameters
};
get_ai_accelerator(cfg, params)

Parameters

This endpoint does not need any parameter.

Return type

crate::models::AiAcceleratorResponseBodyEnable

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to README]