Class: Crowbar::Client::Command::Role::Show
- Includes:
- Mixin::Barclamp, Mixin::Filter, Mixin::Format
- Defined in:
- lib/crowbar/client/command/role/show.rb
Overview
Implementation for the role show command
Instance Attribute Summary
Attributes inherited from Base
#args, #options, #stderr, #stdin, #stdout
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Crowbar::Client::Command::Base
Instance Method Details
#execute ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/crowbar/client/command/role/show.rb', line 36 def execute args. request.process do |request| case request.code when 200 formatter = Formatter::Array.new( format: provide_format, headings: ["Nodes available to assign the role"], values: Filter::Array.new( filter: provide_filter, values: content_from(request) ).result ) if formatter.empty? err "No nodes available to assign the role" else say formatter.result end when 404 err "Role does not exist" else err request.parsed_response["error"] end end end |