mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
swagger: fix type for BuildCache CreatedAt and LastUsedAt
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
a770dc191e
commit
61b770a63d
1 changed files with 14 additions and 2 deletions
|
@ -1908,12 +1908,24 @@ definitions:
|
||||||
Shared:
|
Shared:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
Size:
|
Size:
|
||||||
|
description: |
|
||||||
|
Amount of disk space used by the build cache (in bytes).
|
||||||
type: "integer"
|
type: "integer"
|
||||||
CreatedAt:
|
CreatedAt:
|
||||||
type: "integer"
|
description: |
|
||||||
|
Date and time at which the build cache was created in
|
||||||
|
[RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format with nano-seconds.
|
||||||
|
type: "string"
|
||||||
|
format: "dateTime"
|
||||||
|
example: "2016-08-18T10:44:24.496525531Z"
|
||||||
LastUsedAt:
|
LastUsedAt:
|
||||||
type: "integer"
|
description: |
|
||||||
|
Date and time at which the build cache was last used in
|
||||||
|
[RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format with nano-seconds.
|
||||||
|
type: "string"
|
||||||
|
format: "dateTime"
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
example: "2017-08-09T07:09:37.632105588Z"
|
||||||
UsageCount:
|
UsageCount:
|
||||||
type: "integer"
|
type: "integer"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue