Skip to content

Commit a959569

Browse files
committed
Merge branch 'fix-for-get-api-controller' into aug_release
2 parents 3e1b422 + 7229679 commit a959569

34 files changed

Lines changed: 106 additions & 62 deletions

CyberSource/api/asymmetric_key_management_api.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,7 @@ def get_p12_key_details_with_http_info(self, key_id, **kwargs):
342342
path_params = {}
343343
if 'key_id' in params:
344344
path_params['keyId'] = params['key_id']
345+
keyId=key_id
345346

346347
query_params = []
347348

@@ -362,7 +363,7 @@ def get_p12_key_details_with_http_info(self, key_id, **kwargs):
362363
# Authentication setting
363364
auth_settings = []
364365

365-
return self.api_client.call_api(f'/kms/v2/keys-asym/{key_id}', 'GET',
366+
return self.api_client.call_api(f'/kms/v2/keys-asym/{keyId}', 'GET',
366367
path_params,
367368
query_params,
368369
header_params,
@@ -461,6 +462,7 @@ def update_asym_key_with_http_info(self, key_id, update_asym_keys_request, **kwa
461462
path_params = {}
462463
if 'key_id' in params:
463464
path_params['keyId'] = params['key_id']
465+
keyId=key_id
464466

465467
query_params = []
466468

@@ -481,7 +483,7 @@ def update_asym_key_with_http_info(self, key_id, update_asym_keys_request, **kwa
481483
# Authentication setting
482484
auth_settings = []
483485

484-
return self.api_client.call_api(f'/kms/v2/keys-asym/{key_id}', 'PATCH',
486+
return self.api_client.call_api(f'/kms/v2/keys-asym/{keyId}', 'PATCH',
485487
path_params,
486488
query_params,
487489
header_params,

CyberSource/api/batches_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ def get_batch_report_with_http_info(self, batch_id, **kwargs):
130130
path_params = {}
131131
if 'batch_id' in params:
132132
path_params['batchId'] = params['batch_id']
133+
batchId=batch_id
133134

134135
query_params = []
135136

@@ -250,6 +251,7 @@ def get_batch_status_with_http_info(self, batch_id, **kwargs):
250251
path_params = {}
251252
if 'batch_id' in params:
252253
path_params['batchId'] = params['batch_id']
254+
batchId=batch_id
253255

254256
query_params = []
255257

CyberSource/api/capture_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ def capture_payment_with_http_info(self, capture_payment_request, id, **kwargs):
129129
path_params = {}
130130
if 'id' in params:
131131
path_params['id'] = params['id']
132+
id=id
132133

133134
query_params = []
134135

CyberSource/api/customer_api.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ def delete_customer_with_http_info(self, customer_id, **kwargs):
140140
path_params = {}
141141
if 'customer_id' in params:
142142
path_params['customerId'] = params['customer_id']
143+
customerId=customer_id
143144

144145
query_params = []
145146

@@ -162,7 +163,7 @@ def delete_customer_with_http_info(self, customer_id, **kwargs):
162163
# Authentication setting
163164
auth_settings = []
164165

165-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}', 'DELETE',
166+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}', 'DELETE',
166167
path_params,
167168
query_params,
168169
header_params,
@@ -272,6 +273,7 @@ def get_customer_with_http_info(self, customer_id, **kwargs):
272273
path_params = {}
273274
if 'customer_id' in params:
274275
path_params['customerId'] = params['customer_id']
276+
customerId=customer_id
275277

276278
query_params = []
277279

@@ -294,7 +296,7 @@ def get_customer_with_http_info(self, customer_id, **kwargs):
294296
# Authentication setting
295297
auth_settings = []
296298

297-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}', 'GET',
299+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}', 'GET',
298300
path_params,
299301
query_params,
300302
header_params,
@@ -421,6 +423,7 @@ def patch_customer_with_http_info(self, customer_id, patch_customer_request, **k
421423
path_params = {}
422424
if 'customer_id' in params:
423425
path_params['customerId'] = params['customer_id']
426+
customerId=customer_id
424427

425428
query_params = []
426429

@@ -445,7 +448,7 @@ def patch_customer_with_http_info(self, customer_id, patch_customer_request, **k
445448
# Authentication setting
446449
auth_settings = []
447450

448-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}', 'PATCH',
451+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}', 'PATCH',
449452
path_params,
450453
query_params,
451454
header_params,

CyberSource/api/customer_payment_instrument_api.py

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,10 @@ def delete_customer_payment_instrument_with_http_info(self, customer_id, payment
155155
path_params = {}
156156
if 'customer_id' in params:
157157
path_params['customerId'] = params['customer_id']
158+
customerId=customer_id
158159
if 'payment_instrument_id' in params:
159160
path_params['paymentInstrumentId'] = params['payment_instrument_id']
161+
paymentInstrumentId=payment_instrument_id
160162

161163
query_params = []
162164

@@ -179,7 +181,7 @@ def delete_customer_payment_instrument_with_http_info(self, customer_id, payment
179181
# Authentication setting
180182
auth_settings = []
181183

182-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/payment-instruments/{payment_instrument_id}', 'DELETE',
184+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/payment-instruments/{paymentInstrumentId}', 'DELETE',
183185
path_params,
184186
query_params,
185187
header_params,
@@ -304,8 +306,10 @@ def get_customer_payment_instrument_with_http_info(self, customer_id, payment_in
304306
path_params = {}
305307
if 'customer_id' in params:
306308
path_params['customerId'] = params['customer_id']
309+
customerId=customer_id
307310
if 'payment_instrument_id' in params:
308311
path_params['paymentInstrumentId'] = params['payment_instrument_id']
312+
paymentInstrumentId=payment_instrument_id
309313

310314
query_params = []
311315

@@ -328,7 +332,7 @@ def get_customer_payment_instrument_with_http_info(self, customer_id, payment_in
328332
# Authentication setting
329333
auth_settings = []
330334

331-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/payment-instruments/{payment_instrument_id}', 'GET',
335+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/payment-instruments/{paymentInstrumentId}', 'GET',
332336
path_params,
333337
query_params,
334338
header_params,
@@ -454,6 +458,7 @@ def get_customer_payment_instruments_list_with_http_info(self, customer_id, **kw
454458
path_params = {}
455459
if 'customer_id' in params:
456460
path_params['customerId'] = params['customer_id']
461+
customerId=customer_id
457462

458463
query_params = []
459464
if 'offset' in params:
@@ -480,7 +485,7 @@ def get_customer_payment_instruments_list_with_http_info(self, customer_id, **kw
480485
# Authentication setting
481486
auth_settings = []
482487

483-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/payment-instruments', 'GET',
488+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/payment-instruments', 'GET',
484489
path_params,
485490
query_params,
486491
header_params,
@@ -622,8 +627,10 @@ def patch_customers_payment_instrument_with_http_info(self, customer_id, payment
622627
path_params = {}
623628
if 'customer_id' in params:
624629
path_params['customerId'] = params['customer_id']
630+
customerId=customer_id
625631
if 'payment_instrument_id' in params:
626632
path_params['paymentInstrumentId'] = params['payment_instrument_id']
633+
paymentInstrumentId=payment_instrument_id
627634

628635
query_params = []
629636

@@ -648,7 +655,7 @@ def patch_customers_payment_instrument_with_http_info(self, customer_id, payment
648655
# Authentication setting
649656
auth_settings = []
650657

651-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/payment-instruments/{payment_instrument_id}', 'PATCH',
658+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/payment-instruments/{paymentInstrumentId}', 'PATCH',
652659
path_params,
653660
query_params,
654661
header_params,
@@ -765,6 +772,7 @@ def post_customer_payment_instrument_with_http_info(self, customer_id, post_cust
765772
path_params = {}
766773
if 'customer_id' in params:
767774
path_params['customerId'] = params['customer_id']
775+
customerId=customer_id
768776

769777
query_params = []
770778

@@ -787,7 +795,7 @@ def post_customer_payment_instrument_with_http_info(self, customer_id, post_cust
787795
# Authentication setting
788796
auth_settings = []
789797

790-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/payment-instruments', 'POST',
798+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/payment-instruments', 'POST',
791799
path_params,
792800
query_params,
793801
header_params,

CyberSource/api/customer_shipping_address_api.py

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,10 @@ def delete_customer_shipping_address_with_http_info(self, customer_id, shipping_
155155
path_params = {}
156156
if 'customer_id' in params:
157157
path_params['customerId'] = params['customer_id']
158+
customerId=customer_id
158159
if 'shipping_address_id' in params:
159160
path_params['shippingAddressId'] = params['shipping_address_id']
161+
shippingAddressId=shipping_address_id
160162

161163
query_params = []
162164

@@ -179,7 +181,7 @@ def delete_customer_shipping_address_with_http_info(self, customer_id, shipping_
179181
# Authentication setting
180182
auth_settings = []
181183

182-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/shipping-addresses/{shipping_address_id}', 'DELETE',
184+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/shipping-addresses/{shippingAddressId}', 'DELETE',
183185
path_params,
184186
query_params,
185187
header_params,
@@ -304,8 +306,10 @@ def get_customer_shipping_address_with_http_info(self, customer_id, shipping_add
304306
path_params = {}
305307
if 'customer_id' in params:
306308
path_params['customerId'] = params['customer_id']
309+
customerId=customer_id
307310
if 'shipping_address_id' in params:
308311
path_params['shippingAddressId'] = params['shipping_address_id']
312+
shippingAddressId=shipping_address_id
309313

310314
query_params = []
311315

@@ -328,7 +332,7 @@ def get_customer_shipping_address_with_http_info(self, customer_id, shipping_add
328332
# Authentication setting
329333
auth_settings = []
330334

331-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/shipping-addresses/{shipping_address_id}', 'GET',
335+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/shipping-addresses/{shippingAddressId}', 'GET',
332336
path_params,
333337
query_params,
334338
header_params,
@@ -454,6 +458,7 @@ def get_customer_shipping_addresses_list_with_http_info(self, customer_id, **kwa
454458
path_params = {}
455459
if 'customer_id' in params:
456460
path_params['customerId'] = params['customer_id']
461+
customerId=customer_id
457462

458463
query_params = []
459464
if 'offset' in params:
@@ -480,7 +485,7 @@ def get_customer_shipping_addresses_list_with_http_info(self, customer_id, **kwa
480485
# Authentication setting
481486
auth_settings = []
482487

483-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/shipping-addresses', 'GET',
488+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/shipping-addresses', 'GET',
484489
path_params,
485490
query_params,
486491
header_params,
@@ -622,8 +627,10 @@ def patch_customers_shipping_address_with_http_info(self, customer_id, shipping_
622627
path_params = {}
623628
if 'customer_id' in params:
624629
path_params['customerId'] = params['customer_id']
630+
customerId=customer_id
625631
if 'shipping_address_id' in params:
626632
path_params['shippingAddressId'] = params['shipping_address_id']
633+
shippingAddressId=shipping_address_id
627634

628635
query_params = []
629636

@@ -648,7 +655,7 @@ def patch_customers_shipping_address_with_http_info(self, customer_id, shipping_
648655
# Authentication setting
649656
auth_settings = []
650657

651-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/shipping-addresses/{shipping_address_id}', 'PATCH',
658+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/shipping-addresses/{shippingAddressId}', 'PATCH',
652659
path_params,
653660
query_params,
654661
header_params,
@@ -765,6 +772,7 @@ def post_customer_shipping_address_with_http_info(self, customer_id, post_custom
765772
path_params = {}
766773
if 'customer_id' in params:
767774
path_params['customerId'] = params['customer_id']
775+
customerId=customer_id
768776

769777
query_params = []
770778

@@ -787,7 +795,7 @@ def post_customer_shipping_address_with_http_info(self, customer_id, post_custom
787795
# Authentication setting
788796
auth_settings = []
789797

790-
return self.api_client.call_api(f'/tms/v2/customers/{customer_id}/shipping-addresses', 'POST',
798+
return self.api_client.call_api(f'/tms/v2/customers/{customerId}/shipping-addresses', 'POST',
791799
path_params,
792800
query_params,
793801
header_params,

CyberSource/api/decision_manager_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ def add_negative_with_http_info(self, type, add_negative_list_request, **kwargs)
129129
path_params = {}
130130
if 'type' in params:
131131
path_params['type'] = params['type']
132+
type=type
132133

133134
query_params = []
134135

@@ -358,6 +359,7 @@ def fraud_update_with_http_info(self, id, fraud_marking_action_request, **kwargs
358359
path_params = {}
359360
if 'id' in params:
360361
path_params['id'] = params['id']
362+
id=id
361363

362364
query_params = []
363365

CyberSource/api/download_dtd_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ def get_dtdv2_with_http_info(self, report_definition_name_version, **kwargs):
122122
path_params = {}
123123
if 'report_definition_name_version' in params:
124124
path_params['reportDefinitionNameVersion'] = params['report_definition_name_version']
125+
reportDefinitionNameVersion=report_definition_name_version
125126

126127
query_params = []
127128

CyberSource/api/download_xsd_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ def get_xsdv2_with_http_info(self, report_definition_name_version, **kwargs):
122122
path_params = {}
123123
if 'report_definition_name_version' in params:
124124
path_params['reportDefinitionNameVersion'] = params['report_definition_name_version']
125+
reportDefinitionNameVersion=report_definition_name_version
125126

126127
query_params = []
127128

0 commit comments

Comments
 (0)