Class: ComputeOffer

Inherits:
CloudstackCli::Base show all
Defined in:
lib/cloudstack-cli/commands/compute_offer.rb

Constant Summary

Constants included from CloudstackCli::Helper

CloudstackCli::Helper::ASYNC_STATES

Instance Attribute Summary

Attributes inherited from CloudstackCli::Base

#config

Instance Method Summary collapse

Methods inherited from CloudstackCli::Base

exit_on_failure?, start

Methods included from CloudstackCli::OptionResolver

#resolve_account, #resolve_cluster, #resolve_compute_offering, #resolve_disk_offering, #resolve_domain, #resolve_host, #resolve_ip_network_list, #resolve_iso, #resolve_iso_for_vm_deployment, #resolve_networks, #resolve_project, #resolve_snapshot, #resolve_template, #resolve_virtual_machine, #resolve_zone, #vm_options_to_params

Methods included from CloudstackCli::Helper

#ask_number, #bootstrap_server, #bootstrap_server_interactive, #create_port_rules, #create_server, #get_server_default_nic, #pf_rule_to_object, #print_job_status, #print_options, #run_background_jobs, #update_job_status, #update_jobs, #watch_jobs

Methods inherited from Thor

banner, basename2, old_subcommand, subcommand

Instance Method Details

#create(name) ⇒ Object



37
38
39
40
41
# File 'lib/cloudstack-cli/commands/compute_offer.rb', line 37

def create(name)
  resolve_domain
  options[:name] = name
  say("OK", :green) if client.create_service_offering(options)
end

#delete(id) ⇒ Object



44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/cloudstack-cli/commands/compute_offer.rb', line 44

def delete(id)
  offerings = client.list_service_offerings(id: id)
  if offerings && offerings.size == 1
    say "Are you sure you want to delete compute offering below?", :yellow
    print_compute_offerings(offerings, false)
    if yes?("[y/N]:", :yellow)
      say("OK", :green) if client.delete_service_offering(id: id)
    end
  else
    say "No offering with ID #{id} found.", :yellow
  end
end

#listObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/cloudstack-cli/commands/compute_offer.rb', line 9

def list
  resolve_domain
  add_filters_to_options("listServiceOfferings") if options[:filter]
  offerings = client.list_service_offerings(options)
  offerings = filter_objects(offerings) if options[:filter]
  if offerings.size < 1
    puts "No offerings found."
  else
    case options[:format].to_sym
    when :yaml
      puts({compute_offers: offerings}.to_yaml)
    when :json
      puts JSON.pretty_generate(compute_offers: offerings)
    else
      print_compute_offerings(offerings)
    end
  end
end

#sortObject



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/cloudstack-cli/commands/compute_offer.rb', line 58

def sort
  offerings = client.list_service_offerings
  sortkey = -1
  offerings.group_by{|o| o["domain"]}.each_value do |offers|
    offers.sort {
      |oa, ob| [oa["cpunumber"], oa["memory"], oa["name"]] <=> [ob["cpunumber"], ob["memory"], ob["name"]]
    }.each do |offer|
      puts "#{sortkey.abs} #{offer['domain']} - #{offer["displaytext"]}"
      client.update_service_offering(
        id: offer['id'],
        sortkey: sortkey
      )
      sortkey -= 1
    end
  end
end