46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package sacloud
|
|
|
|
// Zone ゾーン
|
|
type Zone struct {
|
|
*Resource // ID
|
|
propName // 名称
|
|
propDescription // 説明
|
|
propRegion // リージョン
|
|
|
|
IsDummy bool `json:",omitempty"` // IsDummy ダミーフラグ
|
|
|
|
VNCProxy struct { // VNCProxy VPCプロキシ
|
|
HostName string `json:",omitempty"` // HostName ホスト名
|
|
IPAddress string `json:",omitempty"` // IPAddress IPアドレス
|
|
} `json:",omitempty"`
|
|
|
|
FTPServer struct { // FTPServer FTPサーバー
|
|
HostName string `json:",omitempty"` // HostName ホスト名
|
|
IPAddress string `json:",omitempty"` // IPAddress IPアドレス
|
|
} `json:",omitempty"`
|
|
}
|
|
|
|
// ZoneIsDummy ダミーフラグ 取得
|
|
func (z *Zone) ZoneIsDummy() bool {
|
|
return z.IsDummy
|
|
}
|
|
|
|
// GetVNCProxyHostName VNCプロキシホスト名 取得
|
|
func (z *Zone) GetVNCProxyHostName() string {
|
|
return z.VNCProxy.HostName
|
|
}
|
|
|
|
// GetVPCProxyIPAddress VNCプロキシIPアドレス 取得
|
|
func (z *Zone) GetVPCProxyIPAddress() string {
|
|
return z.VNCProxy.IPAddress
|
|
}
|
|
|
|
// GetFTPHostName FTPサーバーホスト名 取得
|
|
func (z *Zone) GetFTPHostName() string {
|
|
return z.FTPServer.HostName
|
|
}
|
|
|
|
// GetFTPServerIPAddress FTPサーバーIPアドレス 取得
|
|
func (z *Zone) GetFTPServerIPAddress() string {
|
|
return z.FTPServer.IPAddress
|
|
}
|