terraform/vendor/github.com/rancher/go-rancher/client/generated_machine.go

175 lines
5.1 KiB
Go

package client
const (
MACHINE_TYPE = "machine"
)
type Machine struct {
Resource
AccountId string `json:"accountId,omitempty" yaml:"account_id,omitempty"`
AuthCertificateAuthority string `json:"authCertificateAuthority,omitempty" yaml:"auth_certificate_authority,omitempty"`
AuthKey string `json:"authKey,omitempty" yaml:"auth_key,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"`
DockerVersion string `json:"dockerVersion,omitempty" yaml:"docker_version,omitempty"`
Driver string `json:"driver,omitempty" yaml:"driver,omitempty"`
EngineEnv map[string]interface{} `json:"engineEnv,omitempty" yaml:"engine_env,omitempty"`
EngineInsecureRegistry []string `json:"engineInsecureRegistry,omitempty" yaml:"engine_insecure_registry,omitempty"`
EngineInstallUrl string `json:"engineInstallUrl,omitempty" yaml:"engine_install_url,omitempty"`
EngineLabel map[string]interface{} `json:"engineLabel,omitempty" yaml:"engine_label,omitempty"`
EngineOpt map[string]interface{} `json:"engineOpt,omitempty" yaml:"engine_opt,omitempty"`
EngineRegistryMirror []string `json:"engineRegistryMirror,omitempty" yaml:"engine_registry_mirror,omitempty"`
EngineStorageDriver string `json:"engineStorageDriver,omitempty" yaml:"engine_storage_driver,omitempty"`
ExternalId string `json:"externalId,omitempty" yaml:"external_id,omitempty"`
ExtractedConfig string `json:"extractedConfig,omitempty" yaml:"extracted_config,omitempty"`
Kind string `json:"kind,omitempty" yaml:"kind,omitempty"`
Labels map[string]interface{} `json:"labels,omitempty" yaml:"labels,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 MachineCollection struct {
Collection
Data []Machine `json:"data,omitempty"`
}
type MachineClient struct {
rancherClient *RancherClient
}
type MachineOperations interface {
List(opts *ListOpts) (*MachineCollection, error)
Create(opts *Machine) (*Machine, error)
Update(existing *Machine, updates interface{}) (*Machine, error)
ById(id string) (*Machine, error)
Delete(container *Machine) error
ActionBootstrap(*Machine) (*PhysicalHost, error)
ActionCreate(*Machine) (*PhysicalHost, error)
ActionError(*Machine) (*PhysicalHost, error)
ActionRemove(*Machine) (*PhysicalHost, error)
ActionUpdate(*Machine) (*PhysicalHost, error)
}
func newMachineClient(rancherClient *RancherClient) *MachineClient {
return &MachineClient{
rancherClient: rancherClient,
}
}
func (c *MachineClient) Create(container *Machine) (*Machine, error) {
resp := &Machine{}
err := c.rancherClient.doCreate(MACHINE_TYPE, container, resp)
return resp, err
}
func (c *MachineClient) Update(existing *Machine, updates interface{}) (*Machine, error) {
resp := &Machine{}
err := c.rancherClient.doUpdate(MACHINE_TYPE, &existing.Resource, updates, resp)
return resp, err
}
func (c *MachineClient) List(opts *ListOpts) (*MachineCollection, error) {
resp := &MachineCollection{}
err := c.rancherClient.doList(MACHINE_TYPE, opts, resp)
return resp, err
}
func (c *MachineClient) ById(id string) (*Machine, error) {
resp := &Machine{}
err := c.rancherClient.doById(MACHINE_TYPE, id, resp)
if apiError, ok := err.(*ApiError); ok {
if apiError.StatusCode == 404 {
return nil, nil
}
}
return resp, err
}
func (c *MachineClient) Delete(container *Machine) error {
return c.rancherClient.doResourceDelete(MACHINE_TYPE, &container.Resource)
}
func (c *MachineClient) ActionBootstrap(resource *Machine) (*PhysicalHost, error) {
resp := &PhysicalHost{}
err := c.rancherClient.doAction(MACHINE_TYPE, "bootstrap", &resource.Resource, nil, resp)
return resp, err
}
func (c *MachineClient) ActionCreate(resource *Machine) (*PhysicalHost, error) {
resp := &PhysicalHost{}
err := c.rancherClient.doAction(MACHINE_TYPE, "create", &resource.Resource, nil, resp)
return resp, err
}
func (c *MachineClient) ActionError(resource *Machine) (*PhysicalHost, error) {
resp := &PhysicalHost{}
err := c.rancherClient.doAction(MACHINE_TYPE, "error", &resource.Resource, nil, resp)
return resp, err
}
func (c *MachineClient) ActionRemove(resource *Machine) (*PhysicalHost, error) {
resp := &PhysicalHost{}
err := c.rancherClient.doAction(MACHINE_TYPE, "remove", &resource.Resource, nil, resp)
return resp, err
}
func (c *MachineClient) ActionUpdate(resource *Machine) (*PhysicalHost, error) {
resp := &PhysicalHost{}
err := c.rancherClient.doAction(MACHINE_TYPE, "update", &resource.Resource, nil, resp)
return resp, err
}