Fastly Inc
/
WebService-Fastly-14.00
/
docs/IamPermissionsApi.md
WebService::Fastly::IamPermissionsApi
Load the API package
use WebService::Fastly::Object::IamPermissionsApi;
[!NOTE]
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description
------ | ------------ | -----------
list_permissions | GET /permissions | List permissions
list_permissions
object list_permissions()
List permissions
List all permissions.
Example
use Data::Dumper;
use WebService::Fastly::IamPermissionsApi;
my $api_instance = WebService::Fastly::IamPermissionsApi->new(
# Configure API key authorization: token
api_key => {'Fastly-Key' => 'YOUR_API_KEY'},
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#api_key_prefix => {'Fastly-Key' => 'Bearer'},
);
eval {
my $result = $api_instance->list_permissions();
print Dumper($result);
};
if ($@) {
warn "Exception when calling IamPermissionsApi->list_permissions: $@\n";
}
Parameters
This endpoint does not need any parameter.
Return type
object
Authorization
token
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]