Update Rancher API integration to go-rancher client v2.
This commit is contained in:
parent
d89b234cad
commit
07c6e33598
188 changed files with 5349 additions and 1969 deletions
87
vendor/github.com/rancher/go-rancher/v2/generated_lb_config.go
generated
vendored
Normal file
87
vendor/github.com/rancher/go-rancher/v2/generated_lb_config.go
generated
vendored
Normal file
|
@ -0,0 +1,87 @@
|
|||
package client
|
||||
|
||||
const (
|
||||
LB_CONFIG_TYPE = "lbConfig"
|
||||
)
|
||||
|
||||
type LbConfig struct {
|
||||
Resource
|
||||
|
||||
CertificateIds []string `json:"certificateIds,omitempty" yaml:"certificate_ids,omitempty"`
|
||||
|
||||
Config string `json:"config,omitempty" yaml:"config,omitempty"`
|
||||
|
||||
DefaultCertificateId string `json:"defaultCertificateId,omitempty" yaml:"default_certificate_id,omitempty"`
|
||||
|
||||
PortRules []PortRule `json:"portRules,omitempty" yaml:"port_rules,omitempty"`
|
||||
|
||||
StickinessPolicy *LoadBalancerCookieStickinessPolicy `json:"stickinessPolicy,omitempty" yaml:"stickiness_policy,omitempty"`
|
||||
}
|
||||
|
||||
type LbConfigCollection struct {
|
||||
Collection
|
||||
Data []LbConfig `json:"data,omitempty"`
|
||||
client *LbConfigClient
|
||||
}
|
||||
|
||||
type LbConfigClient struct {
|
||||
rancherClient *RancherClient
|
||||
}
|
||||
|
||||
type LbConfigOperations interface {
|
||||
List(opts *ListOpts) (*LbConfigCollection, error)
|
||||
Create(opts *LbConfig) (*LbConfig, error)
|
||||
Update(existing *LbConfig, updates interface{}) (*LbConfig, error)
|
||||
ById(id string) (*LbConfig, error)
|
||||
Delete(container *LbConfig) error
|
||||
}
|
||||
|
||||
func newLbConfigClient(rancherClient *RancherClient) *LbConfigClient {
|
||||
return &LbConfigClient{
|
||||
rancherClient: rancherClient,
|
||||
}
|
||||
}
|
||||
|
||||
func (c *LbConfigClient) Create(container *LbConfig) (*LbConfig, error) {
|
||||
resp := &LbConfig{}
|
||||
err := c.rancherClient.doCreate(LB_CONFIG_TYPE, container, resp)
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *LbConfigClient) Update(existing *LbConfig, updates interface{}) (*LbConfig, error) {
|
||||
resp := &LbConfig{}
|
||||
err := c.rancherClient.doUpdate(LB_CONFIG_TYPE, &existing.Resource, updates, resp)
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *LbConfigClient) List(opts *ListOpts) (*LbConfigCollection, error) {
|
||||
resp := &LbConfigCollection{}
|
||||
err := c.rancherClient.doList(LB_CONFIG_TYPE, opts, resp)
|
||||
resp.client = c
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (cc *LbConfigCollection) Next() (*LbConfigCollection, error) {
|
||||
if cc != nil && cc.Pagination != nil && cc.Pagination.Next != "" {
|
||||
resp := &LbConfigCollection{}
|
||||
err := cc.client.rancherClient.doNext(cc.Pagination.Next, resp)
|
||||
resp.client = cc.client
|
||||
return resp, err
|
||||
}
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (c *LbConfigClient) ById(id string) (*LbConfig, error) {
|
||||
resp := &LbConfig{}
|
||||
err := c.rancherClient.doById(LB_CONFIG_TYPE, id, resp)
|
||||
if apiError, ok := err.(*ApiError); ok {
|
||||
if apiError.StatusCode == 404 {
|
||||
return nil, nil
|
||||
}
|
||||
}
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *LbConfigClient) Delete(container *LbConfig) error {
|
||||
return c.rancherClient.doResourceDelete(LB_CONFIG_TYPE, &container.Resource)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue