Skip to content

Latest commit

 

History

History
125 lines (86 loc) · 3.92 KB

ProductBotManagementApi.md

File metadata and controls

125 lines (86 loc) · 3.92 KB

Fastly\Api\ProductBotManagementApi

$apiInstance = new Fastly\Api\ProductBotManagementApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

Methods

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()

disableProductBotManagement($options) // Disable product

Disable the Bot Management product on a service.

Example

    $options['service_id'] = 'service_id_example'; // string | Alphanumeric string identifying the service.

try {
    $apiInstance->disableProductBotManagement($options);
} catch (Exception $e) {
    echo 'Exception when calling ProductBotManagementApi->disableProductBotManagement: ', $e->getMessage(), PHP_EOL;
}

Options

Note: the input parameter is an associative array with the keys listed below.

Name Type Description Notes
service_id string Alphanumeric string identifying the service.

Return type

void (empty response body)

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

enableProductBotManagement()

enableProductBotManagement($options): \Fastly\Model\BotManagementResponseBodyEnable // Enable product

Enable the Bot Management product on a service.

Example

    $options['service_id'] = 'service_id_example'; // string | Alphanumeric string identifying the service.

try {
    $result = $apiInstance->enableProductBotManagement($options);
} catch (Exception $e) {
    echo 'Exception when calling ProductBotManagementApi->enableProductBotManagement: ', $e->getMessage(), PHP_EOL;
}

Options

Note: the input parameter is an associative array with the keys listed below.

Name Type Description Notes
service_id string Alphanumeric string identifying the service.

Return type

\Fastly\Model\BotManagementResponseBodyEnable

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

getProductBotManagement()

getProductBotManagement($options): \Fastly\Model\BotManagementResponseBodyEnable // Get product enablement status

Get the enablement status of the Bot Management product on a service.

Example

    $options['service_id'] = 'service_id_example'; // string | Alphanumeric string identifying the service.

try {
    $result = $apiInstance->getProductBotManagement($options);
} catch (Exception $e) {
    echo 'Exception when calling ProductBotManagementApi->getProductBotManagement: ', $e->getMessage(), PHP_EOL;
}

Options

Note: the input parameter is an associative array with the keys listed below.

Name Type Description Notes
service_id string Alphanumeric string identifying the service.

Return type

\Fastly\Model\BotManagementResponseBodyEnable

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