Skip to content

Commit b52c5cb

Browse files
Merge pull request #174 from CyberSource/release-may-2024
Release May 2024
2 parents 239952b + adc46d5 commit b52c5cb

File tree

357 files changed

+9174
-2870
lines changed

Some content is hidden

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

357 files changed

+9174
-2870
lines changed

Api/BatchesApi.cs

Lines changed: 66 additions & 66 deletions
Large diffs are not rendered by default.

Api/CustomerApi.cs

Lines changed: 66 additions & 66 deletions
Large diffs are not rendered by default.

Api/CustomerPaymentInstrumentApi.cs

Lines changed: 66 additions & 66 deletions
Large diffs are not rendered by default.

Api/CustomerShippingAddressApi.cs

Lines changed: 66 additions & 66 deletions
Large diffs are not rendered by default.

Api/InstrumentIdentifierApi.cs

Lines changed: 88 additions & 88 deletions
Large diffs are not rendered by default.

Api/KeymanagementApi.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace CyberSource.Api
2424
/// <summary>
2525
/// Represents a collection of functions to interact with the API endpoints
2626
/// </summary>
27-
public interface IKeymanagementApi : IApiAccessor
27+
public interface IKeyManagementApi : IApiAccessor
2828
{
2929
#region Synchronous Operations
3030
/// <summary>
@@ -105,17 +105,17 @@ public interface IKeymanagementApi : IApiAccessor
105105
/// <summary>
106106
/// Represents a collection of functions to interact with the API endpoints
107107
/// </summary>
108-
public partial class KeymanagementApi : IKeymanagementApi
108+
public partial class KeyManagementApi : IKeyManagementApi
109109
{
110110
private static Logger logger;
111111
private ExceptionFactory _exceptionFactory = (name, response) => null;
112112
private int? _statusCode;
113113

114114
/// <summary>
115-
/// Initializes a new instance of the <see cref="KeymanagementApi"/> class.
115+
/// Initializes a new instance of the <see cref="KeyManagementApi"/> class.
116116
/// </summary>
117117
/// <returns></returns>
118-
public KeymanagementApi(string basePath)
118+
public KeyManagementApi(string basePath)
119119
{
120120
Configuration = new Configuration(new ApiClient(basePath));
121121

@@ -134,12 +134,12 @@ public KeymanagementApi(string basePath)
134134
}
135135

136136
/// <summary>
137-
/// Initializes a new instance of the <see cref="KeymanagementApi"/> class
137+
/// Initializes a new instance of the <see cref="KeyManagementApi"/> class
138138
/// using Configuration object
139139
/// </summary>
140140
/// <param name="configuration">An instance of Configuration</param>
141141
/// <returns></returns>
142-
public KeymanagementApi(Configuration configuration = null)
142+
public KeyManagementApi(Configuration configuration = null)
143143
{
144144
if (configuration == null) // use the default one in Configuration
145145
Configuration = Configuration.Default;

Api/KeymanagementpasswordApi.cs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace CyberSource.Api
2424
/// <summary>
2525
/// Represents a collection of functions to interact with the API endpoints
2626
/// </summary>
27-
public interface IKeymanagementpasswordApi : IApiAccessor
27+
public interface IKeyManagementPasswordApi : IApiAccessor
2828
{
2929
#region Synchronous Operations
3030
/// <summary>
@@ -81,17 +81,17 @@ public interface IKeymanagementpasswordApi : IApiAccessor
8181
/// <summary>
8282
/// Represents a collection of functions to interact with the API endpoints
8383
/// </summary>
84-
public partial class KeymanagementpasswordApi : IKeymanagementpasswordApi
84+
public partial class KeyManagementPasswordApi : IKeyManagementPasswordApi
8585
{
8686
private static Logger logger;
8787
private ExceptionFactory _exceptionFactory = (name, response) => null;
8888
private int? _statusCode;
8989

9090
/// <summary>
91-
/// Initializes a new instance of the <see cref="KeymanagementpasswordApi"/> class.
91+
/// Initializes a new instance of the <see cref="KeyManagementPasswordApi"/> class.
9292
/// </summary>
9393
/// <returns></returns>
94-
public KeymanagementpasswordApi(string basePath)
94+
public KeyManagementPasswordApi(string basePath)
9595
{
9696
Configuration = new Configuration(new ApiClient(basePath));
9797

@@ -110,12 +110,12 @@ public KeymanagementpasswordApi(string basePath)
110110
}
111111

112112
/// <summary>
113-
/// Initializes a new instance of the <see cref="KeymanagementpasswordApi"/> class
113+
/// Initializes a new instance of the <see cref="KeyManagementPasswordApi"/> class
114114
/// using Configuration object
115115
/// </summary>
116116
/// <param name="configuration">An instance of Configuration</param>
117117
/// <returns></returns>
118-
public KeymanagementpasswordApi(Configuration configuration = null)
118+
public KeyManagementPasswordApi(Configuration configuration = null)
119119
{
120120
if (configuration == null) // use the default one in Configuration
121121
Configuration = Configuration.Default;
@@ -246,14 +246,14 @@ public ApiResponse< Object > UpdatePasswordWithHttpInfo (string keyId, UpdatePas
246246
// verify the required parameter 'keyId' is set
247247
if (keyId == null)
248248
{
249-
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeymanagementpasswordApi->UpdatePassword");
250-
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeymanagementpasswordApi->UpdatePassword");
249+
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeyManagementPasswordApi->UpdatePassword");
250+
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeyManagementPasswordApi->UpdatePassword");
251251
}
252252
// verify the required parameter 'updatePasswordKeysRequest' is set
253253
if (updatePasswordKeysRequest == null)
254254
{
255-
logger.Error("ApiException : Missing required parameter 'updatePasswordKeysRequest' when calling KeymanagementpasswordApi->UpdatePassword");
256-
throw new ApiException(400, "Missing required parameter 'updatePasswordKeysRequest' when calling KeymanagementpasswordApi->UpdatePassword");
255+
logger.Error("ApiException : Missing required parameter 'updatePasswordKeysRequest' when calling KeyManagementPasswordApi->UpdatePassword");
256+
throw new ApiException(400, "Missing required parameter 'updatePasswordKeysRequest' when calling KeyManagementPasswordApi->UpdatePassword");
257257
}
258258

259259
var localVarPath = $"/kms/v2/keys-password/{keyId}";
@@ -360,14 +360,14 @@ public async System.Threading.Tasks.Task<ApiResponse<Object>> UpdatePasswordAsyn
360360
// verify the required parameter 'keyId' is set
361361
if (keyId == null)
362362
{
363-
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeymanagementpasswordApi->UpdatePassword");
364-
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeymanagementpasswordApi->UpdatePassword");
363+
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeyManagementPasswordApi->UpdatePassword");
364+
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeyManagementPasswordApi->UpdatePassword");
365365
}
366366
// verify the required parameter 'updatePasswordKeysRequest' is set
367367
if (updatePasswordKeysRequest == null)
368368
{
369-
logger.Error("ApiException : Missing required parameter 'updatePasswordKeysRequest' when calling KeymanagementpasswordApi->UpdatePassword");
370-
throw new ApiException(400, "Missing required parameter 'updatePasswordKeysRequest' when calling KeymanagementpasswordApi->UpdatePassword");
369+
logger.Error("ApiException : Missing required parameter 'updatePasswordKeysRequest' when calling KeyManagementPasswordApi->UpdatePassword");
370+
throw new ApiException(400, "Missing required parameter 'updatePasswordKeysRequest' when calling KeyManagementPasswordApi->UpdatePassword");
371371
}
372372

373373
var localVarPath = $"/kms/v2/keys-password/{keyId}";

Api/KeymanagementpgpApi.cs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace CyberSource.Api
2424
/// <summary>
2525
/// Represents a collection of functions to interact with the API endpoints
2626
/// </summary>
27-
public interface IKeymanagementpgpApi : IApiAccessor
27+
public interface IKeyManagementPgpApi : IApiAccessor
2828
{
2929
#region Synchronous Operations
3030
/// <summary>
@@ -81,17 +81,17 @@ public interface IKeymanagementpgpApi : IApiAccessor
8181
/// <summary>
8282
/// Represents a collection of functions to interact with the API endpoints
8383
/// </summary>
84-
public partial class KeymanagementpgpApi : IKeymanagementpgpApi
84+
public partial class KeyManagementPgpApi : IKeyManagementPgpApi
8585
{
8686
private static Logger logger;
8787
private ExceptionFactory _exceptionFactory = (name, response) => null;
8888
private int? _statusCode;
8989

9090
/// <summary>
91-
/// Initializes a new instance of the <see cref="KeymanagementpgpApi"/> class.
91+
/// Initializes a new instance of the <see cref="KeyManagementPgpApi"/> class.
9292
/// </summary>
9393
/// <returns></returns>
94-
public KeymanagementpgpApi(string basePath)
94+
public KeyManagementPgpApi(string basePath)
9595
{
9696
Configuration = new Configuration(new ApiClient(basePath));
9797

@@ -110,12 +110,12 @@ public KeymanagementpgpApi(string basePath)
110110
}
111111

112112
/// <summary>
113-
/// Initializes a new instance of the <see cref="KeymanagementpgpApi"/> class
113+
/// Initializes a new instance of the <see cref="KeyManagementPgpApi"/> class
114114
/// using Configuration object
115115
/// </summary>
116116
/// <param name="configuration">An instance of Configuration</param>
117117
/// <returns></returns>
118-
public KeymanagementpgpApi(Configuration configuration = null)
118+
public KeyManagementPgpApi(Configuration configuration = null)
119119
{
120120
if (configuration == null) // use the default one in Configuration
121121
Configuration = Configuration.Default;
@@ -246,14 +246,14 @@ public ApiResponse< Object > UpdatePGPWithHttpInfo (string keyId, UpdatePGPKeysR
246246
// verify the required parameter 'keyId' is set
247247
if (keyId == null)
248248
{
249-
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeymanagementpgpApi->UpdatePGP");
250-
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeymanagementpgpApi->UpdatePGP");
249+
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeyManagementPgpApi->UpdatePGP");
250+
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeyManagementPgpApi->UpdatePGP");
251251
}
252252
// verify the required parameter 'updatePGPKeysRequest' is set
253253
if (updatePGPKeysRequest == null)
254254
{
255-
logger.Error("ApiException : Missing required parameter 'updatePGPKeysRequest' when calling KeymanagementpgpApi->UpdatePGP");
256-
throw new ApiException(400, "Missing required parameter 'updatePGPKeysRequest' when calling KeymanagementpgpApi->UpdatePGP");
255+
logger.Error("ApiException : Missing required parameter 'updatePGPKeysRequest' when calling KeyManagementPgpApi->UpdatePGP");
256+
throw new ApiException(400, "Missing required parameter 'updatePGPKeysRequest' when calling KeyManagementPgpApi->UpdatePGP");
257257
}
258258

259259
var localVarPath = $"/kms/v2/keys-pgp/{keyId}";
@@ -360,14 +360,14 @@ public async System.Threading.Tasks.Task<ApiResponse<Object>> UpdatePGPAsyncWith
360360
// verify the required parameter 'keyId' is set
361361
if (keyId == null)
362362
{
363-
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeymanagementpgpApi->UpdatePGP");
364-
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeymanagementpgpApi->UpdatePGP");
363+
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeyManagementPgpApi->UpdatePGP");
364+
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeyManagementPgpApi->UpdatePGP");
365365
}
366366
// verify the required parameter 'updatePGPKeysRequest' is set
367367
if (updatePGPKeysRequest == null)
368368
{
369-
logger.Error("ApiException : Missing required parameter 'updatePGPKeysRequest' when calling KeymanagementpgpApi->UpdatePGP");
370-
throw new ApiException(400, "Missing required parameter 'updatePGPKeysRequest' when calling KeymanagementpgpApi->UpdatePGP");
369+
logger.Error("ApiException : Missing required parameter 'updatePGPKeysRequest' when calling KeyManagementPgpApi->UpdatePGP");
370+
throw new ApiException(400, "Missing required parameter 'updatePGPKeysRequest' when calling KeyManagementPgpApi->UpdatePGP");
371371
}
372372

373373
var localVarPath = $"/kms/v2/keys-pgp/{keyId}";

Api/KeymanagementscmpApi.cs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace CyberSource.Api
2424
/// <summary>
2525
/// Represents a collection of functions to interact with the API endpoints
2626
/// </summary>
27-
public interface IKeymanagementscmpApi : IApiAccessor
27+
public interface IKeyManagementScmpApi : IApiAccessor
2828
{
2929
#region Synchronous Operations
3030
/// <summary>
@@ -81,17 +81,17 @@ public interface IKeymanagementscmpApi : IApiAccessor
8181
/// <summary>
8282
/// Represents a collection of functions to interact with the API endpoints
8383
/// </summary>
84-
public partial class KeymanagementscmpApi : IKeymanagementscmpApi
84+
public partial class KeyManagementScmpApi : IKeyManagementScmpApi
8585
{
8686
private static Logger logger;
8787
private ExceptionFactory _exceptionFactory = (name, response) => null;
8888
private int? _statusCode;
8989

9090
/// <summary>
91-
/// Initializes a new instance of the <see cref="KeymanagementscmpApi"/> class.
91+
/// Initializes a new instance of the <see cref="KeyManagementScmpApi"/> class.
9292
/// </summary>
9393
/// <returns></returns>
94-
public KeymanagementscmpApi(string basePath)
94+
public KeyManagementScmpApi(string basePath)
9595
{
9696
Configuration = new Configuration(new ApiClient(basePath));
9797

@@ -110,12 +110,12 @@ public KeymanagementscmpApi(string basePath)
110110
}
111111

112112
/// <summary>
113-
/// Initializes a new instance of the <see cref="KeymanagementscmpApi"/> class
113+
/// Initializes a new instance of the <see cref="KeyManagementScmpApi"/> class
114114
/// using Configuration object
115115
/// </summary>
116116
/// <param name="configuration">An instance of Configuration</param>
117117
/// <returns></returns>
118-
public KeymanagementscmpApi(Configuration configuration = null)
118+
public KeyManagementScmpApi(Configuration configuration = null)
119119
{
120120
if (configuration == null) // use the default one in Configuration
121121
Configuration = Configuration.Default;
@@ -246,14 +246,14 @@ public ApiResponse< Object > UpdateSCMPWithHttpInfo (string keyId, UpdatePGPKeys
246246
// verify the required parameter 'keyId' is set
247247
if (keyId == null)
248248
{
249-
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeymanagementscmpApi->UpdateSCMP");
250-
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeymanagementscmpApi->UpdateSCMP");
249+
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeyManagementScmpApi->UpdateSCMP");
250+
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeyManagementScmpApi->UpdateSCMP");
251251
}
252252
// verify the required parameter 'updatePGPKeysRequest' is set
253253
if (updatePGPKeysRequest == null)
254254
{
255-
logger.Error("ApiException : Missing required parameter 'updatePGPKeysRequest' when calling KeymanagementscmpApi->UpdateSCMP");
256-
throw new ApiException(400, "Missing required parameter 'updatePGPKeysRequest' when calling KeymanagementscmpApi->UpdateSCMP");
255+
logger.Error("ApiException : Missing required parameter 'updatePGPKeysRequest' when calling KeyManagementScmpApi->UpdateSCMP");
256+
throw new ApiException(400, "Missing required parameter 'updatePGPKeysRequest' when calling KeyManagementScmpApi->UpdateSCMP");
257257
}
258258

259259
var localVarPath = $"/kms/v2/keys-scmp/{keyId}";
@@ -360,14 +360,14 @@ public async System.Threading.Tasks.Task<ApiResponse<Object>> UpdateSCMPAsyncWit
360360
// verify the required parameter 'keyId' is set
361361
if (keyId == null)
362362
{
363-
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeymanagementscmpApi->UpdateSCMP");
364-
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeymanagementscmpApi->UpdateSCMP");
363+
logger.Error("ApiException : Missing required parameter 'keyId' when calling KeyManagementScmpApi->UpdateSCMP");
364+
throw new ApiException(400, "Missing required parameter 'keyId' when calling KeyManagementScmpApi->UpdateSCMP");
365365
}
366366
// verify the required parameter 'updatePGPKeysRequest' is set
367367
if (updatePGPKeysRequest == null)
368368
{
369-
logger.Error("ApiException : Missing required parameter 'updatePGPKeysRequest' when calling KeymanagementscmpApi->UpdateSCMP");
370-
throw new ApiException(400, "Missing required parameter 'updatePGPKeysRequest' when calling KeymanagementscmpApi->UpdateSCMP");
369+
logger.Error("ApiException : Missing required parameter 'updatePGPKeysRequest' when calling KeyManagementScmpApi->UpdateSCMP");
370+
throw new ApiException(400, "Missing required parameter 'updatePGPKeysRequest' when calling KeyManagementScmpApi->UpdateSCMP");
371371
}
372372

373373
var localVarPath = $"/kms/v2/keys-scmp/{keyId}";

0 commit comments

Comments
 (0)