|
| 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