=begin #Connectwise REST API #ConnectWise API OpenAPI spec version: 1.0.0 Contact: platform@connectwise.com Generated by: https://github.com/swagger-api/swagger-codegen.git Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =end require "uri" module Connectwise class LocationsApi attr_accessor :api_client def initialize(api_client = ApiClient.default) @api_client = api_client end # # Create Locations Count # @param [Hash] opts the optional parameters # @option opts [String] :conditions # @return [Count] def service_locations_count_get(opts = {}) data, _status_code, _headers = service_locations_count_get_with_http_info(opts) return data end # # Create Locations Count # @param [Hash] opts the optional parameters # @option opts [String] :conditions # @return [Array<(Count, Fixnum, Hash)>] Count data, response status code and response headers def service_locations_count_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: LocationsApi.service_locations_count_get ..." end # resource path local_var_path = "/service/locations/count".sub('{format}','json') # query parameters query_params = {} query_params[:'conditions'] = opts[:'conditions'] if !opts[:'conditions'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = [] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BasicAuth'] 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 => 'Count') if @api_client.config.debugging @api_client.config.logger.debug "API called: LocationsApi#service_locations_count_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # # Get Locations # @param [Hash] opts the optional parameters # @option opts [String] :conditions # @option opts [String] :order_by # @option opts [Integer] :page # @option opts [Integer] :page_size # @return [Array] def service_locations_get(opts = {}) data, _status_code, _headers = service_locations_get_with_http_info(opts) return data end # # Get Locations # @param [Hash] opts the optional parameters # @option opts [String] :conditions # @option opts [String] :order_by # @option opts [Integer] :page # @option opts [Integer] :page_size # @return [Array<(Array, Fixnum, Hash)>] Array data, response status code and response headers def service_locations_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: LocationsApi.service_locations_get ..." end # resource path local_var_path = "/service/locations".sub('{format}','json') # query parameters query_params = {} query_params[:'conditions'] = opts[:'conditions'] if !opts[:'conditions'].nil? query_params[:'orderBy'] = opts[:'order_by'] if !opts[:'order_by'].nil? query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil? query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = [] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BasicAuth'] 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 => 'Array') if @api_client.config.debugging @api_client.config.logger.debug "API called: LocationsApi#service_locations_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # # Delete Location By Id # @param id # @param [Hash] opts the optional parameters # @return [nil] def service_locations_id_delete(id, opts = {}) service_locations_id_delete_with_http_info(id, opts) return nil end # # Delete Location By Id # @param id # @param [Hash] opts the optional parameters # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers def service_locations_id_delete_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: LocationsApi.service_locations_id_delete ..." end # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling LocationsApi.service_locations_id_delete" if id.nil? # resource path local_var_path = "/service/locations/{id}".sub('{format}','json').sub('{' + 'id' + '}', id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = [] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = [] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BasicAuth'] data, status_code, headers = @api_client.call_api(:DELETE, 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: LocationsApi#service_locations_id_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # # Get Location By Id # @param id # @param [Hash] opts the optional parameters # @return [Location] def service_locations_id_get(id, opts = {}) data, _status_code, _headers = service_locations_id_get_with_http_info(id, opts) return data end # # Get Location By Id # @param id # @param [Hash] opts the optional parameters # @return [Array<(Location, Fixnum, Hash)>] Location data, response status code and response headers def service_locations_id_get_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: LocationsApi.service_locations_id_get ..." end # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling LocationsApi.service_locations_id_get" if id.nil? # resource path local_var_path = "/service/locations/{id}".sub('{format}','json').sub('{' + 'id' + '}', id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = [] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BasicAuth'] 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 => 'Location') if @api_client.config.debugging @api_client.config.logger.debug "API called: LocationsApi#service_locations_id_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # # Update Location # @param id # @param operations # @param [Hash] opts the optional parameters # @return [Location] def service_locations_id_patch(id, operations, opts = {}) data, _status_code, _headers = service_locations_id_patch_with_http_info(id, operations, opts) return data end # # Update Location # @param id # @param operations # @param [Hash] opts the optional parameters # @return [Array<(Location, Fixnum, Hash)>] Location data, response status code and response headers def service_locations_id_patch_with_http_info(id, operations, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: LocationsApi.service_locations_id_patch ..." end # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling LocationsApi.service_locations_id_patch" if id.nil? # verify the required parameter 'operations' is set fail ArgumentError, "Missing the required parameter 'operations' when calling LocationsApi.service_locations_id_patch" if operations.nil? # resource path local_var_path = "/service/locations/{id}".sub('{format}','json').sub('{' + 'id' + '}', id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(operations) auth_names = ['BasicAuth'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Location') if @api_client.config.debugging @api_client.config.logger.debug "API called: LocationsApi#service_locations_id_patch\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # # Replace Location # @param id # @param location # @param [Hash] opts the optional parameters # @return [Location] def service_locations_id_put(id, location, opts = {}) data, _status_code, _headers = service_locations_id_put_with_http_info(id, location, opts) return data end # # Replace Location # @param id # @param location # @param [Hash] opts the optional parameters # @return [Array<(Location, Fixnum, Hash)>] Location data, response status code and response headers def service_locations_id_put_with_http_info(id, location, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: LocationsApi.service_locations_id_put ..." end # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling LocationsApi.service_locations_id_put" if id.nil? # verify the required parameter 'location' is set fail ArgumentError, "Missing the required parameter 'location' when calling LocationsApi.service_locations_id_put" if location.nil? # resource path local_var_path = "/service/locations/{id}".sub('{format}','json').sub('{' + 'id' + '}', id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(location) auth_names = ['BasicAuth'] 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, :return_type => 'Location') if @api_client.config.debugging @api_client.config.logger.debug "API called: LocationsApi#service_locations_id_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # # Create Location # @param location # @param [Hash] opts the optional parameters # @return [Location] def service_locations_post(location, opts = {}) data, _status_code, _headers = service_locations_post_with_http_info(location, opts) return data end # # Create Location # @param location # @param [Hash] opts the optional parameters # @return [Array<(Location, Fixnum, Hash)>] Location data, response status code and response headers def service_locations_post_with_http_info(location, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: LocationsApi.service_locations_post ..." end # verify the required parameter 'location' is set fail ArgumentError, "Missing the required parameter 'location' when calling LocationsApi.service_locations_post" if location.nil? # resource path local_var_path = "/service/locations".sub('{format}','json') # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(location) auth_names = ['BasicAuth'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Location') if @api_client.config.debugging @api_client.config.logger.debug "API called: LocationsApi#service_locations_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end end end