-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexecute.go
58 lines (48 loc) · 1.18 KB
/
execute.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
package azrp
import "fmt"
func (p Pricer) Execute() (*ApiResponse, error) {
//if p.ArmRegionName == "" {
// if !validateLocation(p.ArmRegionName) {
// return &ApiResponse{}, fmt.Errorf("unsupported ArmRegionName")
// }
//}
if p.Currency == "" {
return &ApiResponse{}, fmt.Errorf("currency not set")
}
if !validateCurrencyCode(p.Currency) {
return &ApiResponse{}, fmt.Errorf("unsupported currency")
}
s1, err := p.GetString()
if err != nil {
return &ApiResponse{}, err
}
ar, err := p.apg(s1)
if err != nil {
return &ApiResponse{}, err
}
return &ar, nil
}
func (p Pricer) ExecuteAll() (*ApiResponse, error) {
//if p.ArmRegionName == "" {
// if !validateLocation(p.ArmRegionName) {
// return &ApiResponse{}, fmt.Errorf("unsupported ArmRegionName")
// }
//}
if p.Currency == "" {
return &ApiResponse{}, fmt.Errorf("currency not set")
}
if !validateCurrencyCode(p.Currency) {
return &ApiResponse{}, fmt.Errorf("unsupported currency")
}
s1, err := p.GetString()
if err != nil {
return &ApiResponse{}, err
}
/* replace getter with get all version */
p.apg = apiGetAll
ar, err := p.apg(s1)
if err != nil {
return &ApiResponse{}, err
}
return &ar, nil
}