diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-23 15:31:00 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-23 15:31:00 +0100 |
commit | dcdee5e2aa05ec07e7e750bea4faad63bce7b668 (patch) | |
tree | 68d6755cb7e0bbb1b4fdbdb2e60456d1ef17f30e /lib/xsapiv1/sdks.go | |
parent | 297955b744110f67dad475e628bf068ec849b190 (diff) |
Reworked SDKs events (introduced sdk-state-change)
Split add/remove/state-change from installing output
(AKA SDKManagement event) in order to clearly separate events
used to send installation output and sdk config changes.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/xsapiv1/sdks.go')
-rw-r--r-- | lib/xsapiv1/sdks.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/xsapiv1/sdks.go b/lib/xsapiv1/sdks.go index f751fc6..abb5d4a 100644 --- a/lib/xsapiv1/sdks.go +++ b/lib/xsapiv1/sdks.go @@ -65,10 +65,17 @@ type SDKInstallArgs struct { InstallArgs []string `json:"installArgs"` // args directly passed to add/install script } +// SDK SDKManagementMsg Actions +const ( + SdkMgtActionInstall = "installing" + SdkMgtActionRemove = "removing" +) + // SDKManagementMsg Message send during SDK installation or when installation is complete type SDKManagementMsg struct { CmdID string `json:"cmdID"` Timestamp string `json:"timestamp"` + Action string `json:"action"` Sdk SDK `json:"sdk"` Stdout string `json:"stdout"` Stderr string `json:"stderr"` |