Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
disable_product_log_explorer_insights | DELETE /enabled-products/v1/log_explorer_insights/services/{service_id} | Disable product |
enable_product_log_explorer_insights | PUT /enabled-products/v1/log_explorer_insights/services/{service_id} | Enable product |
get_product_log_explorer_insights | GET /enabled-products/v1/log_explorer_insights/services/{service_id} | Get product enablement status |
Disable the Log Explorer & Insights product on a service.
let cfg = &Configuration::default();
let params = DisableProductLogExplorerInsightsParams {
// parameters
};
disable_product_log_explorer_insights(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
service_id | String | Alphanumeric string identifying the service. | [required] |
(empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to README]
Enable the Log Explorer & Insights product on a service.
let cfg = &Configuration::default();
let params = EnableProductLogExplorerInsightsParams {
// parameters
};
enable_product_log_explorer_insights(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
service_id | String | Alphanumeric string identifying the service. | [required] |
crate::models::LogExplorerInsightsResponseBodyEnable
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to README]
Get the enablement status of the Log Explorer & Insights product on a service.
let cfg = &Configuration::default();
let params = GetProductLogExplorerInsightsParams {
// parameters
};
get_product_log_explorer_insights(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
service_id | String | Alphanumeric string identifying the service. | [required] |
crate::models::LogExplorerInsightsResponseBodyEnable
- Content-Type: Not defined
- Accept: application/json