Method: AsposeCellsCloud::PostPivotTableCellStyleRequest#create_http_request

Defined in:
lib/aspose_cells_cloud/requests/post_pivot_table_cell_style_request.rb

#create_http_request(api_client, opts = {}) ⇒ Object



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/aspose_cells_cloud/requests/post_pivot_table_cell_style_request.rb', line 109

def create_http_request(api_client,opts = {})
  if api_client.config.debugging
    api_client.config.logger.debug "Calling API: CellsApi.post_pivot_table_cell_style ..."
  end
  api_client.request_token_if_needed
  # 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 CellsApi.post_pivot_table_cell_style "
  end 
  # verify the required parameter 'sheet_name' is set
  if api_client.config.client_side_validation && sheet_name.nil?
      fail ArgumentError, "Missing the required parameter 'sheet_name' when calling CellsApi.post_pivot_table_cell_style "
  end 
  # verify the required parameter 'pivot_table_index' is set
  if api_client.config.client_side_validation && pivot_table_index.nil?
      fail ArgumentError, "Missing the required parameter 'pivot_table_index' when calling CellsApi.post_pivot_table_cell_style "
  end 
  # verify the required parameter 'column' is set
  if api_client.config.client_side_validation && column.nil?
      fail ArgumentError, "Missing the required parameter 'column' when calling CellsApi.post_pivot_table_cell_style "
  end 
  # verify the required parameter 'row' is set
  if api_client.config.client_side_validation && row.nil?
      fail ArgumentError, "Missing the required parameter 'row' when calling CellsApi.post_pivot_table_cell_style "
  end 
  # verify the required parameter 'style' is set
  if api_client.config.client_side_validation && style.nil?
      fail ArgumentError, "Missing the required parameter 'style' when calling CellsApi.post_pivot_table_cell_style "
  end 

  # resource path
  local_var_path = "/cells/{name}/worksheets/{sheetName}/pivottables/{pivotTableIndex}/Format".sub('{' + 'name' + '}', name.to_s).sub('{' + 'sheetName' + '}', sheet_name.to_s).sub('{' + 'pivotTableIndex' + '}', pivot_table_index.to_s)
  # query parameters
  query_params = {}
  query_params[:'column'] = self.column if !self.column.nil? 
  query_params[:'row'] = self.row if !self.row.nil? 
  query_params[:'needReCalculate'] = self.need_re_calculate if !self.need_re_calculate.nil? 
  query_params[:'folder'] = self.folder if !self.folder.nil? 
  query_params[:'storageName'] = self.storage_name if !self.storage_name.nil? 

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = {}
  post_body = nil 
  post_body = api_client.object_to_http_body(style) 
     

  #auth_names = []
  auth_names = ['JWT']
  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 => 'CellsCloudResponse')
  if api_client.config.debugging
    api_client.config.logger.debug "API called: Specification.Name>Api.post_pivot_table_cell_style\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end