-
Notifications
You must be signed in to change notification settings - Fork 56
/
instance.go
862 lines (712 loc) · 28.6 KB
/
instance.go
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
851
852
853
854
855
856
857
858
859
860
861
862
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, *http.Response, error)
Get(ctx context.Context, instanceID string) (*Instance, *http.Response, error)
Update(ctx context.Context, instanceID string, instanceReq *InstanceUpdateReq) (*Instance, *http.Response, error)
Delete(ctx context.Context, instanceID string) error
List(ctx context.Context, options *ListOptions) ([]Instance, *Meta, *http.Response, 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, *http.Response, 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) (*http.Response, error)
GetBandwidth(ctx context.Context, instanceID string) (*Bandwidth, *http.Response, error)
GetNeighbors(ctx context.Context, instanceID string) (*Neighbors, *http.Response, error)
ListVPCInfo(ctx context.Context, instanceID string, options *ListOptions) ([]VPCInfo, *Meta, *http.Response, error)
AttachVPC(ctx context.Context, instanceID, vpcID string) error
DetachVPC(ctx context.Context, instanceID, vpcID string) error
ListVPC2Info(ctx context.Context, instanceID string, options *ListOptions) ([]VPC2Info, *Meta, *http.Response, error)
AttachVPC2(ctx context.Context, instanceID string, vpc2Req *AttachVPC2Req) error
DetachVPC2(ctx context.Context, instanceID, vpcID string) error
ISOStatus(ctx context.Context, instanceID string) (*Iso, *http.Response, error)
AttachISO(ctx context.Context, instanceID, isoID string) (*http.Response, error)
DetachISO(ctx context.Context, instanceID string) (*http.Response, error)
GetBackupSchedule(ctx context.Context, instanceID string) (*BackupSchedule, *http.Response, error)
SetBackupSchedule(ctx context.Context, instanceID string, backup *BackupScheduleReq) (*http.Response, error)
CreateIPv4(ctx context.Context, instanceID string, reboot *bool) (*IPv4, *http.Response, error)
ListIPv4(ctx context.Context, instanceID string, option *ListOptions) ([]IPv4, *Meta, *http.Response, error)
DeleteIPv4(ctx context.Context, instanceID, ip string) error
ListIPv6(ctx context.Context, instanceID string, option *ListOptions) ([]IPv6, *Meta, *http.Response, error)
CreateReverseIPv6(ctx context.Context, instanceID string, reverseReq *ReverseIP) error
ListReverseIPv6(ctx context.Context, instanceID string) ([]ReverseIP, *http.Response, 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, *http.Response, error)
GetUpgrades(ctx context.Context, instanceID string) (*Upgrades, *http.Response, 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"`
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"`
UserScheme string `json:"user_scheme"`
}
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 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 vpc2InfoBase struct {
VPCs []VPC2Info `json:"vpcs"`
Meta *Meta `json:"meta"`
}
// VPC2Info information for a given instance.
type VPC2Info struct {
ID string `json:"id"`
MacAddress string `json:"mac_address"`
IPAddress string `json:"ip_address"`
}
// AttachVPC2Req parameters for attaching a VPC 2.0 network
type AttachVPC2Req struct {
VPCID string `json:"vpc_id,omitempty"`
IPAddress *string `json:"ip_address,omitempty"`
}
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"`
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"`
DisablePublicIPv4 *bool `json:"disable_public_ipv4,omitempty"`
EnableVPC *bool `json:"enable_vpc,omitempty"`
AttachVPC []string `json:"attach_vpc,omitempty"`
EnableVPC2 *bool `json:"enable_vpc2,omitempty"`
AttachVPC2 []string `json:"attach_vpc2,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"`
UserScheme string `json:"user_scheme,omitempty"`
AppVariables map[string]string `json:"app_variables,omitempty"`
}
// InstanceUpdateReq struct used to update an instance.
type InstanceUpdateReq struct {
Plan string `json:"plan,omitempty"`
Label string `json:"label,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"`
EnableVPC *bool `json:"enable_vpc,omitempty"`
AttachVPC []string `json:"attach_vpc,omitempty"`
DetachVPC []string `json:"detach_vpc,omitempty"`
EnableVPC2 *bool `json:"enable_vpc2,omitempty"`
AttachVPC2 []string `json:"attach_vpc2,omitempty"`
DetachVPC2 []string `json:"detach_vpc2,omitempty"`
Backups string `json:"backups,omitempty"`
DDOSProtection *bool `json:"ddos_protection"`
UserData string `json:"user_data,omitempty"`
FirewallGroupID string `json:"firewall_group_id,omitempty"`
UserScheme string `json:"user_scheme,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, *http.Response, error) {
req, err := i.client.NewRequest(ctx, http.MethodPost, instancePath, instanceReq)
if err != nil {
return nil, nil, err
}
instance := new(instanceBase)
resp, err := i.client.DoWithContext(ctx, req, instance)
if err != nil {
return nil, resp, err
}
return instance.Instance, resp, nil
}
// Get will get the server with the given instanceID
func (i *InstanceServiceHandler) Get(ctx context.Context, instanceID string) (*Instance, *http.Response, error) {
uri := fmt.Sprintf("%s/%s", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, err
}
instance := new(instanceBase)
resp, err := i.client.DoWithContext(ctx, req, instance)
if err != nil {
return nil, resp, err
}
return instance.Instance, resp, nil
}
// Update will update the server with the given parameters
func (i *InstanceServiceHandler) Update(ctx context.Context, instanceID string, instanceReq *InstanceUpdateReq) (*Instance, *http.Response, error) { //nolint:lll
uri := fmt.Sprintf("%s/%s", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPatch, uri, instanceReq)
if err != nil {
return nil, nil, err
}
instance := new(instanceBase)
resp, err := i.client.DoWithContext(ctx, req, instance)
if err != nil {
return nil, resp, err
}
return instance.Instance, resp, 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// List all instances on your account.
func (i *InstanceServiceHandler) List(ctx context.Context, options *ListOptions) ([]Instance, *Meta, *http.Response, error) { //nolint:dupl
req, err := i.client.NewRequest(ctx, http.MethodGet, instancePath, nil)
if err != nil {
return nil, nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
instances := new(instancesBase)
resp, err := i.client.DoWithContext(ctx, req, instances)
if err != nil {
return nil, nil, resp, err
}
return instances.Instances, instances.Meta, resp, 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// Reinstall an instance.
func (i *InstanceServiceHandler) Reinstall(ctx context.Context, instanceID string, reinstallReq *ReinstallReq) (*Instance, *http.Response, error) { //nolint:lll
uri := fmt.Sprintf("%s/%s/reinstall", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, reinstallReq)
if err != nil {
return nil, nil, err
}
instance := new(instanceBase)
resp, err := i.client.DoWithContext(ctx, req, instance)
if err != nil {
return nil, resp, err
}
return instance.Instance, resp, 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// Restore an instance.
func (i *InstanceServiceHandler) Restore(ctx context.Context, instanceID string, restoreReq *RestoreReq) (*http.Response, error) {
uri := fmt.Sprintf("%s/%s/restore", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, restoreReq)
if err != nil {
return nil, err
}
return i.client.DoWithContext(ctx, req, nil)
}
// GetBandwidth for a given instance.
func (i *InstanceServiceHandler) GetBandwidth(ctx context.Context, instanceID string) (*Bandwidth, *http.Response, error) {
uri := fmt.Sprintf("%s/%s/bandwidth", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, err
}
bandwidth := new(Bandwidth)
resp, err := i.client.DoWithContext(ctx, req, bandwidth)
if err != nil {
return nil, resp, err
}
return bandwidth, resp, 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, *http.Response, error) {
uri := fmt.Sprintf("%s/%s/neighbors", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, err
}
neighbors := new(Neighbors)
resp, err := i.client.DoWithContext(ctx, req, neighbors)
if err != nil {
return nil, resp, err
}
return neighbors, resp, nil
}
// ListVPCInfo currently attached to an instance.
func (i *InstanceServiceHandler) ListVPCInfo(ctx context.Context, instanceID string, options *ListOptions) ([]VPCInfo, *Meta, *http.Response, error) { //nolint:lll,dupl
uri := fmt.Sprintf("%s/%s/vpcs", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
vpcs := new(vpcInfoBase)
resp, err := i.client.DoWithContext(ctx, req, vpcs)
if err != nil {
return nil, nil, resp, err
}
return vpcs.VPCs, vpcs.Meta, resp, 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// ListVPC2Info currently attached to an instance.
func (i *InstanceServiceHandler) ListVPC2Info(ctx context.Context, instanceID string, options *ListOptions) ([]VPC2Info, *Meta, *http.Response, error) { //nolint:lll,dupl
uri := fmt.Sprintf("%s/%s/vpc2", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
vpcs := new(vpc2InfoBase)
resp, err := i.client.DoWithContext(ctx, req, vpcs)
if err != nil {
return nil, nil, resp, err
}
return vpcs.VPCs, vpcs.Meta, resp, nil
}
// AttachVPC2 to an instance
func (i *InstanceServiceHandler) AttachVPC2(ctx context.Context, instanceID string, vpc2Req *AttachVPC2Req) error {
uri := fmt.Sprintf("%s/%s/vpc2/attach", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, vpc2Req)
if err != nil {
return err
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// DetachVPC2 from an instance.
func (i *InstanceServiceHandler) DetachVPC2(ctx context.Context, instanceID, vpcID string) error {
uri := fmt.Sprintf("%s/%s/vpc2/detach", instancePath, instanceID)
body := RequestBody{"vpc_id": vpcID}
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, body)
if err != nil {
return err
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// 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, *http.Response, error) {
uri := fmt.Sprintf("%s/%s/iso", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, err
}
iso := new(isoStatusBase)
resp, err := i.client.DoWithContext(ctx, req, iso)
if err != nil {
return nil, resp, err
}
return iso.IsoStatus, resp, nil
}
// AttachISO will attach an ISO to the given instance and reboot it
func (i *InstanceServiceHandler) AttachISO(ctx context.Context, instanceID, isoID string) (*http.Response, 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 nil, 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) (*http.Response, error) {
uri := fmt.Sprintf("%s/%s/iso/detach", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, nil)
if err != nil {
return nil, 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, *http.Response, 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, nil, err
}
backup := new(backupScheduleBase)
resp, err := i.client.DoWithContext(ctx, req, backup)
if err != nil {
return nil, resp, err
}
return backup.BackupSchedule, resp, 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) (*http.Response, error) { //nolint:lll
uri := fmt.Sprintf("%s/%s/backup-schedule", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodPost, uri, backup)
if err != nil {
return nil, 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, *http.Response, 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, nil, err
}
ip := new(ipv4Base)
resp, err := i.client.DoWithContext(ctx, req, ip)
if err != nil {
return nil, resp, err
}
return ip.IPv4, resp, nil
}
// ListIPv4 addresses that are currently assigned to a given instance.
func (i *InstanceServiceHandler) ListIPv4(ctx context.Context, instanceID string, options *ListOptions) ([]IPv4, *Meta, *http.Response, error) { //nolint:lll,dupl
uri := fmt.Sprintf("%s/%s/ipv4", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
ips := new(ipBase)
resp, err := i.client.DoWithContext(ctx, req, ips)
if err != nil {
return nil, nil, resp, err
}
return ips.IPv4s, ips.Meta, resp, 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// ListIPv6 addresses that are currently assigned to a given instance.
func (i *InstanceServiceHandler) ListIPv6(ctx context.Context, instanceID string, options *ListOptions) ([]IPv6, *Meta, *http.Response, error) { //nolint:lll,dupl
uri := fmt.Sprintf("%s/%s/ipv6", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
ips := new(ipBase)
resp, err := i.client.DoWithContext(ctx, req, ips)
if err != nil {
return nil, nil, resp, err
}
return ips.IPv6s, ips.Meta, resp, 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// ListReverseIPv6 currently assigned to a given instance.
func (i *InstanceServiceHandler) ListReverseIPv6(ctx context.Context, instanceID string) ([]ReverseIP, *http.Response, 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, nil, err
}
reverse := new(reverseIPv6sBase)
resp, err := i.client.DoWithContext(ctx, req, reverse)
if err != nil {
return nil, resp, err
}
return reverse.ReverseIPv6s, resp, 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// 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
}
_, err = i.client.DoWithContext(ctx, req, nil)
return err
}
// GetUserData from given instance. The userdata returned will be in base64 encoding.
func (i *InstanceServiceHandler) GetUserData(ctx context.Context, instanceID string) (*UserData, *http.Response, 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, nil, err
}
userData := new(userDataBase)
resp, err := i.client.DoWithContext(ctx, req, userData)
if err != nil {
return nil, resp, err
}
return userData.UserData, resp, nil
}
// GetUpgrades that are available for a given instance.
func (i *InstanceServiceHandler) GetUpgrades(ctx context.Context, instanceID string) (*Upgrades, *http.Response, error) {
uri := fmt.Sprintf("%s/%s/upgrades", instancePath, instanceID)
req, err := i.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, nil, err
}
upgrades := new(upgradeBase)
resp, err := i.client.DoWithContext(ctx, req, upgrades)
if err != nil {
return nil, resp, err
}
return upgrades.Upgrades, resp, nil
}