-
Notifications
You must be signed in to change notification settings - Fork 843
/
entities.go
84 lines (68 loc) · 2.21 KB
/
entities.go
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// +build go1.7
package storageservice
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
import (
"encoding/xml"
"github.com/Azure/azure-sdk-for-go/services/classic/management"
)
// StorageServiceClient is used to perform operations on Azure Storage
type StorageServiceClient struct {
client management.Client
}
type ListStorageServicesResponse struct {
StorageServices []StorageServiceResponse `xml:"StorageService"`
}
type StorageServiceResponse struct {
URL string `xml:"Url"`
ServiceName string
StorageServiceProperties StorageServiceProperties
}
type StorageServiceProperties struct {
Description string
Location string
Label string
Status string
Endpoints []string `xml:"Endpoints>Endpoint"`
GeoReplicationEnabled string
GeoPrimaryRegion string
}
type GetStorageServiceKeysResponse struct {
URL string `xml:"Url"`
PrimaryKey string `xml:"StorageServiceKeys>Primary"`
SecondaryKey string `xml:"StorageServiceKeys>Secondary"`
}
type CreateStorageServiceInput struct {
XMLName xml.Name `xml:"http://schemas.microsoft.com/windowsazure CreateStorageServiceInput"`
StorageAccountCreateParameters
}
type StorageAccountCreateParameters struct {
ServiceName string
Description string `xml:",omitempty"`
Label string
AffinityGroup string `xml:",omitempty"`
Location string `xml:",omitempty"`
ExtendedProperties ExtendedPropertyList
AccountType AccountType
}
type AccountType string
const (
AccountTypeStandardLRS AccountType = "Standard_LRS"
AccountTypeStandardZRS AccountType = "Standard_ZRS"
AccountTypeStandardGRS AccountType = "Standard_GRS"
AccountTypeStandardRAGRS AccountType = "Standard_RAGRS"
AccountTypePremiumLRS AccountType = "Premium_LRS"
)
type ExtendedPropertyList struct {
ExtendedProperty []ExtendedProperty
}
type ExtendedProperty struct {
Name string
Value string
}
type AvailabilityResponse struct {
XMLName xml.Name `xml:"AvailabilityResponse"`
Xmlns string `xml:"xmlns,attr"`
Result bool
Reason string
}