Vendor main dependencies.
This commit is contained in:
parent
49a09ab7dd
commit
dd5e3fba01
2738 changed files with 1045689 additions and 0 deletions
81
vendor/github.com/rancher/go-rancher/client/generated_instance_stop.go
generated
vendored
Normal file
81
vendor/github.com/rancher/go-rancher/client/generated_instance_stop.go
generated
vendored
Normal file
|
@ -0,0 +1,81 @@
|
|||
package client
|
||||
|
||||
const (
|
||||
INSTANCE_STOP_TYPE = "instanceStop"
|
||||
)
|
||||
|
||||
type InstanceStop struct {
|
||||
Resource
|
||||
|
||||
Remove bool `json:"remove,omitempty" yaml:"remove,omitempty"`
|
||||
|
||||
Timeout int64 `json:"timeout,omitempty" yaml:"timeout,omitempty"`
|
||||
}
|
||||
|
||||
type InstanceStopCollection struct {
|
||||
Collection
|
||||
Data []InstanceStop `json:"data,omitempty"`
|
||||
client *InstanceStopClient
|
||||
}
|
||||
|
||||
type InstanceStopClient struct {
|
||||
rancherClient *RancherClient
|
||||
}
|
||||
|
||||
type InstanceStopOperations interface {
|
||||
List(opts *ListOpts) (*InstanceStopCollection, error)
|
||||
Create(opts *InstanceStop) (*InstanceStop, error)
|
||||
Update(existing *InstanceStop, updates interface{}) (*InstanceStop, error)
|
||||
ById(id string) (*InstanceStop, error)
|
||||
Delete(container *InstanceStop) error
|
||||
}
|
||||
|
||||
func newInstanceStopClient(rancherClient *RancherClient) *InstanceStopClient {
|
||||
return &InstanceStopClient{
|
||||
rancherClient: rancherClient,
|
||||
}
|
||||
}
|
||||
|
||||
func (c *InstanceStopClient) Create(container *InstanceStop) (*InstanceStop, error) {
|
||||
resp := &InstanceStop{}
|
||||
err := c.rancherClient.doCreate(INSTANCE_STOP_TYPE, container, resp)
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *InstanceStopClient) Update(existing *InstanceStop, updates interface{}) (*InstanceStop, error) {
|
||||
resp := &InstanceStop{}
|
||||
err := c.rancherClient.doUpdate(INSTANCE_STOP_TYPE, &existing.Resource, updates, resp)
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *InstanceStopClient) List(opts *ListOpts) (*InstanceStopCollection, error) {
|
||||
resp := &InstanceStopCollection{}
|
||||
err := c.rancherClient.doList(INSTANCE_STOP_TYPE, opts, resp)
|
||||
resp.client = c
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (cc *InstanceStopCollection) Next() (*InstanceStopCollection, error) {
|
||||
if cc != nil && cc.Pagination != nil && cc.Pagination.Next != "" {
|
||||
resp := &InstanceStopCollection{}
|
||||
err := cc.client.rancherClient.doNext(cc.Pagination.Next, resp)
|
||||
resp.client = cc.client
|
||||
return resp, err
|
||||
}
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (c *InstanceStopClient) ById(id string) (*InstanceStop, error) {
|
||||
resp := &InstanceStop{}
|
||||
err := c.rancherClient.doById(INSTANCE_STOP_TYPE, id, resp)
|
||||
if apiError, ok := err.(*ApiError); ok {
|
||||
if apiError.StatusCode == 404 {
|
||||
return nil, nil
|
||||
}
|
||||
}
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *InstanceStopClient) Delete(container *InstanceStop) error {
|
||||
return c.rancherClient.doResourceDelete(INSTANCE_STOP_TYPE, &container.Resource)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue