Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 845 Bytes

PopApi.md

File metadata and controls

50 lines (33 loc) · 845 Bytes

Fastly::PopApi

require 'fastly'
api_instance = Fastly::PopApi.new

Methods

Note

All URIs are relative to https://api.fastly.com

Method HTTP request Description
list_pops GET /datacenters List Fastly POPs

list_pops()

list_pops: <Array<Pop>> # List Fastly POPs

Get a list of all Fastly POPs.

Examples

api_instance = Fastly::PopApi.new

begin
  # List Fastly POPs
  result = api_instance.list_pops
  p result
rescue Fastly::ApiError => e
  puts "Error when calling PopApi->list_pops: #{e}"
end

Options

This endpoint does not need any parameter.

Return type

Array<Pop>

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