Sha256: 4af16dbf41e74b589bae9e9bd2a24c9b1e642f6e7a92243c55a376074e1567d6

Contents?: true

Size: 1.44 KB

Versions: 8

Compression:

Stored size: 1.44 KB

Contents

require 'optparse'

module VagrantPlugins
  module CloudCommand
    module Command
      class List < Vagrant.plugin("2", :command)
        include Util

        def execute
          options = {}

          opts = OptionParser.new do |o|
            o.banner = "Usage: vagrant cloud list [options] organization"
            o.separator ""
            o.separator "Search for boxes managed by a specific user/organization"
            o.separator ""
            o.separator "Options:"
            o.separator ""

            o.on("-j", "--json", "Formats results in JSON") do |j|
              options[:check] = j
            end
            o.on("-l", "--limit", Integer, "Max number of search results (default is 25)") do |l|
              options[:check] = l
            end
            o.on("-p", "--provider", "Comma separated list of providers to filter search. Defaults to all.") do |p|
              options[:check] = p
            end
            o.on("-s", "--sort-by", "Column to sort list (created, downloads, updated)") do |s|
              options[:check] = s
            end
          end

          # Parse the options
          argv = parse_options(opts)
          return if !argv
          if argv.length > 1
            raise Vagrant::Errors::CLIInvalidUsage,
              help: opts.help.chomp
          end

          @client = client_login(@env)

          # TODO: This endpoint is not implemented yet

          0
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/commands/cloud/list.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/list.rb
vagrant-unbundled-2.3.3.0 plugins/commands/cloud/list.rb
vagrant-unbundled-2.3.2.0 plugins/commands/cloud/list.rb
vagrant-unbundled-2.2.19.0 plugins/commands/cloud/list.rb
vagrant-unbundled-2.2.18.0 plugins/commands/cloud/list.rb
vagrant-unbundled-2.2.16.0 plugins/commands/cloud/list.rb
vagrant-unbundled-2.2.14.0 plugins/commands/cloud/list.rb