Class: Crowbar::Client::Command::Proposal::Edit

Inherits:
Base
  • Object
show all
Includes:
Mixin::Barclamp, Mixin::Proposal
Defined in:
lib/crowbar/client/command/proposal/edit.rb

Overview

Implementation for the proposal edit command

Instance Attribute Summary

Attributes inherited from Base

#args, #options, #stderr, #stdin, #stdout

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Crowbar::Client::Command::Base

Instance Method Details

#executeObject



39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/crowbar/client/command/proposal/edit.rb', line 39

def execute
  validate_barclamp! args.barclamp

  request.process do |request|
    case request.code
    when 200
      say "Successfully updated #{args.proposal} proposal"
    else
      err request.parsed_response["error"]
    end
  end
end

#requestObject



31
32
33
34
35
36
37
# File 'lib/crowbar/client/command/proposal/edit.rb', line 31

def request
  @request ||= Request::Proposal::Edit.new(
    args.easy_merge(
      payload: payload_content
    )
  )
end