ACME TLS ALPN
This commit is contained in:
parent
17ad5153b8
commit
139f280f35
258 changed files with 25528 additions and 1516 deletions
80
vendor/github.com/sacloud/libsacloud/api/cdrom.go
generated
vendored
Normal file
80
vendor/github.com/sacloud/libsacloud/api/cdrom.go
generated
vendored
Normal file
|
@ -0,0 +1,80 @@
|
|||
package api
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/sacloud/libsacloud/sacloud"
|
||||
"time"
|
||||
)
|
||||
|
||||
// CDROMAPI ISOイメージAPI
|
||||
type CDROMAPI struct {
|
||||
*baseAPI
|
||||
}
|
||||
|
||||
// NewCDROMAPI ISOイメージAPI新規作成
|
||||
func NewCDROMAPI(client *Client) *CDROMAPI {
|
||||
return &CDROMAPI{
|
||||
&baseAPI{
|
||||
client: client,
|
||||
FuncGetResourceURL: func() string {
|
||||
return "cdrom"
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
// Create 新規作成
|
||||
func (api *CDROMAPI) Create(value *sacloud.CDROM) (*sacloud.CDROM, *sacloud.FTPServer, error) {
|
||||
f := func(res *sacloud.Response) error {
|
||||
return api.create(api.createRequest(value), res)
|
||||
}
|
||||
res := &sacloud.Response{}
|
||||
err := f(res)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
return res.CDROM, res.FTPServer, nil
|
||||
}
|
||||
|
||||
// OpenFTP FTP接続開始
|
||||
func (api *CDROMAPI) OpenFTP(id int64, reset bool) (*sacloud.FTPServer, error) {
|
||||
var (
|
||||
method = "PUT"
|
||||
uri = fmt.Sprintf("%s/%d/ftp", api.getResourceURL(), id)
|
||||
body = map[string]bool{"ChangePassword": reset}
|
||||
res = &sacloud.Response{}
|
||||
)
|
||||
|
||||
result, err := api.action(method, uri, body, res)
|
||||
if !result || err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return res.FTPServer, nil
|
||||
}
|
||||
|
||||
// CloseFTP FTP接続終了
|
||||
func (api *CDROMAPI) CloseFTP(id int64) (bool, error) {
|
||||
var (
|
||||
method = "DELETE"
|
||||
uri = fmt.Sprintf("%s/%d/ftp", api.getResourceURL(), id)
|
||||
)
|
||||
return api.modify(method, uri, nil)
|
||||
|
||||
}
|
||||
|
||||
// SleepWhileCopying コピー終了まで待機
|
||||
func (api *CDROMAPI) SleepWhileCopying(id int64, timeout time.Duration) error {
|
||||
handler := waitingForAvailableFunc(func() (hasAvailable, error) {
|
||||
return api.Read(id)
|
||||
}, 0)
|
||||
return blockingPoll(handler, timeout)
|
||||
}
|
||||
|
||||
// AsyncSleepWhileCopying コピー終了まで待機(非同期)
|
||||
func (api *CDROMAPI) AsyncSleepWhileCopying(id int64, timeout time.Duration) (chan (interface{}), chan (interface{}), chan (error)) {
|
||||
handler := waitingForAvailableFunc(func() (hasAvailable, error) {
|
||||
return api.Read(id)
|
||||
}, 0)
|
||||
return poll(handler, timeout)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue