add labels and attachable properties to network - #844
Conversation
816ea98 to
af22a40
Compare
Codecov Report
@@ Coverage Diff @@
## master #844 +/- ##
==========================================
+ Coverage 71.63% 71.66% +0.02%
==========================================
Files 306 306
Lines 6643 6655 +12
Branches 500 500
==========================================
+ Hits 4759 4769 +10
- Misses 1591 1593 +2
Partials 293 293
Continue to review full report at Codecov.
|
| CreateNetworkCmd withEnableIpv6(boolean enableIpv6); | ||
|
|
||
|
|
||
| CreateNetworkCmd withAttachable(boolean attachable); |
| } | ||
|
|
||
| public boolean isAttachable() { | ||
| return attachable == null ? false : attachable; |
There was a problem hiding this comment.
please return raw value, on end-user code you can wrap it simply with BooleanUtils
null in return value means that there is no value. No value != false from req/rsp view point.
|
please ADD since 1.24 (?) annotations for fields |
af22a40 to
7846537
Compare
|
Labels for network was added in 1.24, can be viewed on https://github.com/moby/moby/blob/master/docs/api/v1.24.md. |
7846537 to
b91fb95
Compare
b91fb95 to
d700d72
Compare
add labels and attachable properties to network
This change is