add vendor dirs for rancher credential provider
This commit is contained in:
71
vendor/github.com/rancher/go-rancher/client/generated_scale_policy.go
generated
vendored
Normal file
71
vendor/github.com/rancher/go-rancher/client/generated_scale_policy.go
generated
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
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)
|
||||
}
|
Reference in New Issue
Block a user