1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
|
package govultr
import (
"context"
"fmt"
"net/http"
"github.com/google/go-querystring/query"
)
const instancePath = "/v2/instances"
// InstanceService is the interface to interact with the instance endpoints on the Vultr API
// Link: https://www.vultr.com/api/#tag/instances
type InstanceService interface {
Create(ctx context.Context, instanceReq *InstanceCreateReq) (*Instance, error)
Get(ctx context.Context, instanceID string) (*Instance, error)
Update(ctx context.Context, instanceID string, instanceReq *InstanceUpdateReq) (*Instance, error)
Delete(ctx context.Context, instanceID string) error
List(ctx context.Context, options *ListOptions) ([]Instance, *Meta, error)
Start(ctx context.Context, instanceID string) error
Halt(ctx context.Context, instanceID string) error
Reboot(ctx context.Context, instanceID string) error
Reinstall(ctx context.Context, instanceID string, reinstallReq *ReinstallReq) (*Instance, error)
MassStart(ctx context.Context, instanceList []string) error
MassHalt(ctx context.Context, instanceList []string) error
MassReboot(ctx context.Context, instanceList []string) error
Restore(ctx context.Context, instanceID string, restoreReq *RestoreReq) error
GetBandwidth(ctx context.Context, instanceID string) (*Bandwidth, error)
GetNeighbors(ctx context.Context, instanceID string) (*Neighbors, error)
// Deprecated: ListPrivateNetworks should no longer be used. Instead, use ListVPCInfo.
ListPrivateNetworks(ctx context.Context, instanceID string, options *ListOptions) ([]PrivateNetwork, *Meta, error)
// Deprecated: AttachPrivateNetwork should no longer be used. Instead, use AttachVPC.
AttachPrivateNetwork(ctx context.Context, instanceID, networkID string) error
// Deprecated: DetachPrivateNetwork should no longer be used. Instead, use DetachVPC.
DetachPrivateNetwork(ctx context.Context, instanceID, networkID string) error
ListVPCInfo(ctx context.Context, instanceID string, options *ListOptions) ([]VPCInfo, *Meta, error)
AttachVPC(ctx context.Context, instanceID, vpcID string) error
DetachVPC(ctx context.Context, instanceID, vpcID string) error
ISOStatus(ctx context.Context, instanceID string) (*Iso, error)
AttachISO(ctx context.Context, instanceID, isoID string) error
DetachISO(ctx context.Context, instanceID string) error
GetBackupSchedule(ctx context.Context, instanceID string) (*BackupSchedule, error)
SetBackupSchedule(ctx context.Context, instanceID string, backup *BackupScheduleReq) error
CreateIPv4(ctx context.Context, instanceID string, reboot *bool) (*IPv4, error)
ListIPv4(ctx context.Context, instanceID string, option *ListOptions) ([]IPv4, *Meta, error)
DeleteIPv4(ctx context.Context, instanceID, ip string) error
ListIPv6(ctx context.Context, instanceID string, option *ListOptions) ([]IPv6, *Meta, error)
CreateReverseIPv6(ctx context.Context, instanceID string, reverseReq *ReverseIP) error
ListReverseIPv6(ctx context.Context, instanceID string) ([]ReverseIP, error)
DeleteReverseIPv6(ctx context.Context, instanceID, ip string) error
CreateReverseIPv4(ctx context.Context, instanceID string, reverseReq *ReverseIP) error
DefaultReverseIPv4(ctx context.Context, instanceID, ip string) error
GetUserData(ctx context.Context, instanceID string) (*UserData, error)
GetUpgrades(ctx context.Context, instanceID string) (*Upgrades, error)
}
// InstanceServiceHandler handles interaction with the server methods for the Vultr API
type InstanceServiceHandler struct {
client *Client
}
// Instance represents a VPS
type Instance struct {
ID string `json:"id"`
Os string `json:"os"`
RAM int `json:"ram"`
Disk int `json:"disk"`
Plan string `json:"plan"`
MainIP string `json:"main_ip"`
VCPUCount int `json:"vcpu_count"`
Region string `json:"region"`
DefaultPassword string `json:"default_password,omitempty"`
DateCreated string `json:"date_created"`
Status string `json:"status"`
AllowedBandwidth int `json:"allowed_bandwidth"`
NetmaskV4 string `json:"netmask_v4"`
GatewayV4 string `json:"gateway_v4"`
PowerStatus string `json:"power_status"`
ServerStatus string `json:"server_status"`
V6Network string `json:"v6_network"`
V6MainIP string `json:"v6_main_ip"`
V6NetworkSize int `json:"v6_network_size"`
Label string `json:"label"`
InternalIP string `json:"internal_ip"`
KVM string `json:"kvm"`
// Deprecated: Tag should no longer be used. Instead, use Tags.
Tag string `json:"tag"`
OsID int `json:"os_id"`
AppID int `json:"app_id"`
ImageID string `json:"image_id"`
FirewallGroupID string `json:"firewall_group_id"`
Features []string `json:"features"`
Hostname string `json:"hostname"`
Tags []string `json:"tags"`
}
type instanceBase struct {
Instance *Instance `json:"instance"`
}
type ipv4Base struct {
IPv4 *IPv4 `json:"ipv4"`
}
type instancesBase struct {
Instances []Instance `json:"instances"`
Meta *Meta `json:"meta"`
}
// Neighbors that might exist on the same host.
type Neighbors struct {
Neighbors []string `json:"neighbors"`
}
// Bandwidth used on a given instance.
type Bandwidth struct {
Bandwidth map[string]struct {
IncomingBytes int `json:"incoming_bytes"`
OutgoingBytes int `json:"outgoing_bytes"`
} `json:"bandwidth"`
}
type privateNetworksBase struct {
PrivateNetworks []PrivateNetwork `json:"private_networks"`
Meta *Meta `json:"meta"`
}
// PrivateNetwork information for a given instance.
// Deprecated: PrivateNetwork should no longer be used. Instead, use VPCInfo.
type PrivateNetwork struct {
NetworkID string `json:"network_id"`
MacAddress string `json:"mac_address"`
IPAddress string `json:"ip_address"`
}
type vpcInfoBase struct {
VPCs []VPCInfo `json:"vpcs"`
Meta *Meta `json:"meta"`
}
// VPCInfo information for a given instance.
type VPCInfo struct {
ID string `json:"id"`
MacAddress string `json:"mac_address"`
IPAddress string `json:"ip_address"`
}
type isoStatusBase struct {
IsoStatus *Iso `json:"iso_status"`
}
// Iso information for a given instance.
type Iso struct {
State string `json:"state"`
IsoID string `json:"iso_id"`
}
type backupScheduleBase struct {
BackupSchedule *BackupSchedule `json:"backup_schedule"`
}
// BackupSchedule information for a given instance.
type BackupSchedule struct {
Enabled *bool `json:"enabled,omitempty"`
Type string `json:"type,omitempty"`
NextScheduleTimeUTC string `json:"next_scheduled_time_utc,omitempty"`
Hour int `json:"hour,omitempty"`
Dow int `json:"dow,omitempty"`
Dom int `json:"dom,omitempty"`
}
// BackupScheduleReq struct used to create a backup schedule for an instance.
type BackupScheduleReq struct {
Type string `json:"type"`
Hour *int `json:"hour,omitempty"`
Dow *int `json:"dow,omitempty"`
Dom int `json:"dom,omitempty"`
}
// RestoreReq struct used to supply whether a restore should be from a backup or snapshot.
type RestoreReq struct {
BackupID string `json:"backup_id,omitempty"`
SnapshotID string `json:"snapshot_id,omitempty"`
}
// todo can we remove this list and return this data back in the list?
type reverseIPv6sBase struct {
ReverseIPv6s []ReverseIP `json:"reverse_ipv6s"`
// no meta?
}
// ReverseIP information for a given instance.
type ReverseIP struct {
IP string `json:"ip"`
Reverse string `json:"reverse"`
}
type userDataBase struct {
UserData *UserData `json:"user_data"`
}
// UserData information for a given struct.
type UserData struct {
Data string `json:"data"`
}
type upgradeBase struct {
Upgrades *Upgrades `json:"upgrades"`
}
// Upgrades that are available for a given Instance.
type Upgrades struct {
Applications []Application `json:"applications,omitempty"`
OS []OS `json:"os,omitempty"`
Plans []string `json:"plans,omitempty"`
}
// InstanceCreateReq struct used to create an instance.
type InstanceCreateReq struct {
Region string `json:"region,omitempty"`
Plan string `json:"plan,omitempty"`
Label string `json:"label,omitempty"`
// Deprecated: Tag should no longer be used. Instead, use Tags.
Tag string `json:"tag,omitempty"`
Tags []string `json:"tags"`
OsID int `json:"os_id,omitempty"`
ISOID string `json:"iso_id,omitempty"`
AppID int `json:"app_id,omitempty"`
ImageID string `json:"image_id,omitempty"`
FirewallGroupID string `json:"firewall_group_id,omitempty"`
Hostname string `json:"hostname,omitempty"`
IPXEChainURL string `json:"ipxe_chain_url,omitempty"`
ScriptID string `json:"script_id,omitempty"`
SnapshotID string `json:"snapshot_id,omitempty"`
EnableIPv6 *bool `json:"enable_ipv6,omitempty"`
// Deprecated: EnablePrivateNetwork should no longer be used. Instead, use EnableVPC.
EnablePrivateNetwork *bool `json:"enable_private_network,omitempty"`
// Deprecated: AttachPrivateNetwork should no longer be used. Instead, use AttachVPC.
AttachPrivateNetwork []string `json:"attach_private_network,omitempty"`
EnableVPC *bool `json:"enable_vpc,omitempty"`
AttachVPC []string `json:"attach_vpc,omitempty"`
SSHKeys []string `json:"sshkey_id,omitempty"`
Backups string `json:"backups,omitempty"`
DDOSProtection *bool `json:"ddos_protection,omitempty"`
UserData string `json:"user_data,omitempty"`
ReservedIPv4 string `json:"reserved_ipv4,omitempty"`
ActivationEmail *bool `json:"activation_email,omitempty"`
}
// InstanceUpdateReq struct used to update an instance.
type InstanceUpdateReq struct {
Plan string `json:"plan,omitempty"`
Label string `json:"label,omitempty"`
// Deprecated: Tag should no longer be used. Instead, use Tags.
Tag *string `json:"tag,omitempty"`
Tags []string `json:"tags"`
OsID int `json:"os_id,omitempty"`
AppID int `json:"app_id,omitempty"`
ImageID string `json:"image_id,omitempty"`
EnableIPv6 *bool `json:"enable_ipv6,omitempty"`
// Deprecated: EnablePrivateNetwork should no longer be used. Instead, use EnableVPC.
EnablePrivateNetwork *bool `json:"enable_private_network,omitempty"`
// Deprecated: AttachPrivateNetwork should no longer be used. Instead, use AttachVPC.
AttachPrivateNetwork []string `json:"attach_private_network,omitempty"`
// Deprecated: DetachPrivateNetwork should no longer be used. Instead, use DetachVPC.
DetachPrivateNetwork []string `json:"detach_private_network,omitempty"`
EnableVPC *bool `json:"enable_vpc,omitempty"`
AttachVPC []string `json:"attach_vpc,omitempty"`
DetachVPC []string `json:"detach_vpc,omitempty"`
Backups string `json:"backups,omitempty"`
DDOSProtection *bool `json:"ddos_protection"`
UserData string `json:"user_data,omitempty"`
FirewallGroupID string `json:"firewall_group_id,omitempty"`
}
// ReinstallReq struct used to allow changes during a reinstall
type ReinstallReq struct {
Hostname string `json:"hostname,omitempty"`
}
// Create will create the server with the given parameters
func (i *InstanceServiceHandler) Create(ctx context.Context, instanceReq *InstanceCreateReq) (*Instance, error) {
uri := fmt.Sprintf("%s", instancePath)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, instanceReq)
if err != nil {
return nil, err
}
instance := new(instanceBase)
if err = i.client.DoWithContext(ctx, req, instance); err != nil {
return nil, err
}
return instance.Instance, nil
}
// Get will get the server with the given instanceID
func (i *InstanceServiceHandler) Get(ctx context.Context, instanceID string) (*Instance, error) {
uri := fmt.Sprintf("%s/%s", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, err
}
instance := new(instanceBase)
if err = i.client.DoWithContext(ctx, req, instance); err != nil {
return nil, err
}
return instance.Instance, nil
}
// Update will update the server with the given parameters
func (i *InstanceServiceHandler) Update(ctx context.Context, instanceID string, instanceReq *InstanceUpdateReq) (*Instance, error) {
uri := fmt.Sprintf("%s/%s", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPatch, uri, instanceReq)
if err != nil {
return nil, err
}
instance := new(instanceBase)
if err := i.client.DoWithContext(ctx, req, instance); err != nil {
return nil, err
}
return instance.Instance, nil
}
// Delete an instance. All data will be permanently lost, and the IP address will be released
func (i *InstanceServiceHandler) Delete(ctx context.Context, instanceID string) error {
uri := fmt.Sprintf("%s/%s", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodDelete, uri, nil)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// List all instances on your account.
func (i *InstanceServiceHandler) List(ctx context.Context, options *ListOptions) ([]Instance, *Meta, error) {
req, err := i.client.NewRequest(ctx, http.MethodGet, instancePath, nil)
if err != nil {
return nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
instances := new(instancesBase)
if err = i.client.DoWithContext(ctx, req, instances); err != nil {
return nil, nil, err
}
return instances.Instances, instances.Meta, nil
}
// Start will start a vps instance the machine is already running, it will be restarted.
func (i *InstanceServiceHandler) Start(ctx context.Context, instanceID string) error {
uri := fmt.Sprintf("%s/%s/start", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, nil)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// Halt will pause an instance.
func (i *InstanceServiceHandler) Halt(ctx context.Context, instanceID string) error {
uri := fmt.Sprintf("%s/%s/halt", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, nil)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// Reboot an instance.
func (i *InstanceServiceHandler) Reboot(ctx context.Context, instanceID string) error {
uri := fmt.Sprintf("%s/%s/reboot", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, nil)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// Reinstall an instance.
func (i *InstanceServiceHandler) Reinstall(ctx context.Context, instanceID string, reinstallReq *ReinstallReq) (*Instance, error) {
uri := fmt.Sprintf("%s/%s/reinstall", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, reinstallReq)
if err != nil {
return nil, err
}
instance := new(instanceBase)
if err := i.client.DoWithContext(ctx, req, instance); err != nil {
return nil, err
}
return instance.Instance, nil
}
// MassStart will start a list of instances the machine is already running, it will be restarted.
func (i *InstanceServiceHandler) MassStart(ctx context.Context, instanceList []string) error {
uri := fmt.Sprintf("%s/start", instancePath)
reqBody := RequestBody{"instance_ids": instanceList}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, reqBody)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// MassHalt will pause a list of instances.
func (i *InstanceServiceHandler) MassHalt(ctx context.Context, instanceList []string) error {
uri := fmt.Sprintf("%s/halt", instancePath)
reqBody := RequestBody{"instance_ids": instanceList}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, reqBody)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// MassReboot reboots a list of instances.
func (i *InstanceServiceHandler) MassReboot(ctx context.Context, instanceList []string) error {
uri := fmt.Sprintf("%s/reboot", instancePath)
reqBody := RequestBody{"instance_ids": instanceList}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, reqBody)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// Restore an instance.
func (i *InstanceServiceHandler) Restore(ctx context.Context, instanceID string, restoreReq *RestoreReq) error {
uri := fmt.Sprintf("%s/%s/restore", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, restoreReq)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// GetBandwidth for a given instance.
func (i *InstanceServiceHandler) GetBandwidth(ctx context.Context, instanceID string) (*Bandwidth, error) {
uri := fmt.Sprintf("%s/%s/bandwidth", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, err
}
bandwidth := new(Bandwidth)
if err = i.client.DoWithContext(ctx, req, bandwidth); err != nil {
return nil, err
}
return bandwidth, nil
}
// GetNeighbors gets a list of other instances in the same location as this Instance.
func (i *InstanceServiceHandler) GetNeighbors(ctx context.Context, instanceID string) (*Neighbors, error) {
uri := fmt.Sprintf("%s/%s/neighbors", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, err
}
neighbors := new(Neighbors)
if err = i.client.DoWithContext(ctx, req, neighbors); err != nil {
return nil, err
}
return neighbors, nil
}
// ListPrivateNetworks currently attached to an instance.
// Deprecated: ListPrivateNetworks should no longer be used. Instead, use ListVPCInfo
func (i *InstanceServiceHandler) ListPrivateNetworks(ctx context.Context, instanceID string, options *ListOptions) ([]PrivateNetwork, *Meta, error) {
uri := fmt.Sprintf("%s/%s/private-networks", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
networks := new(privateNetworksBase)
if err = i.client.DoWithContext(ctx, req, networks); err != nil {
return nil, nil, err
}
return networks.PrivateNetworks, networks.Meta, nil
}
// AttachPrivateNetwork to an instance
// Deprecated: AttachPrivateNetwork should no longer be used. Instead, use AttachVPC
func (i *InstanceServiceHandler) AttachPrivateNetwork(ctx context.Context, instanceID, networkID string) error {
uri := fmt.Sprintf("%s/%s/private-networks/attach", instancePath, instanceID)
body := RequestBody{"network_id": networkID}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, body)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// DetachPrivateNetwork from an instance.
// Deprecated: DetachPrivateNetwork should no longer be used. Instead, use DetachVPC
func (i *InstanceServiceHandler) DetachPrivateNetwork(ctx context.Context, instanceID, networkID string) error {
uri := fmt.Sprintf("%s/%s/private-networks/detach", instancePath, instanceID)
body := RequestBody{"network_id": networkID}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, body)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// ListVPCInfo currently attached to an instance.
func (i *InstanceServiceHandler) ListVPCInfo(ctx context.Context, instanceID string, options *ListOptions) ([]VPCInfo, *Meta, error) {
uri := fmt.Sprintf("%s/%s/vpcs", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
vpcs := new(vpcInfoBase)
if err = i.client.DoWithContext(ctx, req, vpcs); err != nil {
return nil, nil, err
}
return vpcs.VPCs, vpcs.Meta, nil
}
// AttachVPC to an instance
func (i *InstanceServiceHandler) AttachVPC(ctx context.Context, instanceID, vpcID string) error {
uri := fmt.Sprintf("%s/%s/vpcs/attach", instancePath, instanceID)
body := RequestBody{"vpc_id": vpcID}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, body)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// DetachVPC from an instance.
func (i *InstanceServiceHandler) DetachVPC(ctx context.Context, instanceID, vpcID string) error {
uri := fmt.Sprintf("%s/%s/vpcs/detach", instancePath, instanceID)
body := RequestBody{"vpc_id": vpcID}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, body)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// ISOStatus retrieves the current ISO state for a given VPS.
// The returned state may be one of: ready | isomounting | isomounted.
func (i *InstanceServiceHandler) ISOStatus(ctx context.Context, instanceID string) (*Iso, error) {
uri := fmt.Sprintf("%s/%s/iso", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, err
}
iso := new(isoStatusBase)
if err = i.client.DoWithContext(ctx, req, iso); err != nil {
return nil, err
}
return iso.IsoStatus, nil
}
// AttachISO will attach an ISO to the given instance and reboot it
func (i *InstanceServiceHandler) AttachISO(ctx context.Context, instanceID, isoID string) error {
uri := fmt.Sprintf("%s/%s/iso/attach", instancePath, instanceID)
body := RequestBody{"iso_id": isoID}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, body)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// DetachISO will detach the currently mounted ISO and reboot the instance.
func (i *InstanceServiceHandler) DetachISO(ctx context.Context, instanceID string) error {
uri := fmt.Sprintf("%s/%s/iso/detach", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, nil)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// GetBackupSchedule retrieves the backup schedule for a given instance - all time values are in UTC
func (i *InstanceServiceHandler) GetBackupSchedule(ctx context.Context, instanceID string) (*BackupSchedule, error) {
uri := fmt.Sprintf("%s/%s/backup-schedule", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, err
}
backup := new(backupScheduleBase)
if err = i.client.DoWithContext(ctx, req, backup); err != nil {
return nil, err
}
return backup.BackupSchedule, nil
}
// SetBackupSchedule sets the backup schedule for a given instance - all time values are in UTC.
func (i *InstanceServiceHandler) SetBackupSchedule(ctx context.Context, instanceID string, backup *BackupScheduleReq) error {
uri := fmt.Sprintf("%s/%s/backup-schedule", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, backup)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// CreateIPv4 an additional IPv4 address for given instance.
func (i *InstanceServiceHandler) CreateIPv4(ctx context.Context, instanceID string, reboot *bool) (*IPv4, error) {
uri := fmt.Sprintf("%s/%s/ipv4", instancePath, instanceID)
body := RequestBody{"reboot": reboot}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, body)
if err != nil {
return nil, err
}
ip := new(ipv4Base)
if err = i.client.DoWithContext(ctx, req, ip); err != nil {
return nil, err
}
return ip.IPv4, nil
}
// ListIPv4 addresses that are currently assigned to a given instance.
func (i *InstanceServiceHandler) ListIPv4(ctx context.Context, instanceID string, options *ListOptions) ([]IPv4, *Meta, error) {
uri := fmt.Sprintf("%s/%s/ipv4", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
ips := new(ipBase)
if err = i.client.DoWithContext(ctx, req, ips); err != nil {
return nil, nil, err
}
return ips.IPv4s, ips.Meta, nil
}
// DeleteIPv4 address from a given instance.
func (i *InstanceServiceHandler) DeleteIPv4(ctx context.Context, instanceID, ip string) error {
uri := fmt.Sprintf("%s/%s/ipv4/%s", instancePath, instanceID, ip)
req, err := i.client.NewRequest(ctx, http.MethodDelete, uri, nil)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// ListIPv6 addresses that are currently assigned to a given instance.
func (i *InstanceServiceHandler) ListIPv6(ctx context.Context, instanceID string, options *ListOptions) ([]IPv6, *Meta, error) {
uri := fmt.Sprintf("%s/%s/ipv6", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
ips := new(ipBase)
if err = i.client.DoWithContext(ctx, req, ips); err != nil {
return nil, nil, err
}
return ips.IPv6s, ips.Meta, nil
}
// CreateReverseIPv6 for a given instance.
func (i *InstanceServiceHandler) CreateReverseIPv6(ctx context.Context, instanceID string, reverseReq *ReverseIP) error {
uri := fmt.Sprintf("%s/%s/ipv6/reverse", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, reverseReq)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// ListReverseIPv6 currently assigned to a given instance.
func (i *InstanceServiceHandler) ListReverseIPv6(ctx context.Context, instanceID string) ([]ReverseIP, error) {
uri := fmt.Sprintf("%s/%s/ipv6/reverse", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, err
}
reverse := new(reverseIPv6sBase)
if err = i.client.DoWithContext(ctx, req, reverse); err != nil {
return nil, err
}
return reverse.ReverseIPv6s, nil
}
// DeleteReverseIPv6 a given reverse IPv6.
func (i *InstanceServiceHandler) DeleteReverseIPv6(ctx context.Context, instanceID, ip string) error {
uri := fmt.Sprintf("%s/%s/ipv6/reverse/%s", instancePath, instanceID, ip)
req, err := i.client.NewRequest(ctx, http.MethodDelete, uri, nil)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// CreateReverseIPv4 for a given IP on a given instance.
func (i *InstanceServiceHandler) CreateReverseIPv4(ctx context.Context, instanceID string, reverseReq *ReverseIP) error {
uri := fmt.Sprintf("%s/%s/ipv4/reverse", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, reverseReq)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// DefaultReverseIPv4 will set the IPs reverse setting back to the original one supplied by Vultr.
func (i *InstanceServiceHandler) DefaultReverseIPv4(ctx context.Context, instanceID, ip string) error {
uri := fmt.Sprintf("%s/%s/ipv4/reverse/default", instancePath, instanceID)
reqBody := RequestBody{"ip": ip}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, reqBody)
if err != nil {
return err
}
return i.client.DoWithContext(ctx, req, nil)
}
// GetUserData from given instance. The userdata returned will be in base64 encoding.
func (i *InstanceServiceHandler) GetUserData(ctx context.Context, instanceID string) (*UserData, error) {
uri := fmt.Sprintf("%s/%s/user-data", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, err
}
userData := new(userDataBase)
if err = i.client.DoWithContext(ctx, req, userData); err != nil {
return nil, err
}
return userData.UserData, nil
}
// GetUpgrades that are available for a given instance.
func (i *InstanceServiceHandler) GetUpgrades(ctx context.Context, instanceID string) (*Upgrades, error) {
uri := fmt.Sprintf("%s/%s/upgrades", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, err
}
upgrades := new(upgradeBase)
if err = i.client.DoWithContext(ctx, req, upgrades); err != nil {
return nil, err
}
return upgrades.Upgrades, nil
}
|