Class: Knifecosmic::CosmicClusterList

Inherits:
Chef::Knife show all
Includes:
Chef::Knife::KnifecosmicBaseList
Defined in:
lib/chef/knife/cosmic_cluster_list.rb

Instance Method Summary collapse

Methods included from Chef::Knife::KnifecosmicBaseList

included, #list_object, #list_object_fields, #output_format

Instance Method Details

#runObject



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_cluster_list.rb', line 37

def run
  validate_base_options

  columns = [
    'Name		 :name',
    'Pod		 :podname',
    'Zone		 :zonename',
    'HypervizorType  :hypervisortype',
    'ClusterType	 :clustertype',
    'AllocationState :allocationstate',
    'ManagedState 	 :managedstate'
  ]

  params = { 'command' => "listClusters" }
  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, "cluster")
  list_object(columns, result)
end