Skip to content

Commit a087afe

Browse files
authored
Merge pull request #91 from CyberSource/nov-22-release
November-22 release updates
2 parents 3b6f3a9 + 54d62dc commit a087afe

File tree

73 files changed

+4749
-364
lines changed

Some content is hidden

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

73 files changed

+4749
-364
lines changed

CyberSource/__init__.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,18 @@
4545
from .models.generate_public_key_request import GeneratePublicKeyRequest
4646
from .models.generate_unified_checkout_capture_context_request import GenerateUnifiedCheckoutCaptureContextRequest
4747
from .models.increment_auth_request import IncrementAuthRequest
48+
from .models.inline_response_200 import InlineResponse200
49+
from .models.inline_response_200_keys import InlineResponse200Keys
4850
from .models.inline_response_400 import InlineResponse400
4951
from .models.inline_response_400_1 import InlineResponse4001
5052
from .models.inline_response_400_1_fields import InlineResponse4001Fields
5153
from .models.inline_response_400_2 import InlineResponse4002
5254
from .models.inline_response_400_3 import InlineResponse4003
53-
from .models.inline_response_400_3_details import InlineResponse4003Details
55+
from .models.inline_response_400_4 import InlineResponse4004
56+
from .models.inline_response_400_4_details import InlineResponse4004Details
5457
from .models.inline_response_400_details import InlineResponse400Details
5558
from .models.inline_response_400_errors import InlineResponse400Errors
59+
from .models.inline_response_500 import InlineResponse500
5660
from .models.inline_response_502 import InlineResponse502
5761
from .models.inline_response_default import InlineResponseDefault
5862
from .models.inline_response_default__links import InlineResponseDefaultLinks
@@ -725,7 +729,11 @@
725729
from .models.ums_v1_users_get200_response_contact_information import UmsV1UsersGet200ResponseContactInformation
726730
from .models.ums_v1_users_get200_response_organization_information import UmsV1UsersGet200ResponseOrganizationInformation
727731
from .models.ums_v1_users_get200_response_users import UmsV1UsersGet200ResponseUsers
732+
from .models.update_asym_keys_request import UpdateAsymKeysRequest
728733
from .models.update_invoice_request import UpdateInvoiceRequest
734+
from .models.update_pgp_keys_request import UpdatePGPKeysRequest
735+
from .models.update_pgp_keys_request_1 import UpdatePGPKeysRequest1
736+
from .models.update_password_keys_request import UpdatePasswordKeysRequest
729737
from .models.upv1capturecontexts_capture_mandate import Upv1capturecontextsCaptureMandate
730738
from .models.upv1capturecontexts_checkout_api_initialization import Upv1capturecontextsCheckoutApiInitialization
731739
from .models.upv1capturecontexts_order_information import Upv1capturecontextsOrderInformation
@@ -792,6 +800,10 @@
792800
from .apis.invoice_settings_api import InvoiceSettingsApi
793801
from .apis.invoices_api import InvoicesApi
794802
from .apis.key_generation_api import KeyGenerationApi
803+
from .apis.keymanagement_api import KeymanagementApi
804+
from .apis.keymanagementpassword_api import KeymanagementpasswordApi
805+
from .apis.keymanagementpgp_api import KeymanagementpgpApi
806+
from .apis.keymanagementscmp_api import KeymanagementscmpApi
795807
from .apis.net_fundings_api import NetFundingsApi
796808
from .apis.notification_of_changes_api import NotificationOfChangesApi
797809
from .apis.payer_authentication_api import PayerAuthenticationApi

CyberSource/apis/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
from .invoice_settings_api import InvoiceSettingsApi
2121
from .invoices_api import InvoicesApi
2222
from .key_generation_api import KeyGenerationApi
23+
from .keymanagement_api import KeymanagementApi
24+
from .keymanagementpassword_api import KeymanagementpasswordApi
25+
from .keymanagementpgp_api import KeymanagementpgpApi
26+
from .keymanagementscmp_api import KeymanagementscmpApi
2327
from .net_fundings_api import NetFundingsApi
2428
from .notification_of_changes_api import NotificationOfChangesApi
2529
from .payer_authentication_api import PayerAuthenticationApi

CyberSource/apis/asymmetric_key_management_api.py

+121
Original file line numberDiff line numberDiff line change
@@ -382,3 +382,124 @@ def get_p12_key_details_with_http_info(self, key_id, **kwargs):
382382
_preload_content=params.get('_preload_content', True),
383383
_request_timeout=params.get('_request_timeout'),
384384
collection_formats=collection_formats)
385+
386+
def update_asym_key(self, key_id, update_asym_keys_request, **kwargs):
387+
"""
388+
Activate or De-activate Asymmetric Key
389+
Activate or De-activate Asymmetric Key
390+
This method makes a synchronous HTTP request by default. To make an
391+
asynchronous HTTP request, please define a `callback` function
392+
to be invoked when receiving the response.
393+
>>> def callback_function(response):
394+
>>> pprint(response)
395+
>>>
396+
>>> thread = api.update_asym_key(key_id, update_asym_keys_request, callback=callback_function)
397+
398+
:param callback function: The callback function
399+
for asynchronous request. (optional)
400+
:param str key_id: Key ID. (required)
401+
:param UpdateAsymKeysRequest update_asym_keys_request: (required)
402+
:return: object
403+
If the method is called asynchronously,
404+
returns the request thread.
405+
"""
406+
407+
if self.api_client.mconfig.log_config.enable_log:
408+
self.logger.info("CALL TO METHOD `update_asym_key` STARTED")
409+
410+
kwargs['_return_http_data_only'] = True
411+
if kwargs.get('callback'):
412+
return self.update_asym_key_with_http_info(key_id, update_asym_keys_request, **kwargs)
413+
else:
414+
(data) = self.update_asym_key_with_http_info(key_id, update_asym_keys_request, **kwargs)
415+
return data
416+
417+
def update_asym_key_with_http_info(self, key_id, update_asym_keys_request, **kwargs):
418+
"""
419+
Activate or De-activate Asymmetric Key
420+
Activate or De-activate Asymmetric Key
421+
This method makes a synchronous HTTP request by default. To make an
422+
asynchronous HTTP request, please define a `callback` function
423+
to be invoked when receiving the response.
424+
>>> def callback_function(response):
425+
>>> pprint(response)
426+
>>>
427+
>>> thread = api.update_asym_key_with_http_info(key_id, update_asym_keys_request, callback=callback_function)
428+
429+
:param callback function: The callback function
430+
for asynchronous request. (optional)
431+
:param str key_id: Key ID. (required)
432+
:param UpdateAsymKeysRequest update_asym_keys_request: (required)
433+
:return: object
434+
If the method is called asynchronously,
435+
returns the request thread.
436+
"""
437+
438+
all_params = ['key_id', 'update_asym_keys_request']
439+
all_params.append('callback')
440+
all_params.append('_return_http_data_only')
441+
all_params.append('_preload_content')
442+
all_params.append('_request_timeout')
443+
444+
params = locals()
445+
for key, val in iteritems(params['kwargs']):
446+
if key not in all_params:
447+
raise TypeError(
448+
"Got an unexpected keyword argument '%s'"
449+
" to method update_asym_key" % key
450+
)
451+
params[key] = val
452+
del params['kwargs']
453+
# verify the required parameter 'key_id' is set
454+
if ('key_id' not in params) or (params['key_id'] is None):
455+
if self.api_client.mconfig.log_config.enable_log:
456+
self.logger.error("InvalidArgumentException : Missing the required parameter `key_id` when calling `update_asym_key`")
457+
raise ValueError("Missing the required parameter `key_id` when calling `update_asym_key`")
458+
# verify the required parameter 'update_asym_keys_request' is set
459+
if ('update_asym_keys_request' not in params) or (params['update_asym_keys_request'] is None):
460+
if self.api_client.mconfig.log_config.enable_log:
461+
self.logger.error("InvalidArgumentException : Missing the required parameter `update_asym_keys_request` when calling `update_asym_key`")
462+
raise ValueError("Missing the required parameter `update_asym_keys_request` when calling `update_asym_key`")
463+
464+
465+
collection_formats = {}
466+
467+
path_params = {}
468+
if 'key_id' in params:
469+
path_params['keyId'] = params['key_id']
470+
471+
query_params = []
472+
473+
header_params = {}
474+
475+
form_params = []
476+
local_var_files = {}
477+
478+
body_params = None
479+
if 'update_asym_keys_request' in params:
480+
body_params = params['update_asym_keys_request']
481+
# HTTP header `Accept`
482+
header_params['Accept'] = self.api_client.\
483+
select_header_accept(['application/hal+json;charset=utf-8'])
484+
485+
# HTTP header `Content-Type`
486+
header_params['Content-Type'] = self.api_client.\
487+
select_header_content_type(['application/json;charset=utf-8'])
488+
489+
# Authentication setting
490+
auth_settings = []
491+
492+
return self.api_client.call_api(f'/kms/v2/keys-asym/{key_id}', 'PATCH',
493+
path_params,
494+
query_params,
495+
header_params,
496+
body=body_params,
497+
post_params=form_params,
498+
files=local_var_files,
499+
response_type='object',
500+
auth_settings=auth_settings,
501+
callback=params.get('callback'),
502+
_return_http_data_only=params.get('_return_http_data_only'),
503+
_preload_content=params.get('_preload_content', True),
504+
_request_timeout=params.get('_request_timeout'),
505+
collection_formats=collection_formats)

CyberSource/apis/keymanagement_api.py

+194
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
# coding: utf-8
2+
3+
"""
4+
CyberSource Merged Spec
5+
6+
All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
7+
8+
OpenAPI spec version: 0.0.1
9+
10+
Generated by: https://github.com/swagger-api/swagger-codegen.git
11+
"""
12+
13+
14+
from __future__ import absolute_import
15+
16+
import sys
17+
import os
18+
import re
19+
20+
# python 2 and python 3 compatibility library
21+
from six import iteritems
22+
23+
from ..configuration import Configuration
24+
from ..api_client import ApiClient
25+
import CyberSource.logging.log_factory as LogFactory
26+
27+
28+
class KeymanagementApi(object):
29+
"""
30+
NOTE: This class is auto generated by the swagger code generator program.
31+
Do not edit the class manually.
32+
Ref: https://github.com/swagger-api/swagger-codegen
33+
"""
34+
35+
def __init__(self, merchant_config, api_client=None):
36+
config = Configuration()
37+
if api_client:
38+
self.api_client = api_client
39+
else:
40+
if not config.api_client:
41+
config.api_client = ApiClient()
42+
self.api_client = config.api_client
43+
self.api_client.set_configuration(merchant_config)
44+
self.logger = LogFactory.setup_logger(self.__class__.__name__, self.api_client.mconfig.log_config)
45+
46+
47+
48+
def search_keys(self, **kwargs):
49+
"""
50+
Search Keys
51+
Search one or more Keys
52+
This method makes a synchronous HTTP request by default. To make an
53+
asynchronous HTTP request, please define a `callback` function
54+
to be invoked when receiving the response.
55+
>>> def callback_function(response):
56+
>>> pprint(response)
57+
>>>
58+
>>> thread = api.search_keys(callback=callback_function)
59+
60+
:param callback function: The callback function
61+
for asynchronous request. (optional)
62+
:param int offset: This allows you to specify the page offset from the resulting list resultset you want the records to be returned
63+
:param int limit: This allows you to specify the total number of records to be returned off the resulting list resultset
64+
:param str sort: This allows you to specify a comma separated list of fields in the order which the resulting list resultset must be sorted.
65+
:param list[str] organization_ids: List of Orgaization Ids to search. The maximum size of the organization Ids list is 1. The maximum length of Organization Id is 30.
66+
:param list[str] key_ids: List of Key Ids to search. The maximum size of the Key Ids list is 1
67+
:param list[str] key_types: Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided
68+
:param datetime expiration_start_date: Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided
69+
:param datetime expiration_end_date: Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided
70+
:return: InlineResponse200
71+
If the method is called asynchronously,
72+
returns the request thread.
73+
"""
74+
75+
if self.api_client.mconfig.log_config.enable_log:
76+
self.logger.info("CALL TO METHOD `search_keys` STARTED")
77+
78+
kwargs['_return_http_data_only'] = True
79+
if kwargs.get('callback'):
80+
return self.search_keys_with_http_info(**kwargs)
81+
else:
82+
(data) = self.search_keys_with_http_info(**kwargs)
83+
return data
84+
85+
def search_keys_with_http_info(self, **kwargs):
86+
"""
87+
Search Keys
88+
Search one or more Keys
89+
This method makes a synchronous HTTP request by default. To make an
90+
asynchronous HTTP request, please define a `callback` function
91+
to be invoked when receiving the response.
92+
>>> def callback_function(response):
93+
>>> pprint(response)
94+
>>>
95+
>>> thread = api.search_keys_with_http_info(callback=callback_function)
96+
97+
:param callback function: The callback function
98+
for asynchronous request. (optional)
99+
:param int offset: This allows you to specify the page offset from the resulting list resultset you want the records to be returned
100+
:param int limit: This allows you to specify the total number of records to be returned off the resulting list resultset
101+
:param str sort: This allows you to specify a comma separated list of fields in the order which the resulting list resultset must be sorted.
102+
:param list[str] organization_ids: List of Orgaization Ids to search. The maximum size of the organization Ids list is 1. The maximum length of Organization Id is 30.
103+
:param list[str] key_ids: List of Key Ids to search. The maximum size of the Key Ids list is 1
104+
:param list[str] key_types: Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided
105+
:param datetime expiration_start_date: Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided
106+
:param datetime expiration_end_date: Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided
107+
:return: InlineResponse200
108+
If the method is called asynchronously,
109+
returns the request thread.
110+
"""
111+
112+
all_params = ['offset', 'limit', 'sort', 'organization_ids', 'key_ids', 'key_types', 'expiration_start_date', 'expiration_end_date']
113+
all_params.append('callback')
114+
all_params.append('_return_http_data_only')
115+
all_params.append('_preload_content')
116+
all_params.append('_request_timeout')
117+
118+
params = locals()
119+
for key, val in iteritems(params['kwargs']):
120+
if key not in all_params:
121+
raise TypeError(
122+
"Got an unexpected keyword argument '%s'"
123+
" to method search_keys" % key
124+
)
125+
params[key] = val
126+
del params['kwargs']
127+
128+
if 'expiration_start_date' in params and not re.search('yyyy-mm-dd', params['expiration_start_date']):
129+
if self.api_client.mconfig.log_config.enable_log:
130+
self.logger.error("InvalidArgumentException : Invalid value for parameter `expiration_start_date` when calling `search_keys`, must conform to the pattern `/yyyy-mm-dd/`")
131+
raise ValueError("Invalid value for parameter `expiration_start_date` when calling `search_keys`, must conform to the pattern `/yyyy-mm-dd/`")
132+
if 'expiration_end_date' in params and not re.search('yyyy-mm-dd', params['expiration_end_date']):
133+
if self.api_client.mconfig.log_config.enable_log:
134+
self.logger.error("InvalidArgumentException : Invalid value for parameter `expiration_end_date` when calling `search_keys`, must conform to the pattern `/yyyy-mm-dd/`")
135+
raise ValueError("Invalid value for parameter `expiration_end_date` when calling `search_keys`, must conform to the pattern `/yyyy-mm-dd/`")
136+
137+
collection_formats = {}
138+
139+
path_params = {}
140+
141+
query_params = []
142+
if 'offset' in params:
143+
query_params.append(('offset', params['offset']))
144+
if 'limit' in params:
145+
query_params.append(('limit', params['limit']))
146+
if 'sort' in params:
147+
query_params.append(('sort', params['sort']))
148+
if 'organization_ids' in params:
149+
query_params.append(('organizationIds', params['organization_ids']))
150+
collection_formats['organizationIds'] = 'csv'
151+
if 'key_ids' in params:
152+
query_params.append(('keyIds', params['key_ids']))
153+
collection_formats['keyIds'] = 'csv'
154+
if 'key_types' in params:
155+
query_params.append(('keyTypes', params['key_types']))
156+
collection_formats['keyTypes'] = 'csv'
157+
if 'expiration_start_date' in params:
158+
query_params.append(('expirationStartDate', params['expiration_start_date']))
159+
if 'expiration_end_date' in params:
160+
query_params.append(('expirationEndDate', params['expiration_end_date']))
161+
162+
header_params = {}
163+
164+
form_params = []
165+
local_var_files = {}
166+
167+
body_params = None
168+
if 'GET' in ('POST'):
169+
body_params = '{}'
170+
# HTTP header `Accept`
171+
header_params['Accept'] = self.api_client.\
172+
select_header_accept(['application/hal+json;charset=utf-8'])
173+
174+
# HTTP header `Content-Type`
175+
header_params['Content-Type'] = self.api_client.\
176+
select_header_content_type(['application/json;charset=utf-8'])
177+
178+
# Authentication setting
179+
auth_settings = []
180+
181+
return self.api_client.call_api(f'/kms/v2/keys', 'GET',
182+
path_params,
183+
query_params,
184+
header_params,
185+
body=body_params,
186+
post_params=form_params,
187+
files=local_var_files,
188+
response_type='InlineResponse200',
189+
auth_settings=auth_settings,
190+
callback=params.get('callback'),
191+
_return_http_data_only=params.get('_return_http_data_only'),
192+
_preload_content=params.get('_preload_content', True),
193+
_request_timeout=params.get('_request_timeout'),
194+
collection_formats=collection_formats)

0 commit comments

Comments
 (0)