Skip to content

Commit 65110b3

Browse files
authored
Merge pull request #147 from CyberSource/march-changes
March changes
2 parents 4051867 + ad8595b commit 65110b3

File tree

666 files changed

+52730
-14222
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

666 files changed

+52730
-14222
lines changed

Api/AsymmetricKeyManagementApi.cs

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public AsymmetricKeyManagementApi(Configuration configuration = null)
263263
/// <value>The base path</value>
264264
public string GetBasePath()
265265
{
266-
return Configuration.ApiClient.RestClient.BaseUrl.ToString();
266+
return Configuration.ApiClient.RestClient.Options.BaseUrl.ToString();
267267
}
268268

269269
/// <summary>
@@ -417,8 +417,8 @@ public ApiResponse< KmsV2KeysAsymPost201Response > CreateP12KeysWithHttpInfo (Cr
417417

418418

419419
// make the HTTP request
420-
IRestResponse localVarResponse = (IRestResponse) Configuration.ApiClient.CallApi(localVarPath,
421-
Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
420+
RestResponse localVarResponse = (RestResponse) Configuration.ApiClient.CallApi(localVarPath,
421+
Method.Post, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
422422
localVarPathParams, localVarHttpContentType);
423423

424424
int localVarStatusCode = (int) localVarResponse.StatusCode;
@@ -516,8 +516,8 @@ public async System.Threading.Tasks.Task<ApiResponse<KmsV2KeysAsymPost201Respons
516516

517517

518518
// make the HTTP request
519-
IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
520-
Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
519+
RestResponse localVarResponse = (RestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
520+
Method.Post, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
521521
localVarPathParams, localVarHttpContentType);
522522

523523
int localVarStatusCode = (int)localVarResponse.StatusCode;
@@ -613,8 +613,8 @@ public ApiResponse< KmsV2KeysAsymDeletesPost200Response > DeleteBulkP12KeysWithH
613613

614614

615615
// make the HTTP request
616-
IRestResponse localVarResponse = (IRestResponse) Configuration.ApiClient.CallApi(localVarPath,
617-
Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
616+
RestResponse localVarResponse = (RestResponse) Configuration.ApiClient.CallApi(localVarPath,
617+
Method.Post, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
618618
localVarPathParams, localVarHttpContentType);
619619

620620
int localVarStatusCode = (int) localVarResponse.StatusCode;
@@ -712,8 +712,8 @@ public async System.Threading.Tasks.Task<ApiResponse<KmsV2KeysAsymDeletesPost200
712712

713713

714714
// make the HTTP request
715-
IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
716-
Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
715+
RestResponse localVarResponse = (RestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
716+
Method.Post, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
717717
localVarPathParams, localVarHttpContentType);
718718

719719
int localVarStatusCode = (int)localVarResponse.StatusCode;
@@ -794,7 +794,7 @@ public ApiResponse< KmsV2KeysAsymGet200Response > GetP12KeyDetailsWithHttpInfo (
794794
localVarPathParams.Add("keyId", Configuration.ApiClient.ParameterToString(keyId)); // path parameter
795795
}
796796
logger.Debug($"HTTP Request Body :\n{logUtility.ConvertDictionaryToString(localVarPathParams)}");
797-
if (Method.GET == Method.POST)
797+
if (Method.Get == Method.Post)
798798
{
799799
localVarPostBody = "{}";
800800
}
@@ -805,8 +805,8 @@ public ApiResponse< KmsV2KeysAsymGet200Response > GetP12KeyDetailsWithHttpInfo (
805805

806806

807807
// make the HTTP request
808-
IRestResponse localVarResponse = (IRestResponse) Configuration.ApiClient.CallApi(localVarPath,
809-
Method.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
808+
RestResponse localVarResponse = (RestResponse) Configuration.ApiClient.CallApi(localVarPath,
809+
Method.Get, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
810810
localVarPathParams, localVarHttpContentType);
811811

812812
int localVarStatusCode = (int) localVarResponse.StatusCode;
@@ -889,7 +889,7 @@ public async System.Threading.Tasks.Task<ApiResponse<KmsV2KeysAsymGet200Response
889889
localVarPathParams.Add("keyId", Configuration.ApiClient.ParameterToString(keyId)); // path parameter
890890
}
891891
logger.Debug($"HTTP Request Body :\n{logUtility.ConvertDictionaryToString(localVarPathParams)}");
892-
if (Method.GET == Method.POST)
892+
if (Method.Get == Method.Post)
893893
{
894894
localVarPostBody = "{}";
895895
}
@@ -900,8 +900,8 @@ public async System.Threading.Tasks.Task<ApiResponse<KmsV2KeysAsymGet200Response
900900

901901

902902
// make the HTTP request
903-
IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
904-
Method.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
903+
RestResponse localVarResponse = (RestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
904+
Method.Get, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
905905
localVarPathParams, localVarHttpContentType);
906906

907907
int localVarStatusCode = (int)localVarResponse.StatusCode;
@@ -1010,8 +1010,8 @@ public ApiResponse< Object > UpdateAsymKeyWithHttpInfo (string keyId, UpdateAsym
10101010

10111011

10121012
// make the HTTP request
1013-
IRestResponse localVarResponse = (IRestResponse) Configuration.ApiClient.CallApi(localVarPath,
1014-
Method.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
1013+
RestResponse localVarResponse = (RestResponse) Configuration.ApiClient.CallApi(localVarPath,
1014+
Method.Patch, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
10151015
localVarPathParams, localVarHttpContentType);
10161016

10171017
int localVarStatusCode = (int) localVarResponse.StatusCode;
@@ -1122,8 +1122,8 @@ public async System.Threading.Tasks.Task<ApiResponse<Object>> UpdateAsymKeyAsync
11221122

11231123

11241124
// make the HTTP request
1125-
IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
1126-
Method.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
1125+
RestResponse localVarResponse = (RestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
1126+
Method.Patch, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
11271127
localVarPathParams, localVarHttpContentType);
11281128

11291129
int localVarStatusCode = (int)localVarResponse.StatusCode;

0 commit comments

Comments
 (0)