mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-30 21:30:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			272 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			272 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package client
 | |
| 
 | |
| const (
 | |
| 	INSTANCE_TYPE = "instance"
 | |
| )
 | |
| 
 | |
| type Instance struct {
 | |
| 	Resource
 | |
| 
 | |
| 	AccountId string `json:"accountId,omitempty" yaml:"account_id,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"`
 | |
| 
 | |
| 	ExternalId string `json:"externalId,omitempty" yaml:"external_id,omitempty"`
 | |
| 
 | |
| 	HostId string `json:"hostId,omitempty" yaml:"host_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"`
 | |
| 
 | |
| 	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"`
 | |
| }
 | |
| 
 | |
| type InstanceCollection struct {
 | |
| 	Collection
 | |
| 	Data []Instance `json:"data,omitempty"`
 | |
| }
 | |
| 
 | |
| type InstanceClient struct {
 | |
| 	rancherClient *RancherClient
 | |
| }
 | |
| 
 | |
| type InstanceOperations interface {
 | |
| 	List(opts *ListOpts) (*InstanceCollection, error)
 | |
| 	Create(opts *Instance) (*Instance, error)
 | |
| 	Update(existing *Instance, updates interface{}) (*Instance, error)
 | |
| 	ById(id string) (*Instance, error)
 | |
| 	Delete(container *Instance) error
 | |
| 
 | |
| 	ActionAllocate(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionConsole(*Instance, *InstanceConsoleInput) (*InstanceConsole, error)
 | |
| 
 | |
| 	ActionCreate(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionDeallocate(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionError(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionMigrate(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionPurge(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionRemove(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionRestart(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionRestore(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionStart(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionStop(*Instance, *InstanceStop) (*Instance, error)
 | |
| 
 | |
| 	ActionUpdate(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionUpdatehealthy(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionUpdatereinitializing(*Instance) (*Instance, error)
 | |
| 
 | |
| 	ActionUpdateunhealthy(*Instance) (*Instance, error)
 | |
| }
 | |
| 
 | |
| func newInstanceClient(rancherClient *RancherClient) *InstanceClient {
 | |
| 	return &InstanceClient{
 | |
| 		rancherClient: rancherClient,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) Create(container *Instance) (*Instance, error) {
 | |
| 	resp := &Instance{}
 | |
| 	err := c.rancherClient.doCreate(INSTANCE_TYPE, container, resp)
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) Update(existing *Instance, updates interface{}) (*Instance, error) {
 | |
| 	resp := &Instance{}
 | |
| 	err := c.rancherClient.doUpdate(INSTANCE_TYPE, &existing.Resource, updates, resp)
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) List(opts *ListOpts) (*InstanceCollection, error) {
 | |
| 	resp := &InstanceCollection{}
 | |
| 	err := c.rancherClient.doList(INSTANCE_TYPE, opts, resp)
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ById(id string) (*Instance, error) {
 | |
| 	resp := &Instance{}
 | |
| 	err := c.rancherClient.doById(INSTANCE_TYPE, id, resp)
 | |
| 	if apiError, ok := err.(*ApiError); ok {
 | |
| 		if apiError.StatusCode == 404 {
 | |
| 			return nil, nil
 | |
| 		}
 | |
| 	}
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) Delete(container *Instance) error {
 | |
| 	return c.rancherClient.doResourceDelete(INSTANCE_TYPE, &container.Resource)
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionAllocate(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "allocate", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionConsole(resource *Instance, input *InstanceConsoleInput) (*InstanceConsole, error) {
 | |
| 
 | |
| 	resp := &InstanceConsole{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "console", &resource.Resource, input, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionCreate(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "create", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionDeallocate(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "deallocate", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionError(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "error", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionMigrate(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "migrate", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionPurge(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "purge", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionRemove(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "remove", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionRestart(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "restart", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionRestore(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "restore", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionStart(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "start", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionStop(resource *Instance, input *InstanceStop) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "stop", &resource.Resource, input, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionUpdate(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "update", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionUpdatehealthy(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "updatehealthy", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionUpdatereinitializing(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "updatereinitializing", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 | |
| 
 | |
| func (c *InstanceClient) ActionUpdateunhealthy(resource *Instance) (*Instance, error) {
 | |
| 
 | |
| 	resp := &Instance{}
 | |
| 
 | |
| 	err := c.rancherClient.doAction(INSTANCE_TYPE, "updateunhealthy", &resource.Resource, nil, resp)
 | |
| 
 | |
| 	return resp, err
 | |
| }
 |