1
0
Fork 0
traefik/vendor/github.com/sacloud/libsacloud/sacloud/ftp_server.go
Ludovic Fernandez 139f280f35 ACME TLS ALPN
2018-07-03 12:44:04 +02:00

15 lines
488 B
Go

package sacloud
// FTPServer FTPサーバー接続情報
type FTPServer struct {
HostName string `json:",omitempty"` // FTPサーバーホスト名
IPAddress string `json:",omitempty"` // FTPサーバー IPアドレス
User string `json:",omitempty"` // 接続ユーザー名
Password string `json:",omitempty"` // パスワード
}
// FTPOpenRequest FTP接続オープンリクエスト
type FTPOpenRequest struct {
ChangePassword bool // パスワード変更フラグ
}