Sha256: 084d8a442b7ec6dfbeafbef4ab9052541c10d2797ac8c9a0ba19973ba9f3470c
Contents?: true
Size: 1000 Bytes
Versions: 3
Compression:
Stored size: 1000 Bytes
Contents
# frozen_string_literal: true require_relative 'model' require_relative 'fixture' class App desc 'Manage scan engine pools' command :scan_engine_pool do |c| c.desc 'List scan engine pools' c.flag :name, desc: 'Name' c.flag :id, desc: 'Unique ID', type: Integer c.command :list do |l| l.desc 'Filter scan engine pools by name (contains pattern)' l.action do |_global_options, options, _args| name = parent(options, :name)&.downcase App.api.fetch_scan_engine_pools do |site| next if name && !site.name.downcase.include?(name) puts site.to_json end end end c.desc 'Get scan engine pool by id' c.command :get do |g| g.desc 'scan engine pool ID' g.action do |_global_options, options, _ags| id = parent(options)[:id] raise 'The scan engine pool id is a required parameter' if id.nil? siteetch_scan_engine_pool(id) puts site.to_json end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
avs-0.1.3 | lib/domain/scan_engine_pool/command.rb |
avs-0.1.2 | lib/domain/scan_engine_pool/command.rb |
avs-0.1.1 | lib/domain/scan_engine_pool/command.rb |