aws-sdk-paymentcryptographydata 1.8.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-paymentcryptographydata/client.rb +94 -47
- data/lib/aws-sdk-paymentcryptographydata/client_api.rb +15 -2
- data/lib/aws-sdk-paymentcryptographydata/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-paymentcryptographydata/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-paymentcryptographydata/types.rb +135 -96
- data/lib/aws-sdk-paymentcryptographydata.rb +1 -1
- data/sig/client.rbs +561 -0
- data/sig/errors.rbs +36 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +690 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,690 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::PaymentCryptographyData
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AmexCardSecurityCodeVersion1
|
17
|
+
attr_accessor card_expiry_date: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AmexCardSecurityCodeVersion2
|
22
|
+
attr_accessor card_expiry_date: ::String
|
23
|
+
attr_accessor service_code: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class AsymmetricEncryptionAttributes
|
28
|
+
attr_accessor padding_type: ("PKCS1" | "OAEP_SHA1" | "OAEP_SHA256" | "OAEP_SHA512")
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class CardGenerationAttributes
|
33
|
+
attr_accessor amex_card_security_code_version_1: Types::AmexCardSecurityCodeVersion1
|
34
|
+
attr_accessor amex_card_security_code_version_2: Types::AmexCardSecurityCodeVersion2
|
35
|
+
attr_accessor card_holder_verification_value: Types::CardHolderVerificationValue
|
36
|
+
attr_accessor card_verification_value_1: Types::CardVerificationValue1
|
37
|
+
attr_accessor card_verification_value_2: Types::CardVerificationValue2
|
38
|
+
attr_accessor dynamic_card_verification_code: Types::DynamicCardVerificationCode
|
39
|
+
attr_accessor dynamic_card_verification_value: Types::DynamicCardVerificationValue
|
40
|
+
attr_accessor unknown: untyped
|
41
|
+
SENSITIVE: []
|
42
|
+
|
43
|
+
class AmexCardSecurityCodeVersion1 < CardGenerationAttributes
|
44
|
+
end
|
45
|
+
class AmexCardSecurityCodeVersion2 < CardGenerationAttributes
|
46
|
+
end
|
47
|
+
class CardHolderVerificationValue < CardGenerationAttributes
|
48
|
+
end
|
49
|
+
class CardVerificationValue1 < CardGenerationAttributes
|
50
|
+
end
|
51
|
+
class CardVerificationValue2 < CardGenerationAttributes
|
52
|
+
end
|
53
|
+
class DynamicCardVerificationCode < CardGenerationAttributes
|
54
|
+
end
|
55
|
+
class DynamicCardVerificationValue < CardGenerationAttributes
|
56
|
+
end
|
57
|
+
class Unknown < CardGenerationAttributes
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
class CardHolderVerificationValue
|
62
|
+
attr_accessor application_transaction_counter: ::String
|
63
|
+
attr_accessor pan_sequence_number: ::String
|
64
|
+
attr_accessor unpredictable_number: ::String
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class CardVerificationAttributes
|
69
|
+
attr_accessor amex_card_security_code_version_1: Types::AmexCardSecurityCodeVersion1
|
70
|
+
attr_accessor amex_card_security_code_version_2: Types::AmexCardSecurityCodeVersion2
|
71
|
+
attr_accessor card_holder_verification_value: Types::CardHolderVerificationValue
|
72
|
+
attr_accessor card_verification_value_1: Types::CardVerificationValue1
|
73
|
+
attr_accessor card_verification_value_2: Types::CardVerificationValue2
|
74
|
+
attr_accessor discover_dynamic_card_verification_code: Types::DiscoverDynamicCardVerificationCode
|
75
|
+
attr_accessor dynamic_card_verification_code: Types::DynamicCardVerificationCode
|
76
|
+
attr_accessor dynamic_card_verification_value: Types::DynamicCardVerificationValue
|
77
|
+
attr_accessor unknown: untyped
|
78
|
+
SENSITIVE: []
|
79
|
+
|
80
|
+
class AmexCardSecurityCodeVersion1 < CardVerificationAttributes
|
81
|
+
end
|
82
|
+
class AmexCardSecurityCodeVersion2 < CardVerificationAttributes
|
83
|
+
end
|
84
|
+
class CardHolderVerificationValue < CardVerificationAttributes
|
85
|
+
end
|
86
|
+
class CardVerificationValue1 < CardVerificationAttributes
|
87
|
+
end
|
88
|
+
class CardVerificationValue2 < CardVerificationAttributes
|
89
|
+
end
|
90
|
+
class DiscoverDynamicCardVerificationCode < CardVerificationAttributes
|
91
|
+
end
|
92
|
+
class DynamicCardVerificationCode < CardVerificationAttributes
|
93
|
+
end
|
94
|
+
class DynamicCardVerificationValue < CardVerificationAttributes
|
95
|
+
end
|
96
|
+
class Unknown < CardVerificationAttributes
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
class CardVerificationValue1
|
101
|
+
attr_accessor card_expiry_date: ::String
|
102
|
+
attr_accessor service_code: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class CardVerificationValue2
|
107
|
+
attr_accessor card_expiry_date: ::String
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class CryptogramAuthResponse
|
112
|
+
attr_accessor arpc_method_1: Types::CryptogramVerificationArpcMethod1
|
113
|
+
attr_accessor arpc_method_2: Types::CryptogramVerificationArpcMethod2
|
114
|
+
attr_accessor unknown: untyped
|
115
|
+
SENSITIVE: []
|
116
|
+
|
117
|
+
class ArpcMethod1 < CryptogramAuthResponse
|
118
|
+
end
|
119
|
+
class ArpcMethod2 < CryptogramAuthResponse
|
120
|
+
end
|
121
|
+
class Unknown < CryptogramAuthResponse
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
class CryptogramVerificationArpcMethod1
|
126
|
+
attr_accessor auth_response_code: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class CryptogramVerificationArpcMethod2
|
131
|
+
attr_accessor card_status_update: ::String
|
132
|
+
attr_accessor proprietary_authentication_data: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class DecryptDataInput
|
137
|
+
attr_accessor cipher_text: ::String
|
138
|
+
attr_accessor decryption_attributes: Types::EncryptionDecryptionAttributes
|
139
|
+
attr_accessor key_identifier: ::String
|
140
|
+
SENSITIVE: [:cipher_text]
|
141
|
+
end
|
142
|
+
|
143
|
+
class DecryptDataOutput
|
144
|
+
attr_accessor key_arn: ::String
|
145
|
+
attr_accessor key_check_value: ::String
|
146
|
+
attr_accessor plain_text: ::String
|
147
|
+
SENSITIVE: [:plain_text]
|
148
|
+
end
|
149
|
+
|
150
|
+
class DiscoverDynamicCardVerificationCode
|
151
|
+
attr_accessor application_transaction_counter: ::String
|
152
|
+
attr_accessor card_expiry_date: ::String
|
153
|
+
attr_accessor unpredictable_number: ::String
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class DukptAttributes
|
158
|
+
attr_accessor dukpt_derivation_type: ("TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256")
|
159
|
+
attr_accessor key_serial_number: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class DukptDerivationAttributes
|
164
|
+
attr_accessor dukpt_key_derivation_type: ("TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256")
|
165
|
+
attr_accessor dukpt_key_variant: ("BIDIRECTIONAL" | "REQUEST" | "RESPONSE")
|
166
|
+
attr_accessor key_serial_number: ::String
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class DukptEncryptionAttributes
|
171
|
+
attr_accessor dukpt_key_derivation_type: ("TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256")
|
172
|
+
attr_accessor dukpt_key_variant: ("BIDIRECTIONAL" | "REQUEST" | "RESPONSE")
|
173
|
+
attr_accessor initialization_vector: ::String
|
174
|
+
attr_accessor key_serial_number: ::String
|
175
|
+
attr_accessor mode: ("ECB" | "CBC")
|
176
|
+
SENSITIVE: [:initialization_vector]
|
177
|
+
end
|
178
|
+
|
179
|
+
class DynamicCardVerificationCode
|
180
|
+
attr_accessor application_transaction_counter: ::String
|
181
|
+
attr_accessor pan_sequence_number: ::String
|
182
|
+
attr_accessor track_data: ::String
|
183
|
+
attr_accessor unpredictable_number: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class DynamicCardVerificationValue
|
188
|
+
attr_accessor application_transaction_counter: ::String
|
189
|
+
attr_accessor card_expiry_date: ::String
|
190
|
+
attr_accessor pan_sequence_number: ::String
|
191
|
+
attr_accessor service_code: ::String
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class EmvEncryptionAttributes
|
196
|
+
attr_accessor initialization_vector: ::String
|
197
|
+
attr_accessor major_key_derivation_mode: ("EMV_OPTION_A" | "EMV_OPTION_B")
|
198
|
+
attr_accessor mode: ("ECB" | "CBC")
|
199
|
+
attr_accessor pan_sequence_number: ::String
|
200
|
+
attr_accessor primary_account_number: ::String
|
201
|
+
attr_accessor session_derivation_data: ::String
|
202
|
+
SENSITIVE: [:initialization_vector, :primary_account_number]
|
203
|
+
end
|
204
|
+
|
205
|
+
class EncryptDataInput
|
206
|
+
attr_accessor encryption_attributes: Types::EncryptionDecryptionAttributes
|
207
|
+
attr_accessor key_identifier: ::String
|
208
|
+
attr_accessor plain_text: ::String
|
209
|
+
SENSITIVE: [:plain_text]
|
210
|
+
end
|
211
|
+
|
212
|
+
class EncryptDataOutput
|
213
|
+
attr_accessor cipher_text: ::String
|
214
|
+
attr_accessor key_arn: ::String
|
215
|
+
attr_accessor key_check_value: ::String
|
216
|
+
SENSITIVE: [:cipher_text]
|
217
|
+
end
|
218
|
+
|
219
|
+
class EncryptionDecryptionAttributes
|
220
|
+
attr_accessor asymmetric: Types::AsymmetricEncryptionAttributes
|
221
|
+
attr_accessor dukpt: Types::DukptEncryptionAttributes
|
222
|
+
attr_accessor emv: Types::EmvEncryptionAttributes
|
223
|
+
attr_accessor symmetric: Types::SymmetricEncryptionAttributes
|
224
|
+
attr_accessor unknown: untyped
|
225
|
+
SENSITIVE: []
|
226
|
+
|
227
|
+
class Asymmetric < EncryptionDecryptionAttributes
|
228
|
+
end
|
229
|
+
class Dukpt < EncryptionDecryptionAttributes
|
230
|
+
end
|
231
|
+
class Emv < EncryptionDecryptionAttributes
|
232
|
+
end
|
233
|
+
class Symmetric < EncryptionDecryptionAttributes
|
234
|
+
end
|
235
|
+
class Unknown < EncryptionDecryptionAttributes
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
class GenerateCardValidationDataInput
|
240
|
+
attr_accessor generation_attributes: Types::CardGenerationAttributes
|
241
|
+
attr_accessor key_identifier: ::String
|
242
|
+
attr_accessor primary_account_number: ::String
|
243
|
+
attr_accessor validation_data_length: ::Integer
|
244
|
+
SENSITIVE: [:primary_account_number]
|
245
|
+
end
|
246
|
+
|
247
|
+
class GenerateCardValidationDataOutput
|
248
|
+
attr_accessor key_arn: ::String
|
249
|
+
attr_accessor key_check_value: ::String
|
250
|
+
attr_accessor validation_data: ::String
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class GenerateMacInput
|
255
|
+
attr_accessor generation_attributes: Types::MacAttributes
|
256
|
+
attr_accessor key_identifier: ::String
|
257
|
+
attr_accessor mac_length: ::Integer
|
258
|
+
attr_accessor message_data: ::String
|
259
|
+
SENSITIVE: [:message_data]
|
260
|
+
end
|
261
|
+
|
262
|
+
class GenerateMacOutput
|
263
|
+
attr_accessor key_arn: ::String
|
264
|
+
attr_accessor key_check_value: ::String
|
265
|
+
attr_accessor mac: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class GeneratePinDataInput
|
270
|
+
attr_accessor encryption_key_identifier: ::String
|
271
|
+
attr_accessor generation_attributes: Types::PinGenerationAttributes
|
272
|
+
attr_accessor generation_key_identifier: ::String
|
273
|
+
attr_accessor pin_block_format: ("ISO_FORMAT_0" | "ISO_FORMAT_3")
|
274
|
+
attr_accessor pin_data_length: ::Integer
|
275
|
+
attr_accessor primary_account_number: ::String
|
276
|
+
SENSITIVE: [:primary_account_number]
|
277
|
+
end
|
278
|
+
|
279
|
+
class GeneratePinDataOutput
|
280
|
+
attr_accessor encrypted_pin_block: ::String
|
281
|
+
attr_accessor encryption_key_arn: ::String
|
282
|
+
attr_accessor encryption_key_check_value: ::String
|
283
|
+
attr_accessor generation_key_arn: ::String
|
284
|
+
attr_accessor generation_key_check_value: ::String
|
285
|
+
attr_accessor pin_data: Types::PinData
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class Ibm3624NaturalPin
|
290
|
+
attr_accessor decimalization_table: ::String
|
291
|
+
attr_accessor pin_validation_data: ::String
|
292
|
+
attr_accessor pin_validation_data_pad_character: ::String
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class Ibm3624PinFromOffset
|
297
|
+
attr_accessor decimalization_table: ::String
|
298
|
+
attr_accessor pin_offset: ::String
|
299
|
+
attr_accessor pin_validation_data: ::String
|
300
|
+
attr_accessor pin_validation_data_pad_character: ::String
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class Ibm3624PinOffset
|
305
|
+
attr_accessor decimalization_table: ::String
|
306
|
+
attr_accessor encrypted_pin_block: ::String
|
307
|
+
attr_accessor pin_validation_data: ::String
|
308
|
+
attr_accessor pin_validation_data_pad_character: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class Ibm3624PinVerification
|
313
|
+
attr_accessor decimalization_table: ::String
|
314
|
+
attr_accessor pin_offset: ::String
|
315
|
+
attr_accessor pin_validation_data: ::String
|
316
|
+
attr_accessor pin_validation_data_pad_character: ::String
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class Ibm3624RandomPin
|
321
|
+
attr_accessor decimalization_table: ::String
|
322
|
+
attr_accessor pin_validation_data: ::String
|
323
|
+
attr_accessor pin_validation_data_pad_character: ::String
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class InternalServerException
|
328
|
+
attr_accessor message: ::String
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
332
|
+
class MacAlgorithmDukpt
|
333
|
+
attr_accessor dukpt_derivation_type: ("TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256")
|
334
|
+
attr_accessor dukpt_key_variant: ("BIDIRECTIONAL" | "REQUEST" | "RESPONSE")
|
335
|
+
attr_accessor key_serial_number: ::String
|
336
|
+
SENSITIVE: []
|
337
|
+
end
|
338
|
+
|
339
|
+
class MacAlgorithmEmv
|
340
|
+
attr_accessor major_key_derivation_mode: ("EMV_OPTION_A" | "EMV_OPTION_B")
|
341
|
+
attr_accessor pan_sequence_number: ::String
|
342
|
+
attr_accessor primary_account_number: ::String
|
343
|
+
attr_accessor session_key_derivation_mode: ("EMV_COMMON_SESSION_KEY" | "EMV2000" | "AMEX" | "MASTERCARD_SESSION_KEY" | "VISA")
|
344
|
+
attr_accessor session_key_derivation_value: Types::SessionKeyDerivationValue
|
345
|
+
SENSITIVE: [:primary_account_number]
|
346
|
+
end
|
347
|
+
|
348
|
+
class MacAttributes
|
349
|
+
attr_accessor algorithm: ("ISO9797_ALGORITHM1" | "ISO9797_ALGORITHM3" | "CMAC" | "HMAC_SHA224" | "HMAC_SHA256" | "HMAC_SHA384" | "HMAC_SHA512")
|
350
|
+
attr_accessor dukpt_cmac: Types::MacAlgorithmDukpt
|
351
|
+
attr_accessor dukpt_iso_9797_algorithm_1: Types::MacAlgorithmDukpt
|
352
|
+
attr_accessor dukpt_iso_9797_algorithm_3: Types::MacAlgorithmDukpt
|
353
|
+
attr_accessor emv_mac: Types::MacAlgorithmEmv
|
354
|
+
attr_accessor unknown: untyped
|
355
|
+
SENSITIVE: []
|
356
|
+
|
357
|
+
class Algorithm < MacAttributes
|
358
|
+
end
|
359
|
+
class DukptCmac < MacAttributes
|
360
|
+
end
|
361
|
+
class DukptIso9797Algorithm1 < MacAttributes
|
362
|
+
end
|
363
|
+
class DukptIso9797Algorithm3 < MacAttributes
|
364
|
+
end
|
365
|
+
class EmvMac < MacAttributes
|
366
|
+
end
|
367
|
+
class Unknown < MacAttributes
|
368
|
+
end
|
369
|
+
end
|
370
|
+
|
371
|
+
class PinData
|
372
|
+
attr_accessor pin_offset: ::String
|
373
|
+
attr_accessor verification_value: ::String
|
374
|
+
attr_accessor unknown: untyped
|
375
|
+
SENSITIVE: []
|
376
|
+
|
377
|
+
class PinOffset < PinData
|
378
|
+
end
|
379
|
+
class VerificationValue < PinData
|
380
|
+
end
|
381
|
+
class Unknown < PinData
|
382
|
+
end
|
383
|
+
end
|
384
|
+
|
385
|
+
class PinGenerationAttributes
|
386
|
+
attr_accessor ibm_3624_natural_pin: Types::Ibm3624NaturalPin
|
387
|
+
attr_accessor ibm_3624_pin_from_offset: Types::Ibm3624PinFromOffset
|
388
|
+
attr_accessor ibm_3624_pin_offset: Types::Ibm3624PinOffset
|
389
|
+
attr_accessor ibm_3624_random_pin: Types::Ibm3624RandomPin
|
390
|
+
attr_accessor visa_pin: Types::VisaPin
|
391
|
+
attr_accessor visa_pin_verification_value: Types::VisaPinVerificationValue
|
392
|
+
attr_accessor unknown: untyped
|
393
|
+
SENSITIVE: []
|
394
|
+
|
395
|
+
class Ibm3624NaturalPin < PinGenerationAttributes
|
396
|
+
end
|
397
|
+
class Ibm3624PinFromOffset < PinGenerationAttributes
|
398
|
+
end
|
399
|
+
class Ibm3624PinOffset < PinGenerationAttributes
|
400
|
+
end
|
401
|
+
class Ibm3624RandomPin < PinGenerationAttributes
|
402
|
+
end
|
403
|
+
class VisaPin < PinGenerationAttributes
|
404
|
+
end
|
405
|
+
class VisaPinVerificationValue < PinGenerationAttributes
|
406
|
+
end
|
407
|
+
class Unknown < PinGenerationAttributes
|
408
|
+
end
|
409
|
+
end
|
410
|
+
|
411
|
+
class PinVerificationAttributes
|
412
|
+
attr_accessor ibm_3624_pin: Types::Ibm3624PinVerification
|
413
|
+
attr_accessor visa_pin: Types::VisaPinVerification
|
414
|
+
attr_accessor unknown: untyped
|
415
|
+
SENSITIVE: []
|
416
|
+
|
417
|
+
class Ibm3624Pin < PinVerificationAttributes
|
418
|
+
end
|
419
|
+
class VisaPin < PinVerificationAttributes
|
420
|
+
end
|
421
|
+
class Unknown < PinVerificationAttributes
|
422
|
+
end
|
423
|
+
end
|
424
|
+
|
425
|
+
class ReEncryptDataInput
|
426
|
+
attr_accessor cipher_text: ::String
|
427
|
+
attr_accessor incoming_encryption_attributes: Types::ReEncryptionAttributes
|
428
|
+
attr_accessor incoming_key_identifier: ::String
|
429
|
+
attr_accessor outgoing_encryption_attributes: Types::ReEncryptionAttributes
|
430
|
+
attr_accessor outgoing_key_identifier: ::String
|
431
|
+
SENSITIVE: [:cipher_text]
|
432
|
+
end
|
433
|
+
|
434
|
+
class ReEncryptDataOutput
|
435
|
+
attr_accessor cipher_text: ::String
|
436
|
+
attr_accessor key_arn: ::String
|
437
|
+
attr_accessor key_check_value: ::String
|
438
|
+
SENSITIVE: [:cipher_text]
|
439
|
+
end
|
440
|
+
|
441
|
+
class ReEncryptionAttributes
|
442
|
+
attr_accessor dukpt: Types::DukptEncryptionAttributes
|
443
|
+
attr_accessor symmetric: Types::SymmetricEncryptionAttributes
|
444
|
+
attr_accessor unknown: untyped
|
445
|
+
SENSITIVE: []
|
446
|
+
|
447
|
+
class Dukpt < ReEncryptionAttributes
|
448
|
+
end
|
449
|
+
class Symmetric < ReEncryptionAttributes
|
450
|
+
end
|
451
|
+
class Unknown < ReEncryptionAttributes
|
452
|
+
end
|
453
|
+
end
|
454
|
+
|
455
|
+
class ResourceNotFoundException
|
456
|
+
attr_accessor resource_id: ::String
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class SessionKeyAmex
|
461
|
+
attr_accessor pan_sequence_number: ::String
|
462
|
+
attr_accessor primary_account_number: ::String
|
463
|
+
SENSITIVE: [:primary_account_number]
|
464
|
+
end
|
465
|
+
|
466
|
+
class SessionKeyDerivation
|
467
|
+
attr_accessor amex: Types::SessionKeyAmex
|
468
|
+
attr_accessor emv_2000: Types::SessionKeyEmv2000
|
469
|
+
attr_accessor emv_common: Types::SessionKeyEmvCommon
|
470
|
+
attr_accessor mastercard: Types::SessionKeyMastercard
|
471
|
+
attr_accessor visa: Types::SessionKeyVisa
|
472
|
+
attr_accessor unknown: untyped
|
473
|
+
SENSITIVE: []
|
474
|
+
|
475
|
+
class Amex < SessionKeyDerivation
|
476
|
+
end
|
477
|
+
class Emv2000 < SessionKeyDerivation
|
478
|
+
end
|
479
|
+
class EmvCommon < SessionKeyDerivation
|
480
|
+
end
|
481
|
+
class Mastercard < SessionKeyDerivation
|
482
|
+
end
|
483
|
+
class Visa < SessionKeyDerivation
|
484
|
+
end
|
485
|
+
class Unknown < SessionKeyDerivation
|
486
|
+
end
|
487
|
+
end
|
488
|
+
|
489
|
+
class SessionKeyDerivationValue
|
490
|
+
attr_accessor application_cryptogram: ::String
|
491
|
+
attr_accessor application_transaction_counter: ::String
|
492
|
+
attr_accessor unknown: untyped
|
493
|
+
SENSITIVE: []
|
494
|
+
|
495
|
+
class ApplicationCryptogram < SessionKeyDerivationValue
|
496
|
+
end
|
497
|
+
class ApplicationTransactionCounter < SessionKeyDerivationValue
|
498
|
+
end
|
499
|
+
class Unknown < SessionKeyDerivationValue
|
500
|
+
end
|
501
|
+
end
|
502
|
+
|
503
|
+
class SessionKeyEmv2000
|
504
|
+
attr_accessor application_transaction_counter: ::String
|
505
|
+
attr_accessor pan_sequence_number: ::String
|
506
|
+
attr_accessor primary_account_number: ::String
|
507
|
+
SENSITIVE: [:primary_account_number]
|
508
|
+
end
|
509
|
+
|
510
|
+
class SessionKeyEmvCommon
|
511
|
+
attr_accessor application_transaction_counter: ::String
|
512
|
+
attr_accessor pan_sequence_number: ::String
|
513
|
+
attr_accessor primary_account_number: ::String
|
514
|
+
SENSITIVE: [:primary_account_number]
|
515
|
+
end
|
516
|
+
|
517
|
+
class SessionKeyMastercard
|
518
|
+
attr_accessor application_transaction_counter: ::String
|
519
|
+
attr_accessor pan_sequence_number: ::String
|
520
|
+
attr_accessor primary_account_number: ::String
|
521
|
+
attr_accessor unpredictable_number: ::String
|
522
|
+
SENSITIVE: [:primary_account_number]
|
523
|
+
end
|
524
|
+
|
525
|
+
class SessionKeyVisa
|
526
|
+
attr_accessor pan_sequence_number: ::String
|
527
|
+
attr_accessor primary_account_number: ::String
|
528
|
+
SENSITIVE: [:primary_account_number]
|
529
|
+
end
|
530
|
+
|
531
|
+
class SymmetricEncryptionAttributes
|
532
|
+
attr_accessor initialization_vector: ::String
|
533
|
+
attr_accessor mode: ("ECB" | "CBC" | "CFB" | "CFB1" | "CFB8" | "CFB64" | "CFB128" | "OFB")
|
534
|
+
attr_accessor padding_type: ("PKCS1" | "OAEP_SHA1" | "OAEP_SHA256" | "OAEP_SHA512")
|
535
|
+
SENSITIVE: [:initialization_vector]
|
536
|
+
end
|
537
|
+
|
538
|
+
class ThrottlingException
|
539
|
+
attr_accessor message: ::String
|
540
|
+
SENSITIVE: []
|
541
|
+
end
|
542
|
+
|
543
|
+
class TranslatePinDataInput
|
544
|
+
attr_accessor encrypted_pin_block: ::String
|
545
|
+
attr_accessor incoming_dukpt_attributes: Types::DukptDerivationAttributes
|
546
|
+
attr_accessor incoming_key_identifier: ::String
|
547
|
+
attr_accessor incoming_translation_attributes: Types::TranslationIsoFormats
|
548
|
+
attr_accessor outgoing_dukpt_attributes: Types::DukptDerivationAttributes
|
549
|
+
attr_accessor outgoing_key_identifier: ::String
|
550
|
+
attr_accessor outgoing_translation_attributes: Types::TranslationIsoFormats
|
551
|
+
SENSITIVE: [:encrypted_pin_block]
|
552
|
+
end
|
553
|
+
|
554
|
+
class TranslatePinDataOutput
|
555
|
+
attr_accessor key_arn: ::String
|
556
|
+
attr_accessor key_check_value: ::String
|
557
|
+
attr_accessor pin_block: ::String
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class TranslationIsoFormats
|
562
|
+
attr_accessor iso_format_0: Types::TranslationPinDataIsoFormat034
|
563
|
+
attr_accessor iso_format_1: Types::TranslationPinDataIsoFormat1
|
564
|
+
attr_accessor iso_format_3: Types::TranslationPinDataIsoFormat034
|
565
|
+
attr_accessor iso_format_4: Types::TranslationPinDataIsoFormat034
|
566
|
+
attr_accessor unknown: untyped
|
567
|
+
SENSITIVE: []
|
568
|
+
|
569
|
+
class IsoFormat0 < TranslationIsoFormats
|
570
|
+
end
|
571
|
+
class IsoFormat1 < TranslationIsoFormats
|
572
|
+
end
|
573
|
+
class IsoFormat3 < TranslationIsoFormats
|
574
|
+
end
|
575
|
+
class IsoFormat4 < TranslationIsoFormats
|
576
|
+
end
|
577
|
+
class Unknown < TranslationIsoFormats
|
578
|
+
end
|
579
|
+
end
|
580
|
+
|
581
|
+
class TranslationPinDataIsoFormat034
|
582
|
+
attr_accessor primary_account_number: ::String
|
583
|
+
SENSITIVE: [:primary_account_number]
|
584
|
+
end
|
585
|
+
|
586
|
+
class TranslationPinDataIsoFormat1 < Aws::EmptyStructure
|
587
|
+
end
|
588
|
+
|
589
|
+
class ValidationException
|
590
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
591
|
+
attr_accessor message: ::String
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class ValidationExceptionField
|
596
|
+
attr_accessor message: ::String
|
597
|
+
attr_accessor path: ::String
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class VerificationFailedException
|
602
|
+
attr_accessor message: ::String
|
603
|
+
attr_accessor reason: ("INVALID_MAC" | "INVALID_PIN" | "INVALID_VALIDATION_DATA" | "INVALID_AUTH_REQUEST_CRYPTOGRAM")
|
604
|
+
SENSITIVE: []
|
605
|
+
end
|
606
|
+
|
607
|
+
class VerifyAuthRequestCryptogramInput
|
608
|
+
attr_accessor auth_request_cryptogram: ::String
|
609
|
+
attr_accessor auth_response_attributes: Types::CryptogramAuthResponse
|
610
|
+
attr_accessor key_identifier: ::String
|
611
|
+
attr_accessor major_key_derivation_mode: ("EMV_OPTION_A" | "EMV_OPTION_B")
|
612
|
+
attr_accessor session_key_derivation_attributes: Types::SessionKeyDerivation
|
613
|
+
attr_accessor transaction_data: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class VerifyAuthRequestCryptogramOutput
|
618
|
+
attr_accessor auth_response_value: ::String
|
619
|
+
attr_accessor key_arn: ::String
|
620
|
+
attr_accessor key_check_value: ::String
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class VerifyCardValidationDataInput
|
625
|
+
attr_accessor key_identifier: ::String
|
626
|
+
attr_accessor primary_account_number: ::String
|
627
|
+
attr_accessor validation_data: ::String
|
628
|
+
attr_accessor verification_attributes: Types::CardVerificationAttributes
|
629
|
+
SENSITIVE: [:primary_account_number]
|
630
|
+
end
|
631
|
+
|
632
|
+
class VerifyCardValidationDataOutput
|
633
|
+
attr_accessor key_arn: ::String
|
634
|
+
attr_accessor key_check_value: ::String
|
635
|
+
SENSITIVE: []
|
636
|
+
end
|
637
|
+
|
638
|
+
class VerifyMacInput
|
639
|
+
attr_accessor key_identifier: ::String
|
640
|
+
attr_accessor mac: ::String
|
641
|
+
attr_accessor mac_length: ::Integer
|
642
|
+
attr_accessor message_data: ::String
|
643
|
+
attr_accessor verification_attributes: Types::MacAttributes
|
644
|
+
SENSITIVE: [:mac, :message_data]
|
645
|
+
end
|
646
|
+
|
647
|
+
class VerifyMacOutput
|
648
|
+
attr_accessor key_arn: ::String
|
649
|
+
attr_accessor key_check_value: ::String
|
650
|
+
SENSITIVE: []
|
651
|
+
end
|
652
|
+
|
653
|
+
class VerifyPinDataInput
|
654
|
+
attr_accessor dukpt_attributes: Types::DukptAttributes
|
655
|
+
attr_accessor encrypted_pin_block: ::String
|
656
|
+
attr_accessor encryption_key_identifier: ::String
|
657
|
+
attr_accessor pin_block_format: ("ISO_FORMAT_0" | "ISO_FORMAT_3")
|
658
|
+
attr_accessor pin_data_length: ::Integer
|
659
|
+
attr_accessor primary_account_number: ::String
|
660
|
+
attr_accessor verification_attributes: Types::PinVerificationAttributes
|
661
|
+
attr_accessor verification_key_identifier: ::String
|
662
|
+
SENSITIVE: [:primary_account_number]
|
663
|
+
end
|
664
|
+
|
665
|
+
class VerifyPinDataOutput
|
666
|
+
attr_accessor encryption_key_arn: ::String
|
667
|
+
attr_accessor encryption_key_check_value: ::String
|
668
|
+
attr_accessor verification_key_arn: ::String
|
669
|
+
attr_accessor verification_key_check_value: ::String
|
670
|
+
SENSITIVE: []
|
671
|
+
end
|
672
|
+
|
673
|
+
class VisaPin
|
674
|
+
attr_accessor pin_verification_key_index: ::Integer
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class VisaPinVerification
|
679
|
+
attr_accessor pin_verification_key_index: ::Integer
|
680
|
+
attr_accessor verification_value: ::String
|
681
|
+
SENSITIVE: []
|
682
|
+
end
|
683
|
+
|
684
|
+
class VisaPinVerificationValue
|
685
|
+
attr_accessor encrypted_pin_block: ::String
|
686
|
+
attr_accessor pin_verification_key_index: ::Integer
|
687
|
+
SENSITIVE: []
|
688
|
+
end
|
689
|
+
end
|
690
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module PaymentCryptographyData
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|