lib/purecloud/api/geolocation_api.rb in purecloud-0.18.0 vs lib/purecloud/api/geolocation_api.rb in purecloud-0.25.0

- old
+ new

@@ -126,31 +126,31 @@ # # @param user_id user Id # @param client_id client Id # @param [Hash] opts the optional parameters # @return [Geolocation] - def get_user_geolocations_by_client_id(user_id, client_id, opts = {}) - data, status_code, headers = get_user_geolocations_by_client_id_with_http_info(user_id, client_id, opts) + def get_user_id_geolocations_client_id(user_id, client_id, opts = {}) + data, status_code, headers = get_user_id_geolocations_client_id_with_http_info(user_id, client_id, opts) return data end # Get a user&#39;s Geolocation # # @param user_id user Id # @param client_id client Id # @param [Hash] opts the optional parameters # @return [Array<(Geolocation, Fixnum, Hash)>] Geolocation data, response status code and response headers - def get_user_geolocations_by_client_id_with_http_info(user_id, client_id, opts = {}) + def get_user_id_geolocations_client_id_with_http_info(user_id, client_id, opts = {}) if @api_client.config.debugging - @api_client.config.logger.debug "Calling API: GeolocationApi#get_user_geolocations_by_client_id ..." + @api_client.config.logger.debug "Calling API: GeolocationApi#get_user_id_geolocations_client_id ..." end # verify the required parameter 'user_id' is set - fail "Missing the required parameter 'user_id' when calling get_user_geolocations_by_client_id" if user_id.nil? + fail "Missing the required parameter 'user_id' when calling get_user_id_geolocations_client_id" if user_id.nil? # verify the required parameter 'client_id' is set - fail "Missing the required parameter 'client_id' when calling get_user_geolocations_by_client_id" if client_id.nil? + fail "Missing the required parameter 'client_id' when calling get_user_id_geolocations_client_id" if client_id.nil? # resource path path = "/api/v1/users/{userId}/geolocations/{clientId}".sub('{format}','json').sub('{' + 'userId' + '}', user_id.to_s).sub('{' + 'clientId' + '}', client_id.to_s) # query parameters @@ -181,11 +181,11 @@ :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Geolocation') if @api_client.config.debugging - @api_client.config.logger.debug "API called: GeolocationApi#get_user_geolocations_by_client_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + @api_client.config.logger.debug "API called: GeolocationApi#get_user_id_geolocations_client_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # Patch a user&#39;s Geolocation @@ -193,32 +193,32 @@ # @param user_id user Id # @param client_id client Id # @param [Hash] opts the optional parameters # @option opts [Geolocation] :body # @return [Geolocation] - def patch_user_geolocations_by_client_id(user_id, client_id, opts = {}) - data, status_code, headers = patch_user_geolocations_by_client_id_with_http_info(user_id, client_id, opts) + def patch_user_id_geolocations_client_id(user_id, client_id, opts = {}) + data, status_code, headers = patch_user_id_geolocations_client_id_with_http_info(user_id, client_id, opts) return data end # Patch a user&#39;s Geolocation # The geolocation object can be patched one of three ways. Option 1: Set the &#39;primary&#39; property to true. This will set the client as the user&#39;s primary geolocation source. Option 2: Provide the &#39;latitude&#39; and &#39;longitude&#39; values. This will enqueue an asynchronous update of the &#39;city&#39;, &#39;region&#39;, and &#39;country&#39;, generating a notification. A subsequent GET operation will include the new values for &#39;city&#39;, &#39;region&#39; and &#39;country&#39;. Option 3: Provide the &#39;city&#39;, &#39;region&#39;, &#39;country&#39; values. Option 1 can be combined with Option 2 or Option 3. For example, update the client as primary and provide latitude and longitude values. # @param user_id user Id # @param client_id client Id # @param [Hash] opts the optional parameters # @option opts [Geolocation] :body # @return [Array<(Geolocation, Fixnum, Hash)>] Geolocation data, response status code and response headers - def patch_user_geolocations_by_client_id_with_http_info(user_id, client_id, opts = {}) + def patch_user_id_geolocations_client_id_with_http_info(user_id, client_id, opts = {}) if @api_client.config.debugging - @api_client.config.logger.debug "Calling API: GeolocationApi#patch_user_geolocations_by_client_id ..." + @api_client.config.logger.debug "Calling API: GeolocationApi#patch_user_id_geolocations_client_id ..." end # verify the required parameter 'user_id' is set - fail "Missing the required parameter 'user_id' when calling patch_user_geolocations_by_client_id" if user_id.nil? + fail "Missing the required parameter 'user_id' when calling patch_user_id_geolocations_client_id" if user_id.nil? # verify the required parameter 'client_id' is set - fail "Missing the required parameter 'client_id' when calling patch_user_geolocations_by_client_id" if client_id.nil? + fail "Missing the required parameter 'client_id' when calling patch_user_id_geolocations_client_id" if client_id.nil? # resource path path = "/api/v1/users/{userId}/geolocations/{clientId}".sub('{format}','json').sub('{' + 'userId' + '}', user_id.to_s).sub('{' + 'clientId' + '}', client_id.to_s) # query parameters @@ -249,10 +249,10 @@ :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Geolocation') if @api_client.config.debugging - @api_client.config.logger.debug "API called: GeolocationApi#patch_user_geolocations_by_client_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + @api_client.config.logger.debug "API called: GeolocationApi#patch_user_id_geolocations_client_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end end end