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
181
vendor/github.com/rancher/go-rancher/v2/generated_registry.go
generated
vendored
Normal file
181
vendor/github.com/rancher/go-rancher/v2/generated_registry.go
generated
vendored
Normal file
|
@ -0,0 +1,181 @@
|
|||
package client
|
||||
|
||||
const (
|
||||
REGISTRY_TYPE = "registry"
|
||||
)
|
||||
|
||||
type Registry struct {
|
||||
Resource
|
||||
|
||||
AccountId string `json:"accountId,omitempty" yaml:"account_id,omitempty"`
|
||||
|
||||
BlockDevicePath string `json:"blockDevicePath,omitempty" yaml:"block_device_path,omitempty"`
|
||||
|
||||
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
||||
|
||||
Data map[string]interface{} `json:"data,omitempty" yaml:"data,omitempty"`
|
||||
|
||||
Description string `json:"description,omitempty" yaml:"description,omitempty"`
|
||||
|
||||
DriverName string `json:"driverName,omitempty" yaml:"driver_name,omitempty"`
|
||||
|
||||
ExternalId string `json:"externalId,omitempty" yaml:"external_id,omitempty"`
|
||||
|
||||
Kind string `json:"kind,omitempty" yaml:"kind,omitempty"`
|
||||
|
||||
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
||||
|
||||
RemoveTime string `json:"removeTime,omitempty" yaml:"remove_time,omitempty"`
|
||||
|
||||
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
||||
|
||||
ServerAddress string `json:"serverAddress,omitempty" yaml:"server_address,omitempty"`
|
||||
|
||||
State string `json:"state,omitempty" yaml:"state,omitempty"`
|
||||
|
||||
Transitioning string `json:"transitioning,omitempty" yaml:"transitioning,omitempty"`
|
||||
|
||||
TransitioningMessage string `json:"transitioningMessage,omitempty" yaml:"transitioning_message,omitempty"`
|
||||
|
||||
TransitioningProgress int64 `json:"transitioningProgress,omitempty" yaml:"transitioning_progress,omitempty"`
|
||||
|
||||
Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
||||
|
||||
VolumeAccessMode string `json:"volumeAccessMode,omitempty" yaml:"volume_access_mode,omitempty"`
|
||||
|
||||
VolumeCapabilities []string `json:"volumeCapabilities,omitempty" yaml:"volume_capabilities,omitempty"`
|
||||
}
|
||||
|
||||
type RegistryCollection struct {
|
||||
Collection
|
||||
Data []Registry `json:"data,omitempty"`
|
||||
client *RegistryClient
|
||||
}
|
||||
|
||||
type RegistryClient struct {
|
||||
rancherClient *RancherClient
|
||||
}
|
||||
|
||||
type RegistryOperations interface {
|
||||
List(opts *ListOpts) (*RegistryCollection, error)
|
||||
Create(opts *Registry) (*Registry, error)
|
||||
Update(existing *Registry, updates interface{}) (*Registry, error)
|
||||
ById(id string) (*Registry, error)
|
||||
Delete(container *Registry) error
|
||||
|
||||
ActionActivate(*Registry) (*StoragePool, error)
|
||||
|
||||
ActionCreate(*Registry) (*StoragePool, error)
|
||||
|
||||
ActionDeactivate(*Registry) (*StoragePool, error)
|
||||
|
||||
ActionPurge(*Registry) (*StoragePool, error)
|
||||
|
||||
ActionRemove(*Registry) (*StoragePool, error)
|
||||
|
||||
ActionUpdate(*Registry) (*StoragePool, error)
|
||||
}
|
||||
|
||||
func newRegistryClient(rancherClient *RancherClient) *RegistryClient {
|
||||
return &RegistryClient{
|
||||
rancherClient: rancherClient,
|
||||
}
|
||||
}
|
||||
|
||||
func (c *RegistryClient) Create(container *Registry) (*Registry, error) {
|
||||
resp := &Registry{}
|
||||
err := c.rancherClient.doCreate(REGISTRY_TYPE, container, resp)
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *RegistryClient) Update(existing *Registry, updates interface{}) (*Registry, error) {
|
||||
resp := &Registry{}
|
||||
err := c.rancherClient.doUpdate(REGISTRY_TYPE, &existing.Resource, updates, resp)
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *RegistryClient) List(opts *ListOpts) (*RegistryCollection, error) {
|
||||
resp := &RegistryCollection{}
|
||||
err := c.rancherClient.doList(REGISTRY_TYPE, opts, resp)
|
||||
resp.client = c
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (cc *RegistryCollection) Next() (*RegistryCollection, error) {
|
||||
if cc != nil && cc.Pagination != nil && cc.Pagination.Next != "" {
|
||||
resp := &RegistryCollection{}
|
||||
err := cc.client.rancherClient.doNext(cc.Pagination.Next, resp)
|
||||
resp.client = cc.client
|
||||
return resp, err
|
||||
}
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (c *RegistryClient) ById(id string) (*Registry, error) {
|
||||
resp := &Registry{}
|
||||
err := c.rancherClient.doById(REGISTRY_TYPE, id, resp)
|
||||
if apiError, ok := err.(*ApiError); ok {
|
||||
if apiError.StatusCode == 404 {
|
||||
return nil, nil
|
||||
}
|
||||
}
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *RegistryClient) Delete(container *Registry) error {
|
||||
return c.rancherClient.doResourceDelete(REGISTRY_TYPE, &container.Resource)
|
||||
}
|
||||
|
||||
func (c *RegistryClient) ActionActivate(resource *Registry) (*StoragePool, error) {
|
||||
|
||||
resp := &StoragePool{}
|
||||
|
||||
err := c.rancherClient.doAction(REGISTRY_TYPE, "activate", &resource.Resource, nil, resp)
|
||||
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *RegistryClient) ActionCreate(resource *Registry) (*StoragePool, error) {
|
||||
|
||||
resp := &StoragePool{}
|
||||
|
||||
err := c.rancherClient.doAction(REGISTRY_TYPE, "create", &resource.Resource, nil, resp)
|
||||
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *RegistryClient) ActionDeactivate(resource *Registry) (*StoragePool, error) {
|
||||
|
||||
resp := &StoragePool{}
|
||||
|
||||
err := c.rancherClient.doAction(REGISTRY_TYPE, "deactivate", &resource.Resource, nil, resp)
|
||||
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *RegistryClient) ActionPurge(resource *Registry) (*StoragePool, error) {
|
||||
|
||||
resp := &StoragePool{}
|
||||
|
||||
err := c.rancherClient.doAction(REGISTRY_TYPE, "purge", &resource.Resource, nil, resp)
|
||||
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *RegistryClient) ActionRemove(resource *Registry) (*StoragePool, error) {
|
||||
|
||||
resp := &StoragePool{}
|
||||
|
||||
err := c.rancherClient.doAction(REGISTRY_TYPE, "remove", &resource.Resource, nil, resp)
|
||||
|
||||
return resp, err
|
||||
}
|
||||
|
||||
func (c *RegistryClient) ActionUpdate(resource *Registry) (*StoragePool, error) {
|
||||
|
||||
resp := &StoragePool{}
|
||||
|
||||
err := c.rancherClient.doAction(REGISTRY_TYPE, "update", &resource.Resource, nil, resp)
|
||||
|
||||
return resp, err
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue