Documentation ¶
Overview ¶
Package hcloud is a library for the Hetzner Cloud API.
Example ¶
package main import ( "context" "fmt" "log" "github.com/hetznercloud/hcloud-go/hcloud" ) func main() { client := hcloud.NewClient(hcloud.WithToken("token")) server, _, err := client.Server.GetByID(context.Background(), 1) if err != nil { log.Fatalf("error retrieving server: %s\n", err) } if server != nil { fmt.Printf("server 1 is called %q\n", server.Name) } else { fmt.Println("server 1 not found") } }
Output:
Index ¶
- Constants
- func Bool(b bool) *booldeprecated
- func Duration(d time.Duration) *time.Durationdeprecated
- func Int(i int) *intdeprecated
- func IsError(err error, code ErrorCode) bool
- func Ptr[T any](p T) *T
- func RDNSLookup(i interface{}, ip net.IP) (string, error)
- func String(s string) *stringdeprecated
- func SupportsRDNS(i interface{}) bool
- func ValidateResourceLabels(labels map[string]interface{}) (bool, error)
- type Action
- type ActionClient
- func (c *ActionClient) All(ctx context.Context) ([]*Action, error)
- func (c *ActionClient) AllWithOpts(ctx context.Context, opts ActionListOpts) ([]*Action, error)
- func (c *ActionClient) GetByID(ctx context.Context, id int) (*Action, *Response, error)
- func (c *ActionClient) List(ctx context.Context, opts ActionListOpts) ([]*Action, *Response, error)
- func (c *ActionClient) WaitFor(ctx context.Context, actions ...*Action) error
- func (c *ActionClient) WaitForFunc(ctx context.Context, handleUpdate func(update *Action) error, ...) error
- func (c *ActionClient) WatchOverallProgress(ctx context.Context, actions []*Action) (<-chan int, <-chan error)deprecated
- func (c *ActionClient) WatchProgress(ctx context.Context, action *Action) (<-chan int, <-chan error)deprecated
- type ActionError
- type ActionListOpts
- type ActionResource
- type ActionResourceType
- type ActionStatus
- type ActionWaiter
- type Architecture
- type BackoffFunc
- type CPUType
- type Certificate
- type CertificateClient
- func (c *CertificateClient) All(ctx context.Context) ([]*Certificate, error)
- func (c *CertificateClient) AllWithOpts(ctx context.Context, opts CertificateListOpts) ([]*Certificate, error)
- func (c *CertificateClient) Create(ctx context.Context, opts CertificateCreateOpts) (*Certificate, *Response, error)
- func (c *CertificateClient) CreateCertificate(ctx context.Context, opts CertificateCreateOpts) (CertificateCreateResult, *Response, error)
- func (c *CertificateClient) Delete(ctx context.Context, certificate *Certificate) (*Response, error)
- func (c *CertificateClient) Get(ctx context.Context, idOrName string) (*Certificate, *Response, error)
- func (c *CertificateClient) GetByID(ctx context.Context, id int) (*Certificate, *Response, error)
- func (c *CertificateClient) GetByName(ctx context.Context, name string) (*Certificate, *Response, error)
- func (c *CertificateClient) List(ctx context.Context, opts CertificateListOpts) ([]*Certificate, *Response, error)
- func (c *CertificateClient) RetryIssuance(ctx context.Context, certificate *Certificate) (*Action, *Response, error)
- func (c *CertificateClient) Update(ctx context.Context, certificate *Certificate, opts CertificateUpdateOpts) (*Certificate, *Response, error)
- type CertificateCreateOpts
- type CertificateCreateResult
- type CertificateListOpts
- type CertificateStatus
- type CertificateStatusType
- type CertificateType
- type CertificateUpdateOpts
- type CertificateUsedByRef
- type CertificateUsedByRefType
- type Client
- type ClientOption
- func WithApplication(name, version string) ClientOption
- func WithBackoffFunc(f BackoffFunc) ClientOption
- func WithDebugWriter(debugWriter io.Writer) ClientOption
- func WithEndpoint(endpoint string) ClientOption
- func WithHTTPClient(httpClient *http.Client) ClientOption
- func WithInstrumentation(registry *prometheus.Registry) ClientOption
- func WithPollBackoffFunc(f BackoffFunc) ClientOption
- func WithPollInterval(pollInterval time.Duration) ClientOptiondeprecated
- func WithToken(token string) ClientOption
- type DNSNotFoundError
- type Datacenter
- type DatacenterClient
- func (c *DatacenterClient) All(ctx context.Context) ([]*Datacenter, error)
- func (c *DatacenterClient) AllWithOpts(ctx context.Context, opts DatacenterListOpts) ([]*Datacenter, error)
- func (c *DatacenterClient) Get(ctx context.Context, idOrName string) (*Datacenter, *Response, error)
- func (c *DatacenterClient) GetByID(ctx context.Context, id int) (*Datacenter, *Response, error)
- func (c *DatacenterClient) GetByName(ctx context.Context, name string) (*Datacenter, *Response, error)
- func (c *DatacenterClient) List(ctx context.Context, opts DatacenterListOpts) ([]*Datacenter, *Response, error)
- type DatacenterListOpts
- type DatacenterServerTypes
- type Deprecatable
- type DeprecatableResource
- type DeprecationInfo
- type Error
- type ErrorCode
- type ErrorDetailsInvalidInput
- type ErrorDetailsInvalidInputField
- type Firewall
- type FirewallClient
- func (c *FirewallClient) All(ctx context.Context) ([]*Firewall, error)
- func (c *FirewallClient) AllWithOpts(ctx context.Context, opts FirewallListOpts) ([]*Firewall, error)
- func (c *FirewallClient) ApplyResources(ctx context.Context, firewall *Firewall, resources []FirewallResource) ([]*Action, *Response, error)
- func (c *FirewallClient) Create(ctx context.Context, opts FirewallCreateOpts) (FirewallCreateResult, *Response, error)
- func (c *FirewallClient) Delete(ctx context.Context, firewall *Firewall) (*Response, error)
- func (c *FirewallClient) Get(ctx context.Context, idOrName string) (*Firewall, *Response, error)
- func (c *FirewallClient) GetByID(ctx context.Context, id int) (*Firewall, *Response, error)
- func (c *FirewallClient) GetByName(ctx context.Context, name string) (*Firewall, *Response, error)
- func (c *FirewallClient) List(ctx context.Context, opts FirewallListOpts) ([]*Firewall, *Response, error)
- func (c *FirewallClient) RemoveResources(ctx context.Context, firewall *Firewall, resources []FirewallResource) ([]*Action, *Response, error)
- func (c *FirewallClient) SetRules(ctx context.Context, firewall *Firewall, opts FirewallSetRulesOpts) ([]*Action, *Response, error)
- func (c *FirewallClient) Update(ctx context.Context, firewall *Firewall, opts FirewallUpdateOpts) (*Firewall, *Response, error)
- type FirewallCreateOpts
- type FirewallCreateResult
- type FirewallListOpts
- type FirewallResource
- type FirewallResourceLabelSelector
- type FirewallResourceServer
- type FirewallResourceType
- type FirewallRule
- type FirewallRuleDirection
- type FirewallRuleProtocol
- type FirewallSetRulesOpts
- type FirewallStatus
- type FirewallUpdateOpts
- type FloatingIP
- type FloatingIPChangeProtectionOpts
- type FloatingIPClient
- func (c *FloatingIPClient) All(ctx context.Context) ([]*FloatingIP, error)
- func (c *FloatingIPClient) AllWithOpts(ctx context.Context, opts FloatingIPListOpts) ([]*FloatingIP, error)
- func (c *FloatingIPClient) Assign(ctx context.Context, floatingIP *FloatingIP, server *Server) (*Action, *Response, error)
- func (c *FloatingIPClient) ChangeDNSPtr(ctx context.Context, floatingIP *FloatingIP, ip string, ptr *string) (*Action, *Response, error)
- func (c *FloatingIPClient) ChangeProtection(ctx context.Context, floatingIP *FloatingIP, ...) (*Action, *Response, error)
- func (c *FloatingIPClient) Create(ctx context.Context, opts FloatingIPCreateOpts) (FloatingIPCreateResult, *Response, error)
- func (c *FloatingIPClient) Delete(ctx context.Context, floatingIP *FloatingIP) (*Response, error)
- func (c *FloatingIPClient) Get(ctx context.Context, idOrName string) (*FloatingIP, *Response, error)
- func (c *FloatingIPClient) GetByID(ctx context.Context, id int) (*FloatingIP, *Response, error)
- func (c *FloatingIPClient) GetByName(ctx context.Context, name string) (*FloatingIP, *Response, error)
- func (c *FloatingIPClient) List(ctx context.Context, opts FloatingIPListOpts) ([]*FloatingIP, *Response, error)
- func (c *FloatingIPClient) Unassign(ctx context.Context, floatingIP *FloatingIP) (*Action, *Response, error)
- func (c *FloatingIPClient) Update(ctx context.Context, floatingIP *FloatingIP, opts FloatingIPUpdateOpts) (*FloatingIP, *Response, error)
- type FloatingIPCreateOpts
- type FloatingIPCreateResult
- type FloatingIPListOpts
- type FloatingIPPricing
- type FloatingIPProtection
- type FloatingIPType
- type FloatingIPTypeLocationPricing
- type FloatingIPTypePricing
- type FloatingIPUpdateOpts
- type ISO
- type ISOClient
- func (c *ISOClient) All(ctx context.Context) ([]*ISO, error)
- func (c *ISOClient) AllWithOpts(ctx context.Context, opts ISOListOpts) ([]*ISO, error)
- func (c *ISOClient) Get(ctx context.Context, idOrName string) (*ISO, *Response, error)
- func (c *ISOClient) GetByID(ctx context.Context, id int) (*ISO, *Response, error)
- func (c *ISOClient) GetByName(ctx context.Context, name string) (*ISO, *Response, error)
- func (c *ISOClient) List(ctx context.Context, opts ISOListOpts) ([]*ISO, *Response, error)
- type ISOListOpts
- type ISOType
- type Image
- type ImageChangeProtectionOpts
- type ImageClient
- func (c *ImageClient) All(ctx context.Context) ([]*Image, error)
- func (c *ImageClient) AllWithOpts(ctx context.Context, opts ImageListOpts) ([]*Image, error)
- func (c *ImageClient) ChangeProtection(ctx context.Context, image *Image, opts ImageChangeProtectionOpts) (*Action, *Response, error)
- func (c *ImageClient) Delete(ctx context.Context, image *Image) (*Response, error)
- func (c *ImageClient) Get(ctx context.Context, idOrName string) (*Image, *Response, error)deprecated
- func (c *ImageClient) GetByID(ctx context.Context, id int) (*Image, *Response, error)
- func (c *ImageClient) GetByName(ctx context.Context, name string) (*Image, *Response, error)deprecated
- func (c *ImageClient) GetByNameAndArchitecture(ctx context.Context, name string, architecture Architecture) (*Image, *Response, error)
- func (c *ImageClient) GetForArchitecture(ctx context.Context, idOrName string, architecture Architecture) (*Image, *Response, error)
- func (c *ImageClient) List(ctx context.Context, opts ImageListOpts) ([]*Image, *Response, error)
- func (c *ImageClient) Update(ctx context.Context, image *Image, opts ImageUpdateOpts) (*Image, *Response, error)
- type ImageListOpts
- type ImagePricing
- type ImageProtection
- type ImageStatus
- type ImageType
- type ImageUpdateOpts
- type InvalidIPError
- type ListOpts
- type LoadBalancer
- type LoadBalancerAddIPTargetOpts
- type LoadBalancerAddLabelSelectorTargetOpts
- type LoadBalancerAddServerTargetOpts
- type LoadBalancerAddServiceOpts
- type LoadBalancerAddServiceOptsHTTP
- type LoadBalancerAddServiceOptsHealthCheck
- type LoadBalancerAddServiceOptsHealthCheckHTTP
- type LoadBalancerAlgorithm
- type LoadBalancerAlgorithmType
- type LoadBalancerAttachToNetworkOpts
- type LoadBalancerChangeAlgorithmOpts
- type LoadBalancerChangeProtectionOpts
- type LoadBalancerChangeTypeOpts
- type LoadBalancerClient
- func (c *LoadBalancerClient) AddIPTarget(ctx context.Context, loadBalancer *LoadBalancer, ...) (*Action, *Response, error)
- func (c *LoadBalancerClient) AddLabelSelectorTarget(ctx context.Context, loadBalancer *LoadBalancer, ...) (*Action, *Response, error)
- func (c *LoadBalancerClient) AddServerTarget(ctx context.Context, loadBalancer *LoadBalancer, ...) (*Action, *Response, error)
- func (c *LoadBalancerClient) AddService(ctx context.Context, loadBalancer *LoadBalancer, ...) (*Action, *Response, error)
- func (c *LoadBalancerClient) All(ctx context.Context) ([]*LoadBalancer, error)
- func (c *LoadBalancerClient) AllWithOpts(ctx context.Context, opts LoadBalancerListOpts) ([]*LoadBalancer, error)
- func (c *LoadBalancerClient) AttachToNetwork(ctx context.Context, loadBalancer *LoadBalancer, ...) (*Action, *Response, error)
- func (c *LoadBalancerClient) ChangeAlgorithm(ctx context.Context, loadBalancer *LoadBalancer, ...) (*Action, *Response, error)
- func (c *LoadBalancerClient) ChangeDNSPtr(ctx context.Context, lb *LoadBalancer, ip string, ptr *string) (*Action, *Response, error)
- func (c *LoadBalancerClient) ChangeProtection(ctx context.Context, loadBalancer *LoadBalancer, ...) (*Action, *Response, error)
- func (c *LoadBalancerClient) ChangeType(ctx context.Context, loadBalancer *LoadBalancer, ...) (*Action, *Response, error)
- func (c *LoadBalancerClient) Create(ctx context.Context, opts LoadBalancerCreateOpts) (LoadBalancerCreateResult, *Response, error)
- func (c *LoadBalancerClient) Delete(ctx context.Context, loadBalancer *LoadBalancer) (*Response, error)
- func (c *LoadBalancerClient) DeleteService(ctx context.Context, loadBalancer *LoadBalancer, listenPort int) (*Action, *Response, error)
- func (c *LoadBalancerClient) DetachFromNetwork(ctx context.Context, loadBalancer *LoadBalancer, ...) (*Action, *Response, error)
- func (c *LoadBalancerClient) DisablePublicInterface(ctx context.Context, loadBalancer *LoadBalancer) (*Action, *Response, error)
- func (c *LoadBalancerClient) EnablePublicInterface(ctx context.Context, loadBalancer *LoadBalancer) (*Action, *Response, error)
- func (c *LoadBalancerClient) Get(ctx context.Context, idOrName string) (*LoadBalancer, *Response, error)
- func (c *LoadBalancerClient) GetByID(ctx context.Context, id int) (*LoadBalancer, *Response, error)
- func (c *LoadBalancerClient) GetByName(ctx context.Context, name string) (*LoadBalancer, *Response, error)
- func (c *LoadBalancerClient) GetMetrics(ctx context.Context, lb *LoadBalancer, opts LoadBalancerGetMetricsOpts) (*LoadBalancerMetrics, *Response, error)
- func (c *LoadBalancerClient) List(ctx context.Context, opts LoadBalancerListOpts) ([]*LoadBalancer, *Response, error)
- func (c *LoadBalancerClient) RemoveIPTarget(ctx context.Context, loadBalancer *LoadBalancer, ip net.IP) (*Action, *Response, error)
- func (c *LoadBalancerClient) RemoveLabelSelectorTarget(ctx context.Context, loadBalancer *LoadBalancer, labelSelector string) (*Action, *Response, error)
- func (c *LoadBalancerClient) RemoveServerTarget(ctx context.Context, loadBalancer *LoadBalancer, server *Server) (*Action, *Response, error)
- func (c *LoadBalancerClient) Update(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerUpdateOpts) (*LoadBalancer, *Response, error)
- func (c *LoadBalancerClient) UpdateService(ctx context.Context, loadBalancer *LoadBalancer, listenPort int, ...) (*Action, *Response, error)
- type LoadBalancerCreateOpts
- type LoadBalancerCreateOptsService
- type LoadBalancerCreateOptsServiceHTTP
- type LoadBalancerCreateOptsServiceHealthCheck
- type LoadBalancerCreateOptsServiceHealthCheckHTTP
- type LoadBalancerCreateOptsTarget
- type LoadBalancerCreateOptsTargetIP
- type LoadBalancerCreateOptsTargetLabelSelector
- type LoadBalancerCreateOptsTargetServer
- type LoadBalancerCreateResult
- type LoadBalancerDetachFromNetworkOpts
- type LoadBalancerGetMetricsOpts
- type LoadBalancerListOpts
- type LoadBalancerMetricType
- type LoadBalancerMetrics
- type LoadBalancerMetricsValue
- type LoadBalancerPrivateNet
- type LoadBalancerProtection
- type LoadBalancerPublicNet
- type LoadBalancerPublicNetIPv4
- type LoadBalancerPublicNetIPv6
- type LoadBalancerService
- type LoadBalancerServiceHTTP
- type LoadBalancerServiceHealthCheck
- type LoadBalancerServiceHealthCheckHTTP
- type LoadBalancerServiceProtocol
- type LoadBalancerTarget
- type LoadBalancerTargetHealthStatus
- type LoadBalancerTargetHealthStatusStatus
- type LoadBalancerTargetIP
- type LoadBalancerTargetLabelSelector
- type LoadBalancerTargetServer
- type LoadBalancerTargetType
- type LoadBalancerType
- type LoadBalancerTypeClient
- func (c *LoadBalancerTypeClient) All(ctx context.Context) ([]*LoadBalancerType, error)
- func (c *LoadBalancerTypeClient) AllWithOpts(ctx context.Context, opts LoadBalancerTypeListOpts) ([]*LoadBalancerType, error)
- func (c *LoadBalancerTypeClient) Get(ctx context.Context, idOrName string) (*LoadBalancerType, *Response, error)
- func (c *LoadBalancerTypeClient) GetByID(ctx context.Context, id int) (*LoadBalancerType, *Response, error)
- func (c *LoadBalancerTypeClient) GetByName(ctx context.Context, name string) (*LoadBalancerType, *Response, error)
- func (c *LoadBalancerTypeClient) List(ctx context.Context, opts LoadBalancerTypeListOpts) ([]*LoadBalancerType, *Response, error)
- type LoadBalancerTypeListOpts
- type LoadBalancerTypeLocationPricing
- type LoadBalancerTypePricing
- type LoadBalancerUpdateOpts
- type LoadBalancerUpdateServiceOpts
- type LoadBalancerUpdateServiceOptsHTTP
- type LoadBalancerUpdateServiceOptsHealthCheck
- type LoadBalancerUpdateServiceOptsHealthCheckHTTP
- type Location
- type LocationClient
- func (c *LocationClient) All(ctx context.Context) ([]*Location, error)
- func (c *LocationClient) AllWithOpts(ctx context.Context, opts LocationListOpts) ([]*Location, error)
- func (c *LocationClient) Get(ctx context.Context, idOrName string) (*Location, *Response, error)
- func (c *LocationClient) GetByID(ctx context.Context, id int) (*Location, *Response, error)
- func (c *LocationClient) GetByName(ctx context.Context, name string) (*Location, *Response, error)
- func (c *LocationClient) List(ctx context.Context, opts LocationListOpts) ([]*Location, *Response, error)
- type LocationListOpts
- type Meta
- type Network
- type NetworkAddRouteOpts
- type NetworkAddSubnetOpts
- type NetworkChangeIPRangeOpts
- type NetworkChangeProtectionOpts
- type NetworkClient
- func (c *NetworkClient) AddRoute(ctx context.Context, network *Network, opts NetworkAddRouteOpts) (*Action, *Response, error)
- func (c *NetworkClient) AddSubnet(ctx context.Context, network *Network, opts NetworkAddSubnetOpts) (*Action, *Response, error)
- func (c *NetworkClient) All(ctx context.Context) ([]*Network, error)
- func (c *NetworkClient) AllWithOpts(ctx context.Context, opts NetworkListOpts) ([]*Network, error)
- func (c *NetworkClient) ChangeIPRange(ctx context.Context, network *Network, opts NetworkChangeIPRangeOpts) (*Action, *Response, error)
- func (c *NetworkClient) ChangeProtection(ctx context.Context, network *Network, opts NetworkChangeProtectionOpts) (*Action, *Response, error)
- func (c *NetworkClient) Create(ctx context.Context, opts NetworkCreateOpts) (*Network, *Response, error)
- func (c *NetworkClient) Delete(ctx context.Context, network *Network) (*Response, error)
- func (c *NetworkClient) DeleteRoute(ctx context.Context, network *Network, opts NetworkDeleteRouteOpts) (*Action, *Response, error)
- func (c *NetworkClient) DeleteSubnet(ctx context.Context, network *Network, opts NetworkDeleteSubnetOpts) (*Action, *Response, error)
- func (c *NetworkClient) Get(ctx context.Context, idOrName string) (*Network, *Response, error)
- func (c *NetworkClient) GetByID(ctx context.Context, id int) (*Network, *Response, error)
- func (c *NetworkClient) GetByName(ctx context.Context, name string) (*Network, *Response, error)
- func (c *NetworkClient) List(ctx context.Context, opts NetworkListOpts) ([]*Network, *Response, error)
- func (c *NetworkClient) Update(ctx context.Context, network *Network, opts NetworkUpdateOpts) (*Network, *Response, error)
- type NetworkCreateOpts
- type NetworkDeleteRouteOpts
- type NetworkDeleteSubnetOpts
- type NetworkListOpts
- type NetworkProtection
- type NetworkRoute
- type NetworkSubnet
- type NetworkSubnetType
- type NetworkUpdateOpts
- type NetworkZone
- type Pagination
- type PlacementGroup
- type PlacementGroupClient
- func (c *PlacementGroupClient) All(ctx context.Context) ([]*PlacementGroup, error)
- func (c *PlacementGroupClient) AllWithOpts(ctx context.Context, opts PlacementGroupListOpts) ([]*PlacementGroup, error)
- func (c *PlacementGroupClient) Create(ctx context.Context, opts PlacementGroupCreateOpts) (PlacementGroupCreateResult, *Response, error)
- func (c *PlacementGroupClient) Delete(ctx context.Context, placementGroup *PlacementGroup) (*Response, error)
- func (c *PlacementGroupClient) Get(ctx context.Context, idOrName string) (*PlacementGroup, *Response, error)
- func (c *PlacementGroupClient) GetByID(ctx context.Context, id int) (*PlacementGroup, *Response, error)
- func (c *PlacementGroupClient) GetByName(ctx context.Context, name string) (*PlacementGroup, *Response, error)
- func (c *PlacementGroupClient) List(ctx context.Context, opts PlacementGroupListOpts) ([]*PlacementGroup, *Response, error)
- func (c *PlacementGroupClient) Update(ctx context.Context, placementGroup *PlacementGroup, ...) (*PlacementGroup, *Response, error)
- type PlacementGroupCreateOpts
- type PlacementGroupCreateResult
- type PlacementGroupListOpts
- type PlacementGroupType
- type PlacementGroupUpdateOpts
- type Price
- type Pricing
- type PricingClient
- type PrimaryIP
- type PrimaryIPAssignOpts
- type PrimaryIPAssignResult
- type PrimaryIPChangeDNSPtrOpts
- type PrimaryIPChangeDNSPtrResult
- type PrimaryIPChangeProtectionOpts
- type PrimaryIPChangeProtectionResult
- type PrimaryIPClient
- func (c *PrimaryIPClient) All(ctx context.Context) ([]*PrimaryIP, error)
- func (c *PrimaryIPClient) AllWithOpts(ctx context.Context, opts PrimaryIPListOpts) ([]*PrimaryIP, error)
- func (c *PrimaryIPClient) Assign(ctx context.Context, opts PrimaryIPAssignOpts) (*Action, *Response, error)
- func (c *PrimaryIPClient) ChangeDNSPtr(ctx context.Context, opts PrimaryIPChangeDNSPtrOpts) (*Action, *Response, error)
- func (c *PrimaryIPClient) ChangeProtection(ctx context.Context, opts PrimaryIPChangeProtectionOpts) (*Action, *Response, error)
- func (c *PrimaryIPClient) Create(ctx context.Context, reqBody PrimaryIPCreateOpts) (*PrimaryIPCreateResult, *Response, error)
- func (c *PrimaryIPClient) Delete(ctx context.Context, primaryIP *PrimaryIP) (*Response, error)
- func (c *PrimaryIPClient) Get(ctx context.Context, idOrName string) (*PrimaryIP, *Response, error)
- func (c *PrimaryIPClient) GetByID(ctx context.Context, id int) (*PrimaryIP, *Response, error)
- func (c *PrimaryIPClient) GetByIP(ctx context.Context, ip string) (*PrimaryIP, *Response, error)
- func (c *PrimaryIPClient) GetByName(ctx context.Context, name string) (*PrimaryIP, *Response, error)
- func (c *PrimaryIPClient) List(ctx context.Context, opts PrimaryIPListOpts) ([]*PrimaryIP, *Response, error)
- func (c *PrimaryIPClient) Unassign(ctx context.Context, id int) (*Action, *Response, error)
- func (c *PrimaryIPClient) Update(ctx context.Context, primaryIP *PrimaryIP, reqBody PrimaryIPUpdateOpts) (*PrimaryIP, *Response, error)
- type PrimaryIPCreateOpts
- type PrimaryIPCreateResult
- type PrimaryIPDNSPTR
- type PrimaryIPListOpts
- type PrimaryIPPrice
- type PrimaryIPPricing
- type PrimaryIPProtection
- type PrimaryIPType
- type PrimaryIPTypePricing
- type PrimaryIPUpdateOpts
- type RDNSClient
- type RDNSSupporter
- type Ratelimit
- type Resource
- type ResourceActionClient
- type Response
- type SSHKey
- type SSHKeyClient
- func (c *SSHKeyClient) All(ctx context.Context) ([]*SSHKey, error)
- func (c *SSHKeyClient) AllWithOpts(ctx context.Context, opts SSHKeyListOpts) ([]*SSHKey, error)
- func (c *SSHKeyClient) Create(ctx context.Context, opts SSHKeyCreateOpts) (*SSHKey, *Response, error)
- func (c *SSHKeyClient) Delete(ctx context.Context, sshKey *SSHKey) (*Response, error)
- func (c *SSHKeyClient) Get(ctx context.Context, idOrName string) (*SSHKey, *Response, error)
- func (c *SSHKeyClient) GetByFingerprint(ctx context.Context, fingerprint string) (*SSHKey, *Response, error)
- func (c *SSHKeyClient) GetByID(ctx context.Context, id int) (*SSHKey, *Response, error)
- func (c *SSHKeyClient) GetByName(ctx context.Context, name string) (*SSHKey, *Response, error)
- func (c *SSHKeyClient) List(ctx context.Context, opts SSHKeyListOpts) ([]*SSHKey, *Response, error)
- func (c *SSHKeyClient) Update(ctx context.Context, sshKey *SSHKey, opts SSHKeyUpdateOpts) (*SSHKey, *Response, error)
- type SSHKeyCreateOpts
- type SSHKeyListOpts
- type SSHKeyUpdateOpts
- type Server
- type ServerAttachToNetworkOpts
- type ServerBackupPricing
- type ServerChangeAliasIPsOpts
- type ServerChangeProtectionOpts
- type ServerChangeTypeOpts
- type ServerClient
- func (c *ServerClient) AddToPlacementGroup(ctx context.Context, server *Server, placementGroup *PlacementGroup) (*Action, *Response, error)
- func (c *ServerClient) All(ctx context.Context) ([]*Server, error)
- func (c *ServerClient) AllWithOpts(ctx context.Context, opts ServerListOpts) ([]*Server, error)
- func (c *ServerClient) AttachISO(ctx context.Context, server *Server, iso *ISO) (*Action, *Response, error)
- func (c *ServerClient) AttachToNetwork(ctx context.Context, server *Server, opts ServerAttachToNetworkOpts) (*Action, *Response, error)
- func (c *ServerClient) ChangeAliasIPs(ctx context.Context, server *Server, opts ServerChangeAliasIPsOpts) (*Action, *Response, error)
- func (c *ServerClient) ChangeDNSPtr(ctx context.Context, server *Server, ip string, ptr *string) (*Action, *Response, error)
- func (c *ServerClient) ChangeProtection(ctx context.Context, server *Server, opts ServerChangeProtectionOpts) (*Action, *Response, error)
- func (c *ServerClient) ChangeType(ctx context.Context, server *Server, opts ServerChangeTypeOpts) (*Action, *Response, error)
- func (c *ServerClient) Create(ctx context.Context, opts ServerCreateOpts) (ServerCreateResult, *Response, error)
- func (c *ServerClient) CreateImage(ctx context.Context, server *Server, opts *ServerCreateImageOpts) (ServerCreateImageResult, *Response, error)
- func (c *ServerClient) Delete(ctx context.Context, server *Server) (*Response, error)deprecated
- func (c *ServerClient) DeleteWithResult(ctx context.Context, server *Server) (*ServerDeleteResult, *Response, error)
- func (c *ServerClient) DetachFromNetwork(ctx context.Context, server *Server, opts ServerDetachFromNetworkOpts) (*Action, *Response, error)
- func (c *ServerClient) DetachISO(ctx context.Context, server *Server) (*Action, *Response, error)
- func (c *ServerClient) DisableBackup(ctx context.Context, server *Server) (*Action, *Response, error)
- func (c *ServerClient) DisableRescue(ctx context.Context, server *Server) (*Action, *Response, error)
- func (c *ServerClient) EnableBackup(ctx context.Context, server *Server, window string) (*Action, *Response, error)
- func (c *ServerClient) EnableRescue(ctx context.Context, server *Server, opts ServerEnableRescueOpts) (ServerEnableRescueResult, *Response, error)
- func (c *ServerClient) Get(ctx context.Context, idOrName string) (*Server, *Response, error)
- func (c *ServerClient) GetByID(ctx context.Context, id int) (*Server, *Response, error)
- func (c *ServerClient) GetByName(ctx context.Context, name string) (*Server, *Response, error)
- func (c *ServerClient) GetMetrics(ctx context.Context, server *Server, opts ServerGetMetricsOpts) (*ServerMetrics, *Response, error)
- func (c *ServerClient) List(ctx context.Context, opts ServerListOpts) ([]*Server, *Response, error)
- func (c *ServerClient) Poweroff(ctx context.Context, server *Server) (*Action, *Response, error)
- func (c *ServerClient) Poweron(ctx context.Context, server *Server) (*Action, *Response, error)
- func (c *ServerClient) Reboot(ctx context.Context, server *Server) (*Action, *Response, error)
- func (c *ServerClient) Rebuild(ctx context.Context, server *Server, opts ServerRebuildOpts) (*Action, *Response, error)deprecated
- func (c *ServerClient) RebuildWithResult(ctx context.Context, server *Server, opts ServerRebuildOpts) (ServerRebuildResult, *Response, error)
- func (c *ServerClient) RemoveFromPlacementGroup(ctx context.Context, server *Server) (*Action, *Response, error)
- func (c *ServerClient) RequestConsole(ctx context.Context, server *Server) (ServerRequestConsoleResult, *Response, error)
- func (c *ServerClient) Reset(ctx context.Context, server *Server) (*Action, *Response, error)
- func (c *ServerClient) ResetPassword(ctx context.Context, server *Server) (ServerResetPasswordResult, *Response, error)
- func (c *ServerClient) Shutdown(ctx context.Context, server *Server) (*Action, *Response, error)
- func (c *ServerClient) Update(ctx context.Context, server *Server, opts ServerUpdateOpts) (*Server, *Response, error)
- type ServerCreateFirewall
- type ServerCreateImageOpts
- type ServerCreateImageResult
- type ServerCreateOpts
- type ServerCreatePublicNet
- type ServerCreateResult
- type ServerDeleteResult
- type ServerDetachFromNetworkOpts
- type ServerEnableRescueOpts
- type ServerEnableRescueResult
- type ServerFirewallStatus
- type ServerGetMetricsOpts
- type ServerListOpts
- type ServerMetricType
- type ServerMetrics
- type ServerMetricsValue
- type ServerPrivateNet
- type ServerProtection
- type ServerPublicNet
- type ServerPublicNetIPv4
- type ServerPublicNetIPv6
- type ServerRebuildOpts
- type ServerRebuildResult
- type ServerRequestConsoleResult
- type ServerRescueType
- type ServerResetPasswordResult
- type ServerStatus
- type ServerType
- type ServerTypeClient
- func (c *ServerTypeClient) All(ctx context.Context) ([]*ServerType, error)
- func (c *ServerTypeClient) AllWithOpts(ctx context.Context, opts ServerTypeListOpts) ([]*ServerType, error)
- func (c *ServerTypeClient) Get(ctx context.Context, idOrName string) (*ServerType, *Response, error)
- func (c *ServerTypeClient) GetByID(ctx context.Context, id int) (*ServerType, *Response, error)
- func (c *ServerTypeClient) GetByName(ctx context.Context, name string) (*ServerType, *Response, error)
- func (c *ServerTypeClient) List(ctx context.Context, opts ServerTypeListOpts) ([]*ServerType, *Response, error)
- type ServerTypeListOpts
- type ServerTypeLocationPricing
- type ServerTypePricing
- type ServerUpdateOpts
- type StorageType
- type TrafficPricing
- type Volume
- type VolumeAttachOpts
- type VolumeChangeProtectionOpts
- type VolumeClient
- func (c *VolumeClient) All(ctx context.Context) ([]*Volume, error)
- func (c *VolumeClient) AllWithOpts(ctx context.Context, opts VolumeListOpts) ([]*Volume, error)
- func (c *VolumeClient) Attach(ctx context.Context, volume *Volume, server *Server) (*Action, *Response, error)
- func (c *VolumeClient) AttachWithOpts(ctx context.Context, volume *Volume, opts VolumeAttachOpts) (*Action, *Response, error)
- func (c *VolumeClient) ChangeProtection(ctx context.Context, volume *Volume, opts VolumeChangeProtectionOpts) (*Action, *Response, error)
- func (c *VolumeClient) Create(ctx context.Context, opts VolumeCreateOpts) (VolumeCreateResult, *Response, error)
- func (c *VolumeClient) Delete(ctx context.Context, volume *Volume) (*Response, error)
- func (c *VolumeClient) Detach(ctx context.Context, volume *Volume) (*Action, *Response, error)
- func (c *VolumeClient) Get(ctx context.Context, idOrName string) (*Volume, *Response, error)
- func (c *VolumeClient) GetByID(ctx context.Context, id int) (*Volume, *Response, error)
- func (c *VolumeClient) GetByName(ctx context.Context, name string) (*Volume, *Response, error)
- func (c *VolumeClient) List(ctx context.Context, opts VolumeListOpts) ([]*Volume, *Response, error)
- func (c *VolumeClient) Resize(ctx context.Context, volume *Volume, size int) (*Action, *Response, error)
- func (c *VolumeClient) Update(ctx context.Context, volume *Volume, opts VolumeUpdateOpts) (*Volume, *Response, error)
- type VolumeCreateOpts
- type VolumeCreateResult
- type VolumeListOpts
- type VolumePricing
- type VolumeProtection
- type VolumeStatus
- type VolumeUpdateOpts
Examples ¶
Constants ¶
const ( VolumeFormatExt4 = "ext4" VolumeFormatXFS = "xfs" )
const Endpoint = "https://api.hetzner.cloud/v1"
Endpoint is the base URL of the API.
const UserAgent = "hcloud-go/" + Version
UserAgent is the value for the library part of the User-Agent header that is sent with each request.
const Version = "1.57.0" // x-release-please-version
Version is the library's version following Semantic Versioning.
Variables ¶
This section is empty.
Functions ¶
func RDNSLookup ¶ added in v1.31.1
RDNSLookup searches for the dns assigned to the given IP address. It returns an error if the object does not support reverse dns or if there is no dns set for the given IP address.
func SupportsRDNS ¶ added in v1.31.1
func SupportsRDNS(i interface{}) bool
SupportsRDNS checks if the object supports reverse dns functions.
func ValidateResourceLabels ¶ added in v1.33.2
Types ¶
type Action ¶
type Action struct { ID int Status ActionStatus Command string Progress int Started time.Time Finished time.Time ErrorCode string ErrorMessage string Resources []*ActionResource }
Action represents an action in the Hetzner Cloud.
func ActionFromSchema ¶
ActionFromSchema converts a schema.Action to an Action.
func ActionsFromSchema ¶ added in v1.11.0
ActionsFromSchema converts a slice of schema.Action to a slice of Action.
type ActionClient ¶
type ActionClient struct {
// contains filtered or unexported fields
}
ActionClient is a client for the actions API.
func (*ActionClient) All ¶
func (c *ActionClient) All(ctx context.Context) ([]*Action, error)
All returns all actions.
func (*ActionClient) AllWithOpts ¶ added in v1.24.0
func (c *ActionClient) AllWithOpts(ctx context.Context, opts ActionListOpts) ([]*Action, error)
AllWithOpts returns all actions for the given options.
func (*ActionClient) GetByID ¶
GetByID retrieves an action by its ID. If the action does not exist, nil is returned.
func (*ActionClient) List ¶
func (c *ActionClient) List(ctx context.Context, opts ActionListOpts) ([]*Action, *Response, error)
List returns a list of actions for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*ActionClient) WaitFor ¶ added in v1.55.0
func (c *ActionClient) WaitFor(ctx context.Context, actions ...*Action) error
WaitFor waits until all actions succeed by polling the API at the interval defined by WithPollBackoffFunc. An action is considered as succeeded when its status is either ActionStatusSuccess.
If a single action fails, the function will stop waiting and the error set in the action will be returned as an ActionError.
For more flexibility, see the ActionClient.WaitForFunc function.
func (*ActionClient) WaitForFunc ¶ added in v1.55.0
func (c *ActionClient) WaitForFunc(ctx context.Context, handleUpdate func(update *Action) error, actions ...*Action) error
WaitForFunc waits until all actions are completed by polling the API at the interval defined by WithPollBackoffFunc. An action is considered as complete when its status is either ActionStatusSuccess or ActionStatusError.
The handleUpdate callback is called every time an action is updated.
func (*ActionClient) WatchOverallProgress
deprecated
added in
v1.24.0
func (c *ActionClient) WatchOverallProgress(ctx context.Context, actions []*Action) (<-chan int, <-chan error)
WatchOverallProgress watches several actions' progress until they complete with success or error. This watching happens in a goroutine and updates are provided through the two returned channels:
- The first channel receives percentage updates of the progress, based on the number of completed versus total watched actions. The return value is an int between 0 and 100.
- The second channel returned receives errors for actions that did not complete successfully, as well as any errors that happened while querying the API.
By default, the method keeps watching until all actions have finished processing. If you want to be able to cancel the method or configure a timeout, use the context.Context. Once the method has stopped watching, both returned channels are closed.
WatchOverallProgress uses the WithPollBackoffFunc of the Client to wait until sending the next request.
Deprecated: WatchOverallProgress is deprecated, use [WaitForFunc] instead.
func (*ActionClient) WatchProgress
deprecated
added in
v1.2.0
func (c *ActionClient) WatchProgress(ctx context.Context, action *Action) (<-chan int, <-chan error)
WatchProgress watches one action's progress until it completes with success or error. This watching happens in a goroutine and updates are provided through the two returned channels:
- The first channel receives percentage updates of the progress, based on the progress percentage indicated by the API. The return value is an int between 0 and 100.
- The second channel receives any errors that happened while querying the API, as well as the error of the action if it did not complete successfully, or nil if it did.
By default, the method keeps watching until the action has finished processing. If you want to be able to cancel the method or configure a timeout, use the context.Context. Once the method has stopped watching, both returned channels are closed.
WatchProgress uses the WithPollBackoffFunc of the Client to wait until sending the next request.
Deprecated: WatchProgress is deprecated, use [WaitForFunc] instead.
type ActionError ¶ added in v1.2.0
ActionError is the error of an action.
func (ActionError) Error ¶ added in v1.2.0
func (e ActionError) Error() string
type ActionListOpts ¶
type ActionListOpts struct { ListOpts ID []int Status []ActionStatus Sort []string }
ActionListOpts specifies options for listing actions.
type ActionResource ¶
type ActionResource struct { ID int Type ActionResourceType }
ActionResource references other resources from an action.
type ActionResourceType ¶
type ActionResourceType string
ActionResourceType represents an action's resource reference type.
const ( ActionResourceTypeServer ActionResourceType = "server" ActionResourceTypeImage ActionResourceType = "image" ActionResourceTypeISO ActionResourceType = "iso" ActionResourceTypeFloatingIP ActionResourceType = "floating_ip" ActionResourceTypeVolume ActionResourceType = "volume" )
List of action resource reference types.
type ActionStatus ¶
type ActionStatus string
ActionStatus represents an action's status.
const ( ActionStatusRunning ActionStatus = "running" ActionStatusSuccess ActionStatus = "success" ActionStatusError ActionStatus = "error" )
List of action statuses.
type ActionWaiter ¶ added in v1.55.0
type Architecture ¶ added in v1.42.0
type Architecture string
Architecture specifies the architecture of the CPU.
const ( // ArchitectureX86 is the architecture for Intel/AMD x86 CPUs. ArchitectureX86 Architecture = "x86" // ArchitectureARM is the architecture for ARM CPUs. ArchitectureARM Architecture = "arm" )
type BackoffFunc ¶
A BackoffFunc returns the duration to wait before performing the next retry. The retries argument specifies how many retries have already been performed. When called for the first time, retries is 0.
func ConstantBackoff ¶
func ConstantBackoff(d time.Duration) BackoffFunc
ConstantBackoff returns a BackoffFunc which backs off for constant duration d.
func ExponentialBackoff ¶
func ExponentialBackoff(b float64, d time.Duration) BackoffFunc
ExponentialBackoff returns a BackoffFunc which implements an exponential backoff. It uses the formula:
b^retries * d
type Certificate ¶ added in v1.18.0
type Certificate struct { ID int Name string Labels map[string]string Type CertificateType Certificate string Created time.Time NotValidBefore time.Time NotValidAfter time.Time DomainNames []string Fingerprint string Status *CertificateStatus UsedBy []CertificateUsedByRef }
Certificate represents a certificate in the Hetzner Cloud.
func CertificateFromSchema ¶ added in v1.18.0
func CertificateFromSchema(s schema.Certificate) *Certificate
CertificateFromSchema converts a schema.Certificate to a Certificate.
type CertificateClient ¶ added in v1.18.0
type CertificateClient struct { Action *ResourceActionClient // contains filtered or unexported fields }
CertificateClient is a client for the Certificates API.
func (*CertificateClient) All ¶ added in v1.18.0
func (c *CertificateClient) All(ctx context.Context) ([]*Certificate, error)
All returns all Certificates.
func (*CertificateClient) AllWithOpts ¶ added in v1.18.0
func (c *CertificateClient) AllWithOpts(ctx context.Context, opts CertificateListOpts) ([]*Certificate, error)
AllWithOpts returns all Certificates for the given options.
func (*CertificateClient) Create ¶ added in v1.18.0
func (c *CertificateClient) Create(ctx context.Context, opts CertificateCreateOpts) (*Certificate, *Response, error)
Create creates a new uploaded certificate.
Create returns an error for certificates of any other type. Use CreateCertificate to create such certificates.
func (*CertificateClient) CreateCertificate ¶ added in v1.25.0
func (c *CertificateClient) CreateCertificate( ctx context.Context, opts CertificateCreateOpts, ) (CertificateCreateResult, *Response, error)
CreateCertificate creates a new certificate of any type.
func (*CertificateClient) Delete ¶ added in v1.18.0
func (c *CertificateClient) Delete(ctx context.Context, certificate *Certificate) (*Response, error)
Delete deletes a certificate.
func (*CertificateClient) Get ¶ added in v1.18.0
func (c *CertificateClient) Get(ctx context.Context, idOrName string) (*Certificate, *Response, error)
Get retrieves a Certificate by its ID if the input can be parsed as an integer, otherwise it retrieves a Certificate by its name. If the Certificate does not exist, nil is returned.
func (*CertificateClient) GetByID ¶ added in v1.18.0
func (c *CertificateClient) GetByID(ctx context.Context, id int) (*Certificate, *Response, error)
GetByID retrieves a Certificate by its ID. If the Certificate does not exist, nil is returned.
func (*CertificateClient) GetByName ¶ added in v1.18.0
func (c *CertificateClient) GetByName(ctx context.Context, name string) (*Certificate, *Response, error)
GetByName retrieves a Certificate by its name. If the Certificate does not exist, nil is returned.
func (*CertificateClient) List ¶ added in v1.18.0
func (c *CertificateClient) List(ctx context.Context, opts CertificateListOpts) ([]*Certificate, *Response, error)
List returns a list of Certificates for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*CertificateClient) RetryIssuance ¶ added in v1.25.0
func (c *CertificateClient) RetryIssuance(ctx context.Context, certificate *Certificate) (*Action, *Response, error)
RetryIssuance retries the issuance of a failed managed certificate.
func (*CertificateClient) Update ¶ added in v1.18.0
func (c *CertificateClient) Update(ctx context.Context, certificate *Certificate, opts CertificateUpdateOpts) (*Certificate, *Response, error)
Update updates a Certificate.
type CertificateCreateOpts ¶ added in v1.18.0
type CertificateCreateOpts struct { Name string Type CertificateType Certificate string PrivateKey string Labels map[string]string DomainNames []string }
CertificateCreateOpts specifies options for creating a new Certificate.
func (CertificateCreateOpts) Validate ¶ added in v1.18.0
func (o CertificateCreateOpts) Validate() error
Validate checks if options are valid.
type CertificateCreateResult ¶ added in v1.25.0
type CertificateCreateResult struct { Certificate *Certificate Action *Action }
CertificateCreateResult is the result of creating a certificate.
type CertificateListOpts ¶ added in v1.18.0
CertificateListOpts specifies options for listing Certificates.
type CertificateStatus ¶ added in v1.25.0
type CertificateStatus struct { Issuance CertificateStatusType Renewal CertificateStatusType Error *Error }
CertificateStatus indicates the status of a managed certificate.
func (*CertificateStatus) IsFailed ¶ added in v1.25.0
func (st *CertificateStatus) IsFailed() bool
IsFailed returns true if either the Issuance or the Renewal of a certificate failed. In this case the FailureReason field details the nature of the failure.
type CertificateStatusType ¶ added in v1.25.0
type CertificateStatusType string
CertificateStatusType is defines the type for the various managed certificate status.
const ( CertificateStatusTypePending CertificateStatusType = "pending" CertificateStatusTypeFailed CertificateStatusType = "failed" // only in issuance. CertificateStatusTypeCompleted CertificateStatusType = "completed" // only in renewal. CertificateStatusTypeScheduled CertificateStatusType = "scheduled" )
Possible certificate status.
type CertificateType ¶ added in v1.25.0
type CertificateType string
CertificateType is the type of available certificate types.
const ( CertificateTypeUploaded CertificateType = "uploaded" CertificateTypeManaged CertificateType = "managed" )
Available certificate types.
type CertificateUpdateOpts ¶ added in v1.18.0
CertificateUpdateOpts specifies options for updating a Certificate.
type CertificateUsedByRef ¶ added in v1.25.0
type CertificateUsedByRef struct { ID int Type CertificateUsedByRefType }
CertificateUsedByRef points to a resource that uses this certificate.
type CertificateUsedByRefType ¶ added in v1.25.0
type CertificateUsedByRefType string
CertificateUsedByRefType is the type of used by references for certificates.
const (
CertificateUsedByRefTypeLoadBalancer CertificateUsedByRefType = "load_balancer"
)
Possible users of certificates.
type Client ¶
type Client struct { Action ActionClient Certificate CertificateClient Datacenter DatacenterClient Firewall FirewallClient FloatingIP FloatingIPClient Image ImageClient ISO ISOClient LoadBalancer LoadBalancerClient LoadBalancerType LoadBalancerTypeClient Location LocationClient Network NetworkClient Pricing PricingClient Server ServerClient ServerType ServerTypeClient SSHKey SSHKeyClient Volume VolumeClient PlacementGroup PlacementGroupClient RDNS RDNSClient PrimaryIP PrimaryIPClient // contains filtered or unexported fields }
Client is a client for the Hetzner Cloud API.
type ClientOption ¶
type ClientOption func(*Client)
A ClientOption is used to configure a Client.
func WithApplication ¶ added in v1.10.0
func WithApplication(name, version string) ClientOption
WithApplication configures a Client with the given application name and application version. The version may be blank. Programs are encouraged to at least set an application name.
func WithBackoffFunc ¶
func WithBackoffFunc(f BackoffFunc) ClientOption
WithBackoffFunc configures a Client to use the specified backoff function. The backoff function is used for retrying HTTP requests.
func WithDebugWriter ¶ added in v1.15.0
func WithDebugWriter(debugWriter io.Writer) ClientOption
WithDebugWriter configures a Client to print debug information to the given writer. To, for example, print debug information on stderr, set it to os.Stderr.
func WithEndpoint ¶
func WithEndpoint(endpoint string) ClientOption
WithEndpoint configures a Client to use the specified API endpoint.
func WithHTTPClient ¶ added in v1.18.0
func WithHTTPClient(httpClient *http.Client) ClientOption
WithHTTPClient configures a Client to perform HTTP requests with httpClient.
func WithInstrumentation ¶ added in v1.32.0
func WithInstrumentation(registry *prometheus.Registry) ClientOption
WithInstrumentation configures a Client to collect metrics about the performed HTTP requests.
func WithPollBackoffFunc ¶ added in v1.40.0
func WithPollBackoffFunc(f BackoffFunc) ClientOption
WithPollBackoffFunc configures a Client to use the specified backoff function when polling from the API.
func WithPollInterval
deprecated
added in
v1.8.0
func WithPollInterval(pollInterval time.Duration) ClientOption
WithPollInterval configures a Client to use the specified interval when polling from the API.
Deprecated: Setting the poll interval is deprecated, you can now configure WithPollBackoffFunc with a ConstantBackoff to get the same results. To migrate your code, replace your usage like this:
// before hcloud.WithPollInterval(2 * time.Second) // now hcloud.WithPollBackoffFunc(hcloud.ConstantBackoff(2 * time.Second))
func WithToken ¶
func WithToken(token string) ClientOption
WithToken configures a Client to use the specified token for authentication.
type DNSNotFoundError ¶ added in v1.31.1
func (DNSNotFoundError) Error ¶ added in v1.31.1
func (e DNSNotFoundError) Error() string
type Datacenter ¶
type Datacenter struct { ID int Name string Description string Location *Location ServerTypes DatacenterServerTypes }
Datacenter represents a datacenter in the Hetzner Cloud.
func DatacenterFromSchema ¶
func DatacenterFromSchema(s schema.Datacenter) *Datacenter
DatacenterFromSchema converts a schema.Datacenter to a Datacenter.
type DatacenterClient ¶
type DatacenterClient struct {
// contains filtered or unexported fields
}
DatacenterClient is a client for the datacenter API.
func (*DatacenterClient) All ¶
func (c *DatacenterClient) All(ctx context.Context) ([]*Datacenter, error)
All returns all datacenters.
func (*DatacenterClient) AllWithOpts ¶ added in v1.46.0
func (c *DatacenterClient) AllWithOpts(ctx context.Context, opts DatacenterListOpts) ([]*Datacenter, error)
AllWithOpts returns all datacenters for the given options.
func (*DatacenterClient) Get ¶
func (c *DatacenterClient) Get(ctx context.Context, idOrName string) (*Datacenter, *Response, error)
Get retrieves a datacenter by its ID if the input can be parsed as an integer, otherwise it retrieves a datacenter by its name. If the datacenter does not exist, nil is returned.
func (*DatacenterClient) GetByID ¶
func (c *DatacenterClient) GetByID(ctx context.Context, id int) (*Datacenter, *Response, error)
GetByID retrieves a datacenter by its ID. If the datacenter does not exist, nil is returned.
func (*DatacenterClient) GetByName ¶
func (c *DatacenterClient) GetByName(ctx context.Context, name string) (*Datacenter, *Response, error)
GetByName retrieves a datacenter by its name. If the datacenter does not exist, nil is returned.
func (*DatacenterClient) List ¶
func (c *DatacenterClient) List(ctx context.Context, opts DatacenterListOpts) ([]*Datacenter, *Response, error)
List returns a list of datacenters for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
type DatacenterListOpts ¶
DatacenterListOpts specifies options for listing datacenters.
type DatacenterServerTypes ¶
type DatacenterServerTypes struct { Supported []*ServerType Available []*ServerType }
DatacenterServerTypes represents the server types available and supported in a datacenter.
type Deprecatable ¶ added in v1.46.0
type Deprecatable interface { // IsDeprecated returns true if the resource is marked as deprecated. IsDeprecated() bool // This only returns a valid value if [Deprecatable.IsDeprecated] returned true. UnavailableAfter() time.Time // DeprecationAnnounced returns the time that the deprecation of this resource was announced. // This only returns a valid value if [Deprecatable.IsDeprecated] returned true. DeprecationAnnounced() time.Time }
Deprecatable is a shared interface implemented by all Resources that have a defined deprecation workflow.
type DeprecatableResource ¶ added in v1.46.0
type DeprecatableResource struct {
Deprecation *DeprecationInfo
}
DeprecatableResource implements the Deprecatable interface and can be embedded in structs for Resources that can be deprecated.
func (DeprecatableResource) DeprecationAnnounced ¶ added in v1.46.0
func (d DeprecatableResource) DeprecationAnnounced() time.Time
DeprecationAnnounced returns the time that the deprecation of this resource was announced. This only returns a valid value if [Deprecatable.IsDeprecated] returned true.
func (DeprecatableResource) IsDeprecated ¶ added in v1.46.0
func (d DeprecatableResource) IsDeprecated() bool
IsDeprecated returns true if the resource is marked as deprecated.
func (DeprecatableResource) UnavailableAfter ¶ added in v1.46.0
func (d DeprecatableResource) UnavailableAfter() time.Time
UnavailableAfter returns the time that the deprecated resource will be removed from the API. This only returns a valid value if [Deprecatable.IsDeprecated] returned true.
type DeprecationInfo ¶ added in v1.46.0
DeprecationInfo contains the information published when a resource is actually deprecated.
func DeprecationFromSchema ¶ added in v1.46.0
func DeprecationFromSchema(s *schema.DeprecationInfo) *DeprecationInfo
DeprecationFromSchema converts a schema.DeprecationInfo to a DeprecationInfo.
type Error ¶
type Error struct { Code ErrorCode Message string Details interface{} // contains filtered or unexported fields }
Error is an error returned from the API.
func ErrorFromSchema ¶
ErrorFromSchema converts a schema.Error to an Error.
type ErrorCode ¶
type ErrorCode string
ErrorCode represents an error code returned from the API.
const ( ErrorCodeServiceError ErrorCode = "service_error" // Generic service error ErrorCodeRateLimitExceeded ErrorCode = "rate_limit_exceeded" // Rate limit exceeded ErrorCodeUnknownError ErrorCode = "unknown_error" // Unknown error ErrorCodeNotFound ErrorCode = "not_found" // Resource not found ErrorCodeInvalidInput ErrorCode = "invalid_input" // Validation error ErrorCodeForbidden ErrorCode = "forbidden" // Insufficient permissions ErrorCodeJSONError ErrorCode = "json_error" // Invalid JSON in request ErrorCodeLocked ErrorCode = "locked" // Item is locked (Another action is running) ErrorCodeResourceLimitExceeded ErrorCode = "resource_limit_exceeded" // Resource limit exceeded ErrorCodeUniquenessError ErrorCode = "uniqueness_error" // One or more fields must be unique ErrorCodeProtected ErrorCode = "protected" // The actions you are trying is protected ErrorCodeMaintenance ErrorCode = "maintenance" // Cannot perform operation due to maintenance ErrorCodeConflict ErrorCode = "conflict" // The resource has changed during the request, please retry ErrorCodeResourceLocked ErrorCode = "resource_locked" // The resource is locked. The caller should contact support ErrorUnsupportedError ErrorCode = "unsupported_error" // The given resource does not support this ErrorCodeInvalidServerType ErrorCode = "invalid_server_type" // The server type does not fit for the given server or is deprecated ErrorCodeServerNotStopped ErrorCode = "server_not_stopped" // The action requires a stopped server ErrorCodeNetworksOverlap ErrorCode = "networks_overlap" // The network IP range overlaps with one of the server networks ErrorCodePlacementError ErrorCode = "placement_error" // An error during the placement occurred ErrorCodeServerAlreadyAttached ErrorCode = "server_already_attached" // The server is already attached to the resource ErrorCodeIPNotOwned ErrorCode = "ip_not_owned" // The IP you are trying to add as a target is not owned by the Project owner ErrorCodeSourcePortAlreadyUsed ErrorCode = "source_port_already_used" // The source port you are trying to add is already in use ErrorCodeCloudResourceIPNotAllowed ErrorCode = "cloud_resource_ip_not_allowed" // The IP you are trying to add as a target belongs to a Hetzner Cloud resource ErrorCodeServerNotAttachedToNetwork ErrorCode = "server_not_attached_to_network" // The server you are trying to add as a target is not attached to the same network as the Load Balancer ErrorCodeTargetAlreadyDefined ErrorCode = "target_already_defined" // The Load Balancer target you are trying to define is already defined ErrorCodeInvalidLoadBalancerType ErrorCode = "invalid_load_balancer_type" // The Load Balancer type does not fit for the given Load Balancer ErrorCodeLoadBalancerAlreadyAttached ErrorCode = "load_balancer_already_attached" // The Load Balancer is already attached to a network ErrorCodeTargetsWithoutUsePrivateIP ErrorCode = "targets_without_use_private_ip" // The Load Balancer has targets that use the public IP instead of the private IP ErrorCodeLoadBalancerNotAttachedToNetwork ErrorCode = "load_balancer_not_attached_to_network" // The Load Balancer is not attached to a network ErrorCodeIPNotAvailable ErrorCode = "ip_not_available" // The provided Network IP is not available ErrorCodeNoSubnetAvailable ErrorCode = "no_subnet_available" // No Subnet or IP is available for the Load Balancer/Server within the network ErrorCodeVSwitchAlreadyUsed ErrorCode = "vswitch_id_already_used" // The given Robot vSwitch ID is already registered in another network ErrorCodeNoSpaceLeftInLocation ErrorCode = "no_space_left_in_location" // There is no volume space left in the given location ErrorCodeVolumeAlreadyAttached ErrorCode = "volume_already_attached" // Volume is already attached to a server, detach first ErrorCodeFirewallAlreadyApplied ErrorCode = "firewall_already_applied" // Firewall was already applied on resource ErrorCodeFirewallAlreadyRemoved ErrorCode = "firewall_already_removed" // Firewall was already removed from the resource ErrorCodeIncompatibleNetworkType ErrorCode = "incompatible_network_type" // The Network type is incompatible for the given resource ErrorCodeResourceInUse ErrorCode = "resource_in_use" // Firewall must not be in use to be deleted ErrorCodeServerAlreadyAdded ErrorCode = "server_already_added" // Server added more than one time to resource ErrorCodeFirewallResourceNotFound ErrorCode = "firewall_resource_not_found" // Resource a firewall should be attached to / detached from not found ErrorCodeCAARecordDoesNotAllowCA ErrorCode = "caa_record_does_not_allow_ca" // CAA record does not allow certificate authority ErrorCodeCADNSValidationFailed ErrorCode = "ca_dns_validation_failed" // Certificate Authority: DNS validation failed ErrorCodeCATooManyAuthorizationsFailedRecently ErrorCode = "ca_too_many_authorizations_failed_recently" // Certificate Authority: Too many authorizations failed recently ErrorCodeCATooManyCertificatedIssuedForRegisteredDomain ErrorCode = "ca_too_many_certificates_issued_for_registered_domain" // Certificate Authority: Too many certificates issued for registered domain ErrorCodeCATooManyDuplicateCertificates ErrorCode = "ca_too_many_duplicate_certificates" // Certificate Authority: Too many duplicate certificates ErrorCodeCloudNotVerifyDomainDelegatedToZone ErrorCode = "could_not_verify_domain_delegated_to_zone" // Could not verify domain delegated to zone ErrorCodeDNSZoneNotFound ErrorCode = "dns_zone_not_found" // DNS zone not found // Deprecated: The actual value of this error code is limit_reached. The // new error code rate_limit_exceeded for rate limiting was introduced // before Hetzner Cloud launched into the public. To make clients using the // old error code still work as expected, we set the value of the old error // code to that of the new error code. ErrorCodeLimitReached = ErrorCodeRateLimitExceeded )
Error codes returned from the API.
type ErrorDetailsInvalidInput ¶
type ErrorDetailsInvalidInput struct {
Fields []ErrorDetailsInvalidInputField
}
ErrorDetailsInvalidInput contains the details of an 'invalid_input' error.
type ErrorDetailsInvalidInputField ¶
ErrorDetailsInvalidInputField contains the validation errors reported on a field.
type Firewall ¶ added in v1.24.0
type Firewall struct { ID int Name string Labels map[string]string Created time.Time Rules []FirewallRule AppliedTo []FirewallResource }
Firewall represents a Firewall in the Hetzner Cloud.
func FirewallFromSchema ¶ added in v1.24.0
FirewallFromSchema converts a schema.Firewall to a Firewall.
type FirewallClient ¶ added in v1.24.0
type FirewallClient struct { Action *ResourceActionClient // contains filtered or unexported fields }
FirewallClient is a client for the Firewalls API.
func (*FirewallClient) All ¶ added in v1.24.0
func (c *FirewallClient) All(ctx context.Context) ([]*Firewall, error)
All returns all Firewalls.
func (*FirewallClient) AllWithOpts ¶ added in v1.24.0
func (c *FirewallClient) AllWithOpts(ctx context.Context, opts FirewallListOpts) ([]*Firewall, error)
AllWithOpts returns all Firewalls for the given options.
func (*FirewallClient) ApplyResources ¶ added in v1.24.0
func (c *FirewallClient) ApplyResources(ctx context.Context, firewall *Firewall, resources []FirewallResource) ([]*Action, *Response, error)
func (*FirewallClient) Create ¶ added in v1.24.0
func (c *FirewallClient) Create(ctx context.Context, opts FirewallCreateOpts) (FirewallCreateResult, *Response, error)
Create creates a new Firewall.
func (*FirewallClient) Get ¶ added in v1.24.0
Get retrieves a Firewall by its ID if the input can be parsed as an integer, otherwise it retrieves a Firewall by its name. If the Firewall does not exist, nil is returned.
func (*FirewallClient) GetByID ¶ added in v1.24.0
GetByID retrieves a Firewall by its ID. If the Firewall does not exist, nil is returned.
func (*FirewallClient) GetByName ¶ added in v1.24.0
GetByName retrieves a Firewall by its name. If the Firewall does not exist, nil is returned.
func (*FirewallClient) List ¶ added in v1.24.0
func (c *FirewallClient) List(ctx context.Context, opts FirewallListOpts) ([]*Firewall, *Response, error)
List returns a list of Firewalls for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*FirewallClient) RemoveResources ¶ added in v1.24.0
func (c *FirewallClient) RemoveResources(ctx context.Context, firewall *Firewall, resources []FirewallResource) ([]*Action, *Response, error)
func (*FirewallClient) SetRules ¶ added in v1.24.0
func (c *FirewallClient) SetRules(ctx context.Context, firewall *Firewall, opts FirewallSetRulesOpts) ([]*Action, *Response, error)
SetRules sets the rules of a Firewall.
func (*FirewallClient) Update ¶ added in v1.24.0
func (c *FirewallClient) Update(ctx context.Context, firewall *Firewall, opts FirewallUpdateOpts) (*Firewall, *Response, error)
Update updates a Firewall.
type FirewallCreateOpts ¶ added in v1.24.0
type FirewallCreateOpts struct { Name string Labels map[string]string Rules []FirewallRule ApplyTo []FirewallResource }
FirewallCreateOpts specifies options for creating a new Firewall.
func (FirewallCreateOpts) Validate ¶ added in v1.24.0
func (o FirewallCreateOpts) Validate() error
Validate checks if options are valid.
type FirewallCreateResult ¶ added in v1.24.0
FirewallCreateResult is the result of a create Firewall call.
type FirewallListOpts ¶ added in v1.24.0
FirewallListOpts specifies options for listing Firewalls.
type FirewallResource ¶ added in v1.24.0
type FirewallResource struct { Type FirewallResourceType Server *FirewallResourceServer LabelSelector *FirewallResourceLabelSelector }
FirewallResource represents a resource to apply the new Firewall on.
type FirewallResourceLabelSelector ¶ added in v1.26.0
type FirewallResourceLabelSelector struct {
Selector string
}
FirewallResourceLabelSelector represents a LabelSelector to apply a Firewall on.
type FirewallResourceServer ¶ added in v1.24.0
type FirewallResourceServer struct {
ID int
}
FirewallResourceServer represents a Server to apply a Firewall on.
type FirewallResourceType ¶ added in v1.24.0
type FirewallResourceType string
FirewallResourceType specifies the resource to apply a Firewall on.
const ( // FirewallResourceTypeServer specifies a Server. FirewallResourceTypeServer FirewallResourceType = "server" // FirewallResourceTypeLabelSelector specifies a LabelSelector. FirewallResourceTypeLabelSelector FirewallResourceType = "label_selector" )
type FirewallRule ¶ added in v1.24.0
type FirewallRule struct { Direction FirewallRuleDirection SourceIPs []net.IPNet DestinationIPs []net.IPNet Protocol FirewallRuleProtocol Port *string Description *string }
FirewallRule represents a Firewall's rules.
type FirewallRuleDirection ¶ added in v1.24.0
type FirewallRuleDirection string
FirewallRuleDirection specifies the direction of a Firewall rule.
const ( // FirewallRuleDirectionIn specifies a rule for inbound traffic. FirewallRuleDirectionIn FirewallRuleDirection = "in" // FirewallRuleDirectionOut specifies a rule for outbound traffic. FirewallRuleDirectionOut FirewallRuleDirection = "out" )
type FirewallRuleProtocol ¶ added in v1.24.0
type FirewallRuleProtocol string
FirewallRuleProtocol specifies the protocol of a Firewall rule.
const ( // FirewallRuleProtocolTCP specifies a TCP rule. FirewallRuleProtocolTCP FirewallRuleProtocol = "tcp" // FirewallRuleProtocolUDP specifies a UDP rule. FirewallRuleProtocolUDP FirewallRuleProtocol = "udp" // FirewallRuleProtocolICMP specifies an ICMP rule. FirewallRuleProtocolICMP FirewallRuleProtocol = "icmp" // FirewallRuleProtocolESP specifies an esp rule. FirewallRuleProtocolESP FirewallRuleProtocol = "esp" // FirewallRuleProtocolGRE specifies an gre rule. FirewallRuleProtocolGRE FirewallRuleProtocol = "gre" )
type FirewallSetRulesOpts ¶ added in v1.24.0
type FirewallSetRulesOpts struct {
Rules []FirewallRule
}
FirewallSetRulesOpts specifies options for setting rules of a Firewall.
type FirewallStatus ¶ added in v1.24.0
type FirewallStatus string
FirewallStatus specifies a Firewall's status.
const ( // FirewallStatusPending is the status when a Firewall is pending. FirewallStatusPending FirewallStatus = "pending" // FirewallStatusApplied is the status when a Firewall is applied. FirewallStatusApplied FirewallStatus = "applied" )
type FirewallUpdateOpts ¶ added in v1.24.0
FirewallUpdateOpts specifies options for updating a Firewall.
type FloatingIP ¶
type FloatingIP struct { ID int Description string Created time.Time IP net.IP Network *net.IPNet Type FloatingIPType Server *Server DNSPtr map[string]string HomeLocation *Location Blocked bool Protection FloatingIPProtection Labels map[string]string Name string }
FloatingIP represents a Floating IP in the Hetzner Cloud.
func FloatingIPFromSchema ¶
func FloatingIPFromSchema(s schema.FloatingIP) *FloatingIP
FloatingIPFromSchema converts a schema.FloatingIP to a FloatingIP.
func (*FloatingIP) DNSPtrForIP ¶
func (f *FloatingIP) DNSPtrForIP(ip net.IP) string
DNSPtrForIP returns the reverse DNS pointer of the IP address. Deprecated: Use GetDNSPtrForIP instead.
func (*FloatingIP) GetDNSPtrForIP ¶ added in v1.31.1
func (f *FloatingIP) GetDNSPtrForIP(ip net.IP) (string, error)
GetDNSPtrForIP searches for the dns assigned to the given IP address. It returns an error if there is no dns set for the given IP address.
type FloatingIPChangeProtectionOpts ¶ added in v1.6.0
type FloatingIPChangeProtectionOpts struct {
Delete *bool
}
FloatingIPChangeProtectionOpts specifies options for changing the resource protection level of a Floating IP.
type FloatingIPClient ¶
type FloatingIPClient struct { Action *ResourceActionClient // contains filtered or unexported fields }
FloatingIPClient is a client for the Floating IP API.
func (*FloatingIPClient) All ¶
func (c *FloatingIPClient) All(ctx context.Context) ([]*FloatingIP, error)
All returns all Floating IPs.
func (*FloatingIPClient) AllWithOpts ¶ added in v1.9.0
func (c *FloatingIPClient) AllWithOpts(ctx context.Context, opts FloatingIPListOpts) ([]*FloatingIP, error)
AllWithOpts returns all Floating IPs for the given options.
func (*FloatingIPClient) Assign ¶
func (c *FloatingIPClient) Assign(ctx context.Context, floatingIP *FloatingIP, server *Server) (*Action, *Response, error)
Assign assigns a Floating IP to a server.
func (*FloatingIPClient) ChangeDNSPtr ¶
func (c *FloatingIPClient) ChangeDNSPtr(ctx context.Context, floatingIP *FloatingIP, ip string, ptr *string) (*Action, *Response, error)
ChangeDNSPtr changes or resets the reverse DNS pointer for a Floating IP address. Pass a nil ptr to reset the reverse DNS pointer to its default value.
func (*FloatingIPClient) ChangeProtection ¶ added in v1.6.0
func (c *FloatingIPClient) ChangeProtection(ctx context.Context, floatingIP *FloatingIP, opts FloatingIPChangeProtectionOpts) (*Action, *Response, error)
ChangeProtection changes the resource protection level of a Floating IP.
func (*FloatingIPClient) Create ¶
func (c *FloatingIPClient) Create(ctx context.Context, opts FloatingIPCreateOpts) (FloatingIPCreateResult, *Response, error)
Create creates a Floating IP.
func (*FloatingIPClient) Delete ¶
func (c *FloatingIPClient) Delete(ctx context.Context, floatingIP *FloatingIP) (*Response, error)
Delete deletes a Floating IP.
func (*FloatingIPClient) Get ¶ added in v1.16.0
func (c *FloatingIPClient) Get(ctx context.Context, idOrName string) (*FloatingIP, *Response, error)
Get retrieves a Floating IP by its ID if the input can be parsed as an integer, otherwise it retrieves a Floating IP by its name. If the Floating IP does not exist, nil is returned.
func (*FloatingIPClient) GetByID ¶
func (c *FloatingIPClient) GetByID(ctx context.Context, id int) (*FloatingIP, *Response, error)
GetByID retrieves a Floating IP by its ID. If the Floating IP does not exist, nil is returned.
func (*FloatingIPClient) GetByName ¶ added in v1.16.0
func (c *FloatingIPClient) GetByName(ctx context.Context, name string) (*FloatingIP, *Response, error)
GetByName retrieves a Floating IP by its name. If the Floating IP does not exist, nil is returned.
func (*FloatingIPClient) List ¶
func (c *FloatingIPClient) List(ctx context.Context, opts FloatingIPListOpts) ([]*FloatingIP, *Response, error)
List returns a list of Floating IPs for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*FloatingIPClient) Unassign ¶
func (c *FloatingIPClient) Unassign(ctx context.Context, floatingIP *FloatingIP) (*Action, *Response, error)
Unassign unassigns a Floating IP from the currently assigned server.
func (*FloatingIPClient) Update ¶
func (c *FloatingIPClient) Update(ctx context.Context, floatingIP *FloatingIP, opts FloatingIPUpdateOpts) (*FloatingIP, *Response, error)
Update updates a Floating IP.
type FloatingIPCreateOpts ¶
type FloatingIPCreateOpts struct { Type FloatingIPType HomeLocation *Location Server *Server Description *string Name *string Labels map[string]string }
FloatingIPCreateOpts specifies options for creating a Floating IP.
func (FloatingIPCreateOpts) Validate ¶
func (o FloatingIPCreateOpts) Validate() error
Validate checks if options are valid.
type FloatingIPCreateResult ¶
type FloatingIPCreateResult struct { FloatingIP *FloatingIP Action *Action }
FloatingIPCreateResult is the result of creating a Floating IP.
type FloatingIPListOpts ¶
FloatingIPListOpts specifies options for listing Floating IPs.
type FloatingIPPricing ¶
type FloatingIPPricing struct {
Monthly Price
}
FloatingIPPricing provides pricing information for Floating IPs.
type FloatingIPProtection ¶ added in v1.6.0
type FloatingIPProtection struct {
Delete bool
}
FloatingIPProtection represents the protection level of a Floating IP.
type FloatingIPType ¶
type FloatingIPType string
FloatingIPType represents the type of Floating IP.
const ( FloatingIPTypeIPv4 FloatingIPType = "ipv4" FloatingIPTypeIPv6 FloatingIPType = "ipv6" )
Floating IP types.
type FloatingIPTypeLocationPricing ¶ added in v1.30.0
FloatingIPTypeLocationPricing provides pricing information for a Floating IP type at a location.
type FloatingIPTypePricing ¶ added in v1.30.0
type FloatingIPTypePricing struct { Type FloatingIPType Pricings []FloatingIPTypeLocationPricing }
FloatingIPTypePricing provides pricing information for Floating IPs per Type.
type FloatingIPUpdateOpts ¶
FloatingIPUpdateOpts specifies options for updating a Floating IP.
type ISO ¶
type ISO struct { ID int Name string Description string Type ISOType Architecture *Architecture // Deprecated: Use [ISO.Deprecation] instead. Deprecated time.Time DeprecatableResource }
ISO represents an ISO image in the Hetzner Cloud.
func ISOFromSchema ¶
ISOFromSchema converts a schema.ISO to an ISO.
type ISOClient ¶
type ISOClient struct {
// contains filtered or unexported fields
}
ISOClient is a client for the ISO API.
func (*ISOClient) AllWithOpts ¶ added in v1.44.0
AllWithOpts returns all ISOs for the given options.
func (*ISOClient) Get ¶
Get retrieves an ISO by its ID if the input can be parsed as an integer, otherwise it retrieves an ISO by its name.
type ISOListOpts ¶
type ISOListOpts struct { ListOpts Name string Sort []string // Architecture filters the ISOs by Architecture. Note that custom ISOs do not have any architecture set, and you // must use IncludeWildcardArchitecture to include them. Architecture []Architecture // IncludeWildcardArchitecture must be set to also return custom ISOs that have no architecture set, if you are // also setting the Architecture field. // Deprecated: Use [ISOListOpts.IncludeArchitectureWildcard] instead. IncludeWildcardArchitecture bool // IncludeWildcardArchitecture must be set to also return custom ISOs that have no architecture set, if you are // also setting the Architecture field. IncludeArchitectureWildcard bool }
ISOListOpts specifies options for listing isos.
type Image ¶
type Image struct { ID int Name string Type ImageType Status ImageStatus Description string ImageSize float32 DiskSize float32 Created time.Time CreatedFrom *Server BoundTo *Server RapidDeploy bool OSFlavor string OSVersion string Architecture Architecture Protection ImageProtection Deprecated time.Time // The zero value denotes the image is not deprecated. Labels map[string]string Deleted time.Time }
Image represents an Image in the Hetzner Cloud.
func ImageFromSchema ¶
ImageFromSchema converts a schema.Image to an Image.
func (*Image) IsDeprecated ¶ added in v1.7.0
IsDeprecated returns whether the image is deprecated.
type ImageChangeProtectionOpts ¶ added in v1.6.0
type ImageChangeProtectionOpts struct {
Delete *bool
}
ImageChangeProtectionOpts specifies options for changing the resource protection level of an image.
type ImageClient ¶
type ImageClient struct { Action *ResourceActionClient // contains filtered or unexported fields }
ImageClient is a client for the image API.
func (*ImageClient) All ¶
func (c *ImageClient) All(ctx context.Context) ([]*Image, error)
All returns all images.
func (*ImageClient) AllWithOpts ¶ added in v1.9.0
func (c *ImageClient) AllWithOpts(ctx context.Context, opts ImageListOpts) ([]*Image, error)
AllWithOpts returns all images for the given options.
func (*ImageClient) ChangeProtection ¶ added in v1.6.0
func (c *ImageClient) ChangeProtection(ctx context.Context, image *Image, opts ImageChangeProtectionOpts) (*Action, *Response, error)
ChangeProtection changes the resource protection level of an image.
func (*ImageClient) Get
deprecated
Get retrieves an image by its ID if the input can be parsed as an integer, otherwise it retrieves an image by its name. If the image does not exist, nil is returned.
Deprecated: Use ImageClient.GetForArchitecture instead.
func (*ImageClient) GetByID ¶
GetByID retrieves an image by its ID. If the image does not exist, nil is returned.
func (*ImageClient) GetByName
deprecated
GetByName retrieves an image by its name. If the image does not exist, nil is returned.
Deprecated: Use ImageClient.GetByNameAndArchitecture instead.
func (*ImageClient) GetByNameAndArchitecture ¶ added in v1.42.0
func (c *ImageClient) GetByNameAndArchitecture(ctx context.Context, name string, architecture Architecture) (*Image, *Response, error)
GetByNameAndArchitecture retrieves an image by its name and architecture. If the image does not exist, nil is returned. In contrast to ImageClient.Get, this method also returns deprecated images. Depending on your needs you should check for this in your calling method.
func (*ImageClient) GetForArchitecture ¶ added in v1.42.0
func (c *ImageClient) GetForArchitecture(ctx context.Context, idOrName string, architecture Architecture) (*Image, *Response, error)
GetForArchitecture retrieves an image by its ID if the input can be parsed as an integer, otherwise it retrieves an image by its name and architecture. If the image does not exist, nil is returned.
In contrast to ImageClient.Get, this method also returns deprecated images. Depending on your needs you should check for this in your calling method.
func (*ImageClient) List ¶
func (c *ImageClient) List(ctx context.Context, opts ImageListOpts) ([]*Image, *Response, error)
List returns a list of images for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*ImageClient) Update ¶
func (c *ImageClient) Update(ctx context.Context, image *Image, opts ImageUpdateOpts) (*Image, *Response, error)
Update updates an image.
type ImageListOpts ¶
type ImageListOpts struct { ListOpts Type []ImageType BoundTo *Server Name string Sort []string Status []ImageStatus IncludeDeprecated bool Architecture []Architecture }
ImageListOpts specifies options for listing images.
type ImagePricing ¶
type ImagePricing struct {
PerGBMonth Price
}
ImagePricing provides pricing information for imaegs.
type ImageProtection ¶ added in v1.6.0
type ImageProtection struct {
Delete bool
}
ImageProtection represents the protection level of an image.
type ImageStatus ¶
type ImageStatus string
ImageStatus specifies the status of an image.
const ( // ImageStatusCreating is the status when an image is being created. ImageStatusCreating ImageStatus = "creating" // ImageStatusAvailable is the status when an image is available. ImageStatusAvailable ImageStatus = "available" )
type ImageType ¶
type ImageType string
ImageType specifies the type of an image.
const ( // ImageTypeSnapshot represents a snapshot image. ImageTypeSnapshot ImageType = "snapshot" // ImageTypeBackup represents a backup image. ImageTypeBackup ImageType = "backup" // ImageTypeSystem represents a system image. ImageTypeSystem ImageType = "system" // ImageTypeApp represents a one click app image. ImageTypeApp ImageType = "app" )
type ImageUpdateOpts ¶
ImageUpdateOpts specifies options for updating an image.
type InvalidIPError ¶ added in v1.31.1
type InvalidIPError struct {
IP string
}
func (InvalidIPError) Error ¶ added in v1.31.1
func (e InvalidIPError) Error() string
type ListOpts ¶
type ListOpts struct { Page int // Page (starting at 1) PerPage int // Items per page (0 means default) LabelSelector string // Label selector for filtering by labels }
ListOpts specifies options for listing resources.
type LoadBalancer ¶ added in v1.18.0
type LoadBalancer struct { ID int Name string PublicNet LoadBalancerPublicNet PrivateNet []LoadBalancerPrivateNet Location *Location LoadBalancerType *LoadBalancerType Algorithm LoadBalancerAlgorithm Services []LoadBalancerService Targets []LoadBalancerTarget Protection LoadBalancerProtection Labels map[string]string Created time.Time IncludedTraffic uint64 OutgoingTraffic uint64 IngoingTraffic uint64 }
LoadBalancer represents a Load Balancer in the Hetzner Cloud.
func LoadBalancerFromSchema ¶ added in v1.18.0
func LoadBalancerFromSchema(s schema.LoadBalancer) *LoadBalancer
LoadBalancerFromSchema converts a schema.LoadBalancer to a LoadBalancer.
func (*LoadBalancer) GetDNSPtrForIP ¶ added in v1.31.1
func (lb *LoadBalancer) GetDNSPtrForIP(ip net.IP) (string, error)
GetDNSPtrForIP searches for the dns assigned to the given IP address. It returns an error if there is no dns set for the given IP address.
type LoadBalancerAddIPTargetOpts ¶ added in v1.20.0
LoadBalancerAddIPTargetOpts specifies options for adding an IP target to a Load Balancer.
type LoadBalancerAddLabelSelectorTargetOpts ¶ added in v1.20.0
LoadBalancerAddLabelSelectorTargetOpts specifies options for adding a label selector target to a Load Balancer.
type LoadBalancerAddServerTargetOpts ¶ added in v1.18.0
LoadBalancerAddServerTargetOpts specifies options for adding a server target to a Load Balancer.
type LoadBalancerAddServiceOpts ¶ added in v1.18.0
type LoadBalancerAddServiceOpts struct { Protocol LoadBalancerServiceProtocol ListenPort *int DestinationPort *int Proxyprotocol *bool HTTP *LoadBalancerAddServiceOptsHTTP HealthCheck *LoadBalancerAddServiceOptsHealthCheck }
LoadBalancerAddServiceOpts specifies options for adding a service to a Load Balancer.
type LoadBalancerAddServiceOptsHTTP ¶ added in v1.18.0
type LoadBalancerAddServiceOptsHTTP struct { CookieName *string CookieLifetime *time.Duration Certificates []*Certificate RedirectHTTP *bool StickySessions *bool }
LoadBalancerAddServiceOptsHTTP holds options for specifying an HTTP service when adding a service to a Load Balancer.
type LoadBalancerAddServiceOptsHealthCheck ¶ added in v1.18.0
type LoadBalancerAddServiceOptsHealthCheck struct { Protocol LoadBalancerServiceProtocol Port *int Interval *time.Duration Timeout *time.Duration Retries *int HTTP *LoadBalancerAddServiceOptsHealthCheckHTTP }
LoadBalancerAddServiceOptsHealthCheck holds options for specifying a health check when adding a service to a Load Balancer.
type LoadBalancerAddServiceOptsHealthCheckHTTP ¶ added in v1.18.0
type LoadBalancerAddServiceOptsHealthCheckHTTP struct { Domain *string Path *string Response *string StatusCodes []string TLS *bool }
LoadBalancerAddServiceOptsHealthCheckHTTP holds options for specifying an HTTP health check when adding a service to a Load Balancer.
type LoadBalancerAlgorithm ¶ added in v1.18.0
type LoadBalancerAlgorithm struct {
Type LoadBalancerAlgorithmType
}
LoadBalancerAlgorithm configures the algorithm a Load Balancer uses for distributing requests.
type LoadBalancerAlgorithmType ¶ added in v1.18.0
type LoadBalancerAlgorithmType string
LoadBalancerAlgorithmType specifies the algorithm type a Load Balancer uses for distributing requests.
const ( // LoadBalancerAlgorithmTypeRoundRobin is an algorithm which distributes // requests to targets in a round-robin fashion. LoadBalancerAlgorithmTypeRoundRobin LoadBalancerAlgorithmType = "round_robin" // LoadBalancerAlgorithmTypeLeastConnections is an algorithm which distributes // requests to targets with the least number of connections. LoadBalancerAlgorithmTypeLeastConnections LoadBalancerAlgorithmType = "least_connections" )
type LoadBalancerAttachToNetworkOpts ¶ added in v1.18.0
LoadBalancerAttachToNetworkOpts specifies options for attaching a Load Balancer to a network.
type LoadBalancerChangeAlgorithmOpts ¶ added in v1.18.0
type LoadBalancerChangeAlgorithmOpts struct {
Type LoadBalancerAlgorithmType
}
LoadBalancerChangeAlgorithmOpts specifies options for changing the algorithm of a Load Balancer.
type LoadBalancerChangeProtectionOpts ¶ added in v1.18.0
type LoadBalancerChangeProtectionOpts struct {
Delete *bool
}
LoadBalancerChangeProtectionOpts specifies options for changing the resource protection level of a Load Balancer.
type LoadBalancerChangeTypeOpts ¶ added in v1.19.0
type LoadBalancerChangeTypeOpts struct {
LoadBalancerType *LoadBalancerType // new Load Balancer type
}
LoadBalancerChangeTypeOpts specifies options for changing a Load Balancer's type.
type LoadBalancerClient ¶ added in v1.18.0
type LoadBalancerClient struct { Action *ResourceActionClient // contains filtered or unexported fields }
LoadBalancerClient is a client for the Load Balancers API.
func (*LoadBalancerClient) AddIPTarget ¶ added in v1.20.0
func (c *LoadBalancerClient) AddIPTarget(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerAddIPTargetOpts) (*Action, *Response, error)
AddIPTarget adds an IP target to a Load Balancer.
func (*LoadBalancerClient) AddLabelSelectorTarget ¶ added in v1.20.0
func (c *LoadBalancerClient) AddLabelSelectorTarget(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerAddLabelSelectorTargetOpts) (*Action, *Response, error)
AddLabelSelectorTarget adds a label selector target to a Load Balancer.
func (*LoadBalancerClient) AddServerTarget ¶ added in v1.18.0
func (c *LoadBalancerClient) AddServerTarget(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerAddServerTargetOpts) (*Action, *Response, error)
AddServerTarget adds a server target to a Load Balancer.
func (*LoadBalancerClient) AddService ¶ added in v1.18.0
func (c *LoadBalancerClient) AddService(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerAddServiceOpts) (*Action, *Response, error)
AddService adds a service to a Load Balancer.
func (*LoadBalancerClient) All ¶ added in v1.18.0
func (c *LoadBalancerClient) All(ctx context.Context) ([]*LoadBalancer, error)
All returns all Load Balancers.
func (*LoadBalancerClient) AllWithOpts ¶ added in v1.18.0
func (c *LoadBalancerClient) AllWithOpts(ctx context.Context, opts LoadBalancerListOpts) ([]*LoadBalancer, error)
AllWithOpts returns all Load Balancers for the given options.
func (*LoadBalancerClient) AttachToNetwork ¶ added in v1.18.0
func (c *LoadBalancerClient) AttachToNetwork(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerAttachToNetworkOpts) (*Action, *Response, error)
AttachToNetwork attaches a Load Balancer to a network.
func (*LoadBalancerClient) ChangeAlgorithm ¶ added in v1.18.0
func (c *LoadBalancerClient) ChangeAlgorithm(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerChangeAlgorithmOpts) (*Action, *Response, error)
ChangeAlgorithm changes the algorithm of a Load Balancer.
func (*LoadBalancerClient) ChangeDNSPtr ¶ added in v1.31.0
func (c *LoadBalancerClient) ChangeDNSPtr(ctx context.Context, lb *LoadBalancer, ip string, ptr *string) (*Action, *Response, error)
ChangeDNSPtr changes or resets the reverse DNS pointer for a Load Balancer. Pass a nil ptr to reset the reverse DNS pointer to its default value.
func (*LoadBalancerClient) ChangeProtection ¶ added in v1.18.0
func (c *LoadBalancerClient) ChangeProtection(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerChangeProtectionOpts) (*Action, *Response, error)
ChangeProtection changes the resource protection level of a Load Balancer.
func (*LoadBalancerClient) ChangeType ¶ added in v1.19.0
func (c *LoadBalancerClient) ChangeType(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerChangeTypeOpts) (*Action, *Response, error)
ChangeType changes a Load Balancer's type.
func (*LoadBalancerClient) Create ¶ added in v1.18.0
func (c *LoadBalancerClient) Create(ctx context.Context, opts LoadBalancerCreateOpts) (LoadBalancerCreateResult, *Response, error)
Create creates a new Load Balancer.
func (*LoadBalancerClient) Delete ¶ added in v1.18.0
func (c *LoadBalancerClient) Delete(ctx context.Context, loadBalancer *LoadBalancer) (*Response, error)
Delete deletes a Load Balancer.
func (*LoadBalancerClient) DeleteService ¶ added in v1.18.0
func (c *LoadBalancerClient) DeleteService(ctx context.Context, loadBalancer *LoadBalancer, listenPort int) (*Action, *Response, error)
DeleteService deletes a Load Balancer service.
func (*LoadBalancerClient) DetachFromNetwork ¶ added in v1.18.0
func (c *LoadBalancerClient) DetachFromNetwork(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerDetachFromNetworkOpts) (*Action, *Response, error)
DetachFromNetwork detaches a Load Balancer from a network.
func (*LoadBalancerClient) DisablePublicInterface ¶ added in v1.18.0
func (c *LoadBalancerClient) DisablePublicInterface(ctx context.Context, loadBalancer *LoadBalancer) (*Action, *Response, error)
DisablePublicInterface disables the Load Balancer's public network interface.
func (*LoadBalancerClient) EnablePublicInterface ¶ added in v1.18.0
func (c *LoadBalancerClient) EnablePublicInterface(ctx context.Context, loadBalancer *LoadBalancer) (*Action, *Response, error)
EnablePublicInterface enables the Load Balancer's public network interface.
func (*LoadBalancerClient) Get ¶ added in v1.18.0
func (c *LoadBalancerClient) Get(ctx context.Context, idOrName string) (*LoadBalancer, *Response, error)
Get retrieves a Load Balancer by its ID if the input can be parsed as an integer, otherwise it retrieves a Load Balancer by its name. If the Load Balancer does not exist, nil is returned.
func (*LoadBalancerClient) GetByID ¶ added in v1.18.0
func (c *LoadBalancerClient) GetByID(ctx context.Context, id int) (*LoadBalancer, *Response, error)
GetByID retrieves a Load Balancer by its ID. If the Load Balancer does not exist, nil is returned.
func (*LoadBalancerClient) GetByName ¶ added in v1.18.0
func (c *LoadBalancerClient) GetByName(ctx context.Context, name string) (*LoadBalancer, *Response, error)
GetByName retrieves a Load Balancer by its name. If the Load Balancer does not exist, nil is returned.
func (*LoadBalancerClient) GetMetrics ¶ added in v1.23.0
func (c *LoadBalancerClient) GetMetrics( ctx context.Context, lb *LoadBalancer, opts LoadBalancerGetMetricsOpts, ) (*LoadBalancerMetrics, *Response, error)
GetMetrics obtains metrics for a Load Balancer.
func (*LoadBalancerClient) List ¶ added in v1.18.0
func (c *LoadBalancerClient) List(ctx context.Context, opts LoadBalancerListOpts) ([]*LoadBalancer, *Response, error)
List returns a list of Load Balancers for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*LoadBalancerClient) RemoveIPTarget ¶ added in v1.20.0
func (c *LoadBalancerClient) RemoveIPTarget(ctx context.Context, loadBalancer *LoadBalancer, ip net.IP) (*Action, *Response, error)
RemoveIPTarget removes an IP target from a Load Balancer.
func (*LoadBalancerClient) RemoveLabelSelectorTarget ¶ added in v1.20.0
func (c *LoadBalancerClient) RemoveLabelSelectorTarget(ctx context.Context, loadBalancer *LoadBalancer, labelSelector string) (*Action, *Response, error)
RemoveLabelSelectorTarget removes a label selector target from a Load Balancer.
func (*LoadBalancerClient) RemoveServerTarget ¶ added in v1.18.0
func (c *LoadBalancerClient) RemoveServerTarget(ctx context.Context, loadBalancer *LoadBalancer, server *Server) (*Action, *Response, error)
RemoveServerTarget removes a server target from a Load Balancer.
func (*LoadBalancerClient) Update ¶ added in v1.18.0
func (c *LoadBalancerClient) Update(ctx context.Context, loadBalancer *LoadBalancer, opts LoadBalancerUpdateOpts) (*LoadBalancer, *Response, error)
Update updates a Load Balancer.
func (*LoadBalancerClient) UpdateService ¶ added in v1.18.0
func (c *LoadBalancerClient) UpdateService(ctx context.Context, loadBalancer *LoadBalancer, listenPort int, opts LoadBalancerUpdateServiceOpts) (*Action, *Response, error)
UpdateService updates a Load Balancer service.
type LoadBalancerCreateOpts ¶ added in v1.18.0
type LoadBalancerCreateOpts struct { Name string LoadBalancerType *LoadBalancerType Algorithm *LoadBalancerAlgorithm Location *Location NetworkZone NetworkZone Labels map[string]string Targets []LoadBalancerCreateOptsTarget Services []LoadBalancerCreateOptsService PublicInterface *bool Network *Network }
LoadBalancerCreateOpts specifies options for creating a new Load Balancer.
type LoadBalancerCreateOptsService ¶ added in v1.18.0
type LoadBalancerCreateOptsService struct { Protocol LoadBalancerServiceProtocol ListenPort *int DestinationPort *int Proxyprotocol *bool HTTP *LoadBalancerCreateOptsServiceHTTP HealthCheck *LoadBalancerCreateOptsServiceHealthCheck }
LoadBalancerCreateOptsService holds options for specifying a service when creating a new Load Balancer.
type LoadBalancerCreateOptsServiceHTTP ¶ added in v1.18.0
type LoadBalancerCreateOptsServiceHTTP struct { CookieName *string CookieLifetime *time.Duration Certificates []*Certificate RedirectHTTP *bool StickySessions *bool }
LoadBalancerCreateOptsServiceHTTP holds options for specifying an HTTP service when creating a new Load Balancer.
type LoadBalancerCreateOptsServiceHealthCheck ¶ added in v1.18.0
type LoadBalancerCreateOptsServiceHealthCheck struct { Protocol LoadBalancerServiceProtocol Port *int Interval *time.Duration Timeout *time.Duration Retries *int HTTP *LoadBalancerCreateOptsServiceHealthCheckHTTP }
LoadBalancerCreateOptsServiceHealthCheck holds options for specifying a service health check when creating a new Load Balancer.
type LoadBalancerCreateOptsServiceHealthCheckHTTP ¶ added in v1.18.0
type LoadBalancerCreateOptsServiceHealthCheckHTTP struct { Domain *string Path *string Response *string StatusCodes []string TLS *bool }
LoadBalancerCreateOptsServiceHealthCheckHTTP holds options for specifying a service HTTP health check when creating a new Load Balancer.
type LoadBalancerCreateOptsTarget ¶ added in v1.18.0
type LoadBalancerCreateOptsTarget struct { Type LoadBalancerTargetType Server LoadBalancerCreateOptsTargetServer LabelSelector LoadBalancerCreateOptsTargetLabelSelector IP LoadBalancerCreateOptsTargetIP UsePrivateIP *bool }
LoadBalancerCreateOptsTarget holds options for specifying a target when creating a new Load Balancer.
type LoadBalancerCreateOptsTargetIP ¶ added in v1.20.0
type LoadBalancerCreateOptsTargetIP struct {
IP string
}
LoadBalancerCreateOptsTargetIP holds options for specifying an IP target when creating a new Load Balancer.
type LoadBalancerCreateOptsTargetLabelSelector ¶ added in v1.20.0
type LoadBalancerCreateOptsTargetLabelSelector struct {
Selector string
}
LoadBalancerCreateOptsTargetLabelSelector holds options for specifying a label selector target when creating a new Load Balancer.
type LoadBalancerCreateOptsTargetServer ¶ added in v1.18.0
type LoadBalancerCreateOptsTargetServer struct {
Server *Server
}
LoadBalancerCreateOptsTargetServer holds options for specifying a server target when creating a new Load Balancer.
type LoadBalancerCreateResult ¶ added in v1.18.0
type LoadBalancerCreateResult struct { LoadBalancer *LoadBalancer Action *Action }
LoadBalancerCreateResult is the result of a create Load Balancer call.
type LoadBalancerDetachFromNetworkOpts ¶ added in v1.18.0
type LoadBalancerDetachFromNetworkOpts struct {
Network *Network
}
LoadBalancerDetachFromNetworkOpts specifies options for detaching a Load Balancer from a network.
type LoadBalancerGetMetricsOpts ¶ added in v1.23.0
type LoadBalancerGetMetricsOpts struct { Types []LoadBalancerMetricType Start time.Time End time.Time Step int }
LoadBalancerGetMetricsOpts configures the call to get metrics for a Load Balancer.
type LoadBalancerListOpts ¶ added in v1.18.0
LoadBalancerListOpts specifies options for listing Load Balancers.
type LoadBalancerMetricType ¶ added in v1.23.0
type LoadBalancerMetricType string
LoadBalancerMetricType is the type of available metrics for Load Balancers.
const ( LoadBalancerMetricOpenConnections LoadBalancerMetricType = "open_connections" LoadBalancerMetricConnectionsPerSecond LoadBalancerMetricType = "connections_per_second" LoadBalancerMetricRequestsPerSecond LoadBalancerMetricType = "requests_per_second" LoadBalancerMetricBandwidth LoadBalancerMetricType = "bandwidth" )
Available types of Load Balancer metrics. See Hetzner Cloud API documentation for details.
type LoadBalancerMetrics ¶ added in v1.23.0
type LoadBalancerMetrics struct { Start time.Time End time.Time Step float64 TimeSeries map[string][]LoadBalancerMetricsValue }
LoadBalancerMetrics contains the metrics requested for a Load Balancer.
type LoadBalancerMetricsValue ¶ added in v1.23.0
LoadBalancerMetricsValue represents a single value in a time series of metrics.
type LoadBalancerPrivateNet ¶ added in v1.18.0
LoadBalancerPrivateNet represents a Load Balancer's private network.
type LoadBalancerProtection ¶ added in v1.18.0
type LoadBalancerProtection struct {
Delete bool
}
LoadBalancerProtection represents the protection level of a Load Balancer.
type LoadBalancerPublicNet ¶ added in v1.18.0
type LoadBalancerPublicNet struct { Enabled bool IPv4 LoadBalancerPublicNetIPv4 IPv6 LoadBalancerPublicNetIPv6 }
LoadBalancerPublicNet represents a Load Balancer's public network.
type LoadBalancerPublicNetIPv4 ¶ added in v1.18.0
LoadBalancerPublicNetIPv4 represents a Load Balancer's public IPv4 address.
type LoadBalancerPublicNetIPv6 ¶ added in v1.18.0
LoadBalancerPublicNetIPv6 represents a Load Balancer's public IPv6 address.
type LoadBalancerService ¶ added in v1.18.0
type LoadBalancerService struct { Protocol LoadBalancerServiceProtocol ListenPort int DestinationPort int Proxyprotocol bool HTTP LoadBalancerServiceHTTP HealthCheck LoadBalancerServiceHealthCheck }
LoadBalancerService represents a Load Balancer service.
func LoadBalancerServiceFromSchema ¶ added in v1.18.0
func LoadBalancerServiceFromSchema(s schema.LoadBalancerService) LoadBalancerService
LoadBalancerServiceFromSchema converts a schema.LoadBalancerService to a LoadBalancerService.
type LoadBalancerServiceHTTP ¶ added in v1.18.0
type LoadBalancerServiceHTTP struct { CookieName string CookieLifetime time.Duration Certificates []*Certificate RedirectHTTP bool StickySessions bool }
LoadBalancerServiceHTTP stores configuration for a service using the HTTP protocol.
type LoadBalancerServiceHealthCheck ¶ added in v1.18.0
type LoadBalancerServiceHealthCheck struct { Protocol LoadBalancerServiceProtocol Port int Interval time.Duration Timeout time.Duration Retries int HTTP *LoadBalancerServiceHealthCheckHTTP }
LoadBalancerServiceHealthCheck stores configuration for a service health check.
func LoadBalancerServiceHealthCheckFromSchema ¶ added in v1.18.0
func LoadBalancerServiceHealthCheckFromSchema(s *schema.LoadBalancerServiceHealthCheck) LoadBalancerServiceHealthCheck
LoadBalancerServiceHealthCheckFromSchema converts a schema.LoadBalancerServiceHealthCheck to a LoadBalancerServiceHealthCheck.
type LoadBalancerServiceHealthCheckHTTP ¶ added in v1.18.0
type LoadBalancerServiceHealthCheckHTTP struct { Domain string Path string Response string StatusCodes []string TLS bool }
LoadBalancerServiceHealthCheckHTTP stores configuration for a service health check using the HTTP protocol.
type LoadBalancerServiceProtocol ¶ added in v1.18.0
type LoadBalancerServiceProtocol string
LoadBalancerServiceProtocol specifies the protocol of a Load Balancer service.
const ( // LoadBalancerServiceProtocolTCP specifies a TCP service. LoadBalancerServiceProtocolTCP LoadBalancerServiceProtocol = "tcp" // LoadBalancerServiceProtocolHTTP specifies an HTTP service. LoadBalancerServiceProtocolHTTP LoadBalancerServiceProtocol = "http" // LoadBalancerServiceProtocolHTTPS specifies an HTTPS service. LoadBalancerServiceProtocolHTTPS LoadBalancerServiceProtocol = "https" )
type LoadBalancerTarget ¶ added in v1.18.0
type LoadBalancerTarget struct { Type LoadBalancerTargetType Server *LoadBalancerTargetServer LabelSelector *LoadBalancerTargetLabelSelector IP *LoadBalancerTargetIP HealthStatus []LoadBalancerTargetHealthStatus Targets []LoadBalancerTarget UsePrivateIP bool }
LoadBalancerTarget represents a Load Balancer target.
func LoadBalancerTargetFromSchema ¶ added in v1.18.0
func LoadBalancerTargetFromSchema(s schema.LoadBalancerTarget) LoadBalancerTarget
LoadBalancerTargetFromSchema converts a schema.LoadBalancerTarget to a LoadBalancerTarget.
type LoadBalancerTargetHealthStatus ¶ added in v1.18.0
type LoadBalancerTargetHealthStatus struct { ListenPort int Status LoadBalancerTargetHealthStatusStatus }
LoadBalancerTargetHealthStatus describes a target's health for a specific service.
func LoadBalancerTargetHealthStatusFromSchema ¶ added in v1.18.0
func LoadBalancerTargetHealthStatusFromSchema(s schema.LoadBalancerTargetHealthStatus) LoadBalancerTargetHealthStatus
LoadBalancerTargetHealthStatusFromSchema converts a schema.LoadBalancerTarget to a LoadBalancerTarget.
type LoadBalancerTargetHealthStatusStatus ¶ added in v1.18.0
type LoadBalancerTargetHealthStatusStatus string
LoadBalancerTargetHealthStatusStatus describes a target's health status.
const ( // LoadBalancerTargetHealthStatusStatusUnknown denotes that the health status is unknown. LoadBalancerTargetHealthStatusStatusUnknown LoadBalancerTargetHealthStatusStatus = "unknown" // LoadBalancerTargetHealthStatusStatusHealthy denotes a healthy target. LoadBalancerTargetHealthStatusStatusHealthy LoadBalancerTargetHealthStatusStatus = "healthy" // LoadBalancerTargetHealthStatusStatusUnhealthy denotes an unhealthy target. LoadBalancerTargetHealthStatusStatusUnhealthy LoadBalancerTargetHealthStatusStatus = "unhealthy" )
type LoadBalancerTargetIP ¶ added in v1.20.0
type LoadBalancerTargetIP struct {
IP string
}
LoadBalancerTargetIP configures a Load Balancer target pointing to a Hetzner Online IP address.
type LoadBalancerTargetLabelSelector ¶ added in v1.20.0
type LoadBalancerTargetLabelSelector struct {
Selector string
}
LoadBalancerTargetLabelSelector configures a Load Balancer target pointing at the servers matching the selector. This includes the target pointing at nothing, if no servers match the Selector.
type LoadBalancerTargetServer ¶ added in v1.18.0
type LoadBalancerTargetServer struct {
Server *Server
}
LoadBalancerTargetServer configures a Load Balancer target pointing at a specific server.
type LoadBalancerTargetType ¶ added in v1.18.0
type LoadBalancerTargetType string
LoadBalancerTargetType specifies the type of Load Balancer target.
const ( // LoadBalancerTargetTypeServer is a target type which points to a specific // server. LoadBalancerTargetTypeServer LoadBalancerTargetType = "server" // LoadBalancerTargetTypeLabelSelector is a target type which selects the // servers a Load Balancer points to using labels assigned to the servers. LoadBalancerTargetTypeLabelSelector LoadBalancerTargetType = "label_selector" // LoadBalancerTargetTypeIP is a target type which points to an IP. LoadBalancerTargetTypeIP LoadBalancerTargetType = "ip" )
type LoadBalancerType ¶ added in v1.18.0
type LoadBalancerType struct { ID int Name string Description string MaxConnections int MaxServices int MaxTargets int MaxAssignedCertificates int Pricings []LoadBalancerTypeLocationPricing }
LoadBalancerType represents a LoadBalancer type in the Hetzner Cloud.
func LoadBalancerTypeFromSchema ¶ added in v1.18.0
func LoadBalancerTypeFromSchema(s schema.LoadBalancerType) *LoadBalancerType
LoadBalancerTypeFromSchema converts a schema.LoadBalancerType to a LoadBalancerType.
type LoadBalancerTypeClient ¶ added in v1.18.0
type LoadBalancerTypeClient struct {
// contains filtered or unexported fields
}
LoadBalancerTypeClient is a client for the Load Balancer types API.
func (*LoadBalancerTypeClient) All ¶ added in v1.18.0
func (c *LoadBalancerTypeClient) All(ctx context.Context) ([]*LoadBalancerType, error)
All returns all Load Balancer types.
func (*LoadBalancerTypeClient) AllWithOpts ¶ added in v1.46.0
func (c *LoadBalancerTypeClient) AllWithOpts(ctx context.Context, opts LoadBalancerTypeListOpts) ([]*LoadBalancerType, error)
AllWithOpts returns all Load Balancer types for the given options.
func (*LoadBalancerTypeClient) Get ¶ added in v1.18.0
func (c *LoadBalancerTypeClient) Get(ctx context.Context, idOrName string) (*LoadBalancerType, *Response, error)
Get retrieves a Load Balancer type by its ID if the input can be parsed as an integer, otherwise it retrieves a Load Balancer type by its name. If the Load Balancer type does not exist, nil is returned.
func (*LoadBalancerTypeClient) GetByID ¶ added in v1.18.0
func (c *LoadBalancerTypeClient) GetByID(ctx context.Context, id int) (*LoadBalancerType, *Response, error)
GetByID retrieves a Load Balancer type by its ID. If the Load Balancer type does not exist, nil is returned.
func (*LoadBalancerTypeClient) GetByName ¶ added in v1.18.0
func (c *LoadBalancerTypeClient) GetByName(ctx context.Context, name string) (*LoadBalancerType, *Response, error)
GetByName retrieves a Load Balancer type by its name. If the Load Balancer type does not exist, nil is returned.
func (*LoadBalancerTypeClient) List ¶ added in v1.18.0
func (c *LoadBalancerTypeClient) List(ctx context.Context, opts LoadBalancerTypeListOpts) ([]*LoadBalancerType, *Response, error)
List returns a list of Load Balancer types for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
type LoadBalancerTypeListOpts ¶ added in v1.18.0
LoadBalancerTypeListOpts specifies options for listing Load Balancer types.
type LoadBalancerTypeLocationPricing ¶ added in v1.18.0
LoadBalancerTypeLocationPricing provides pricing information for a Load Balancer type at a location.
type LoadBalancerTypePricing ¶ added in v1.18.0
type LoadBalancerTypePricing struct { LoadBalancerType *LoadBalancerType Pricings []LoadBalancerTypeLocationPricing }
LoadBalancerTypePricing provides pricing information for a Load Balancer type.
type LoadBalancerUpdateOpts ¶ added in v1.18.0
LoadBalancerUpdateOpts specifies options for updating a Load Balancer.
type LoadBalancerUpdateServiceOpts ¶ added in v1.18.0
type LoadBalancerUpdateServiceOpts struct { Protocol LoadBalancerServiceProtocol DestinationPort *int Proxyprotocol *bool HTTP *LoadBalancerUpdateServiceOptsHTTP HealthCheck *LoadBalancerUpdateServiceOptsHealthCheck }
LoadBalancerUpdateServiceOpts specifies options for updating a service.
type LoadBalancerUpdateServiceOptsHTTP ¶ added in v1.18.0
type LoadBalancerUpdateServiceOptsHTTP struct { CookieName *string CookieLifetime *time.Duration Certificates []*Certificate RedirectHTTP *bool StickySessions *bool }
LoadBalancerUpdateServiceOptsHTTP specifies options for updating an HTTP(S) service.
type LoadBalancerUpdateServiceOptsHealthCheck ¶ added in v1.18.0
type LoadBalancerUpdateServiceOptsHealthCheck struct { Protocol LoadBalancerServiceProtocol Port *int Interval *time.Duration Timeout *time.Duration Retries *int HTTP *LoadBalancerUpdateServiceOptsHealthCheckHTTP }
LoadBalancerUpdateServiceOptsHealthCheck specifies options for updating a service's health check.
type LoadBalancerUpdateServiceOptsHealthCheckHTTP ¶ added in v1.18.0
type LoadBalancerUpdateServiceOptsHealthCheckHTTP struct { Domain *string Path *string Response *string StatusCodes []string TLS *bool }
LoadBalancerUpdateServiceOptsHealthCheckHTTP specifies options for updating the HTTP-specific settings of a service's health check.
type Location ¶
type Location struct { ID int Name string Description string Country string City string Latitude float64 Longitude float64 NetworkZone NetworkZone }
Location represents a location in the Hetzner Cloud.
func LocationFromSchema ¶
LocationFromSchema converts a schema.Location to a Location.
type LocationClient ¶
type LocationClient struct {
// contains filtered or unexported fields
}
LocationClient is a client for the location API.
func (*LocationClient) All ¶
func (c *LocationClient) All(ctx context.Context) ([]*Location, error)
All returns all locations.
func (*LocationClient) AllWithOpts ¶ added in v1.46.0
func (c *LocationClient) AllWithOpts(ctx context.Context, opts LocationListOpts) ([]*Location, error)
AllWithOpts returns all locations for the given options.
func (*LocationClient) Get ¶
Get retrieves a location by its ID if the input can be parsed as an integer, otherwise it retrieves a location by its name. If the location does not exist, nil is returned.
func (*LocationClient) GetByID ¶
GetByID retrieves a location by its ID. If the location does not exist, nil is returned.
func (*LocationClient) GetByName ¶
GetByName retrieves an location by its name. If the location does not exist, nil is returned.
func (*LocationClient) List ¶
func (c *LocationClient) List(ctx context.Context, opts LocationListOpts) ([]*Location, *Response, error)
List returns a list of locations for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
type LocationListOpts ¶
LocationListOpts specifies options for listing location.
type Meta ¶
type Meta struct { Pagination *Pagination Ratelimit Ratelimit }
Meta represents meta information included in an API response.
type Network ¶ added in v1.14.0
type Network struct { ID int Name string Created time.Time IPRange *net.IPNet Subnets []NetworkSubnet Routes []NetworkRoute Servers []*Server Protection NetworkProtection Labels map[string]string // ExposeRoutesToVSwitch indicates if the routes from this network should be exposed to the vSwitch connection. ExposeRoutesToVSwitch bool }
Network represents a network in the Hetzner Cloud.
func NetworkFromSchema ¶ added in v1.14.0
NetworkFromSchema converts a schema.Network to a Network.
type NetworkAddRouteOpts ¶ added in v1.14.0
type NetworkAddRouteOpts struct {
Route NetworkRoute
}
NetworkAddRouteOpts specifies options for adding a route to a network.
type NetworkAddSubnetOpts ¶ added in v1.14.0
type NetworkAddSubnetOpts struct {
Subnet NetworkSubnet
}
NetworkAddSubnetOpts specifies options for adding a subnet to a network.
type NetworkChangeIPRangeOpts ¶ added in v1.14.0
NetworkChangeIPRangeOpts specifies options for changing the IP range of a network.
type NetworkChangeProtectionOpts ¶ added in v1.14.0
type NetworkChangeProtectionOpts struct {
Delete *bool
}
NetworkChangeProtectionOpts specifies options for changing the resource protection level of a network.
type NetworkClient ¶ added in v1.14.0
type NetworkClient struct { Action *ResourceActionClient // contains filtered or unexported fields }
NetworkClient is a client for the network API.
func (*NetworkClient) AddRoute ¶ added in v1.14.0
func (c *NetworkClient) AddRoute(ctx context.Context, network *Network, opts NetworkAddRouteOpts) (*Action, *Response, error)
AddRoute adds a route to a network.
func (*NetworkClient) AddSubnet ¶ added in v1.14.0
func (c *NetworkClient) AddSubnet(ctx context.Context, network *Network, opts NetworkAddSubnetOpts) (*Action, *Response, error)
AddSubnet adds a subnet to a network.
func (*NetworkClient) All ¶ added in v1.14.0
func (c *NetworkClient) All(ctx context.Context) ([]*Network, error)
All returns all networks.
func (*NetworkClient) AllWithOpts ¶ added in v1.14.0
func (c *NetworkClient) AllWithOpts(ctx context.Context, opts NetworkListOpts) ([]*Network, error)
AllWithOpts returns all networks for the given options.
func (*NetworkClient) ChangeIPRange ¶ added in v1.14.0
func (c *NetworkClient) ChangeIPRange(ctx context.Context, network *Network, opts NetworkChangeIPRangeOpts) (*Action, *Response, error)
ChangeIPRange changes the IP range of a network.
func (*NetworkClient) ChangeProtection ¶ added in v1.14.0
func (c *NetworkClient) ChangeProtection(ctx context.Context, network *Network, opts NetworkChangeProtectionOpts) (*Action, *Response, error)
ChangeProtection changes the resource protection level of a network.
func (*NetworkClient) Create ¶ added in v1.14.0
func (c *NetworkClient) Create(ctx context.Context, opts NetworkCreateOpts) (*Network, *Response, error)
Create creates a new network.
func (*NetworkClient) DeleteRoute ¶ added in v1.14.0
func (c *NetworkClient) DeleteRoute(ctx context.Context, network *Network, opts NetworkDeleteRouteOpts) (*Action, *Response, error)
DeleteRoute deletes a route from a network.
func (*NetworkClient) DeleteSubnet ¶ added in v1.14.0
func (c *NetworkClient) DeleteSubnet(ctx context.Context, network *Network, opts NetworkDeleteSubnetOpts) (*Action, *Response, error)
DeleteSubnet deletes a subnet from a network.
func (*NetworkClient) Get ¶ added in v1.14.0
Get retrieves a network by its ID if the input can be parsed as an integer, otherwise it retrieves a network by its name. If the network does not exist, nil is returned.
func (*NetworkClient) GetByID ¶ added in v1.14.0
GetByID retrieves a network by its ID. If the network does not exist, nil is returned.
func (*NetworkClient) GetByName ¶ added in v1.14.0
GetByName retrieves a network by its name. If the network does not exist, nil is returned.
func (*NetworkClient) List ¶ added in v1.14.0
func (c *NetworkClient) List(ctx context.Context, opts NetworkListOpts) ([]*Network, *Response, error)
List returns a list of networks for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*NetworkClient) Update ¶ added in v1.14.0
func (c *NetworkClient) Update(ctx context.Context, network *Network, opts NetworkUpdateOpts) (*Network, *Response, error)
Update updates a network.
type NetworkCreateOpts ¶ added in v1.14.0
type NetworkCreateOpts struct { Name string IPRange *net.IPNet Subnets []NetworkSubnet Routes []NetworkRoute Labels map[string]string // ExposeRoutesToVSwitch indicates if the routes from this network should be exposed to the vSwitch connection. // The exposing only takes effect if a vSwitch connection is active. ExposeRoutesToVSwitch bool }
NetworkCreateOpts specifies options for creating a new network.
func (NetworkCreateOpts) Validate ¶ added in v1.14.0
func (o NetworkCreateOpts) Validate() error
Validate checks if options are valid.
type NetworkDeleteRouteOpts ¶ added in v1.14.0
type NetworkDeleteRouteOpts struct {
Route NetworkRoute
}
NetworkDeleteRouteOpts specifies options for deleting a route from a network.
type NetworkDeleteSubnetOpts ¶ added in v1.14.0
type NetworkDeleteSubnetOpts struct {
Subnet NetworkSubnet
}
NetworkDeleteSubnetOpts specifies options for deleting a subnet from a network.
type NetworkListOpts ¶ added in v1.14.0
NetworkListOpts specifies options for listing networks.
type NetworkProtection ¶ added in v1.14.0
type NetworkProtection struct {
Delete bool
}
NetworkProtection represents the protection level of a network.
type NetworkRoute ¶ added in v1.14.0
NetworkRoute represents a route of a network.
func NetworkRouteFromSchema ¶ added in v1.14.0
func NetworkRouteFromSchema(s schema.NetworkRoute) NetworkRoute
NetworkRouteFromSchema converts a schema.NetworkRoute to a NetworkRoute.
type NetworkSubnet ¶ added in v1.14.0
type NetworkSubnet struct { Type NetworkSubnetType IPRange *net.IPNet NetworkZone NetworkZone Gateway net.IP VSwitchID int }
NetworkSubnet represents a subnet of a network in the Hetzner Cloud.
func NetworkSubnetFromSchema ¶ added in v1.14.0
func NetworkSubnetFromSchema(s schema.NetworkSubnet) NetworkSubnet
NetworkSubnetFromSchema converts a schema.NetworkSubnet to a NetworkSubnet.
type NetworkSubnetType ¶ added in v1.14.0
type NetworkSubnetType string
NetworkSubnetType specifies a type of a subnet.
const ( NetworkSubnetTypeCloud NetworkSubnetType = "cloud" NetworkSubnetTypeServer NetworkSubnetType = "server" NetworkSubnetTypeVSwitch NetworkSubnetType = "vswitch" )
List of available network subnet types.
type NetworkUpdateOpts ¶ added in v1.14.0
type NetworkUpdateOpts struct { Name string Labels map[string]string // ExposeRoutesToVSwitch indicates if the routes from this network should be exposed to the vSwitch connection. // The exposing only takes effect if a vSwitch connection is active. ExposeRoutesToVSwitch *bool }
NetworkUpdateOpts specifies options for updating a network.
type NetworkZone ¶ added in v1.14.0
type NetworkZone string
NetworkZone specifies a network zone.
const ( NetworkZoneEUCentral NetworkZone = "eu-central" NetworkZoneUSEast NetworkZone = "us-east" NetworkZoneUSWest NetworkZone = "us-west" )
List of available Network Zones.
type Pagination ¶
type Pagination struct { Page int PerPage int PreviousPage int NextPage int LastPage int TotalEntries int }
Pagination represents pagination meta information.
func PaginationFromSchema ¶
func PaginationFromSchema(s schema.MetaPagination) Pagination
PaginationFromSchema converts a schema.MetaPagination to a Pagination.
type PlacementGroup ¶ added in v1.30.0
type PlacementGroup struct { ID int Name string Labels map[string]string Created time.Time Servers []int Type PlacementGroupType }
PlacementGroup represents a Placement Group in the Hetzner Cloud.
func PlacementGroupFromSchema ¶ added in v1.30.0
func PlacementGroupFromSchema(s schema.PlacementGroup) *PlacementGroup
PlacementGroupFromSchema converts a schema.PlacementGroup to a PlacementGroup.
type PlacementGroupClient ¶ added in v1.30.0
type PlacementGroupClient struct {
// contains filtered or unexported fields
}
PlacementGroupClient is a client for the Placement Groups API.
func (*PlacementGroupClient) All ¶ added in v1.30.0
func (c *PlacementGroupClient) All(ctx context.Context) ([]*PlacementGroup, error)
All returns all PlacementGroups.
func (*PlacementGroupClient) AllWithOpts ¶ added in v1.30.0
func (c *PlacementGroupClient) AllWithOpts(ctx context.Context, opts PlacementGroupListOpts) ([]*PlacementGroup, error)
AllWithOpts returns all PlacementGroups for the given options.
func (*PlacementGroupClient) Create ¶ added in v1.30.0
func (c *PlacementGroupClient) Create(ctx context.Context, opts PlacementGroupCreateOpts) (PlacementGroupCreateResult, *Response, error)
Create creates a new PlacementGroup.
func (*PlacementGroupClient) Delete ¶ added in v1.30.0
func (c *PlacementGroupClient) Delete(ctx context.Context, placementGroup *PlacementGroup) (*Response, error)
Delete deletes a PlacementGroup.
func (*PlacementGroupClient) Get ¶ added in v1.30.0
func (c *PlacementGroupClient) Get(ctx context.Context, idOrName string) (*PlacementGroup, *Response, error)
Get retrieves a PlacementGroup by its ID if the input can be parsed as an integer, otherwise it retrieves a PlacementGroup by its name. If the PlacementGroup does not exist, nil is returned.
func (*PlacementGroupClient) GetByID ¶ added in v1.30.0
func (c *PlacementGroupClient) GetByID(ctx context.Context, id int) (*PlacementGroup, *Response, error)
GetByID retrieves a PlacementGroup by its ID. If the PlacementGroup does not exist, nil is returned.
func (*PlacementGroupClient) GetByName ¶ added in v1.30.0
func (c *PlacementGroupClient) GetByName(ctx context.Context, name string) (*PlacementGroup, *Response, error)
GetByName retrieves a PlacementGroup by its name. If the PlacementGroup does not exist, nil is returned.
func (*PlacementGroupClient) List ¶ added in v1.30.0
func (c *PlacementGroupClient) List(ctx context.Context, opts PlacementGroupListOpts) ([]*PlacementGroup, *Response, error)
List returns a list of PlacementGroups for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*PlacementGroupClient) Update ¶ added in v1.30.0
func (c *PlacementGroupClient) Update(ctx context.Context, placementGroup *PlacementGroup, opts PlacementGroupUpdateOpts) (*PlacementGroup, *Response, error)
Update updates a PlacementGroup.
type PlacementGroupCreateOpts ¶ added in v1.30.0
type PlacementGroupCreateOpts struct { Name string Labels map[string]string Type PlacementGroupType }
PlacementGroupCreateOpts specifies options for creating a new PlacementGroup.
func (PlacementGroupCreateOpts) Validate ¶ added in v1.30.0
func (o PlacementGroupCreateOpts) Validate() error
Validate checks if options are valid.
type PlacementGroupCreateResult ¶ added in v1.30.0
type PlacementGroupCreateResult struct { PlacementGroup *PlacementGroup Action *Action }
PlacementGroupCreateResult is the result of a create PlacementGroup call.
type PlacementGroupListOpts ¶ added in v1.30.0
type PlacementGroupListOpts struct { ListOpts Name string Type PlacementGroupType Sort []string }
PlacementGroupListOpts specifies options for listing PlacementGroup.
type PlacementGroupType ¶ added in v1.30.0
type PlacementGroupType string
PlacementGroupType specifies the type of a Placement Group.
const ( // PlacementGroupTypeSpread spreads all servers in the group on different vhosts. PlacementGroupTypeSpread PlacementGroupType = "spread" )
type PlacementGroupUpdateOpts ¶ added in v1.30.0
PlacementGroupUpdateOpts specifies options for updating a PlacementGroup.
type Price ¶
Price represents a price. Net amount, gross amount, as well as VAT rate are specified as strings and it is the user's responsibility to convert them to appropriate types for calculations.
type Pricing ¶
type Pricing struct { Image ImagePricing FloatingIP FloatingIPPricing FloatingIPs []FloatingIPTypePricing PrimaryIPs []PrimaryIPPricing Traffic TrafficPricing ServerBackup ServerBackupPricing ServerTypes []ServerTypePricing LoadBalancerTypes []LoadBalancerTypePricing Volume VolumePricing }
Pricing specifies pricing information for various resources.
func PricingFromSchema ¶
PricingFromSchema converts a schema.Pricing to a Pricing.
type PricingClient ¶
type PricingClient struct {
// contains filtered or unexported fields
}
PricingClient is a client for the pricing API.
type PrimaryIP ¶ added in v1.35.0
type PrimaryIP struct { ID int IP net.IP Network *net.IPNet Labels map[string]string Name string Type PrimaryIPType Protection PrimaryIPProtection DNSPtr map[string]string AssigneeID int AssigneeType string AutoDelete bool Blocked bool Created time.Time Datacenter *Datacenter }
PrimaryIP defines a Primary IP.
func PrimaryIPFromSchema ¶ added in v1.35.0
PrimaryIPFromSchema converts a schema.PrimaryIP to a PrimaryIP.
type PrimaryIPAssignOpts ¶ added in v1.35.0
type PrimaryIPAssignOpts struct { ID int AssigneeID int `json:"assignee_id"` AssigneeType string `json:"assignee_type"` }
PrimaryIPAssignOpts defines the request to assign a Primary IP to an assignee (usually a server).
type PrimaryIPAssignResult ¶ added in v1.35.0
PrimaryIPAssignResult defines the response when assigning a Primary IP to a assignee.
type PrimaryIPChangeDNSPtrOpts ¶ added in v1.35.0
type PrimaryIPChangeDNSPtrOpts struct { ID int DNSPtr string `json:"dns_ptr"` IP string `json:"ip"` }
PrimaryIPChangeDNSPtrOpts defines the request to change a DNS PTR entry from a Primary IP.
type PrimaryIPChangeDNSPtrResult ¶ added in v1.35.0
PrimaryIPChangeDNSPtrResult defines the response when assigning a Primary IP to a assignee.
type PrimaryIPChangeProtectionOpts ¶ added in v1.35.0
PrimaryIPChangeProtectionOpts defines the request to change protection configuration of a Primary IP.
type PrimaryIPChangeProtectionResult ¶ added in v1.35.0
PrimaryIPChangeProtectionResult defines the response when changing a protection of a PrimaryIP.
type PrimaryIPClient ¶ added in v1.35.0
type PrimaryIPClient struct { Action *ResourceActionClient // contains filtered or unexported fields }
PrimaryIPClient is a client for the Primary IP API.
func (*PrimaryIPClient) All ¶ added in v1.35.0
func (c *PrimaryIPClient) All(ctx context.Context) ([]*PrimaryIP, error)
All returns all Primary IPs.
func (*PrimaryIPClient) AllWithOpts ¶ added in v1.37.0
func (c *PrimaryIPClient) AllWithOpts(ctx context.Context, opts PrimaryIPListOpts) ([]*PrimaryIP, error)
AllWithOpts returns all Primary IPs for the given options.
func (*PrimaryIPClient) Assign ¶ added in v1.35.0
func (c *PrimaryIPClient) Assign(ctx context.Context, opts PrimaryIPAssignOpts) (*Action, *Response, error)
Assign a Primary IP to a resource.
func (*PrimaryIPClient) ChangeDNSPtr ¶ added in v1.35.0
func (c *PrimaryIPClient) ChangeDNSPtr(ctx context.Context, opts PrimaryIPChangeDNSPtrOpts) (*Action, *Response, error)
ChangeDNSPtr Change the reverse DNS from a Primary IP.
func (*PrimaryIPClient) ChangeProtection ¶ added in v1.35.0
func (c *PrimaryIPClient) ChangeProtection(ctx context.Context, opts PrimaryIPChangeProtectionOpts) (*Action, *Response, error)
ChangeProtection Changes the protection configuration of a Primary IP.
func (*PrimaryIPClient) Create ¶ added in v1.35.0
func (c *PrimaryIPClient) Create(ctx context.Context, reqBody PrimaryIPCreateOpts) (*PrimaryIPCreateResult, *Response, error)
Create creates a Primary IP.
func (*PrimaryIPClient) Get ¶ added in v1.35.0
Get retrieves a Primary IP by its ID if the input can be parsed as an integer, otherwise it retrieves a Primary IP by its name. If the Primary IP does not exist, nil is returned.
func (*PrimaryIPClient) GetByID ¶ added in v1.35.0
GetByID retrieves a Primary IP by its ID. If the Primary IP does not exist, nil is returned.
func (*PrimaryIPClient) GetByIP ¶ added in v1.35.0
GetByIP retrieves a Primary IP by its IP Address. If the Primary IP does not exist, nil is returned.
func (*PrimaryIPClient) GetByName ¶ added in v1.35.0
func (c *PrimaryIPClient) GetByName(ctx context.Context, name string) (*PrimaryIP, *Response, error)
GetByName retrieves a Primary IP by its name. If the Primary IP does not exist, nil is returned.
func (*PrimaryIPClient) List ¶ added in v1.35.0
func (c *PrimaryIPClient) List(ctx context.Context, opts PrimaryIPListOpts) ([]*PrimaryIP, *Response, error)
List returns a list of Primary IPs for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*PrimaryIPClient) Update ¶ added in v1.35.0
func (c *PrimaryIPClient) Update(ctx context.Context, primaryIP *PrimaryIP, reqBody PrimaryIPUpdateOpts) (*PrimaryIP, *Response, error)
Update updates a Primary IP.
type PrimaryIPCreateOpts ¶ added in v1.35.0
type PrimaryIPCreateOpts struct { AssigneeID *int `json:"assignee_id,omitempty"` AssigneeType string `json:"assignee_type"` AutoDelete *bool `json:"auto_delete,omitempty"` Datacenter string `json:"datacenter,omitempty"` Labels map[string]string `json:"labels,omitempty"` Name string `json:"name"` Type PrimaryIPType `json:"type"` }
PrimaryIPCreateOpts defines the request to create a Primary IP.
type PrimaryIPCreateResult ¶ added in v1.35.0
PrimaryIPCreateResult defines the response when creating a Primary IP.
type PrimaryIPDNSPTR ¶ added in v1.35.0
PrimaryIPDNSPTR contains reverse DNS information for a IPv4 or IPv6 Primary IP.
type PrimaryIPListOpts ¶ added in v1.35.0
PrimaryIPListOpts specifies options for listing Primary IPs.
type PrimaryIPPrice ¶ added in v1.35.0
PrimaryIPPrice represents a price. Net amount and gross amount are specified as strings and it is the user's responsibility to convert them to appropriate types for calculations.
type PrimaryIPPricing ¶ added in v1.35.0
type PrimaryIPPricing struct { Type string Pricings []PrimaryIPTypePricing }
PrimaryIPTypePricing provides pricing information for PrimaryIPs.
type PrimaryIPProtection ¶ added in v1.35.0
type PrimaryIPProtection struct {
Delete bool
}
PrimaryIPProtection represents the protection level of a Primary IP.
type PrimaryIPType ¶ added in v1.35.0
type PrimaryIPType string
PrimaryIPType represents the type of Primary IP.
const ( PrimaryIPTypeIPv4 PrimaryIPType = "ipv4" PrimaryIPTypeIPv6 PrimaryIPType = "ipv6" )
PrimaryIPType Primary IP types.
type PrimaryIPTypePricing ¶ added in v1.35.0
type PrimaryIPTypePricing struct { Datacenter string // Deprecated: the API does not return pricing for the individual DCs anymore Location string Hourly PrimaryIPPrice Monthly PrimaryIPPrice }
PrimaryIPTypePricing defines the schema of pricing information for a primary IP type at a datacenter.
type PrimaryIPUpdateOpts ¶ added in v1.35.0
type PrimaryIPUpdateOpts struct { AutoDelete *bool `json:"auto_delete,omitempty"` Labels *map[string]string `json:"labels,omitempty"` Name string `json:"name,omitempty"` }
PrimaryIPUpdateOpts defines the request to update a Primary IP.
type RDNSClient ¶ added in v1.31.1
type RDNSClient struct {
// contains filtered or unexported fields
}
RDNSClient simplifies the handling objects which support reverse dns entries.
func (*RDNSClient) ChangeDNSPtr ¶ added in v1.31.1
func (c *RDNSClient) ChangeDNSPtr(ctx context.Context, rdns RDNSSupporter, ip net.IP, ptr *string) (*Action, *Response, error)
ChangeDNSPtr changes or resets the reverse DNS pointer for a IP address. Pass a nil ptr to reset the reverse DNS pointer to its default value.
type RDNSSupporter ¶ added in v1.31.1
type RDNSSupporter interface { // GetDNSPtrForIP searches for the dns assigned to the given IP address. // It returns an error if there is no dns set for the given IP address. GetDNSPtrForIP(ip net.IP) (string, error) // contains filtered or unexported methods }
RDNSSupporter defines functions to change and lookup reverse dns entries. currently implemented by Server, FloatingIP, PrimaryIP and LoadBalancer.
type ResourceActionClient ¶ added in v1.50.0
type ResourceActionClient struct {
// contains filtered or unexported fields
}
ResourceActionClient is a client for the actions API exposed by the resource.
func (*ResourceActionClient) All ¶ added in v1.50.0
func (c *ResourceActionClient) All(ctx context.Context, opts ActionListOpts) ([]*Action, error)
All returns all actions for the given options.
func (*ResourceActionClient) GetByID ¶ added in v1.50.0
GetByID retrieves an action by its ID. If the action does not exist, nil is returned.
func (*ResourceActionClient) List ¶ added in v1.50.0
func (c *ResourceActionClient) List(ctx context.Context, opts ActionListOpts) ([]*Action, *Response, error)
List returns a list of actions for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
type SSHKey ¶
type SSHKey struct { ID int Name string Fingerprint string PublicKey string Labels map[string]string Created time.Time }
SSHKey represents a SSH key in the Hetzner Cloud.
func SSHKeyFromSchema ¶
SSHKeyFromSchema converts a schema.SSHKey to a SSHKey.
type SSHKeyClient ¶
type SSHKeyClient struct {
// contains filtered or unexported fields
}
SSHKeyClient is a client for the SSH keys API.
func (*SSHKeyClient) All ¶
func (c *SSHKeyClient) All(ctx context.Context) ([]*SSHKey, error)
All returns all SSH keys.
func (*SSHKeyClient) AllWithOpts ¶ added in v1.9.0
func (c *SSHKeyClient) AllWithOpts(ctx context.Context, opts SSHKeyListOpts) ([]*SSHKey, error)
AllWithOpts returns all SSH keys with the given options.
func (*SSHKeyClient) Create ¶
func (c *SSHKeyClient) Create(ctx context.Context, opts SSHKeyCreateOpts) (*SSHKey, *Response, error)
Create creates a new SSH key with the given options.
func (*SSHKeyClient) Get ¶
Get retrieves a SSH key by its ID if the input can be parsed as an integer, otherwise it retrieves a SSH key by its name. If the SSH key does not exist, nil is returned.
func (*SSHKeyClient) GetByFingerprint ¶ added in v1.5.0
func (c *SSHKeyClient) GetByFingerprint(ctx context.Context, fingerprint string) (*SSHKey, *Response, error)
GetByFingerprint retreives a SSH key by its fingerprint. If the SSH key does not exist, nil is returned.
func (*SSHKeyClient) GetByID ¶
GetByID retrieves a SSH key by its ID. If the SSH key does not exist, nil is returned.
func (*SSHKeyClient) GetByName ¶
GetByName retrieves a SSH key by its name. If the SSH key does not exist, nil is returned.
func (*SSHKeyClient) List ¶
func (c *SSHKeyClient) List(ctx context.Context, opts SSHKeyListOpts) ([]*SSHKey, *Response, error)
List returns a list of SSH keys for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*SSHKeyClient) Update ¶
func (c *SSHKeyClient) Update(ctx context.Context, sshKey *SSHKey, opts SSHKeyUpdateOpts) (*SSHKey, *Response, error)
Update updates a SSH key.
type SSHKeyCreateOpts ¶
SSHKeyCreateOpts specifies parameters for creating a SSH key.
func (SSHKeyCreateOpts) Validate ¶
func (o SSHKeyCreateOpts) Validate() error
Validate checks if options are valid.
type SSHKeyListOpts ¶
SSHKeyListOpts specifies options for listing SSH keys.
type SSHKeyUpdateOpts ¶
SSHKeyUpdateOpts specifies options for updating a SSH key.
type Server ¶
type Server struct { ID int Name string Status ServerStatus Created time.Time PublicNet ServerPublicNet PrivateNet []ServerPrivateNet ServerType *ServerType Datacenter *Datacenter IncludedTraffic uint64 OutgoingTraffic uint64 IngoingTraffic uint64 BackupWindow string RescueEnabled bool Locked bool ISO *ISO Image *Image Protection ServerProtection Labels map[string]string Volumes []*Volume PrimaryDiskSize int PlacementGroup *PlacementGroup }
Server represents a server in the Hetzner Cloud.
func ServerFromSchema ¶
ServerFromSchema converts a schema.Server to a Server.
type ServerAttachToNetworkOpts ¶ added in v1.14.0
ServerAttachToNetworkOpts specifies options for attaching a server to a network.
type ServerBackupPricing ¶
type ServerBackupPricing struct {
Percentage string
}
ServerBackupPricing provides pricing information for server backups.
type ServerChangeAliasIPsOpts ¶ added in v1.14.0
ServerChangeAliasIPsOpts specifies options for changing the alias ips of an already attached network.
type ServerChangeProtectionOpts ¶ added in v1.6.0
ServerChangeProtectionOpts specifies options for changing the resource protection level of a server.
type ServerChangeTypeOpts ¶
type ServerChangeTypeOpts struct { ServerType *ServerType // new server type UpgradeDisk bool // whether disk should be upgraded }
ServerChangeTypeOpts specifies options for changing a server's type.
type ServerClient ¶
type ServerClient struct { Action *ResourceActionClient // contains filtered or unexported fields }
ServerClient is a client for the servers API.
func (*ServerClient) AddToPlacementGroup ¶ added in v1.30.0
func (c *ServerClient) AddToPlacementGroup(ctx context.Context, server *Server, placementGroup *PlacementGroup) (*Action, *Response, error)
func (*ServerClient) All ¶
func (c *ServerClient) All(ctx context.Context) ([]*Server, error)
All returns all servers.
func (*ServerClient) AllWithOpts ¶ added in v1.9.0
func (c *ServerClient) AllWithOpts(ctx context.Context, opts ServerListOpts) ([]*Server, error)
AllWithOpts returns all servers for the given options.
func (*ServerClient) AttachISO ¶
func (c *ServerClient) AttachISO(ctx context.Context, server *Server, iso *ISO) (*Action, *Response, error)
AttachISO attaches an ISO to a server.
func (*ServerClient) AttachToNetwork ¶ added in v1.14.0
func (c *ServerClient) AttachToNetwork(ctx context.Context, server *Server, opts ServerAttachToNetworkOpts) (*Action, *Response, error)
AttachToNetwork attaches a server to a network.
func (*ServerClient) ChangeAliasIPs ¶ added in v1.14.0
func (c *ServerClient) ChangeAliasIPs(ctx context.Context, server *Server, opts ServerChangeAliasIPsOpts) (*Action, *Response, error)
ChangeAliasIPs changes a server's alias IPs in a network.
func (*ServerClient) ChangeDNSPtr ¶
func (c *ServerClient) ChangeDNSPtr(ctx context.Context, server *Server, ip string, ptr *string) (*Action, *Response, error)
ChangeDNSPtr changes or resets the reverse DNS pointer for a server IP address. Pass a nil ptr to reset the reverse DNS pointer to its default value.
func (*ServerClient) ChangeProtection ¶ added in v1.6.0
func (c *ServerClient) ChangeProtection(ctx context.Context, server *Server, opts ServerChangeProtectionOpts) (*Action, *Response, error)
ChangeProtection changes the resource protection level of a server.
func (*ServerClient) ChangeType ¶
func (c *ServerClient) ChangeType(ctx context.Context, server *Server, opts ServerChangeTypeOpts) (*Action, *Response, error)
ChangeType changes a server's type.
func (*ServerClient) Create ¶
func (c *ServerClient) Create(ctx context.Context, opts ServerCreateOpts) (ServerCreateResult, *Response, error)
Create creates a new server.
func (*ServerClient) CreateImage ¶
func (c *ServerClient) CreateImage(ctx context.Context, server *Server, opts *ServerCreateImageOpts) (ServerCreateImageResult, *Response, error)
CreateImage creates an image from a server.
func (*ServerClient) Delete
deprecated
Delete deletes a server.
Deprecated: Use ServerClient.DeleteWithResult instead.
func (*ServerClient) DeleteWithResult ¶ added in v1.36.0
func (c *ServerClient) DeleteWithResult(ctx context.Context, server *Server) (*ServerDeleteResult, *Response, error)
DeleteWithResult deletes a server and returns the parsed response containing the action.
func (*ServerClient) DetachFromNetwork ¶ added in v1.14.0
func (c *ServerClient) DetachFromNetwork(ctx context.Context, server *Server, opts ServerDetachFromNetworkOpts) (*Action, *Response, error)
DetachFromNetwork detaches a server from a network.
func (*ServerClient) DisableBackup ¶
func (c *ServerClient) DisableBackup(ctx context.Context, server *Server) (*Action, *Response, error)
DisableBackup disables backup for a server.
func (*ServerClient) DisableRescue ¶
func (c *ServerClient) DisableRescue(ctx context.Context, server *Server) (*Action, *Response, error)
DisableRescue disables rescue mode for a server.
func (*ServerClient) EnableBackup ¶
func (c *ServerClient) EnableBackup(ctx context.Context, server *Server, window string) (*Action, *Response, error)
EnableBackup enables backup for a server. Pass in an empty backup window to let the API pick a window for you. See the API documentation at docs.hetzner.cloud for a list of valid backup windows.
func (*ServerClient) EnableRescue ¶
func (c *ServerClient) EnableRescue(ctx context.Context, server *Server, opts ServerEnableRescueOpts) (ServerEnableRescueResult, *Response, error)
EnableRescue enables rescue mode for a server.
func (*ServerClient) Get ¶
Get retrieves a server by its ID if the input can be parsed as an integer, otherwise it retrieves a server by its name. If the server does not exist, nil is returned.
func (*ServerClient) GetByID ¶
GetByID retrieves a server by its ID. If the server does not exist, nil is returned.
func (*ServerClient) GetByName ¶
GetByName retrieves a server by its name. If the server does not exist, nil is returned.
func (*ServerClient) GetMetrics ¶ added in v1.23.0
func (c *ServerClient) GetMetrics(ctx context.Context, server *Server, opts ServerGetMetricsOpts) (*ServerMetrics, *Response, error)
GetMetrics obtains metrics for Server.
func (*ServerClient) List ¶
func (c *ServerClient) List(ctx context.Context, opts ServerListOpts) ([]*Server, *Response, error)
List returns a list of servers for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*ServerClient) Rebuild
deprecated
func (c *ServerClient) Rebuild(ctx context.Context, server *Server, opts ServerRebuildOpts) (*Action, *Response, error)
Rebuild rebuilds a server.
Deprecated: Use ServerClient.RebuildWithResult instead.
func (*ServerClient) RebuildWithResult ¶ added in v1.41.0
func (c *ServerClient) RebuildWithResult(ctx context.Context, server *Server, opts ServerRebuildOpts) (ServerRebuildResult, *Response, error)
RebuildWithResult rebuilds a server.
func (*ServerClient) RemoveFromPlacementGroup ¶ added in v1.30.0
func (*ServerClient) RequestConsole ¶ added in v1.18.0
func (c *ServerClient) RequestConsole(ctx context.Context, server *Server) (ServerRequestConsoleResult, *Response, error)
RequestConsole requests a WebSocket VNC console.
func (*ServerClient) ResetPassword ¶
func (c *ServerClient) ResetPassword(ctx context.Context, server *Server) (ServerResetPasswordResult, *Response, error)
ResetPassword resets a server's password.
func (*ServerClient) Update ¶
func (c *ServerClient) Update(ctx context.Context, server *Server, opts ServerUpdateOpts) (*Server, *Response, error)
Update updates a server.
type ServerCreateFirewall ¶ added in v1.24.0
type ServerCreateFirewall struct {
Firewall Firewall
}
ServerCreateFirewall defines which Firewalls to apply when creating a Server.
type ServerCreateImageOpts ¶
ServerCreateImageOpts specifies options for creating an image from a server.
func (ServerCreateImageOpts) Validate ¶
func (o ServerCreateImageOpts) Validate() error
Validate checks if options are valid.
type ServerCreateImageResult ¶
ServerCreateImageResult is the result of creating an image from a server.
type ServerCreateOpts ¶
type ServerCreateOpts struct { Name string ServerType *ServerType Image *Image SSHKeys []*SSHKey Location *Location Datacenter *Datacenter UserData string StartAfterCreate *bool Labels map[string]string Automount *bool Volumes []*Volume Networks []*Network Firewalls []*ServerCreateFirewall PlacementGroup *PlacementGroup PublicNet *ServerCreatePublicNet }
ServerCreateOpts specifies options for creating a new server.
func (ServerCreateOpts) Validate ¶
func (o ServerCreateOpts) Validate() error
Validate checks if options are valid.
type ServerCreatePublicNet ¶ added in v1.35.0
type ServerCreateResult ¶
type ServerCreateResult struct { Server *Server Action *Action RootPassword string NextActions []*Action }
ServerCreateResult is the result of a create server call.
type ServerDeleteResult ¶ added in v1.36.0
type ServerDeleteResult struct {
Action *Action
}
ServerDeleteResult is the result of a delete server call.
type ServerDetachFromNetworkOpts ¶ added in v1.14.0
type ServerDetachFromNetworkOpts struct {
Network *Network
}
ServerDetachFromNetworkOpts specifies options for detaching a server from a network.
type ServerEnableRescueOpts ¶
type ServerEnableRescueOpts struct { Type ServerRescueType SSHKeys []*SSHKey }
ServerEnableRescueOpts specifies options for enabling rescue mode for a server.
type ServerEnableRescueResult ¶
ServerEnableRescueResult is the result of enabling rescue mode for a server.
type ServerFirewallStatus ¶ added in v1.24.0
type ServerFirewallStatus struct { Firewall Firewall Status FirewallStatus }
ServerFirewallStatus represents a Firewall and its status on a Server's network interface.
type ServerGetMetricsOpts ¶ added in v1.23.0
type ServerGetMetricsOpts struct { Types []ServerMetricType Start time.Time End time.Time Step int }
ServerGetMetricsOpts configures the call to get metrics for a Server.
type ServerListOpts ¶
type ServerListOpts struct { ListOpts Name string Status []ServerStatus Sort []string }
ServerListOpts specifies options for listing servers.
type ServerMetricType ¶ added in v1.23.0
type ServerMetricType string
ServerMetricType is the type of available metrics for servers.
const ( ServerMetricCPU ServerMetricType = "cpu" ServerMetricDisk ServerMetricType = "disk" ServerMetricNetwork ServerMetricType = "network" )
Available types of server metrics. See Hetzner Cloud API documentation for details.
type ServerMetrics ¶ added in v1.23.0
type ServerMetrics struct { Start time.Time End time.Time Step float64 TimeSeries map[string][]ServerMetricsValue }
ServerMetrics contains the metrics requested for a Server.
type ServerMetricsValue ¶ added in v1.23.0
ServerMetricsValue represents a single value in a time series of metrics.
type ServerPrivateNet ¶ added in v1.14.0
ServerPrivateNet defines the schema of a Server's private network information.
func ServerPrivateNetFromSchema ¶ added in v1.14.0
func ServerPrivateNetFromSchema(s schema.ServerPrivateNet) ServerPrivateNet
ServerPrivateNetFromSchema converts a schema.ServerPrivateNet to a ServerPrivateNet.
type ServerProtection ¶ added in v1.6.0
type ServerProtection struct {
Delete, Rebuild bool
}
ServerProtection represents the protection level of a server.
type ServerPublicNet ¶
type ServerPublicNet struct { IPv4 ServerPublicNetIPv4 IPv6 ServerPublicNetIPv6 FloatingIPs []*FloatingIP Firewalls []*ServerFirewallStatus }
ServerPublicNet represents a server's public network.
func ServerPublicNetFromSchema ¶
func ServerPublicNetFromSchema(s schema.ServerPublicNet) ServerPublicNet
ServerPublicNetFromSchema converts a schema.ServerPublicNet to a ServerPublicNet.
type ServerPublicNetIPv4 ¶
ServerPublicNetIPv4 represents a server's public IPv4 address.
func ServerPublicNetIPv4FromSchema ¶
func ServerPublicNetIPv4FromSchema(s schema.ServerPublicNetIPv4) ServerPublicNetIPv4
ServerPublicNetIPv4FromSchema converts a schema.ServerPublicNetIPv4 to a ServerPublicNetIPv4.
func (*ServerPublicNetIPv4) IsUnspecified ¶ added in v1.35.0
func (n *ServerPublicNetIPv4) IsUnspecified() bool
type ServerPublicNetIPv6 ¶
type ServerPublicNetIPv6 struct { ID int IP net.IP Network *net.IPNet Blocked bool DNSPtr map[string]string }
ServerPublicNetIPv6 represents a Server's public IPv6 network and address.
func ServerPublicNetIPv6FromSchema ¶
func ServerPublicNetIPv6FromSchema(s schema.ServerPublicNetIPv6) ServerPublicNetIPv6
ServerPublicNetIPv6FromSchema converts a schema.ServerPublicNetIPv6 to a ServerPublicNetIPv6.
func (*ServerPublicNetIPv6) DNSPtrForIP ¶
func (n *ServerPublicNetIPv6) DNSPtrForIP(ip net.IP) string
DNSPtrForIP returns the reverse dns pointer of the ip address.
func (*ServerPublicNetIPv6) IsUnspecified ¶ added in v1.35.0
func (n *ServerPublicNetIPv6) IsUnspecified() bool
type ServerRebuildOpts ¶
type ServerRebuildOpts struct {
Image *Image
}
ServerRebuildOpts specifies options for rebuilding a server.
type ServerRebuildResult ¶ added in v1.41.0
ServerRebuildResult is the result of a create server call.
type ServerRequestConsoleResult ¶ added in v1.18.0
ServerRequestConsoleResult is the result of requesting a WebSocket VNC console.
type ServerRescueType ¶
type ServerRescueType string
ServerRescueType represents rescue types.
const ( // Deprecated: Use ServerRescueTypeLinux64 instead. ServerRescueTypeLinux32 ServerRescueType = "linux32" ServerRescueTypeLinux64 ServerRescueType = "linux64" )
List of rescue types.
type ServerResetPasswordResult ¶
ServerResetPasswordResult is the result of resetting a server's password.
type ServerStatus ¶
type ServerStatus string
ServerStatus specifies a server's status.
const ( // ServerStatusInitializing is the status when a server is initializing. ServerStatusInitializing ServerStatus = "initializing" // ServerStatusOff is the status when a server is off. ServerStatusOff ServerStatus = "off" // ServerStatusRunning is the status when a server is running. ServerStatusRunning ServerStatus = "running" // ServerStatusStarting is the status when a server is being started. ServerStatusStarting ServerStatus = "starting" // ServerStatusStopping is the status when a server is being stopped. ServerStatusStopping ServerStatus = "stopping" // ServerStatusMigrating is the status when a server is being migrated. ServerStatusMigrating ServerStatus = "migrating" // ServerStatusRebuilding is the status when a server is being rebuilt. ServerStatusRebuilding ServerStatus = "rebuilding" // ServerStatusDeleting is the status when a server is being deleted. ServerStatusDeleting ServerStatus = "deleting" // ServerStatusUnknown is the status when a server's state is unknown. ServerStatusUnknown ServerStatus = "unknown" )
type ServerType ¶
type ServerType struct { ID int Name string Description string Cores int Memory float32 Disk int StorageType StorageType CPUType CPUType Architecture Architecture // IncludedTraffic is the free traffic per month in bytes IncludedTraffic int64 Pricings []ServerTypeLocationPricing DeprecatableResource }
ServerType represents a server type in the Hetzner Cloud.
func ServerTypeFromSchema ¶
func ServerTypeFromSchema(s schema.ServerType) *ServerType
ServerTypeFromSchema converts a schema.ServerType to a ServerType.
type ServerTypeClient ¶
type ServerTypeClient struct {
// contains filtered or unexported fields
}
ServerTypeClient is a client for the server types API.
func (*ServerTypeClient) All ¶
func (c *ServerTypeClient) All(ctx context.Context) ([]*ServerType, error)
All returns all server types.
func (*ServerTypeClient) AllWithOpts ¶ added in v1.46.0
func (c *ServerTypeClient) AllWithOpts(ctx context.Context, opts ServerTypeListOpts) ([]*ServerType, error)
AllWithOpts returns all server types for the given options.
func (*ServerTypeClient) Get ¶
func (c *ServerTypeClient) Get(ctx context.Context, idOrName string) (*ServerType, *Response, error)
Get retrieves a server type by its ID if the input can be parsed as an integer, otherwise it retrieves a server type by its name. If the server type does not exist, nil is returned.
func (*ServerTypeClient) GetByID ¶
func (c *ServerTypeClient) GetByID(ctx context.Context, id int) (*ServerType, *Response, error)
GetByID retrieves a server type by its ID. If the server type does not exist, nil is returned.
func (*ServerTypeClient) GetByName ¶
func (c *ServerTypeClient) GetByName(ctx context.Context, name string) (*ServerType, *Response, error)
GetByName retrieves a server type by its name. If the server type does not exist, nil is returned.
func (*ServerTypeClient) List ¶
func (c *ServerTypeClient) List(ctx context.Context, opts ServerTypeListOpts) ([]*ServerType, *Response, error)
List returns a list of server types for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
type ServerTypeListOpts ¶
ServerTypeListOpts specifies options for listing server types.
type ServerTypeLocationPricing ¶
ServerTypeLocationPricing provides pricing information for a server type at a location.
type ServerTypePricing ¶
type ServerTypePricing struct { ServerType *ServerType Pricings []ServerTypeLocationPricing }
ServerTypePricing provides pricing information for a server type.
type ServerUpdateOpts ¶
ServerUpdateOpts specifies options for updating a server.
type StorageType ¶
type StorageType string
StorageType specifies the type of storage.
const ( // StorageTypeLocal is the type for local storage. StorageTypeLocal StorageType = "local" // StorageTypeCeph is the type for remote storage. StorageTypeCeph StorageType = "ceph" )
type TrafficPricing ¶
type TrafficPricing struct {
PerTB Price
}
TrafficPricing provides pricing information for traffic.
type Volume ¶ added in v1.10.0
type Volume struct { ID int Name string Status VolumeStatus Server *Server Location *Location Size int Format *string Protection VolumeProtection Labels map[string]string LinuxDevice string Created time.Time }
Volume represents a volume in the Hetzner Cloud.
func VolumeFromSchema ¶ added in v1.10.0
VolumeFromSchema converts a schema.Volume to a Volume.
type VolumeAttachOpts ¶ added in v1.12.0
VolumeAttachOpts specifies options for attaching a volume.
type VolumeChangeProtectionOpts ¶ added in v1.10.0
type VolumeChangeProtectionOpts struct {
Delete *bool
}
VolumeChangeProtectionOpts specifies options for changing the resource protection level of a volume.
type VolumeClient ¶ added in v1.10.0
type VolumeClient struct { Action *ResourceActionClient // contains filtered or unexported fields }
VolumeClient is a client for the volume API.
func (*VolumeClient) All ¶ added in v1.10.0
func (c *VolumeClient) All(ctx context.Context) ([]*Volume, error)
All returns all volumes.
func (*VolumeClient) AllWithOpts ¶ added in v1.10.0
func (c *VolumeClient) AllWithOpts(ctx context.Context, opts VolumeListOpts) ([]*Volume, error)
AllWithOpts returns all volumes with the given options.
func (*VolumeClient) Attach ¶ added in v1.10.0
func (c *VolumeClient) Attach(ctx context.Context, volume *Volume, server *Server) (*Action, *Response, error)
Attach attaches a volume to a server.
func (*VolumeClient) AttachWithOpts ¶ added in v1.12.0
func (c *VolumeClient) AttachWithOpts(ctx context.Context, volume *Volume, opts VolumeAttachOpts) (*Action, *Response, error)
AttachWithOpts attaches a volume to a server.
func (*VolumeClient) ChangeProtection ¶ added in v1.10.0
func (c *VolumeClient) ChangeProtection(ctx context.Context, volume *Volume, opts VolumeChangeProtectionOpts) (*Action, *Response, error)
ChangeProtection changes the resource protection level of a volume.
func (*VolumeClient) Create ¶ added in v1.10.0
func (c *VolumeClient) Create(ctx context.Context, opts VolumeCreateOpts) (VolumeCreateResult, *Response, error)
Create creates a new volume with the given options.
func (*VolumeClient) Get ¶ added in v1.10.0
Get retrieves a volume by its ID if the input can be parsed as an integer, otherwise it retrieves a volume by its name. If the volume does not exist, nil is returned.
func (*VolumeClient) GetByID ¶ added in v1.10.0
GetByID retrieves a volume by its ID. If the volume does not exist, nil is returned.
func (*VolumeClient) GetByName ¶ added in v1.10.0
GetByName retrieves a volume by its name. If the volume does not exist, nil is returned.
func (*VolumeClient) List ¶ added in v1.10.0
func (c *VolumeClient) List(ctx context.Context, opts VolumeListOpts) ([]*Volume, *Response, error)
List returns a list of volumes for a specific page.
Please note that filters specified in opts are not taken into account when their value corresponds to their zero value or when they are empty.
func (*VolumeClient) Resize ¶ added in v1.10.0
func (c *VolumeClient) Resize(ctx context.Context, volume *Volume, size int) (*Action, *Response, error)
Resize changes the size of a volume.
func (*VolumeClient) Update ¶ added in v1.10.0
func (c *VolumeClient) Update(ctx context.Context, volume *Volume, opts VolumeUpdateOpts) (*Volume, *Response, error)
Update updates a volume.
type VolumeCreateOpts ¶ added in v1.10.0
type VolumeCreateOpts struct { Name string Size int Server *Server Location *Location Labels map[string]string Automount *bool Format *string }
VolumeCreateOpts specifies parameters for creating a volume.
func (VolumeCreateOpts) Validate ¶ added in v1.10.0
func (o VolumeCreateOpts) Validate() error
Validate checks if options are valid.
type VolumeCreateResult ¶ added in v1.10.0
VolumeCreateResult is the result of creating a volume.
type VolumeListOpts ¶ added in v1.10.0
type VolumeListOpts struct { ListOpts Name string Status []VolumeStatus Sort []string }
VolumeListOpts specifies options for listing volumes.
type VolumePricing ¶ added in v1.24.0
type VolumePricing struct {
PerGBMonthly Price
}
VolumePricing provides pricing information for a Volume.
type VolumeProtection ¶ added in v1.10.0
type VolumeProtection struct {
Delete bool
}
VolumeProtection represents the protection level of a volume.
type VolumeStatus ¶ added in v1.13.0
type VolumeStatus string
VolumeStatus specifies a volume's status.
const ( // VolumeStatusCreating is the status when a volume is being created. VolumeStatusCreating VolumeStatus = "creating" // VolumeStatusAvailable is the status when a volume is available. VolumeStatusAvailable VolumeStatus = "available" )
type VolumeUpdateOpts ¶ added in v1.10.0
VolumeUpdateOpts specifies options for updating a volume.
Source Files ¶
- action.go
- action_waiter.go
- action_watch.go
- architecture.go
- certificate.go
- client.go
- datacenter.go
- deprecation.go
- error.go
- firewall.go
- floating_ip.go
- hcloud.go
- helper.go
- image.go
- iso.go
- labels.go
- load_balancer.go
- load_balancer_type.go
- location.go
- network.go
- placement_group.go
- pricing.go
- primary_ip.go
- rdns.go
- resource.go
- schema.go
- server.go
- server_type.go
- ssh_key.go
- testing.go
- volume.go