Skip to content

Latest commit

 

History

History
52 lines (35 loc) · 1.24 KB

PublicIpListApi.md

File metadata and controls

52 lines (35 loc) · 1.24 KB

Fastly\Api\PublicIpListApi

$apiInstance = new Fastly\Api\PublicIpListApi(
    // 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
listFastlyIps() GET /public-ip-list List Fastly's public IPs

listFastlyIps()

listFastlyIps($options): \Fastly\Model\PublicIpList // List Fastly's public IPs

List the public IP addresses for the Fastly network.

Example

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

Options

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

This endpoint does not need any parameters.

Return type

\Fastly\Model\PublicIpList

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