vaultOutputFormatOptions top-level property

List<Option> vaultOutputFormatOptions
final

Implementation

final List<Option> vaultOutputFormatOptions = [

  Option(
    name: '-format',
    description: 'Print the output in the given format. Valid formats are \'table\', \'json\', \'yaml\', or \'pretty\'. The default is table. This can also be specified via the VAULT_FORMAT environment variable',
    args: [
      Arg(
      name: 'string',
      suggestions: [

        FigSuggestion(name: 'table'),
        FigSuggestion(name: 'json'),
        FigSuggestion(name: 'yaml'),
        FigSuggestion(name: 'pretty')
      ],
      defaultValue: 'table'
    )
    ],
    priority: 39
  )
];