class SwaggerClient::JobControllerApi
Attributes
api_client[RW]
Public Class Methods
new(api_client = ApiClient.default)
click to toggle source
# File lib/swagger_client/api/job_controller_api.rb, line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end
Public Instance Methods
get_job_using_get(application_name, account, region, name, opts = {})
click to toggle source
Get job @param application_name applicationName @param account account @param region region @param name name @param [Hash] opts the optional parameters @option opts [String] :expand expand (default to false) @option opts [String] :x_rate_limit_app X-RateLimit-App @return [Hash<String, Object>]
# File lib/swagger_client/api/job_controller_api.rb, line 31 def get_job_using_get(application_name, account, region, name, opts = {}) data, _status_code, _headers = get_job_using_get_with_http_info(application_name, account, region, name, opts) data end
get_job_using_get_with_http_info(application_name, account, region, name, opts = {})
click to toggle source
Get job @param application_name applicationName @param account account @param region region @param name name @param [Hash] opts the optional parameters @option opts [String] :expand expand @option opts [String] :x_rate_limit_app X-RateLimit-App @return [Array<(Hash<String, Object>, Fixnum, Hash)>] Hash<String, Object> data, response status code and response headers
# File lib/swagger_client/api/job_controller_api.rb, line 45 def get_job_using_get_with_http_info(application_name, account, region, name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: JobControllerApi.get_job_using_get ...' end # verify the required parameter 'application_name' is set if @api_client.config.client_side_validation && application_name.nil? fail ArgumentError, "Missing the required parameter 'application_name' when calling JobControllerApi.get_job_using_get" end # verify the required parameter 'account' is set if @api_client.config.client_side_validation && account.nil? fail ArgumentError, "Missing the required parameter 'account' when calling JobControllerApi.get_job_using_get" end # verify the required parameter 'region' is set if @api_client.config.client_side_validation && region.nil? fail ArgumentError, "Missing the required parameter 'region' when calling JobControllerApi.get_job_using_get" end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? fail ArgumentError, "Missing the required parameter 'name' when calling JobControllerApi.get_job_using_get" end # resource path local_var_path = '/applications/{applicationName}/jobs/{account}/{region}/{name}'.sub('{' + 'applicationName' + '}', application_name.to_s).sub('{' + 'account' + '}', account.to_s).sub('{' + 'region' + '}', region.to_s).sub('{' + 'name' + '}', name.to_s) # query parameters query_params = {} query_params[:'expand'] = opts[:'expand'] if !opts[:'expand'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['*/*']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) header_params[:'X-RateLimit-App'] = opts[:'x_rate_limit_app'] if !opts[:'x_rate_limit_app'].nil? # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Hash<String, Object>') if @api_client.config.debugging @api_client.config.logger.debug "API called: JobControllerApi#get_job_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end