Method: CloudControl::API::Core#request_xml_body
- Defined in:
- lib/cloudcontrol/api/core.rb
#request_xml_body ⇒ Object
108 109 110 111 112 113 114 115 116 |
# File 'lib/cloudcontrol/api/core.rb', line 108 def request_xml_body return if @xml_params.blank? schema = @xml_params.delete(:schema) tag = @xml_params.delete(:tag) body = @client.build_request_xml_body(schema, tag, @xml_params) log(body, :green) body end |