nsc reservation list

Lists your reservations.

reservation list prints your capacity reservations, both those still pending and those already fulfilled. Use it to find the ID of a reservation you created earlier, so you can check on it with reservation describe, wait for it with reservation wait, or cancel it with reservation cancel.

By default the list is limited to reservations that have been active within the last 7 days; pass --since 0 to see the full history instead.

Usage

nsc reservation list [--since <duration>] [--max_entries <count>] [-o <plain|json>]

Example

$ nsc reservation list

To list all reservations regardless of age, disable the time window:

$ nsc reservation list --since 0

Options

--output, -o <format>

Output format. One of plain or json. Default is plain.

--since <duration>

Constrain the list to reservations active within this duration. Set to 0 to list all. Default is 168h (7 days).

--max_entries <count>

Maximum number of reservations to return. Default is 100.