-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_node_pool_spec.go
86 lines (66 loc) · 1.82 KB
/
model_node_pool_spec.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
package model
import (
"github.com/fecloud-sdk/fecloud-sdk-go/core/utils"
"errors"
"github.com/fecloud-sdk/fecloud-sdk-go/core/converter"
"strings"
)
type NodePoolSpec struct {
Type *NodePoolSpecType `json:"type,omitempty"`
NodeTemplate *NodeSpec `json:"nodeTemplate"`
InitialNodeCount *int32 `json:"initialNodeCount,omitempty"`
Autoscaling *NodePoolNodeAutoscaling `json:"autoscaling,omitempty"`
NodeManagement *NodeManagement `json:"nodeManagement,omitempty"`
PodSecurityGroups *[]SecurityId `json:"podSecurityGroups,omitempty"`
CustomSecurityGroups *[]string `json:"customSecurityGroups,omitempty"`
}
func (o NodePoolSpec) String() string {
data, err := utils.Marshal(o)
if err != nil {
return "NodePoolSpec struct{}"
}
return strings.Join([]string{"NodePoolSpec", string(data)}, " ")
}
type NodePoolSpecType struct {
value string
}
type NodePoolSpecTypeEnum struct {
VM NodePoolSpecType
ELASTIC_BMS NodePoolSpecType
PM NodePoolSpecType
}
func GetNodePoolSpecTypeEnum() NodePoolSpecTypeEnum {
return NodePoolSpecTypeEnum{
VM: NodePoolSpecType{
value: "vm",
},
ELASTIC_BMS: NodePoolSpecType{
value: "ElasticBMS",
},
PM: NodePoolSpecType{
value: "pm",
},
}
}
func (c NodePoolSpecType) Value() string {
return c.value
}
func (c NodePoolSpecType) MarshalJSON() ([]byte, error) {
return utils.Marshal(c.value)
}
func (c *NodePoolSpecType) UnmarshalJSON(b []byte) error {
myConverter := converter.StringConverterFactory("string")
if myConverter == nil {
return errors.New("unsupported StringConverter type: string")
}
interf, err := myConverter.CovertStringToInterface(strings.Trim(string(b[:]), "\""))
if err != nil {
return err
}
if val, ok := interf.(string); ok {
c.value = val
return nil
} else {
return errors.New("convert enum data to string error")
}
}