lib/purecloudplatformclientv2/api/routing_api.rb in purecloudplatformclientv2-78.1.0 vs lib/purecloudplatformclientv2/api/routing_api.rb in purecloudplatformclientv2-79.0.0

- old
+ new

@@ -563,10 +563,74 @@ @api_client.config.logger.debug "API called: RoutingApi#delete_routing_sms_phonenumber\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end + # Delete the user's max utilization settings and revert to the organization-wide default. + # + # @param user_id User ID + # @param [Hash] opts the optional parameters + # @return [nil] + def delete_routing_user_utilization(user_id, opts = {}) + delete_routing_user_utilization_with_http_info(user_id, opts) + return nil + end + + # Delete the user&#39;s max utilization settings and revert to the organization-wide default. + # + # @param user_id User ID + # @param [Hash] opts the optional parameters + # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers + def delete_routing_user_utilization_with_http_info(user_id, opts = {}) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: RoutingApi.delete_routing_user_utilization ..." + end + + + # verify the required parameter 'user_id' is set + fail ArgumentError, "Missing the required parameter 'user_id' when calling RoutingApi.delete_routing_user_utilization" if user_id.nil? + + + + + + # resource path + local_var_path = "/api/v2/routing/users/{userId}/utilization".sub('{format}','json').sub('{' + 'userId' + '}', user_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 = nil + + auth_names = ['PureCloud OAuth'] + 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: RoutingApi#delete_routing_user_utilization\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + # Delete the organization-wide max utilization settings and revert to the system default. # # @param [Hash] opts the optional parameters # @return [nil] def delete_routing_utilization(opts = {}) @@ -3084,10 +3148,75 @@ @api_client.config.logger.debug "API called: RoutingApi#get_routing_sms_phonenumbers\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end + # Get the user's max utilization settings. If not configured, the organization-wide default is returned. + # + # @param user_id User ID + # @param [Hash] opts the optional parameters + # @return [Utilization] + def get_routing_user_utilization(user_id, opts = {}) + data, _status_code, _headers = get_routing_user_utilization_with_http_info(user_id, opts) + return data + end + + # Get the user&#39;s max utilization settings. If not configured, the organization-wide default is returned. + # + # @param user_id User ID + # @param [Hash] opts the optional parameters + # @return [Array<(Utilization, Fixnum, Hash)>] Utilization data, response status code and response headers + def get_routing_user_utilization_with_http_info(user_id, opts = {}) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: RoutingApi.get_routing_user_utilization ..." + end + + + # verify the required parameter 'user_id' is set + fail ArgumentError, "Missing the required parameter 'user_id' when calling RoutingApi.get_routing_user_utilization" if user_id.nil? + + + + + + # resource path + local_var_path = "/api/v2/routing/users/{userId}/utilization".sub('{format}','json').sub('{' + 'userId' + '}', user_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 = nil + + auth_names = ['PureCloud OAuth'] + 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 => 'Utilization') + if @api_client.config.debugging + @api_client.config.logger.debug "API called: RoutingApi#get_routing_user_utilization\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + # Get the organization-wide max utilization settings. # # @param [Hash] opts the optional parameters # @return [Utilization] def get_routing_utilization(opts = {}) @@ -5560,9 +5689,84 @@ :body => post_body, :auth_names => auth_names, :return_type => 'SmsPhoneNumber') if @api_client.config.debugging @api_client.config.logger.debug "API called: RoutingApi#put_routing_sms_phonenumber\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + + # Update the user's max utilization settings. Include only those media types requiring custom configuration. + # + # @param user_id User ID + # @param body utilization + # @param [Hash] opts the optional parameters + # @return [Utilization] + def put_routing_user_utilization(user_id, body, opts = {}) + data, _status_code, _headers = put_routing_user_utilization_with_http_info(user_id, body, opts) + return data + end + + # Update the user&#39;s max utilization settings. Include only those media types requiring custom configuration. + # + # @param user_id User ID + # @param body utilization + # @param [Hash] opts the optional parameters + # @return [Array<(Utilization, Fixnum, Hash)>] Utilization data, response status code and response headers + def put_routing_user_utilization_with_http_info(user_id, body, opts = {}) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: RoutingApi.put_routing_user_utilization ..." + end + + + # verify the required parameter 'user_id' is set + fail ArgumentError, "Missing the required parameter 'user_id' when calling RoutingApi.put_routing_user_utilization" if user_id.nil? + + + + + + + # verify the required parameter 'body' is set + fail ArgumentError, "Missing the required parameter 'body' when calling RoutingApi.put_routing_user_utilization" if body.nil? + + + + + + # resource path + local_var_path = "/api/v2/routing/users/{userId}/utilization".sub('{format}','json').sub('{' + 'userId' + '}', user_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(body) + + auth_names = ['PureCloud OAuth'] + 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 => 'Utilization') + if @api_client.config.debugging + @api_client.config.logger.debug "API called: RoutingApi#put_routing_user_utilization\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # Update the organization-wide max utilization settings. Include only those media types requiring custom configuration.