serverOptions top-level property

List<Option> serverOptions
final

Implementation

final List<Option> serverOptions = [

  Option(
    name: ['--server', '-s'],
    description: 'The Galaxy API server URL',
    args: [
      Arg(
      name: 'api_server',
      description: 'The Galaxy API server URL'
    )
    ]
  ),
  Option(
    name: ['--token', '--api-key'],
    description: 'The Ansible Galaxy API key which can be found at https://galaxy.ansible.com/me/preferences',
    args: [
      Arg(
      name: 'api_key',
      description: 'The Ansible Galaxy API key which can be found at https://galaxy.ansible.com/me/preferences'
    )
    ]
  ),
  Option(
    name: ['--ignore-certs', '-c'],
    description: 'Ignore SSL certificate validation errors'
  )
];