295 lines
8.3 KiB
Go
295 lines
8.3 KiB
Go
package client
|
|
|
|
const (
|
|
SERVICE_TYPE = "service"
|
|
)
|
|
|
|
type Service struct {
|
|
Resource
|
|
|
|
AccountId string `json:"accountId,omitempty" yaml:"account_id,omitempty"`
|
|
|
|
AssignServiceIpAddress bool `json:"assignServiceIpAddress,omitempty" yaml:"assign_service_ip_address,omitempty"`
|
|
|
|
CreateIndex int64 `json:"createIndex,omitempty" yaml:"create_index,omitempty"`
|
|
|
|
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
|
|
|
CurrentScale int64 `json:"currentScale,omitempty" yaml:"current_scale,omitempty"`
|
|
|
|
Data map[string]interface{} `json:"data,omitempty" yaml:"data,omitempty"`
|
|
|
|
Description string `json:"description,omitempty" yaml:"description,omitempty"`
|
|
|
|
EnvironmentId string `json:"environmentId,omitempty" yaml:"environment_id,omitempty"`
|
|
|
|
ExternalId string `json:"externalId,omitempty" yaml:"external_id,omitempty"`
|
|
|
|
Fqdn string `json:"fqdn,omitempty" yaml:"fqdn,omitempty"`
|
|
|
|
HealthState string `json:"healthState,omitempty" yaml:"health_state,omitempty"`
|
|
|
|
Kind string `json:"kind,omitempty" yaml:"kind,omitempty"`
|
|
|
|
LaunchConfig *LaunchConfig `json:"launchConfig,omitempty" yaml:"launch_config,omitempty"`
|
|
|
|
Metadata map[string]interface{} `json:"metadata,omitempty" yaml:"metadata,omitempty"`
|
|
|
|
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
|
|
|
PublicEndpoints []interface{} `json:"publicEndpoints,omitempty" yaml:"public_endpoints,omitempty"`
|
|
|
|
RemoveTime string `json:"removeTime,omitempty" yaml:"remove_time,omitempty"`
|
|
|
|
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
|
|
|
RetainIp bool `json:"retainIp,omitempty" yaml:"retain_ip,omitempty"`
|
|
|
|
Scale int64 `json:"scale,omitempty" yaml:"scale,omitempty"`
|
|
|
|
ScalePolicy *ScalePolicy `json:"scalePolicy,omitempty" yaml:"scale_policy,omitempty"`
|
|
|
|
SecondaryLaunchConfigs []interface{} `json:"secondaryLaunchConfigs,omitempty" yaml:"secondary_launch_configs,omitempty"`
|
|
|
|
SelectorContainer string `json:"selectorContainer,omitempty" yaml:"selector_container,omitempty"`
|
|
|
|
SelectorLink string `json:"selectorLink,omitempty" yaml:"selector_link,omitempty"`
|
|
|
|
StartOnCreate bool `json:"startOnCreate,omitempty" yaml:"start_on_create,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"`
|
|
|
|
Upgrade *ServiceUpgrade `json:"upgrade,omitempty" yaml:"upgrade,omitempty"`
|
|
|
|
Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
|
|
|
Vip string `json:"vip,omitempty" yaml:"vip,omitempty"`
|
|
}
|
|
|
|
type ServiceCollection struct {
|
|
Collection
|
|
Data []Service `json:"data,omitempty"`
|
|
client *ServiceClient
|
|
}
|
|
|
|
type ServiceClient struct {
|
|
rancherClient *RancherClient
|
|
}
|
|
|
|
type ServiceOperations interface {
|
|
List(opts *ListOpts) (*ServiceCollection, error)
|
|
Create(opts *Service) (*Service, error)
|
|
Update(existing *Service, updates interface{}) (*Service, error)
|
|
ById(id string) (*Service, error)
|
|
Delete(container *Service) error
|
|
|
|
ActionActivate(*Service) (*Service, error)
|
|
|
|
ActionAddservicelink(*Service, *AddRemoveServiceLinkInput) (*Service, error)
|
|
|
|
ActionCancelrollback(*Service) (*Service, error)
|
|
|
|
ActionCancelupgrade(*Service) (*Service, error)
|
|
|
|
ActionCreate(*Service) (*Service, error)
|
|
|
|
ActionDeactivate(*Service) (*Service, error)
|
|
|
|
ActionFinishupgrade(*Service) (*Service, error)
|
|
|
|
ActionRemove(*Service) (*Service, error)
|
|
|
|
ActionRemoveservicelink(*Service, *AddRemoveServiceLinkInput) (*Service, error)
|
|
|
|
ActionRestart(*Service, *ServiceRestart) (*Service, error)
|
|
|
|
ActionRollback(*Service) (*Service, error)
|
|
|
|
ActionSetservicelinks(*Service, *SetServiceLinksInput) (*Service, error)
|
|
|
|
ActionUpdate(*Service) (*Service, error)
|
|
|
|
ActionUpgrade(*Service, *ServiceUpgrade) (*Service, error)
|
|
}
|
|
|
|
func newServiceClient(rancherClient *RancherClient) *ServiceClient {
|
|
return &ServiceClient{
|
|
rancherClient: rancherClient,
|
|
}
|
|
}
|
|
|
|
func (c *ServiceClient) Create(container *Service) (*Service, error) {
|
|
resp := &Service{}
|
|
err := c.rancherClient.doCreate(SERVICE_TYPE, container, resp)
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) Update(existing *Service, updates interface{}) (*Service, error) {
|
|
resp := &Service{}
|
|
err := c.rancherClient.doUpdate(SERVICE_TYPE, &existing.Resource, updates, resp)
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) List(opts *ListOpts) (*ServiceCollection, error) {
|
|
resp := &ServiceCollection{}
|
|
err := c.rancherClient.doList(SERVICE_TYPE, opts, resp)
|
|
resp.client = c
|
|
return resp, err
|
|
}
|
|
|
|
func (cc *ServiceCollection) Next() (*ServiceCollection, error) {
|
|
if cc != nil && cc.Pagination != nil && cc.Pagination.Next != "" {
|
|
resp := &ServiceCollection{}
|
|
err := cc.client.rancherClient.doNext(cc.Pagination.Next, resp)
|
|
resp.client = cc.client
|
|
return resp, err
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
func (c *ServiceClient) ById(id string) (*Service, error) {
|
|
resp := &Service{}
|
|
err := c.rancherClient.doById(SERVICE_TYPE, id, resp)
|
|
if apiError, ok := err.(*ApiError); ok {
|
|
if apiError.StatusCode == 404 {
|
|
return nil, nil
|
|
}
|
|
}
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) Delete(container *Service) error {
|
|
return c.rancherClient.doResourceDelete(SERVICE_TYPE, &container.Resource)
|
|
}
|
|
|
|
func (c *ServiceClient) ActionActivate(resource *Service) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "activate", &resource.Resource, nil, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionAddservicelink(resource *Service, input *AddRemoveServiceLinkInput) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "addservicelink", &resource.Resource, input, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionCancelrollback(resource *Service) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "cancelrollback", &resource.Resource, nil, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionCancelupgrade(resource *Service) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "cancelupgrade", &resource.Resource, nil, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionCreate(resource *Service) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "create", &resource.Resource, nil, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionDeactivate(resource *Service) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "deactivate", &resource.Resource, nil, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionFinishupgrade(resource *Service) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "finishupgrade", &resource.Resource, nil, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionRemove(resource *Service) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "remove", &resource.Resource, nil, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionRemoveservicelink(resource *Service, input *AddRemoveServiceLinkInput) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "removeservicelink", &resource.Resource, input, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionRestart(resource *Service, input *ServiceRestart) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "restart", &resource.Resource, input, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionRollback(resource *Service) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "rollback", &resource.Resource, nil, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionSetservicelinks(resource *Service, input *SetServiceLinksInput) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "setservicelinks", &resource.Resource, input, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionUpdate(resource *Service) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "update", &resource.Resource, nil, resp)
|
|
|
|
return resp, err
|
|
}
|
|
|
|
func (c *ServiceClient) ActionUpgrade(resource *Service, input *ServiceUpgrade) (*Service, error) {
|
|
|
|
resp := &Service{}
|
|
|
|
err := c.rancherClient.doAction(SERVICE_TYPE, "upgrade", &resource.Resource, input, resp)
|
|
|
|
return resp, err
|
|
}
|