File: entities.go

package info (click to toggle)
golang-github-azure-azure-sdk-for-go 2.1.1~beta-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,596 kB
  • ctags: 7,237
  • sloc: makefile: 4
file content (37 lines) | stat: -rw-r--r-- 906 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package location

import (
	"bytes"
	"encoding/xml"
	"fmt"
	"strings"

	"github.com/Azure/azure-sdk-for-go/management"
)

//LocationClient is used to perform operations on Azure Locations
type LocationClient struct {
	client management.Client
}

type ListLocationsResponse struct {
	XMLName   xml.Name   `xml:"Locations"`
	Locations []Location `xml:"Location"`
}

type Location struct {
	Name                    string
	DisplayName             string
	AvailableServices       []string `xml:"AvailableServices>AvailableService"`
	WebWorkerRoleSizes      []string `xml:"ComputeCapabilities>WebWorkerRoleSizes>RoleSize"`
	VirtualMachineRoleSizes []string `xml:"ComputeCapabilities>VirtualMachinesRoleSizes>RoleSize"`
}

func (ll ListLocationsResponse) String() string {
	var buf bytes.Buffer
	for _, l := range ll.Locations {
		fmt.Fprintf(&buf, "%s, ", l.Name)
	}

	return strings.Trim(buf.String(), ", ")
}