2017-02-07 21:33:23 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
const (
|
|
|
|
PROCESS_INSTANCE_TYPE = "processInstance"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProcessInstance struct {
|
|
|
|
Resource
|
|
|
|
|
2017-11-05 12:02:03 +00:00
|
|
|
AccountId string `json:"accountId,omitempty" yaml:"account_id,omitempty"`
|
|
|
|
|
2017-02-07 21:33:23 +00:00
|
|
|
Data map[string]interface{} `json:"data,omitempty" yaml:"data,omitempty"`
|
|
|
|
|
|
|
|
EndTime string `json:"endTime,omitempty" yaml:"end_time,omitempty"`
|
|
|
|
|
2017-11-05 12:02:03 +00:00
|
|
|
ExecutionCount int64 `json:"executionCount,omitempty" yaml:"execution_count,omitempty"`
|
|
|
|
|
2017-02-07 21:33:23 +00:00
|
|
|
ExitReason string `json:"exitReason,omitempty" yaml:"exit_reason,omitempty"`
|
|
|
|
|
|
|
|
Phase string `json:"phase,omitempty" yaml:"phase,omitempty"`
|
|
|
|
|
|
|
|
Priority int64 `json:"priority,omitempty" yaml:"priority,omitempty"`
|
|
|
|
|
|
|
|
ProcessName string `json:"processName,omitempty" yaml:"process_name,omitempty"`
|
|
|
|
|
|
|
|
ResourceId string `json:"resourceId,omitempty" yaml:"resource_id,omitempty"`
|
|
|
|
|
|
|
|
ResourceType string `json:"resourceType,omitempty" yaml:"resource_type,omitempty"`
|
|
|
|
|
|
|
|
Result string `json:"result,omitempty" yaml:"result,omitempty"`
|
|
|
|
|
2017-11-05 12:02:03 +00:00
|
|
|
RunAfter string `json:"runAfter,omitempty" yaml:"run_after,omitempty"`
|
|
|
|
|
2017-02-07 21:33:23 +00:00
|
|
|
RunningProcessServerId string `json:"runningProcessServerId,omitempty" yaml:"running_process_server_id,omitempty"`
|
|
|
|
|
|
|
|
StartProcessServerId string `json:"startProcessServerId,omitempty" yaml:"start_process_server_id,omitempty"`
|
|
|
|
|
|
|
|
StartTime string `json:"startTime,omitempty" yaml:"start_time,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProcessInstanceCollection struct {
|
|
|
|
Collection
|
|
|
|
Data []ProcessInstance `json:"data,omitempty"`
|
|
|
|
client *ProcessInstanceClient
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProcessInstanceClient struct {
|
|
|
|
rancherClient *RancherClient
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProcessInstanceOperations interface {
|
|
|
|
List(opts *ListOpts) (*ProcessInstanceCollection, error)
|
|
|
|
Create(opts *ProcessInstance) (*ProcessInstance, error)
|
|
|
|
Update(existing *ProcessInstance, updates interface{}) (*ProcessInstance, error)
|
|
|
|
ById(id string) (*ProcessInstance, error)
|
|
|
|
Delete(container *ProcessInstance) error
|
2017-11-05 12:02:03 +00:00
|
|
|
|
|
|
|
ActionReplay(*ProcessInstance) (*ProcessInstance, error)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func newProcessInstanceClient(rancherClient *RancherClient) *ProcessInstanceClient {
|
|
|
|
return &ProcessInstanceClient{
|
|
|
|
rancherClient: rancherClient,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ProcessInstanceClient) Create(container *ProcessInstance) (*ProcessInstance, error) {
|
|
|
|
resp := &ProcessInstance{}
|
|
|
|
err := c.rancherClient.doCreate(PROCESS_INSTANCE_TYPE, container, resp)
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ProcessInstanceClient) Update(existing *ProcessInstance, updates interface{}) (*ProcessInstance, error) {
|
|
|
|
resp := &ProcessInstance{}
|
|
|
|
err := c.rancherClient.doUpdate(PROCESS_INSTANCE_TYPE, &existing.Resource, updates, resp)
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ProcessInstanceClient) List(opts *ListOpts) (*ProcessInstanceCollection, error) {
|
|
|
|
resp := &ProcessInstanceCollection{}
|
|
|
|
err := c.rancherClient.doList(PROCESS_INSTANCE_TYPE, opts, resp)
|
|
|
|
resp.client = c
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cc *ProcessInstanceCollection) Next() (*ProcessInstanceCollection, error) {
|
|
|
|
if cc != nil && cc.Pagination != nil && cc.Pagination.Next != "" {
|
|
|
|
resp := &ProcessInstanceCollection{}
|
|
|
|
err := cc.client.rancherClient.doNext(cc.Pagination.Next, resp)
|
|
|
|
resp.client = cc.client
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ProcessInstanceClient) ById(id string) (*ProcessInstance, error) {
|
|
|
|
resp := &ProcessInstance{}
|
|
|
|
err := c.rancherClient.doById(PROCESS_INSTANCE_TYPE, id, resp)
|
|
|
|
if apiError, ok := err.(*ApiError); ok {
|
|
|
|
if apiError.StatusCode == 404 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ProcessInstanceClient) Delete(container *ProcessInstance) error {
|
|
|
|
return c.rancherClient.doResourceDelete(PROCESS_INSTANCE_TYPE, &container.Resource)
|
|
|
|
}
|
2017-11-05 12:02:03 +00:00
|
|
|
|
|
|
|
func (c *ProcessInstanceClient) ActionReplay(resource *ProcessInstance) (*ProcessInstance, error) {
|
|
|
|
|
|
|
|
resp := &ProcessInstance{}
|
|
|
|
|
|
|
|
err := c.rancherClient.doAction(PROCESS_INSTANCE_TYPE, "replay", &resource.Resource, nil, resp)
|
|
|
|
|
|
|
|
return resp, err
|
|
|
|
}
|