class MockServer::ExpectationApi
Attributes
api_client[RW]
Public Class Methods
new(api_client = ApiClient.default)
click to toggle source
# File lib/mockserver-client/api/expectation_api.rb, line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end
Public Instance Methods
expectation_put(expectations, opts = {})
click to toggle source
create expectation @param expectations expectation to create @param [Hash] opts the optional parameters @return [nil]
# File lib/mockserver-client/api/expectation_api.rb, line 26 def expectation_put(expectations, opts = {}) expectation_put_with_http_info(expectations, opts) nil end
expectation_put_with_http_info(expectations, opts = {})
click to toggle source
create expectation @param expectations expectation to create @param [Hash] opts the optional parameters @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
# File lib/mockserver-client/api/expectation_api.rb, line 35 def expectation_put_with_http_info(expectations, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: ExpectationApi.expectation_put ...' end # verify the required parameter 'expectations' is set if @api_client.config.client_side_validation && expectations.nil? fail ArgumentError, "Missing the required parameter 'expectations' when calling ExpectationApi.expectation_put" end # resource path local_var_path = '/expectation' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(expectations) auth_names = [] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: ExpectationApi#expectation_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end