Documentation
¶
Index ¶
- Constants
- func NewDriver(hostName, storePath string) drivers.Driver
- type BlockDevice
- type Client
- type Datacenter
- type DiskImage
- type Driver
- func (d *Driver) Create() error
- func (d *Driver) DriverName() string
- func (d *Driver) GetActiveTransaction() (string, error)
- func (d *Driver) GetCreateFlags() []mcnflag.Flag
- func (d *Driver) GetIP() (string, error)
- func (d *Driver) GetSSHHostname() (string, error)
- func (d *Driver) GetState() (state.State, error)
- func (d *Driver) GetURL() (string, error)
- func (d *Driver) Kill() error
- func (d *Driver) Remove() error
- func (d *Driver) Restart() error
- func (d *Driver) SetConfigFromFlags(flags drivers.DriverOptions) error
- func (d *Driver) Start() error
- func (d *Driver) Stop() error
- type HostSpec
- type NetworkComponent
- type NetworkVLAN
- type SSHKey
- type VirtualGuest
- func (c *VirtualGuest) ActiveTransaction(id int) (string, error)
- func (c *VirtualGuest) Cancel(id int) error
- func (c *VirtualGuest) Create(spec *HostSpec) (int, error)
- func (c *VirtualGuest) GetPrivateIP(id int) (string, error)
- func (c *VirtualGuest) GetPublicIP(id int) (string, error)
- func (c *VirtualGuest) Pause(id int) error
- func (c *VirtualGuest) PowerOff(id int) error
- func (c *VirtualGuest) PowerOn(id int) error
- func (c *VirtualGuest) PowerState(id int) (string, error)
- func (c *VirtualGuest) Reboot(id int) error
- func (c *VirtualGuest) Resume(id int) error
Constants ¶
View Source
const (
APIEndpoint = "https://api.softlayer.com/rest/v3"
)
Variables ¶
This section is empty.
Functions ¶
Types ¶
type BlockDevice ¶
type BlockDevice struct {
Device string `json:"device"`
DiskImage DiskImage `json:"diskImage"`
}
type Client ¶
type Client struct {
User string
ApiKey string
Endpoint string
}
func (*Client) VirtualGuest ¶
func (c *Client) VirtualGuest() *VirtualGuest
type Datacenter ¶
type Datacenter struct {
Name string `json:"name"`
}
type Driver ¶
type Driver struct {
*drivers.BaseDriver
Id int
Client *Client
SSHKeyID int
// contains filtered or unexported fields
}
func (*Driver) DriverName ¶
func (d *Driver) DriverName() string
DriverName returns the name of the driver
func (*Driver) GetActiveTransaction ¶ added in v0.2.0
func (d *Driver) GetActiveTransaction() (string, error)
func (*Driver) GetCreateFlags ¶ added in v0.5.0
func (d *Driver) GetCreateFlags() []mcnflag.Flag
func (*Driver) GetSSHHostname ¶ added in v0.2.0
func (d *Driver) GetSSHHostname() (string, error)
func (*Driver) SetConfigFromFlags ¶
func (d *Driver) SetConfigFromFlags(flags drivers.DriverOptions) error
type HostSpec ¶
type HostSpec struct {
Hostname string `json:"hostname"`
Domain string `json:"domain"`
Cpu int `json:"startCpus"`
Memory int `json:"maxMemory"`
Datacenter Datacenter `json:"datacenter"`
SshKeys []*SSHKey `json:"sshKeys"`
BlockDevices []BlockDevice `json:"blockDevices"`
InstallScript string `json:"postInstallScriptUri"`
PrivateNetOnly bool `json:"privateNetworkOnlyFlag"`
Os string `json:"operatingSystemReferenceCode"`
HourlyBilling bool `json:"hourlyBillingFlag"`
LocalDisk bool `json:"localDiskFlag"`
PrimaryNetworkComponent *NetworkComponent `json:"primaryNetworkComponent,omitempty"`
PrimaryBackendNetworkComponent *NetworkComponent `json:"primaryBackendNetworkComponent,omitempty"`
}
type NetworkComponent ¶ added in v0.3.0
type NetworkComponent struct {
NetworkVLAN *NetworkVLAN `json:"networkVlan"`
}
type NetworkVLAN ¶ added in v0.3.0
type NetworkVLAN struct {
Id int `json:"id"`
}
type SSHKey ¶ added in v0.5.1
type SSHKey struct {
Key string `json:"key,omitempty"`
Id int `json:"id,omitempty"`
Label string `json:"label,omitempty"`
}
type VirtualGuest ¶ added in v0.5.1
type VirtualGuest struct {
*Client
}
func (*VirtualGuest) ActiveTransaction ¶ added in v0.5.1
func (c *VirtualGuest) ActiveTransaction(id int) (string, error)
func (*VirtualGuest) Create ¶ added in v0.5.1
func (c *VirtualGuest) Create(spec *HostSpec) (int, error)
func (*VirtualGuest) GetPrivateIP ¶ added in v0.5.1
func (c *VirtualGuest) GetPrivateIP(id int) (string, error)
func (*VirtualGuest) GetPublicIP ¶ added in v0.5.1
func (c *VirtualGuest) GetPublicIP(id int) (string, error)
func (*VirtualGuest) PowerState ¶ added in v0.5.1
func (c *VirtualGuest) PowerState(id int) (string, error)
Click to show internal directories.
Click to hide internal directories.