1
0
Fork 0

Update Lego

This commit is contained in:
Ludovic Fernandez 2018-09-14 10:06:03 +02:00 committed by Traefiker Bot
parent 36966da701
commit 253060b4f3
185 changed files with 16653 additions and 3210 deletions

45
vendor/github.com/iij/doapi/protocol/ZoneListGet.go generated vendored Normal file
View file

@ -0,0 +1,45 @@
package protocol
import (
"reflect"
)
// GET zones
type ZoneListGet struct {
DoServiceCode string `json:"-"` // DO契約のサービスコード(do########)
}
// URI /{{.DoServiceCode}}/zones.json
func (t ZoneListGet) URI() string {
return "/{{.DoServiceCode}}/zones.json"
}
// APIName ZoneListGet
func (t ZoneListGet) APIName() string {
return "ZoneListGet"
}
// Method GET
func (t ZoneListGet) Method() string {
return "GET"
}
// http://manual.iij.jp/dns/doapi/754466.html
func (t ZoneListGet) Document() string {
return "http://manual.iij.jp/dns/doapi/754466.html"
}
// JPName GET zones
func (t ZoneListGet) JPName() string {
return "GET zones"
}
func init() {
APIlist = append(APIlist, ZoneListGet{})
TypeMap["ZoneListGet"] = reflect.TypeOf(ZoneListGet{})
}
// ZoneListGetResponse GET zonesのレスポンス
type ZoneListGetResponse struct {
*CommonResponse
ZoneList []string
}