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

81 lines
2.5 KiB
Go

package client
const (
TYPE_DOCUMENTATION_TYPE = "typeDocumentation"
)
type TypeDocumentation struct {
Resource
Description string `json:"description,omitempty" yaml:"description,omitempty"`
ResourceFields map[string]interface{} `json:"resourceFields,omitempty" yaml:"resource_fields,omitempty"`
}
type TypeDocumentationCollection struct {
Collection
Data []TypeDocumentation `json:"data,omitempty"`
client *TypeDocumentationClient
}
type TypeDocumentationClient struct {
rancherClient *RancherClient
}
type TypeDocumentationOperations interface {
List(opts *ListOpts) (*TypeDocumentationCollection, error)
Create(opts *TypeDocumentation) (*TypeDocumentation, error)
Update(existing *TypeDocumentation, updates interface{}) (*TypeDocumentation, error)
ById(id string) (*TypeDocumentation, error)
Delete(container *TypeDocumentation) error
}
func newTypeDocumentationClient(rancherClient *RancherClient) *TypeDocumentationClient {
return &TypeDocumentationClient{
rancherClient: rancherClient,
}
}
func (c *TypeDocumentationClient) Create(container *TypeDocumentation) (*TypeDocumentation, error) {
resp := &TypeDocumentation{}
err := c.rancherClient.doCreate(TYPE_DOCUMENTATION_TYPE, container, resp)
return resp, err
}
func (c *TypeDocumentationClient) Update(existing *TypeDocumentation, updates interface{}) (*TypeDocumentation, error) {
resp := &TypeDocumentation{}
err := c.rancherClient.doUpdate(TYPE_DOCUMENTATION_TYPE, &existing.Resource, updates, resp)
return resp, err
}
func (c *TypeDocumentationClient) List(opts *ListOpts) (*TypeDocumentationCollection, error) {
resp := &TypeDocumentationCollection{}
err := c.rancherClient.doList(TYPE_DOCUMENTATION_TYPE, opts, resp)
resp.client = c
return resp, err
}
func (cc *TypeDocumentationCollection) Next() (*TypeDocumentationCollection, error) {
if cc != nil && cc.Pagination != nil && cc.Pagination.Next != "" {
resp := &TypeDocumentationCollection{}
err := cc.client.rancherClient.doNext(cc.Pagination.Next, resp)
resp.client = cc.client
return resp, err
}
return nil, nil
}
func (c *TypeDocumentationClient) ById(id string) (*TypeDocumentation, error) {
resp := &TypeDocumentation{}
err := c.rancherClient.doById(TYPE_DOCUMENTATION_TYPE, id, resp)
if apiError, ok := err.(*ApiError); ok {
if apiError.StatusCode == 404 {
return nil, nil
}
}
return resp, err
}
func (c *TypeDocumentationClient) Delete(container *TypeDocumentation) error {
return c.rancherClient.doResourceDelete(TYPE_DOCUMENTATION_TYPE, &container.Resource)
}