Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
ListPops | GET /datacenters |
List Fastly POPs |
List Fastly POPs
package main
import (
"context"
"fmt"
"os"
"github.com/fastly/fastly-go/fastly"
)
func main() {
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.PopAPI.ListPops(ctx).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `PopAPI.ListPops`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListPops`: []Pop
fmt.Fprintf(os.Stdout, "Response from `PopAPI.ListPops`: %v\n", resp)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiListPopsRequest struct via the builder pattern
- Content-Type: Not defined
- Accept: application/json