mirror of https://github.com/k3s-io/k3s
72 lines
1.9 KiB
Go
72 lines
1.9 KiB
Go
package client
|
|
|
|
const (
|
|
SCALE_POLICY_TYPE = "scalePolicy"
|
|
)
|
|
|
|
type ScalePolicy struct {
|
|
Resource
|
|
|
|
Increment int64 `json:"increment,omitempty" yaml:"increment,omitempty"`
|
|
|
|
Max int64 `json:"max,omitempty" yaml:"max,omitempty"`
|
|
|
|
Min int64 `json:"min,omitempty" yaml:"min,omitempty"`
|
|
}
|
|
|
|
type ScalePolicyCollection struct {
|
|
Collection
|
|
Data []ScalePolicy `json:"data,omitempty"`
|
|
}
|
|
|
|
type ScalePolicyClient struct {
|
|
rancherClient *RancherClient
|
|
}
|
|
|
|
type ScalePolicyOperations interface {
|
|
List(opts *ListOpts) (*ScalePolicyCollection, error)
|
|
Create(opts *ScalePolicy) (*ScalePolicy, error)
|
|
Update(existing *ScalePolicy, updates interface{}) (*ScalePolicy, error)
|
|
ById(id string) (*ScalePolicy, error)
|
|
Delete(container *ScalePolicy) error
|
|
}
|
|
|
|
func newScalePolicyClient(rancherClient *RancherClient) *ScalePolicyClient {
|
|
return &ScalePolicyClient{
|
|
rancherClient: rancherClient,
|
|
}
|
|
}
|
|
|
|
func (c *ScalePolicyClient) Create(container *ScalePolicy) (*ScalePolicy, error) {
|
|
resp := &ScalePolicy{}
|
|
err := c.rancherClient.doCreate(SCALE_POLICY_TYPE, container, resp)
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ScalePolicyClient) Update(existing *ScalePolicy, updates interface{}) (*ScalePolicy, error) {
|
|
resp := &ScalePolicy{}
|
|
err := c.rancherClient.doUpdate(SCALE_POLICY_TYPE, &existing.Resource, updates, resp)
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ScalePolicyClient) List(opts *ListOpts) (*ScalePolicyCollection, error) {
|
|
resp := &ScalePolicyCollection{}
|
|
err := c.rancherClient.doList(SCALE_POLICY_TYPE, opts, resp)
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ScalePolicyClient) ById(id string) (*ScalePolicy, error) {
|
|
resp := &ScalePolicy{}
|
|
err := c.rancherClient.doById(SCALE_POLICY_TYPE, id, resp)
|
|
if apiError, ok := err.(*ApiError); ok {
|
|
if apiError.StatusCode == 404 {
|
|
return nil, nil
|
|
}
|
|
}
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ScalePolicyClient) Delete(container *ScalePolicy) error {
|
|
return c.rancherClient.doResourceDelete(SCALE_POLICY_TYPE, &container.Resource)
|
|
}
|