Class: Knifecosmic::CosmicPodList
- Inherits:
-
Chef::Knife
- Object
- Chef::Knife
- Knifecosmic::CosmicPodList
- Includes:
- Chef::Knife::KnifecosmicBaseList
- Defined in:
- lib/chef/knife/cosmic_pod_list.rb
Instance Method Summary collapse
Methods included from Chef::Knife::KnifecosmicBaseList
included, #list_object, #list_object_fields, #output_format
Instance Method Details
#run ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/chef/knife/cosmic_pod_list.rb', line 37 def run columns = [ 'Name :name', 'Zone :zonename', 'Gateway :gateway', 'Netmask :netmask', 'Start IP :startip', 'End IP :endip', 'AllocationState :allocationstate' ] params = { 'command' => "listPods" } params['filter'] = locate_config_value(:filter) if locate_config_value(:filter) params['keyword'] = locate_config_value(:keyword) if locate_config_value(:keyword) params['name'] = locate_config_value(:name) if locate_config_value(:name) result = connection.list_object(params, "pod") list_object(columns, result) end |