Update dependencies to add service fabric mesh via new azure-sdk-go

This commit is contained in:
Jeremy Rickard
2018-08-03 11:57:00 -06:00
parent bcea8b955b
commit 636b4120f1
130 changed files with 9430 additions and 9975 deletions

View File

@@ -234,7 +234,6 @@ type Cmd struct {
type SessionConfig struct {
// The primary session may have the same ID as the executor owning it
Common `vic:"0.1" scope:"read-only" key:"common"`
Detail `vic:"0.1" scope:"read-write" key:"detail"`
// The primary process for the session
Cmd Cmd `vic:"0.1" scope:"read-only" key:"cmd"`
@@ -278,6 +277,10 @@ type SessionConfig struct {
// Need to go here since UID/GID resolution must be done on appliance
User string `vic:"0.1" scope:"read-only" key:"User"`
Group string `vic:"0.1" scope:"read-only" key:"Group"`
// Detail contains create/started/stopped timestamps. It is placed last in the structure so that all
// other state serialization is complete by the time this is updated when iterating in order.
Detail `vic:"0.1" scope:"read-write" key:"detail"`
}
type Detail struct {