2
2
mirror of https://github.com/octoleo/restic.git synced 2024-10-01 07:49:00 +00:00
restic/vendor/github.com/Azure/azure-sdk-for-go/management/location/client.go
2017-09-13 14:09:48 +02:00

33 lines
707 B
Go

// +build go1.7
// Package location provides a client for Locations.
package location
import (
"encoding/xml"
"github.com/Azure/azure-sdk-for-go/management"
)
const (
azureLocationListURL = "locations"
errParamNotSpecified = "Parameter %s is not specified."
)
//NewClient is used to instantiate a new LocationClient from an Azure client
func NewClient(client management.Client) LocationClient {
return LocationClient{client: client}
}
func (c LocationClient) ListLocations() (ListLocationsResponse, error) {
var l ListLocationsResponse
response, err := c.client.SendAzureGetRequest(azureLocationListURL)
if err != nil {
return l, err
}
err = xml.Unmarshal(response, &l)
return l, err
}