Documentation
¶
Index ¶
- Constants
- func PaginateResp(gen Generator) ([]interface{}, error)
- type Account
- type AccountService
- type Action
- type Actions
- type ActionsService
- type AppsService
- type Balance
- type BalanceService
- type BillingHistory
- type BillingHistoryService
- type CDN
- type CDNsService
- type Certificate
- type Certificates
- type CertificatesService
- type Database
- type DatabaseBackup
- type DatabaseBackups
- type DatabaseConnection
- type DatabaseDB
- type DatabaseDBs
- type DatabaseFirewallRule
- type DatabaseFirewallRules
- type DatabaseMaintenanceWindow
- type DatabasePool
- type DatabasePools
- type DatabaseReplica
- type DatabaseReplicas
- type DatabaseUser
- type DatabaseUsers
- type Databases
- type DatabasesService
- type Domain
- type DomainRecord
- type DomainRecordEditRequest
- type DomainRecords
- type Domains
- type DomainsService
- type Droplet
- type DropletActionsService
- type DropletIPTable
- type Droplets
- type DropletsService
- type Firewall
- type Firewalls
- type FirewallsService
- type FloatingIP
- type FloatingIPActionsService
- type FloatingIPs
- type FloatingIPsService
- type GarbageCollection
- type Generator
- type Image
- type ImageActionsService
- type Images
- type ImagesService
- type InterfaceType
- type Invoice
- type InvoiceItem
- type InvoiceList
- type InvoiceSummary
- type InvoicesService
- type Kernel
- type Kernels
- type KeysService
- type KubernetesAssociatedResources
- type KubernetesCluster
- type KubernetesClusterCredentials
- type KubernetesClusters
- type KubernetesNodePool
- type KubernetesNodePools
- type KubernetesNodeSize
- type KubernetesNodeSizes
- type KubernetesRegion
- type KubernetesRegions
- type KubernetesService
- type KubernetesVersion
- type KubernetesVersions
- type LoadBalancer
- type LoadBalancers
- type LoadBalancersService
- type OneClick
- type OneClickService
- type OneClicks
- type Project
- type ProjectResource
- type ProjectResources
- type Projects
- type ProjectsService
- type RateLimit
- type Region
- type Regions
- type RegionsService
- type Registry
- type RegistryService
- type RegistrySubscriptionTier
- type Repository
- type RepositoryTag
- type SSHKey
- type SSHKeys
- type Size
- type Sizes
- type SizesService
- type Snapshot
- type Snapshots
- type SnapshotsService
- type Tag
- type Tags
- type TagsService
- type VPC
- type VPCs
- type VPCsService
- type Volume
- type VolumeActionsService
- type VolumesService
Constants ¶
const RegistryHostname = "registry.digitalocean.com"
RegistryHostname is the hostname for the DO registry
Variables ¶
This section is empty.
Functions ¶
func PaginateResp ¶
PaginateResp paginates a Response.
Types ¶
type AccountService ¶
AccountService is an interface for interacting with DigitalOcean's account api.
func NewAccountService ¶
func NewAccountService(godoClient *godo.Client) AccountService
NewAccountService builds an AccountService instance.
type ActionsService ¶
ActionsService is an interface for interacting with DigitalOcean's action api.
func NewActionsService ¶
func NewActionsService(godoClient *godo.Client) ActionsService
NewActionsService builds an ActionsService instance.
type AppsService ¶ added in v1.46.0
type AppsService interface {
Create(req *godo.AppCreateRequest) (*godo.App, error)
Get(appID string) (*godo.App, error)
List() ([]*godo.App, error)
Update(appID string, req *godo.AppUpdateRequest) (*godo.App, error)
Delete(appID string) error
Propose(req *godo.AppProposeRequest) (*godo.AppProposeResponse, error)
CreateDeployment(appID string, forceRebuild bool) (*godo.Deployment, error)
GetDeployment(appID, deploymentID string) (*godo.Deployment, error)
ListDeployments(appID string) ([]*godo.Deployment, error)
GetLogs(appID, deploymentID, component string, logType godo.AppLogType, follow bool) (*godo.AppLogs, error)
ListRegions() ([]*godo.AppRegion, error)
ListTiers() ([]*godo.AppTier, error)
GetTier(slug string) (*godo.AppTier, error)
ListInstanceSizes() ([]*godo.AppInstanceSize, error)
GetInstanceSize(slug string) (*godo.AppInstanceSize, error)
}
AppsService is the interface that wraps godo AppsService.
func NewAppsService ¶ added in v1.46.0
func NewAppsService(client *godo.Client) AppsService
NewAppsService builds an instance of AppsService.
type BalanceService ¶ added in v1.37.0
BalanceService is an interface for interacting with DigitalOcean's balance api.
func NewBalanceService ¶ added in v1.37.0
func NewBalanceService(godoClient *godo.Client) BalanceService
NewBalanceService builds an BalanceService instance.
type BillingHistory ¶ added in v1.40.0
type BillingHistory struct {
*godo.BillingHistory
}
BillingHistory is a wrapper for godo.BillingHistory
type BillingHistoryService ¶ added in v1.40.0
type BillingHistoryService interface {
List() (*BillingHistory, error)
}
BillingHistoryService is an interface for interacting with DigitalOcean's invoices api.
func NewBillingHistoryService ¶ added in v1.40.0
func NewBillingHistoryService(client *godo.Client) BillingHistoryService
NewBillingHistoryService builds an BillingHistoryService instance.
type CDNsService ¶ added in v1.9.0
type CDNsService interface {
List() ([]CDN, error)
Get(string) (*CDN, error)
Create(*godo.CDNCreateRequest) (*CDN, error)
UpdateTTL(string, *godo.CDNUpdateTTLRequest) (*CDN, error)
UpdateCustomDomain(string, *godo.CDNUpdateCustomDomainRequest) (*CDN, error)
FlushCache(string, *godo.CDNFlushCacheRequest) error
Delete(string) error
}
CDNsService is an interface for interacting with DigitalOcean's CDN api.
func NewCDNsService ¶ added in v1.9.0
func NewCDNsService(godoClient *godo.Client) CDNsService
NewCDNsService builds an NewCDNsService instance.
type Certificate ¶ added in v1.6.0
type Certificate struct {
*godo.Certificate
}
Certificate wraps a godo Certificate.
type Certificates ¶ added in v1.6.0
type Certificates []Certificate
Certificates is a slice of Certificate.
type CertificatesService ¶ added in v1.6.0
type CertificatesService interface {
Get(cID string) (*Certificate, error)
Create(cr *godo.CertificateRequest) (*Certificate, error)
List() (Certificates, error)
Delete(cID string) error
}
CertificatesService is the godo CertificatesService interface.
func NewCertificatesService ¶ added in v1.6.0
func NewCertificatesService(client *godo.Client) CertificatesService
NewCertificatesService builds an instance of CertificatesService.
type DatabaseBackup ¶ added in v1.15.0
type DatabaseBackup struct {
*godo.DatabaseBackup
}
DatabaseBackup is a wrapper for godo.DatabaseBackup
type DatabaseBackups ¶ added in v1.15.0
type DatabaseBackups []DatabaseBackup
DatabaseBackups is a slice of DatabaseBackup
type DatabaseConnection ¶ added in v1.15.0
type DatabaseConnection struct {
*godo.DatabaseConnection
}
DatabaseConnection is a wrapper for godo.DatabaseConnection
type DatabaseDB ¶ added in v1.15.0
type DatabaseDB struct {
*godo.DatabaseDB
}
DatabaseDB is a wrapper for godo.DatabaseDB
type DatabaseDBs ¶ added in v1.15.0
type DatabaseDBs []DatabaseDB
DatabaseDBs is a slice of DatabaseDB
type DatabaseFirewallRule ¶ added in v1.56.0
type DatabaseFirewallRule struct {
*godo.DatabaseFirewallRule
}
DatabaseFirewallRule is a wrapper for godo.DatabaseFirewallRule
type DatabaseFirewallRules ¶ added in v1.56.0
type DatabaseFirewallRules []DatabaseFirewallRule
DatabaseFirewallRules is a slice of DatabaseFirewallRule
type DatabaseMaintenanceWindow ¶ added in v1.15.0
type DatabaseMaintenanceWindow struct {
*godo.DatabaseMaintenanceWindow
}
DatabaseMaintenanceWindow is a wrapper for godo.DatabaseMaintenanceWindow
type DatabasePool ¶ added in v1.15.0
type DatabasePool struct {
*godo.DatabasePool
}
DatabasePool is a wrapper for godo.DatabasePool
type DatabasePools ¶ added in v1.15.0
type DatabasePools []DatabasePool
DatabasePools is a slice of DatabasePool
type DatabaseReplica ¶ added in v1.15.0
type DatabaseReplica struct {
*godo.DatabaseReplica
}
DatabaseReplica is a wrapper for godo.DatabaseReplica
type DatabaseReplicas ¶ added in v1.15.0
type DatabaseReplicas []DatabaseReplica
DatabaseReplicas is a slice of DatabaseReplica
type DatabaseUser ¶ added in v1.15.0
type DatabaseUser struct {
*godo.DatabaseUser
}
DatabaseUser is a wrapper for godo.DatabaseUser
type DatabaseUsers ¶ added in v1.15.0
type DatabaseUsers []DatabaseUser
DatabaseUsers is a slice of DatabaseUser
type DatabasesService ¶ added in v1.15.0
type DatabasesService interface {
List() (Databases, error)
Get(string) (*Database, error)
Create(*godo.DatabaseCreateRequest) (*Database, error)
Delete(string) error
GetConnection(string) (*DatabaseConnection, error)
ListBackups(string) (DatabaseBackups, error)
Resize(string, *godo.DatabaseResizeRequest) error
Migrate(string, *godo.DatabaseMigrateRequest) error
GetMaintenance(string) (*DatabaseMaintenanceWindow, error)
UpdateMaintenance(string, *godo.DatabaseUpdateMaintenanceRequest) error
GetUser(string, string) (*DatabaseUser, error)
ListUsers(string) (DatabaseUsers, error)
CreateUser(string, *godo.DatabaseCreateUserRequest) (*DatabaseUser, error)
DeleteUser(string, string) error
ResetUserAuth(string, string, *godo.DatabaseResetUserAuthRequest) (*DatabaseUser, error)
ListDBs(string) (DatabaseDBs, error)
CreateDB(string, *godo.DatabaseCreateDBRequest) (*DatabaseDB, error)
GetDB(string, string) (*DatabaseDB, error)
DeleteDB(string, string) error
ListPools(string) (DatabasePools, error)
CreatePool(string, *godo.DatabaseCreatePoolRequest) (*DatabasePool, error)
GetPool(string, string) (*DatabasePool, error)
DeletePool(string, string) error
GetReplica(string, string) (*DatabaseReplica, error)
ListReplicas(string) (DatabaseReplicas, error)
CreateReplica(string, *godo.DatabaseCreateReplicaRequest) (*DatabaseReplica, error)
DeleteReplica(string, string) error
GetReplicaConnection(string, string) (*DatabaseConnection, error)
GetSQLMode(string) ([]string, error)
SetSQLMode(string, ...string) error
GetFirewallRules(string) (DatabaseFirewallRules, error)
UpdateFirewallRules(databaseID string, req *godo.DatabaseUpdateFirewallRulesRequest) error
}
DatabasesService is an interface for interacting with DigitalOcean's Database API
func NewDatabasesService ¶ added in v1.15.0
func NewDatabasesService(client *godo.Client) DatabasesService
NewDatabasesService builds a DatabasesService instance.
type DomainRecord ¶
type DomainRecord struct {
*godo.DomainRecord
}
DomainRecord wraps a godo DomainRecord.
type DomainRecordEditRequest ¶ added in v1.34.0
type DomainRecordEditRequest struct {
Type string `json:"type,omitempty"`
Name string `json:"name,omitempty"`
Data string `json:"data,omitempty"`
Priority int `json:"priority"`
Port *int `json:"port,omitempty"`
TTL int `json:"ttl,omitempty"`
Weight int `json:"weight"`
Flags int `json:"flags"`
Tag string `json:"tag,omitempty"`
}
A DomainRecordEditRequest is used in place of godo's DomainRecordEditRequest in order to work around the fact that we cannot send a port value of 0 via godo due to Go's JSON encoding logic.
type DomainsService ¶
type DomainsService interface {
List() (Domains, error)
Get(string) (*Domain, error)
Create(*godo.DomainCreateRequest) (*Domain, error)
Delete(string) error
Records(string) (DomainRecords, error)
Record(string, int) (*DomainRecord, error)
DeleteRecord(string, int) error
EditRecord(string, int, *DomainRecordEditRequest) (*DomainRecord, error)
CreateRecord(string, *DomainRecordEditRequest) (*DomainRecord, error)
}
DomainsService is the godo DOmainsService interface.
func NewDomainsService ¶
func NewDomainsService(client *godo.Client) DomainsService
NewDomainsService builds an instance of DomainsService.
type DropletActionsService ¶
type DropletActionsService interface {
Shutdown(int) (*Action, error)
ShutdownByTag(string) (Actions, error)
PowerOff(int) (*Action, error)
PowerOffByTag(string) (Actions, error)
PowerOn(int) (*Action, error)
PowerOnByTag(string) (Actions, error)
PowerCycle(int) (*Action, error)
PowerCycleByTag(string) (Actions, error)
Reboot(int) (*Action, error)
Restore(int, int) (*Action, error)
Resize(int, string, bool) (*Action, error)
Rename(int, string) (*Action, error)
Snapshot(int, string) (*Action, error)
SnapshotByTag(string, string) (Actions, error)
EnableBackups(int) (*Action, error)
EnableBackupsByTag(string) (Actions, error)
DisableBackups(int) (*Action, error)
DisableBackupsByTag(string) (Actions, error)
PasswordReset(int) (*Action, error)
RebuildByImageID(int, int) (*Action, error)
RebuildByImageSlug(int, string) (*Action, error)
ChangeKernel(int, int) (*Action, error)
EnableIPv6(int) (*Action, error)
EnableIPv6ByTag(string) (Actions, error)
EnablePrivateNetworking(int) (*Action, error)
EnablePrivateNetworkingByTag(string) (Actions, error)
Get(int, int) (*Action, error)
GetByURI(string) (*Action, error)
}
DropletActionsService is an interface for interacting with DigitalOcean's droplet action api.
func NewDropletActionsService ¶
func NewDropletActionsService(godoClient *godo.Client) DropletActionsService
NewDropletActionsService builds an instance of DropletActionsService.
type DropletIPTable ¶
type DropletIPTable map[InterfaceType]string
DropletIPTable is a table of interface IPS.
type DropletsService ¶
type DropletsService interface {
List() (Droplets, error)
ListByTag(string) (Droplets, error)
Get(int) (*Droplet, error)
Create(*godo.DropletCreateRequest, bool) (*Droplet, error)
CreateMultiple(*godo.DropletMultiCreateRequest) (Droplets, error)
Delete(int) error
DeleteByTag(string) error
Kernels(int) (Kernels, error)
Snapshots(int) (Images, error)
Backups(int) (Images, error)
Actions(int) (Actions, error)
Neighbors(int) (Droplets, error)
}
DropletsService is an interface for interacting with DigitalOcean's droplet api.
func NewDropletsService ¶
func NewDropletsService(client *godo.Client) DropletsService
NewDropletsService builds a DropletsService instance.
type FirewallsService ¶ added in v1.7.0
type FirewallsService interface {
Get(fID string) (*Firewall, error)
Create(fr *godo.FirewallRequest) (*Firewall, error)
Update(fID string, fr *godo.FirewallRequest) (*Firewall, error)
List() (Firewalls, error)
ListByDroplet(dID int) (Firewalls, error)
Delete(fID string) error
AddDroplets(fID string, dIDs ...int) error
RemoveDroplets(fID string, dIDs ...int) error
AddTags(fID string, tags ...string) error
RemoveTags(fID string, tags ...string) error
AddRules(fID string, rr *godo.FirewallRulesRequest) error
RemoveRules(fID string, rr *godo.FirewallRulesRequest) error
}
FirewallsService is the godo FirewallsService interface.
func NewFirewallsService ¶ added in v1.7.0
func NewFirewallsService(client *godo.Client) FirewallsService
NewFirewallsService builds an instance of FirewallsService.
type FloatingIPActionsService ¶
type FloatingIPActionsService interface {
Assign(ip string, dropletID int) (*Action, error)
Unassign(ip string) (*Action, error)
Get(ip string, actionID int) (*Action, error)
List(ip string, opt *godo.ListOptions) ([]Action, error)
}
FloatingIPActionsService is an interface for interacting with DigitalOcean's floating ip action api.
func NewFloatingIPActionsService ¶
func NewFloatingIPActionsService(godoClient *godo.Client) FloatingIPActionsService
NewFloatingIPActionsService builds a FloatingIPActionsService instance.
type FloatingIPsService ¶
type FloatingIPsService interface {
List() (FloatingIPs, error)
Get(ip string) (*FloatingIP, error)
Create(ficr *godo.FloatingIPCreateRequest) (*FloatingIP, error)
Delete(ip string) error
}
FloatingIPsService is the godo FloatingIPsService interface.
func NewFloatingIPsService ¶
func NewFloatingIPsService(client *godo.Client) FloatingIPsService
NewFloatingIPsService builds an instance of FloatingIPsService.
type GarbageCollection ¶ added in v1.50.0
type GarbageCollection struct {
*godo.GarbageCollection
}
GarbageCollection wraps a godo GarbageCollection
type Generator ¶
type Generator func(*godo.ListOptions) ([]interface{}, *godo.Response, error)
Generator is a function that generates the list to be paginated.
type ImageActionsService ¶
type ImageActionsService interface {
Get(int, int) (*Action, error)
Convert(int) (*Action, error)
Transfer(int, *godo.ActionRequest) (*Action, error)
}
ImageActionsService is an interface for interacting with DigitalOcean's image action api.
func NewImageActionsService ¶
func NewImageActionsService(client *godo.Client) ImageActionsService
NewImageActionsService builds an ImageActionsService instance.
type ImagesService ¶
type ImagesService interface {
List(public bool) (Images, error)
ListDistribution(public bool) (Images, error)
ListApplication(public bool) (Images, error)
ListUser(public bool) (Images, error)
GetByID(id int) (*Image, error)
GetBySlug(slug string) (*Image, error)
Update(id int, iur *godo.ImageUpdateRequest) (*Image, error)
Delete(id int) error
Create(icr *godo.CustomImageCreateRequest) (*Image, error)
}
ImagesService is the godo ImagesService interface.
func NewImagesService ¶
func NewImagesService(client *godo.Client) ImagesService
NewImagesService builds an instance of ImagesService.
type InterfaceType ¶
type InterfaceType string
InterfaceType is a an interface type.
const ( // InterfacePublic is a public interface. InterfacePublic InterfaceType = "public" // InterfacePrivate is a private interface. InterfacePrivate InterfaceType = "private" )
type InvoiceItem ¶ added in v1.39.0
type InvoiceItem struct {
*godo.InvoiceItem
}
InvoiceItem is a wrapper for godo.InvoiceItem
type InvoiceList ¶ added in v1.39.0
type InvoiceList struct {
*godo.InvoiceList
}
InvoiceList is a the results when listing invoices
type InvoiceSummary ¶ added in v1.39.0
type InvoiceSummary struct {
*godo.InvoiceSummary
}
InvoiceSummary is a wrapper for godo.InvoiceSummary
type InvoicesService ¶ added in v1.39.0
type InvoicesService interface {
Get(string) (*Invoice, error)
List() (*InvoiceList, error)
GetSummary(string) (*InvoiceSummary, error)
GetPDF(string) ([]byte, error)
GetCSV(string) ([]byte, error)
}
InvoicesService is an interface for interacting with DigitalOcean's invoices api.
func NewInvoicesService ¶ added in v1.39.0
func NewInvoicesService(client *godo.Client) InvoicesService
NewInvoicesService builds an InvoicesService instance.
type KeysService ¶
type KeysService interface {
List() (SSHKeys, error)
Get(id string) (*SSHKey, error)
Create(kcr *godo.KeyCreateRequest) (*SSHKey, error)
Update(id string, kur *godo.KeyUpdateRequest) (*SSHKey, error)
Delete(id string) error
}
KeysService is the godo KeysService interface.
func NewKeysService ¶
func NewKeysService(client *godo.Client) KeysService
NewKeysService builds an instance of KeysService.
type KubernetesAssociatedResources ¶ added in v1.56.0
type KubernetesAssociatedResources struct {
*godo.KubernetesAssociatedResources
}
KubernetesAssociatedResources wraps a godo KubernetesAssociatedResources
type KubernetesCluster ¶ added in v1.12.0
type KubernetesCluster struct {
*godo.KubernetesCluster
}
KubernetesCluster wraps a godo KubernetesCluster.
type KubernetesClusterCredentials ¶ added in v1.32.2
type KubernetesClusterCredentials struct {
*godo.KubernetesClusterCredentials
}
KubernetesClusterCredentials wraps a godo KubernetesClusterCredentials.
type KubernetesClusters ¶ added in v1.12.0
type KubernetesClusters []KubernetesCluster
KubernetesClusters is a slice of KubernetesCluster.
type KubernetesNodePool ¶ added in v1.12.0
type KubernetesNodePool struct {
*godo.KubernetesNodePool
}
KubernetesNodePool wraps a godo KubernetesNodePool.
type KubernetesNodePools ¶ added in v1.12.0
type KubernetesNodePools []KubernetesNodePool
KubernetesNodePools is a slice of KubernetesNodePool.
type KubernetesNodeSize ¶ added in v1.12.1
type KubernetesNodeSize struct {
*godo.KubernetesNodeSize
}
KubernetesNodeSize wraps a godo KubernetesNodeSize.
type KubernetesNodeSizes ¶ added in v1.12.1
type KubernetesNodeSizes []KubernetesNodeSize
KubernetesNodeSizes is a slice of KubernetesNodeSizes.
type KubernetesRegion ¶ added in v1.12.1
type KubernetesRegion struct {
*godo.KubernetesRegion
}
KubernetesRegion wraps a godo KubernetesRegion.
type KubernetesRegions ¶ added in v1.12.1
type KubernetesRegions []KubernetesRegion
KubernetesRegions is a slice of KubernetesRegions.
type KubernetesService ¶ added in v1.12.0
type KubernetesService interface {
Get(clusterID string) (*KubernetesCluster, error)
GetKubeConfig(clusterID string) ([]byte, error)
GetKubeConfigWithExpiry(clusterID string, expirySeconds int64) ([]byte, error)
GetCredentials(clusterID string) (*KubernetesClusterCredentials, error)
GetUpgrades(clusterID string) (KubernetesVersions, error)
List() (KubernetesClusters, error)
ListAssociatedResourcesForDeletion(clusterID string) (*KubernetesAssociatedResources, error)
Create(create *godo.KubernetesClusterCreateRequest) (*KubernetesCluster, error)
Update(clusterID string, update *godo.KubernetesClusterUpdateRequest) (*KubernetesCluster, error)
Upgrade(clusterID string, versionSlug string) error
Delete(clusterID string) error
DeleteDangerous(clusterID string) error
DeleteSelective(clusterID string, deleteReq *godo.KubernetesClusterDeleteSelectiveRequest) error
CreateNodePool(clusterID string, req *godo.KubernetesNodePoolCreateRequest) (*KubernetesNodePool, error)
GetNodePool(clusterID, poolID string) (*KubernetesNodePool, error)
ListNodePools(clusterID string) (KubernetesNodePools, error)
UpdateNodePool(clusterID, poolID string, req *godo.KubernetesNodePoolUpdateRequest) (*KubernetesNodePool, error)
// RecycleNodePoolNodes is DEPRECATED please use DeleteNode
RecycleNodePoolNodes(clusterID, poolID string, req *godo.KubernetesNodePoolRecycleNodesRequest) error
DeleteNodePool(clusterID, poolID string) error
DeleteNode(clusterID, poolID, nodeID string, req *godo.KubernetesNodeDeleteRequest) error
GetVersions() (KubernetesVersions, error)
GetRegions() (KubernetesRegions, error)
GetNodeSizes() (KubernetesNodeSizes, error)
AddRegistry(req *godo.KubernetesClusterRegistryRequest) error
RemoveRegistry(req *godo.KubernetesClusterRegistryRequest) error
}
KubernetesService is the godo KubernetesService interface.
func NewKubernetesService ¶ added in v1.12.0
func NewKubernetesService(client *godo.Client) KubernetesService
NewKubernetesService builds an instance of KubernetesService.
type KubernetesVersion ¶ added in v1.12.0
type KubernetesVersion struct {
*godo.KubernetesVersion
}
KubernetesVersion wraps a godo KubernetesVersion.
type KubernetesVersions ¶ added in v1.12.0
type KubernetesVersions []KubernetesVersion
KubernetesVersions is a slice of KubernetesVersions.
type LoadBalancer ¶ added in v1.6.0
type LoadBalancer struct {
*godo.LoadBalancer
}
LoadBalancer wraps a godo LoadBalancer.
type LoadBalancers ¶ added in v1.6.0
type LoadBalancers []LoadBalancer
LoadBalancers is a slice of LoadBalancer.
type LoadBalancersService ¶ added in v1.6.0
type LoadBalancersService interface {
Get(lbID string) (*LoadBalancer, error)
List() (LoadBalancers, error)
Create(lbr *godo.LoadBalancerRequest) (*LoadBalancer, error)
Update(lbID string, lbr *godo.LoadBalancerRequest) (*LoadBalancer, error)
Delete(lbID string) error
AddDroplets(lbID string, dIDs ...int) error
RemoveDroplets(lbID string, dIDs ...int) error
AddForwardingRules(lbID string, rules ...godo.ForwardingRule) error
RemoveForwardingRules(lbID string, rules ...godo.ForwardingRule) error
}
LoadBalancersService is the godo LoadBalancersService interface.
func NewLoadBalancersService ¶ added in v1.6.0
func NewLoadBalancersService(client *godo.Client) LoadBalancersService
NewLoadBalancersService builds an instance of LoadBalancersService.
type OneClickService ¶ added in v1.44.0
type OneClickService interface {
List(string) (OneClicks, error)
InstallKubernetes(string, []string) (string, error)
}
OneClickService is the godo OneClickService interface.
func NewOneClickService ¶ added in v1.44.0
func NewOneClickService(client *godo.Client) OneClickService
NewOneClickService builds an instance of OneClickService.
type ProjectResource ¶ added in v1.11.0
type ProjectResource struct {
*godo.ProjectResource
}
ProjectResource wraps a godo ProjectResource
type ProjectResources ¶ added in v1.11.0
type ProjectResources []ProjectResource
ProjectResources is a slice of ProjectResource.
type ProjectsService ¶ added in v1.11.0
type ProjectsService interface {
List() (Projects, error)
GetDefault() (*Project, error)
Get(projectUUID string) (*Project, error)
Create(*godo.CreateProjectRequest) (*Project, error)
Update(projectUUID string, req *godo.UpdateProjectRequest) (*Project, error)
Delete(projectUUID string) error
ListResources(projectUUID string) (ProjectResources, error)
AssignResources(projectUUID string, resources []string) (ProjectResources, error)
}
ProjectsService is the godo ProjectsService interface.
func NewProjectsService ¶ added in v1.11.0
func NewProjectsService(client *godo.Client) ProjectsService
NewProjectsService builds an instance of ProjectsService.
type RegionsService ¶
RegionsService is the godo RegionsService interface.
func NewRegionsService ¶
func NewRegionsService(client *godo.Client) RegionsService
NewRegionsService builds an instance of RegionsService.
type RegistryService ¶ added in v1.34.0
type RegistryService interface {
Get() (*Registry, error)
Create(*godo.RegistryCreateRequest) (*Registry, error)
Delete() error
DockerCredentials(*godo.RegistryDockerCredentialsRequest) (*godo.DockerCredentials, error)
ListRepositoryTags(string, string) ([]RepositoryTag, error)
ListRepositories(string) ([]Repository, error)
DeleteTag(string, string, string) error
DeleteManifest(string, string, string) error
Endpoint() string
StartGarbageCollection(string, *godo.StartGarbageCollectionRequest) (*GarbageCollection, error)
GetGarbageCollection(string) (*GarbageCollection, error)
ListGarbageCollections(string) ([]GarbageCollection, error)
CancelGarbageCollection(string, string) (*GarbageCollection, error)
GetSubscriptionTiers() ([]RegistrySubscriptionTier, error)
}
RegistryService is the godo RegistryService interface.
func NewRegistryService ¶ added in v1.34.0
func NewRegistryService(client *godo.Client) RegistryService
NewRegistryService builds an instance of RegistryService.
type RegistrySubscriptionTier ¶ added in v1.51.0
type RegistrySubscriptionTier struct {
*godo.RegistrySubscriptionTier
}
RegistrySubscriptionTier wraps a godo RegistrySubscriptionTier
type Repository ¶ added in v1.42.0
type Repository struct {
*godo.Repository
}
Repository wraps a godo Repository
type RepositoryTag ¶ added in v1.42.0
type RepositoryTag struct {
*godo.RepositoryTag
}
RepositoryTag wraps a godo RepositoryTag
type SizesService ¶
SizesService is the godo SizesService interface.
func NewSizesService ¶
func NewSizesService(client *godo.Client) SizesService
NewSizesService builds an instance of SizesService.
type SnapshotsService ¶ added in v1.6.0
type SnapshotsService interface {
List() (Snapshots, error)
ListVolume() (Snapshots, error)
ListDroplet() (Snapshots, error)
Get(string) (*Snapshot, error)
Delete(string) error
}
SnapshotsService is an interface for interacting with DigitalOcean's snapshot api.
func NewSnapshotsService ¶ added in v1.6.0
func NewSnapshotsService(client *godo.Client) SnapshotsService
NewSnapshotsService builds a SnapshotsService instance.
type TagsService ¶ added in v1.1.0
type TagsService interface {
List() (Tags, error)
Get(string) (*Tag, error)
Create(*godo.TagCreateRequest) (*Tag, error)
Delete(string) error
TagResources(string, *godo.TagResourcesRequest) error
UntagResources(string, *godo.UntagResourcesRequest) error
}
TagsService is an interface for interacting with DigitalOcean's tags api.
func NewTagsService ¶ added in v1.1.0
func NewTagsService(godoClient *godo.Client) TagsService
NewTagsService builds a TagsService instance.
type VPCsService ¶ added in v1.40.0
type VPCsService interface {
Get(vpcUUID string) (*VPC, error)
List() (VPCs, error)
Create(vpcr *godo.VPCCreateRequest) (*VPC, error)
Update(vpcUUID string, vpcr *godo.VPCUpdateRequest) (*VPC, error)
PartialUpdate(vpcUUID string, options ...godo.VPCSetField) (*VPC, error)
Delete(vpcUUID string) error
}
VPCsService is the godo VPCsService interface.
func NewVPCsService ¶ added in v1.40.0
func NewVPCsService(client *godo.Client) VPCsService
NewVPCsService builds an instance of VPCsService.
type VolumeActionsService ¶ added in v1.3.0
type VolumeActionsService interface {
Attach(string, int) (*Action, error)
Detach(string, int) (*Action, error)
Get(string, int) (*Action, error)
List(string) ([]Action, error)
Resize(string, int, string) (*Action, error)
}
VolumeActionsService is an interface for interacting with DigitalOcean's volume-action api.
func NewVolumeActionsService ¶ added in v1.3.0
func NewVolumeActionsService(godoClient *godo.Client) VolumeActionsService
NewVolumeActionsService builds an VolumeActionsService instance.
type VolumesService ¶ added in v1.3.0
type VolumesService interface {
List() ([]Volume, error)
CreateVolume(*godo.VolumeCreateRequest) (*Volume, error)
DeleteVolume(string) error
Get(string) (*Volume, error)
CreateSnapshot(*godo.SnapshotCreateRequest) (*Snapshot, error)
GetSnapshot(string) (*Snapshot, error)
DeleteSnapshot(string) error
ListSnapshots(string, *godo.ListOptions) ([]Snapshot, error)
}
VolumesService is an interface for interacting with DigitalOcean's volume api.
func NewVolumesService ¶ added in v1.3.0
func NewVolumesService(godoClient *godo.Client) VolumesService
NewVolumesService builds an NewVolumesService instance.
Source Files
¶
- 1_clicks.go
- account.go
- actions.go
- apps.go
- balance.go
- billing_history.go
- cdns.go
- certificates.go
- databases.go
- domains.go
- droplet_actions.go
- droplets.go
- firewalls.go
- floating_ip_actions.go
- floating_ips.go
- image_actions.go
- images.go
- invoices.go
- kubernetes.go
- load_balancers.go
- pagination.go
- projects.go
- regions.go
- registry.go
- sizes.go
- snapshots.go
- sshkeys.go
- tags.go
- volume_actions.go
- volumes.go
- vpcs.go