Class: SknUtils::CommandJSONPost
- Defined in:
- lib/skn_utils/job_commands.rb
Overview
#################################################
Class Method Summary collapse
-
.call(options) ⇒ Object
full_url:,username:,userpass:,payload:,headers:.
Instance Method Summary collapse
Class Method Details
.call(options) ⇒ Object
full_url:,username:,userpass:,payload:,headers:
51 52 53 |
# File 'lib/skn_utils/job_commands.rb', line 51 def self.call() # {full_url:,username:,userpass:,payload:,headers:} new() end |
Instance Method Details
#json? ⇒ Boolean
55 56 57 |
# File 'lib/skn_utils/job_commands.rb', line 55 def json? true end |
#request ⇒ Object
63 64 65 66 67 68 69 |
# File 'lib/skn_utils/job_commands.rb', line 63 def request req = @_headers.nil? ? Net::HTTP::Post.new(uri.path) : Net::HTTP::Post.new(uri.path, @_headers) # Generate HTTPRequest object req.basic_auth(@_username, @_userpass) if credentials? req.content_type = 'application/json' req.body = formatted_data req end |
#uri ⇒ Object
59 60 61 |
# File 'lib/skn_utils/job_commands.rb', line 59 def uri @_uri end |