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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
package sql
import (
"encoding/xml"
)
// DatabaseServerCreateParams represents the set of possible parameters
// when issuing a database server creation request to Azure.
//
// https://msdn.microsoft.com/en-us/library/azure/dn505699.aspx
type DatabaseServerCreateParams struct {
XMLName xml.Name `xml:"http://schemas.microsoft.com/sqlazure/2010/12/ Server"`
AdministratorLogin string
AdministratorLoginPassword string
Location string
Version string
}
// DatabaseServerCreateResponse represents the response following the creation of
// a database server on Azure.
type DatabaseServerCreateResponse struct {
ServerName string
}
const (
DatabaseServerVersion11 = "2.0"
DatabaseServerVersion12 = "12.0"
)
// DatabaseServer represents the set of data recieved from
// a database server list operation.
//
// https://msdn.microsoft.com/en-us/library/azure/dn505702.aspx
type DatabaseServer struct {
Name string
AdministratorLogin string
Location string
FullyQualifiedDomainName string
Version string
State string
}
type ListServersResponse struct {
DatabaseServers []DatabaseServer `xml:"Server"`
}
// FirewallRuleCreateParams represents the set of possible
// paramaters when creating a firewall rule on an Azure database server.
//
// https://msdn.microsoft.com/en-us/library/azure/dn505712.aspx
type FirewallRuleCreateParams struct {
XMLName xml.Name `xml:"http://schemas.microsoft.com/windowsazure ServiceResource"`
Name string
StartIPAddress string
EndIPAddress string
}
// FirewallRuleResponse represents the set of data recieved from
// an Azure database server firewall rule get response.
//
// https://msdn.microsoft.com/en-us/library/azure/dn505698.aspx
type FirewallRuleResponse struct {
Name string
StartIPAddress string
EndIPAddress string
}
type ListFirewallRulesResponse struct {
FirewallRules []FirewallRuleResponse `xml:"ServiceResource"`
}
// FirewallRuleUpdateParams represents the set of possible
// parameters when issuing an update of a database server firewall rule.
//
// https://msdn.microsoft.com/en-us/library/azure/dn505707.aspx
type FirewallRuleUpdateParams struct {
XMLName xml.Name `xml:"http://schemas.microsoft.com/windowsazure ServiceResource"`
Name string
StartIPAddress string
EndIPAddress string
}
// DatabaseCreateParams represents the set of possible parameters when issuing
// a database creation to Azure, and reading a list response from Azure.
//
// https://msdn.microsoft.com/en-us/library/azure/dn505701.aspx
type DatabaseCreateParams struct {
XMLName xml.Name `xml:"http://schemas.microsoft.com/windowsazure ServiceResource"`
Name string
Edition string `xml:",omitempty"`
CollationName string `xml:",omitempty"`
MaxSizeBytes int64 `xml:",omitempty"`
ServiceObjectiveID string `xml:"ServiceObjectiveId,omitempty"`
}
// ServiceResource represents the set of parameters obtained from a database
// get or list call.
//
// https://msdn.microsoft.com/en-us/library/azure/dn505708.aspx
type ServiceResource struct {
Name string
State string
SelfLink string
Edition string
CollationName string
MaxSizeBytes int64
ServiceObjectiveID string `xml:"ServiceObjectiveId,omitempty"`
}
type ListDatabasesResponse struct {
ServiceResources []ServiceResource `xml:"ServiceResource"`
}
// ServiceResourceUpdateParams represents the set of parameters available
// for a database service update operation.
//
// https://msdn.microsoft.com/en-us/library/azure/dn505718.aspx
type ServiceResourceUpdateParams struct {
XMLName xml.Name `xml:"http://schemas.microsoft.com/windowsazure ServiceResource"`
Name string
Edition string `xml:",omitempty"`
MaxSizeBytes int64 `xml:",omitempty"`
ServiceObjectiveID string `xml:"ServiceObjectiveId,omitempty"`
}
|