/// <summary> /// Save Key /// </summary> /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="keyPath"></param> /// <param name="authorName"></param> /// <param name="authorEmail"></param> /// <param name="keyUpdateModel"></param> /// <returns>Task of string</returns> public async System.Threading.Tasks.Task <string> CreateKeyAsync(string keyPath, string authorName, string authorEmail, KeyUpdateModel keyUpdateModel) { ApiResponse <string> localVarResponse = await CreateKeyAsyncWithHttpInfo(keyPath, authorName, authorEmail, keyUpdateModel); return(localVarResponse.Data); }
/// <summary> /// Save Key /// </summary> /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="keyPath"></param> /// <param name="authorName"></param> /// <param name="authorEmail"></param> /// <param name="keyUpdateModel"></param> /// <returns>Task of ApiResponse (string)</returns> public async System.Threading.Tasks.Task <ApiResponse <string> > CreateKeyAsyncWithHttpInfo(string keyPath, string authorName, string authorEmail, KeyUpdateModel keyUpdateModel) { // verify the required parameter 'keyPath' is set if (keyPath == null) { throw new ApiException(400, "Missing required parameter 'keyPath' when calling KeysApi->CreateKey"); } // verify the required parameter 'authorName' is set if (authorName == null) { throw new ApiException(400, "Missing required parameter 'authorName' when calling KeysApi->CreateKey"); } // verify the required parameter 'authorEmail' is set if (authorEmail == null) { throw new ApiException(400, "Missing required parameter 'authorEmail' when calling KeysApi->CreateKey"); } // verify the required parameter 'keyUpdateModel' is set if (keyUpdateModel == null) { throw new ApiException(400, "Missing required parameter 'keyUpdateModel' when calling KeysApi->CreateKey"); } var localVarPath = "./keys"; var localVarPathParams = new Dictionary <String, String>(); var localVarQueryParams = new List <KeyValuePair <String, String> >(); var localVarHeaderParams = new Dictionary <String, String>(this.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 = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "text/html" }; String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) { localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); } if (keyPath != null) { localVarQueryParams.AddRange(this.Configuration.ApiClient.ParameterToKeyValuePairs("", "keyPath", keyPath)); // query parameter } if (authorName != null) { localVarQueryParams.AddRange(this.Configuration.ApiClient.ParameterToKeyValuePairs("", "author.name", authorName)); // query parameter } if (authorEmail != null) { localVarQueryParams.AddRange(this.Configuration.ApiClient.ParameterToKeyValuePairs("", "author.email", authorEmail)); // query parameter } if (keyUpdateModel != null && keyUpdateModel.GetType() != typeof(byte[])) { localVarPostBody = this.Configuration.ApiClient.Serialize(keyUpdateModel); // http body (model) parameter } else { localVarPostBody = keyUpdateModel; // byte array } // authentication (bearerAuth) required // http basic authentication required if (!String.IsNullOrEmpty(this.Configuration.Username) || !String.IsNullOrEmpty(this.Configuration.Password)) { localVarHeaderParams["Authorization"] = "Basic " + ApiClient.Base64Encode(this.Configuration.Username + ":" + this.Configuration.Password); } // make the HTTP request IRestResponse localVarResponse = (IRestResponse)await this.Configuration.ApiClient.CallApiAsync(localVarPath, Method.PUT, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int)localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("CreateKey", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <string>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Key, x => string.Join(",", x.Value)), (string)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(string)))); }
/// <summary> /// Save Key /// </summary> /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="keyPath"></param> /// <param name="authorName"></param> /// <param name="authorEmail"></param> /// <param name="keyUpdateModel"></param> /// <returns>string</returns> public string CreateKey(string keyPath, string authorName, string authorEmail, KeyUpdateModel keyUpdateModel) { ApiResponse <string> localVarResponse = CreateKeyWithHttpInfo(keyPath, authorName, authorEmail, keyUpdateModel); return(localVarResponse.Data); }