traefik/vendor/github.com/rancher/go-rancher/v2/generated_set_service_links_input.go

79 lines
2.5 KiB
Go

package client
const (
SET_SERVICE_LINKS_INPUT_TYPE = "setServiceLinksInput"
)
type SetServiceLinksInput struct {
Resource
ServiceLinks []ServiceLink `json:"serviceLinks,omitempty" yaml:"service_links,omitempty"`
}
type SetServiceLinksInputCollection struct {
Collection
Data []SetServiceLinksInput `json:"data,omitempty"`
client *SetServiceLinksInputClient
}
type SetServiceLinksInputClient struct {
rancherClient *RancherClient
}
type SetServiceLinksInputOperations interface {
List(opts *ListOpts) (*SetServiceLinksInputCollection, error)
Create(opts *SetServiceLinksInput) (*SetServiceLinksInput, error)
Update(existing *SetServiceLinksInput, updates interface{}) (*SetServiceLinksInput, error)
ById(id string) (*SetServiceLinksInput, error)
Delete(container *SetServiceLinksInput) error
}
func newSetServiceLinksInputClient(rancherClient *RancherClient) *SetServiceLinksInputClient {
return &SetServiceLinksInputClient{
rancherClient: rancherClient,
}
}
func (c *SetServiceLinksInputClient) Create(container *SetServiceLinksInput) (*SetServiceLinksInput, error) {
resp := &SetServiceLinksInput{}
err := c.rancherClient.doCreate(SET_SERVICE_LINKS_INPUT_TYPE, container, resp)
return resp, err
}
func (c *SetServiceLinksInputClient) Update(existing *SetServiceLinksInput, updates interface{}) (*SetServiceLinksInput, error) {
resp := &SetServiceLinksInput{}
err := c.rancherClient.doUpdate(SET_SERVICE_LINKS_INPUT_TYPE, &existing.Resource, updates, resp)
return resp, err
}
func (c *SetServiceLinksInputClient) List(opts *ListOpts) (*SetServiceLinksInputCollection, error) {
resp := &SetServiceLinksInputCollection{}
err := c.rancherClient.doList(SET_SERVICE_LINKS_INPUT_TYPE, opts, resp)
resp.client = c
return resp, err
}
func (cc *SetServiceLinksInputCollection) Next() (*SetServiceLinksInputCollection, error) {
if cc != nil && cc.Pagination != nil && cc.Pagination.Next != "" {
resp := &SetServiceLinksInputCollection{}
err := cc.client.rancherClient.doNext(cc.Pagination.Next, resp)
resp.client = cc.client
return resp, err
}
return nil, nil
}
func (c *SetServiceLinksInputClient) ById(id string) (*SetServiceLinksInput, error) {
resp := &SetServiceLinksInput{}
err := c.rancherClient.doById(SET_SERVICE_LINKS_INPUT_TYPE, id, resp)
if apiError, ok := err.(*ApiError); ok {
if apiError.StatusCode == 404 {
return nil, nil
}
}
return resp, err
}
func (c *SetServiceLinksInputClient) Delete(container *SetServiceLinksInput) error {
return c.rancherClient.doResourceDelete(SET_SERVICE_LINKS_INPUT_TYPE, &container.Resource)
}