Documentation ¶
Overview ¶
Package godo is the DigtalOcean API v2 client for Go
Index ¶
- Constants
- func Bool(v bool) *bool
- func CheckResponse(r *http.Response) error
- func Int(v int) *int
- func StreamToString(stream io.Reader) string
- func String(v string) *string
- func Stringify(message interface{}) string
- type Action
- type ActionRequest
- type ActionsService
- type ActionsServiceOp
- type Client
- type Domain
- type DomainCreateRequest
- type DomainRecord
- type DomainRecordEditRequest
- type DomainRecordRoot
- type DomainRecordsRoot
- type DomainRoot
- type DomainsService
- type DomainsServiceOp
- func (s *DomainsServiceOp) Create(createRequest *DomainCreateRequest) (*DomainRoot, *Response, error)
- func (s *DomainsServiceOp) CreateRecord(domain string, createRequest *DomainRecordEditRequest) (*DomainRecord, *Response, error)
- func (s *DomainsServiceOp) Delete(name string) (*Response, error)
- func (s *DomainsServiceOp) DeleteRecord(domain string, id int) (*Response, error)
- func (s *DomainsServiceOp) EditRecord(domain string, id int, editRequest *DomainRecordEditRequest) (*DomainRecord, *Response, error)
- func (s *DomainsServiceOp) Get(name string) (*DomainRoot, *Response, error)
- func (s DomainsServiceOp) List(opt *ListOptions) ([]Domain, *Response, error)
- func (s *DomainsServiceOp) Record(domain string, id int) (*DomainRecord, *Response, error)
- func (s *DomainsServiceOp) Records(domain string, opt *ListOptions) ([]DomainRecord, *Response, error)
- type Droplet
- type DropletActionsService
- type DropletActionsServiceOp
- func (s *DropletActionsServiceOp) Get(dropletID, actionID int) (*Action, *Response, error)
- func (s *DropletActionsServiceOp) GetByURI(rawurl string) (*Action, *Response, error)
- func (s *DropletActionsServiceOp) PowerCycle(id int) (*Action, *Response, error)
- func (s *DropletActionsServiceOp) PowerOff(id int) (*Action, *Response, error)
- func (s *DropletActionsServiceOp) PowerOn(id int) (*Action, *Response, error)
- func (s *DropletActionsServiceOp) Reboot(id int) (*Action, *Response, error)
- func (s *DropletActionsServiceOp) Rename(id int, name string) (*Action, *Response, error)
- func (s *DropletActionsServiceOp) Resize(id int, sizeSlug string) (*Action, *Response, error)
- func (s *DropletActionsServiceOp) Restore(id, imageID int) (*Action, *Response, error)
- func (s *DropletActionsServiceOp) Shutdown(id int) (*Action, *Response, error)
- type DropletCreateRequest
- type DropletRoot
- type DropletsService
- type DropletsServiceOp
- func (s *DropletsServiceOp) Create(createRequest *DropletCreateRequest) (*DropletRoot, *Response, error)
- func (s *DropletsServiceOp) Delete(dropletID int) (*Response, error)
- func (s *DropletsServiceOp) Get(dropletID int) (*DropletRoot, *Response, error)
- func (s *DropletsServiceOp) List(opt *ListOptions) ([]Droplet, *Response, error)
- type ErrorResponse
- type Image
- type ImageActionsService
- type ImageActionsServiceOp
- type ImagesService
- type ImagesServiceOp
- type Key
- type KeyCreateRequest
- type KeysService
- type KeysServiceOp
- func (s *KeysServiceOp) Create(createRequest *KeyCreateRequest) (*Key, *Response, error)
- func (s *KeysServiceOp) DeleteByFingerprint(fingerprint string) (*Response, error)
- func (s *KeysServiceOp) DeleteByID(keyID int) (*Response, error)
- func (s *KeysServiceOp) GetByFingerprint(fingerprint string) (*Key, *Response, error)
- func (s *KeysServiceOp) GetByID(keyID int) (*Key, *Response, error)
- func (s *KeysServiceOp) List(opt *ListOptions) ([]Key, *Response, error)
- type LinkAction
- type Links
- type ListOptions
- type Network
- type Networks
- type Pages
- type Rate
- type Region
- type RegionsService
- type RegionsServiceOp
- type Response
- type Size
- type SizesService
- type SizesServiceOp
- type Timestamp
Constants ¶
const ( // ActionInProgress is an in progress action status ActionInProgress = "in-progress" //ActionCompleted is a completed action status ActionCompleted = "completed" )
Variables ¶
This section is empty.
Functions ¶
func Bool ¶
Bool is a helper routine that allocates a new bool value to store v and returns a pointer to it.
func CheckResponse ¶
CheckResponse checks the API response for errors, and returns them if present. A response is considered an error if it has a status code outside the 200 range. API error responses are expected to have either no response body, or a JSON response body that maps to ErrorResponse. Any other response body will be silently ignored.
func Int ¶
Int is a helper routine that allocates a new int32 value to store v and returns a pointer to it, but unlike Int32 its argument value is an int.
func StreamToString ¶
StreamToString converts a reader to a string
Types ¶
type Action ¶
type Action struct { ID int `json:"id"` Status string `json:"status"` Type string `json:"type"` StartedAt *Timestamp `json:"started_at"` CompletedAt *Timestamp `json:"completed_at"` ResourceID int `json:"resource_id"` ResourceType string `json:"resource_type"` }
Action represents a DigitalOcean Action
type ActionRequest ¶
type ActionRequest struct { Type string `json:"type"` Params map[string]interface{} `json:"params,omitempty"` }
ActionRequest reprents DigitalOcean Action Request
func (ActionRequest) String ¶
func (d ActionRequest) String() string
Converts an ActionRequest to a string.
type ActionsService ¶
type ActionsService interface { List(*ListOptions) ([]Action, *Response, error) Get(int) (*Action, *Response, error) }
ActionsService handles communction with action related methods of the DigitalOcean API: https://developers.digitalocean.com/#actions
type ActionsServiceOp ¶
type ActionsServiceOp struct {
// contains filtered or unexported fields
}
ActionsServiceOp handles communition with the image action related methods of the DigitalOcean API.
func (*ActionsServiceOp) Get ¶
func (s *ActionsServiceOp) Get(id int) (*Action, *Response, error)
Get an action by ID
func (*ActionsServiceOp) List ¶
func (s *ActionsServiceOp) List(opt *ListOptions) ([]Action, *Response, error)
List all actions
type Client ¶
type Client struct { // Base URL for API requests. BaseURL *url.URL // User agent for client UserAgent string // Rate contains the current rate limit for the client as determined by the most recent // API call. Rate Rate // Services used for communicating with the API Actions ActionsService Domains DomainsService Droplets DropletsService DropletActions DropletActionsService Images ImagesService ImageActions ImageActionsService Keys KeysService Regions RegionsService Sizes SizesService // contains filtered or unexported fields }
Client manages communication with DigitalOcean V2 API.
func (*Client) Do ¶
Do sends an API request and returns the API response. The API response is JSON decoded and stored in the value pointed to by v, or returned as an error if an API error has occurred. If v implements the io.Writer interface, the raw response will be written to v, without attempting to decode it.
func (*Client) NewRequest ¶
NewRequest creates an API request. A relative URL can be provided in urlStr, which will be resolved to the BaseURL of the Client. Relative URLS should always be specified without a preceding slash. If specified, the value pointed to by body is JSON encoded and included in as the request body.
type Domain ¶
type Domain struct { Name string `json:"name"` TTL int `json:"ttl"` ZoneFile string `json:"zone_file"` }
Domain represents a Digital Ocean domain
type DomainCreateRequest ¶
DomainCreateRequest respresents a request to create a domain.
type DomainRecord ¶
type DomainRecord struct { ID int `json:"id,float64,omitempty"` Type string `json:"type,omitempty"` Name string `json:"name,omitempty"` Data string `json:"data,omitempty"` Priority int `json:"priority,omitempty"` Port int `json:"port,omitempty"` Weight int `json:"weight,omitempty"` }
DomainRecord represents a DigitalOcean DomainRecord
func (DomainRecord) String ¶
func (d DomainRecord) String() string
Converts a DomainRecord to a string.
type DomainRecordEditRequest ¶
type DomainRecordEditRequest struct { Type string `json:"type,omitempty"` Name string `json:"name,omitempty"` Data string `json:"data,omitempty"` Priority int `json:"priority,omitempty"` Port int `json:"port,omitempty"` Weight int `json:"weight,omitempty"` }
DomainRecordEditRequest represents a request to update a domain record.
func (DomainRecordEditRequest) String ¶
func (d DomainRecordEditRequest) String() string
Converts a DomainRecordEditRequest to a string.
type DomainRecordRoot ¶
type DomainRecordRoot struct {
DomainRecord *DomainRecord `json:"domain_record"`
}
DomainRecordRoot is the root of an individual Domain Record response
type DomainRecordsRoot ¶
type DomainRecordsRoot struct { DomainRecords []DomainRecord `json:"domain_records"` Links *Links `json:"links"` }
DomainRecordsRoot is the root of a group of Domain Record responses
type DomainRoot ¶
type DomainRoot struct {
Domain *Domain `json:"domain"`
}
DomainRoot represents a response from the Digital Ocean API
type DomainsService ¶
type DomainsService interface { List(*ListOptions) ([]Domain, *Response, error) Get(string) (*DomainRoot, *Response, error) Create(*DomainCreateRequest) (*DomainRoot, *Response, error) Delete(string) (*Response, error) Records(string, *ListOptions) ([]DomainRecord, *Response, error) Record(string, int) (*DomainRecord, *Response, error) DeleteRecord(string, int) (*Response, error) EditRecord(string, int, *DomainRecordEditRequest) (*DomainRecord, *Response, error) CreateRecord(string, *DomainRecordEditRequest) (*DomainRecord, *Response, error) }
DomainsService is an interface for managing DNS with the Digital Ocean API. See: https://developers.digitalocean.com/#domains and https://developers.digitalocean.com/#domain-records
type DomainsServiceOp ¶
type DomainsServiceOp struct {
// contains filtered or unexported fields
}
DomainsServiceOp handles communication with the domain related methods of the DigitalOcean API.
func (*DomainsServiceOp) Create ¶
func (s *DomainsServiceOp) Create(createRequest *DomainCreateRequest) (*DomainRoot, *Response, error)
Create a new domain
func (*DomainsServiceOp) CreateRecord ¶
func (s *DomainsServiceOp) CreateRecord( domain string, createRequest *DomainRecordEditRequest) (*DomainRecord, *Response, error)
CreateRecord creates a record using a DomainRecordEditRequest
func (*DomainsServiceOp) Delete ¶
func (s *DomainsServiceOp) Delete(name string) (*Response, error)
Delete droplet
func (*DomainsServiceOp) DeleteRecord ¶
func (s *DomainsServiceOp) DeleteRecord(domain string, id int) (*Response, error)
DeleteRecord deletes a record from a domain identified by id
func (*DomainsServiceOp) EditRecord ¶
func (s *DomainsServiceOp) EditRecord( domain string, id int, editRequest *DomainRecordEditRequest) (*DomainRecord, *Response, error)
EditRecord edits a record using a DomainRecordEditRequest
func (*DomainsServiceOp) Get ¶
func (s *DomainsServiceOp) Get(name string) (*DomainRoot, *Response, error)
Get individual domain
func (DomainsServiceOp) List ¶
func (s DomainsServiceOp) List(opt *ListOptions) ([]Domain, *Response, error)
List all domains
func (*DomainsServiceOp) Record ¶
func (s *DomainsServiceOp) Record(domain string, id int) (*DomainRecord, *Response, error)
Record returns the record id from a domain
func (*DomainsServiceOp) Records ¶
func (s *DomainsServiceOp) Records(domain string, opt *ListOptions) ([]DomainRecord, *Response, error)
Records returns a slice of DomainRecords for a domain
type Droplet ¶
type Droplet struct { ID int `json:"id,float64,omitempty"` Name string `json:"name,omitempty"` Memory int `json:"memory,omitempty"` Vcpus int `json:"vcpus,omitempty"` Disk int `json:"disk,omitempty"` Region *Region `json:"region,omitempty"` Image *Image `json:"image,omitempty"` Size *Size `json:"size,omitempty"` BackupIDs []int `json:"backup_ids,omitempty"` SnapshotIDs []int `json:"snapshot_ids,omitempty"` Locked bool `json:"locked,bool,omitempty"` Status string `json:"status,omitempty"` Networks *Networks `json:"networks,omitempty"` ActionIDs []int `json:"action_ids,omitempty"` }
Droplet represents a DigitalOcean Droplet
type DropletActionsService ¶
type DropletActionsService interface { Shutdown(int) (*Action, *Response, error) PowerOff(int) (*Action, *Response, error) PowerOn(int) (*Action, *Response, error) PowerCycle(int) (*Action, *Response, error) Reboot(int) (*Action, *Response, error) Restore(int, int) (*Action, *Response, error) Resize(int, string) (*Action, *Response, error) Rename(int, string) (*Action, *Response, error) Get(int, int) (*Action, *Response, error) GetByURI(string) (*Action, *Response, error) // contains filtered or unexported methods }
DropletActionsService is an interface for interfacing with the droplet actions endpoints of the Digital Ocean API See: https://developers.digitalocean.com/#droplet-actions
type DropletActionsServiceOp ¶
type DropletActionsServiceOp struct {
// contains filtered or unexported fields
}
DropletActionsServiceOp handles communication with the droplet action related methods of the DigitalOcean API.
func (*DropletActionsServiceOp) Get ¶
func (s *DropletActionsServiceOp) Get(dropletID, actionID int) (*Action, *Response, error)
Get an action for a particular droplet by id.
func (*DropletActionsServiceOp) GetByURI ¶
func (s *DropletActionsServiceOp) GetByURI(rawurl string) (*Action, *Response, error)
GetByURI gets an action for a particular droplet by id.
func (*DropletActionsServiceOp) PowerCycle ¶
func (s *DropletActionsServiceOp) PowerCycle(id int) (*Action, *Response, error)
PowerCycle a Droplet
func (*DropletActionsServiceOp) PowerOff ¶
func (s *DropletActionsServiceOp) PowerOff(id int) (*Action, *Response, error)
PowerOff a Droplet
func (*DropletActionsServiceOp) PowerOn ¶
func (s *DropletActionsServiceOp) PowerOn(id int) (*Action, *Response, error)
PowerOn a Droplet
func (*DropletActionsServiceOp) Reboot ¶
func (s *DropletActionsServiceOp) Reboot(id int) (*Action, *Response, error)
Reboot a Droplet
type DropletCreateRequest ¶
type DropletCreateRequest struct { Name string `json:"name"` Region string `json:"region"` Size string `json:"size"` Image string `json:"image"` SSHKeys []interface{} `json:"ssh_keys"` Backups bool `json:"backups"` IPv6 bool `json:"ipv6"` PrivateNetworking bool `json:"private_networking"` UserData string `json:"user_data"` }
DropletCreateRequest represents a request to create a droplet.
func (DropletCreateRequest) String ¶
func (d DropletCreateRequest) String() string
type DropletRoot ¶
DropletRoot represents a Droplet root
type DropletsService ¶
type DropletsService interface { List(*ListOptions) ([]Droplet, *Response, error) Get(int) (*DropletRoot, *Response, error) Create(*DropletCreateRequest) (*DropletRoot, *Response, error) Delete(int) (*Response, error) // contains filtered or unexported methods }
DropletsService is an interface for interfacing with the droplet endpoints of the Digital Ocean API See: https://developers.digitalocean.com/#droplets
type DropletsServiceOp ¶
type DropletsServiceOp struct {
// contains filtered or unexported fields
}
DropletsServiceOp handles communication with the droplet related methods of the DigitalOcean API.
func (*DropletsServiceOp) Create ¶
func (s *DropletsServiceOp) Create(createRequest *DropletCreateRequest) (*DropletRoot, *Response, error)
Create droplet
func (*DropletsServiceOp) Delete ¶
func (s *DropletsServiceOp) Delete(dropletID int) (*Response, error)
Delete droplet
func (*DropletsServiceOp) Get ¶
func (s *DropletsServiceOp) Get(dropletID int) (*DropletRoot, *Response, error)
Get individual droplet
func (*DropletsServiceOp) List ¶
func (s *DropletsServiceOp) List(opt *ListOptions) ([]Droplet, *Response, error)
List all droplets
type ErrorResponse ¶
type ErrorResponse struct { // HTTP response that caused this error Response *http.Response // Error message Message string }
An ErrorResponse reports the error caused by an API request
func (*ErrorResponse) Error ¶
func (r *ErrorResponse) Error() string
type Image ¶
type Image struct { ID int `json:"id,float64,omitempty"` Name string `json:"name,omitempty"` Distribution string `json:"distribution,omitempty"` Slug string `json:"slug,omitempty"` Public bool `json:"public,omitempty"` Regions []string `json:"regions,omitempty"` }
Image represents a DigitalOcean Image
type ImageActionsService ¶
type ImageActionsService interface { Get(int, int) (*Action, *Response, error) Transfer(int, *ActionRequest) (*Action, *Response, error) }
ImageActionsService is an interface for interfacing with the image actions endpoints of the Digital Ocean API See: https://developers.digitalocean.com/#image-actions
type ImageActionsServiceOp ¶
type ImageActionsServiceOp struct {
// contains filtered or unexported fields
}
ImageActionsServiceOp handles communition with the image action related methods of the DigitalOcean API.
func (*ImageActionsServiceOp) Get ¶
func (i *ImageActionsServiceOp) Get(imageID, actionID int) (*Action, *Response, error)
Get an action for a particular image by id.
func (*ImageActionsServiceOp) Transfer ¶
func (i *ImageActionsServiceOp) Transfer(imageID int, transferRequest *ActionRequest) (*Action, *Response, error)
Transfer an image
type ImagesService ¶
type ImagesService interface {
List(*ListOptions) ([]Image, *Response, error)
}
ImagesService is an interface for interfacing with the images endpoints of the Digital Ocean API See: https://developers.digitalocean.com/#images
type ImagesServiceOp ¶
type ImagesServiceOp struct {
// contains filtered or unexported fields
}
ImagesServiceOp handles communication with the image related methods of the DigitalOcean API.
func (*ImagesServiceOp) List ¶
func (s *ImagesServiceOp) List(opt *ListOptions) ([]Image, *Response, error)
List all sizes
type Key ¶
type Key struct { ID int `json:"id,float64,omitempty"` Name string `json:"name,omitempty"` Fingerprint string `json:"fingerprint,omitempty"` PublicKey string `json:"public_key,omitempty"` }
Key represents a DigitalOcean Key.
type KeyCreateRequest ¶
KeyCreateRequest represents a request to create a new key.
type KeysService ¶
type KeysService interface { List(*ListOptions) ([]Key, *Response, error) GetByID(int) (*Key, *Response, error) GetByFingerprint(string) (*Key, *Response, error) Create(*KeyCreateRequest) (*Key, *Response, error) DeleteByID(int) (*Response, error) DeleteByFingerprint(string) (*Response, error) }
KeysService is an interface for interfacing with the keys endpoints of the Digital Ocean API See: https://developers.digitalocean.com/#keys
type KeysServiceOp ¶
type KeysServiceOp struct {
// contains filtered or unexported fields
}
KeysServiceOp handles communication with key related method of the DigitalOcean API.
func (*KeysServiceOp) Create ¶
func (s *KeysServiceOp) Create(createRequest *KeyCreateRequest) (*Key, *Response, error)
Create a key using a KeyCreateRequest
func (*KeysServiceOp) DeleteByFingerprint ¶
func (s *KeysServiceOp) DeleteByFingerprint(fingerprint string) (*Response, error)
DeleteByFingerprint deletes a key by its fingerprint
func (*KeysServiceOp) DeleteByID ¶
func (s *KeysServiceOp) DeleteByID(keyID int) (*Response, error)
DeleteByID deletes a key by its id
func (*KeysServiceOp) GetByFingerprint ¶
func (s *KeysServiceOp) GetByFingerprint(fingerprint string) (*Key, *Response, error)
GetByFingerprint gets a Key by by fingerprint
func (*KeysServiceOp) GetByID ¶
func (s *KeysServiceOp) GetByID(keyID int) (*Key, *Response, error)
GetByID gets a Key by id
func (*KeysServiceOp) List ¶
func (s *KeysServiceOp) List(opt *ListOptions) ([]Key, *Response, error)
List all keys
type LinkAction ¶
type LinkAction struct { ID int `json:"id,omitempty"` Rel string `json:"rel,omitempty"` HREF string `json:"href,omitempty"` }
LinkAction is a pointer to an action
type Links ¶
type Links struct { Pages *Pages `json:"pages,omitempty"` Actions []LinkAction `json:"actions,omitempty"` }
Links manages links that are returned along with a List
func (*Links) CurrentPage ¶
CurrentPage is current page of the list
func (*Links) IsLastPage ¶
IsLastPage returns true if the current page is the last
type ListOptions ¶
type ListOptions struct { // For paginated result sets, page of results to retrieve. Page int `url:"page,omitempty"` // For paginated result sets, the number of results to include per page. PerPage int `url:"per_page,omitempty"` }
ListOptions specifies the optional parameters to various List methods that support pagination.
type Network ¶
type Network struct { IPAddress string `json:"ip_address,omitempty"` Netmask string `json:"netmask,omitempty"` Gateway string `json:"gateway,omitempty"` Type string `json:"type,omitempty"` }
Network represents a DigitalOcean Network
type Pages ¶
type Pages struct { First string `json:"first,omitempty"` Prev string `json:"prev,omitempty"` Last string `json:"last,omitempty"` Next string `json:"next,omitempty"` }
Pages are pages specified in Links
type Rate ¶
type Rate struct { // The number of request per hour the client is currently limited to. Limit int `json:"limit"` // The number of remaining requests the client can make this hour. Remaining int `json:"remaining"` // The time at w\hic the current rate limit will reset. Reset Timestamp `json:"reset"` }
Rate contains the rate limit for the current client.
type Region ¶
type Region struct { Slug string `json:"slug,omitempty"` Name string `json:"name,omitempty"` Sizes []string `json:"sizes,omitempty"` Available bool `json:"available,omitempty` Features []string `json:"features,omitempty` }
Region represents a DigitalOcean Region
type RegionsService ¶
type RegionsService interface {
List(*ListOptions) ([]Region, *Response, error)
}
RegionsService is an interface for interfacing with the regions endpoints of the Digital Ocean API See: https://developers.digitalocean.com/#regions
type RegionsServiceOp ¶
type RegionsServiceOp struct {
// contains filtered or unexported fields
}
RegionsServiceOp handles communication with the region related methods of the DigitalOcean API.
func (*RegionsServiceOp) List ¶
func (s *RegionsServiceOp) List(opt *ListOptions) ([]Region, *Response, error)
List all regions
type Response ¶
type Response struct { *http.Response // Links that were returned with the response. These are parsed from // request body and not the header. Links *Links // Monitoring URI Monitor string Rate }
Response is a Digital Ocean response. This wraps the standard http.Response returned from DigitalOcean.
type Size ¶
type Size struct { Slug string `json:"slug,omitempty"` Memory int `json:"memory,omitempty"` Vcpus int `json:"vcpus,omitempty"` Disk int `json:"disk,omitempty"` PriceMonthly float64 `json:"price_monthly,omitempty"` PriceHourly float64 `json:"price_hourly,omitempty"` Regions []string `json:"regions,omitempty"` }
Size represents a DigitalOcean Size
type SizesService ¶
type SizesService interface {
List(*ListOptions) ([]Size, *Response, error)
}
SizesService is an interface for interfacing with the size endpoints of the Digital Ocean API See: https://developers.digitalocean.com/#sizes
type SizesServiceOp ¶
type SizesServiceOp struct {
// contains filtered or unexported fields
}
SizesServiceOp handles communication with the size related methods of the DigitalOcean API.
func (*SizesServiceOp) List ¶
func (s *SizesServiceOp) List(opt *ListOptions) ([]Size, *Response, error)
List all images
type Timestamp ¶
Timestamp represents a time that can be unmarshalled from a JSON string formatted as either an RFC3339 or Unix timestamp. All exported methods of time.Time can be called on Timestamp.
func (*Timestamp) UnmarshalJSON ¶
UnmarshalJSON implements the json.Unmarshaler interface. Time is expected in RFC3339 or Unix format.