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
81
vendor/github.com/rancher/go-rancher/v2/generated_service_binding.go
generated
vendored
Normal file
81
vendor/github.com/rancher/go-rancher/v2/generated_service_binding.go
generated
vendored
Normal file
|
@ -0,0 +1,81 @@
|
|||
package client
|
||||
|
||||
const (
|
||||
SERVICE_BINDING_TYPE = "serviceBinding"
|
||||
)
|
||||
|
||||
type ServiceBinding struct {
|
||||
Resource
|
||||
|
||||
Labels map[string]interface{} `json:"labels,omitempty" yaml:"labels,omitempty"`
|
||||
|
||||
Ports []string `json:"ports,omitempty" yaml:"ports,omitempty"`
|
||||
}
|
||||
|
||||
type ServiceBindingCollection struct {
|
||||
Collection
|
||||
Data []ServiceBinding `json:"data,omitempty"`
|
||||
client *ServiceBindingClient
|
||||
}
|
||||
|
||||
type ServiceBindingClient struct {
|
||||
rancherClient *RancherClient
|
||||
}
|
||||
|
||||
type ServiceBindingOperations interface {
|
||||
List(opts *ListOpts) (*ServiceBindingCollection, error)
|
||||
Create(opts *ServiceBinding) (*ServiceBinding, error)
|
||||
Update(existing *ServiceBinding, updates interface{}) (*ServiceBinding, error)
|
||||
ById(id string) (*ServiceBinding, error)
|
||||
Delete(container *ServiceBinding) error
|
||||
}
|
||||
|
||||
func newServiceBindingClient(rancherClient *RancherClient) *ServiceBindingClient {
|
||||
return &ServiceBindingClient{
|
||||
rancherClient: rancherClient,
|
||||
}
|
||||
}
|
||||
|
||||
func (c *ServiceBindingClient) Create(container *ServiceBinding) (*ServiceBinding, error) {
|
||||
resp := &ServiceBinding{}
|
||||
err := c.rancherClient.doCreate(SERVICE_BINDING_TYPE, container, resp)
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *ServiceBindingClient) Update(existing *ServiceBinding, updates interface{}) (*ServiceBinding, error) {
|
||||
resp := &ServiceBinding{}
|
||||
err := c.rancherClient.doUpdate(SERVICE_BINDING_TYPE, &existing.Resource, updates, resp)
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *ServiceBindingClient) List(opts *ListOpts) (*ServiceBindingCollection, error) {
|
||||
resp := &ServiceBindingCollection{}
|
||||
err := c.rancherClient.doList(SERVICE_BINDING_TYPE, opts, resp)
|
||||
resp.client = c
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (cc *ServiceBindingCollection) Next() (*ServiceBindingCollection, error) {
|
||||
if cc != nil && cc.Pagination != nil && cc.Pagination.Next != "" {
|
||||
resp := &ServiceBindingCollection{}
|
||||
err := cc.client.rancherClient.doNext(cc.Pagination.Next, resp)
|
||||
resp.client = cc.client
|
||||
return resp, err
|
||||
}
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (c *ServiceBindingClient) ById(id string) (*ServiceBinding, error) {
|
||||
resp := &ServiceBinding{}
|
||||
err := c.rancherClient.doById(SERVICE_BINDING_TYPE, id, resp)
|
||||
if apiError, ok := err.(*ApiError); ok {
|
||||
if apiError.StatusCode == 404 {
|
||||
return nil, nil
|
||||
}
|
||||
}
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *ServiceBindingClient) Delete(container *ServiceBinding) error {
|
||||
return c.rancherClient.doResourceDelete(SERVICE_BINDING_TYPE, &container.Resource)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue