/// <summary> /// Create Pre-computed table /// </summary> /// <exception cref="Rakam.Client.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="createPrecomputedTable"></param> /// <returns>Task of PrecalculatedTable</returns> public async System.Threading.Tasks.Task <PrecalculatedTable> CreatePrecomputedTableAsync(CreatePrecomputedTable createPrecomputedTable) { ApiResponse <PrecalculatedTable> localVarResponse = await CreatePrecomputedTableAsyncWithHttpInfo(createPrecomputedTable); return(localVarResponse.Data); }
/// <summary> /// Create Pre-computed table /// </summary> /// <exception cref="Rakam.Client.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="createPrecomputedTable"></param> /// <returns>Task of ApiResponse (PrecalculatedTable)</returns> public async System.Threading.Tasks.Task <ApiResponse <PrecalculatedTable> > CreatePrecomputedTableAsyncWithHttpInfo(CreatePrecomputedTable createPrecomputedTable) { // verify the required parameter 'createPrecomputedTable' is set if (createPrecomputedTable == null) { throw new ApiException(400, "Missing required parameter 'createPrecomputedTable' when calling EventexplorerApi->CreatePrecomputedTable"); } var localVarPath = "/event-explorer/pre_calculate"; var localVarPathParams = new Dictionary <String, String>(); var localVarQueryParams = new Dictionary <String, String>(); var localVarHeaderParams = new Dictionary <String, String>(Configuration.DefaultHeader); var localVarFormParams = new Dictionary <String, String>(); var localVarFileParams = new Dictionary <String, FileParameter>(); Object localVarPostBody = null; // to determine the Content-Type header String[] localVarHttpContentTypes = new String[] { "application/json" }; String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "application/json" }; String localVarHttpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) { localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); } // set "format" to json by default // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json localVarPathParams.Add("format", "json"); if (createPrecomputedTable != null && createPrecomputedTable.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(createPrecomputedTable); // http body (model) parameter } else { localVarPostBody = createPrecomputedTable; // byte array } // authentication (master_key) required if (!String.IsNullOrEmpty(Configuration.GetApiKeyWithPrefix("master_key"))) { localVarHeaderParams["master_key"] = Configuration.GetApiKeyWithPrefix("master_key"); } // make the HTTP request IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath, Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int)localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("CreatePrecomputedTable", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <PrecalculatedTable>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (PrecalculatedTable)Configuration.ApiClient.Deserialize(localVarResponse, typeof(PrecalculatedTable)))); }
/// <summary> /// Create Pre-computed table /// </summary> /// <exception cref="Rakam.Client.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="createPrecomputedTable"></param> /// <returns>PrecalculatedTable</returns> public PrecalculatedTable CreatePrecomputedTable(CreatePrecomputedTable createPrecomputedTable) { ApiResponse <PrecalculatedTable> localVarResponse = CreatePrecomputedTableWithHttpInfo(createPrecomputedTable); return(localVarResponse.Data); }