Skip to content

Commit 6a2180d

Browse files
authored
Add the 'removed' property to VM volumes (#793)
* Add the 'removed' property to VM volumes * fix removed location
1 parent a61fef2 commit 6a2180d

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

components/schemas/containers/summaries/VolumeSummary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ properties:
2222
$ref: ../../ID.yml
2323
- type: "null"
2424
removed:
25-
description: The time stamp of the volume's removal, if applicable.
25+
description: The timestamp of the volume's removal, if applicable.
2626
oneOf:
2727
- $ref: ../../DateTime.yml
2828
- type: "null"

components/schemas/vms/VirtualMachineVolume.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ properties:
1111
config:
1212
$ref: ./config/volumes/VirtualMachineVolumeConfig.yml
1313
description: The configuration details for the virtual machine's volume.
14+
removed:
15+
description: The timestamp of the volume's removal, if applicable.
16+
oneOf:
17+
- $ref: ../DateTime.yml
18+
- type: "null"
1419
required:
1520
- id
1621
- hash
17-
- config
22+
- config

0 commit comments

Comments
 (0)