const apiInstance = new Fastly.ProductBotManagementApi();
Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
disableProductBotManagement | DELETE /enabled-products/v1/bot_management/services/{service_id} | Disable product |
enableProductBotManagement | PUT /enabled-products/v1/bot_management/services/{service_id} | Enable product |
getProductBotManagement | GET /enabled-products/v1/bot_management/services/{service_id} | Get product enablement status |
disableProductBotManagement({ service_id })
Disable the Bot Management product on a service.
const options = {
service_id: "service_id_example", // required
};
apiInstance.disableProductBotManagement(options)
.then(() => {
console.log('API called successfully.');
})
.catch((error) => {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
service_id | String | Alphanumeric string identifying the service. |
null (empty response body)
enableProductBotManagement({ service_id })
Enable the Bot Management product on a service.
const options = {
service_id: "service_id_example", // required
};
apiInstance.enableProductBotManagement(options)
.then((data) => {
console.log(data, "API called successfully.");
})
.catch((error) => {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
service_id | String | Alphanumeric string identifying the service. |
BotManagementResponseBodyEnable
getProductBotManagement({ service_id })
Get the enablement status of the Bot Management product on a service.
const options = {
service_id: "service_id_example", // required
};
apiInstance.getProductBotManagement(options)
.then((data) => {
console.log(data, "API called successfully.");
})
.catch((error) => {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
service_id | String | Alphanumeric string identifying the service. |