Document defaults

Signed-off-by: Derek McGowan <derek@mcgstyle.net>
This commit is contained in:
Derek McGowan
2017-11-21 16:12:10 -08:00
parent 374f04d0e9
commit bae47820d7
4 changed files with 8 additions and 2 deletions

View File

@@ -165,6 +165,8 @@ type DeleteImageRequest struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// Sync indicates that the delete and cleanup should be done
// synchronously before returning to the caller
//
// Default is false
Sync bool `protobuf:"varint,2,opt,name=sync,proto3" json:"sync,omitempty"`
}

View File

@@ -118,5 +118,7 @@ message DeleteImageRequest {
// Sync indicates that the delete and cleanup should be done
// synchronously before returning to the caller
//
// Default is false
bool sync = 2;
}