aws-sdk-paymentcryptography 1.40.0 → 1.42.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-paymentcryptography/client.rb +431 -15
- data/lib/aws-sdk-paymentcryptography/client_api.rb +139 -0
- data/lib/aws-sdk-paymentcryptography/types.rb +361 -18
- data/lib/aws-sdk-paymentcryptography.rb +2 -2
- data/sig/client.rbs +58 -5
- data/sig/types.rbs +79 -15
- metadata +3 -3
data/sig/client.rbs
CHANGED
@@ -79,6 +79,17 @@ module Aws
|
|
79
79
|
| (?Hash[Symbol, untyped]) -> instance
|
80
80
|
|
81
81
|
|
82
|
+
interface _AddKeyReplicationRegionsResponseSuccess
|
83
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddKeyReplicationRegionsOutput]
|
84
|
+
def key: () -> Types::Key
|
85
|
+
end
|
86
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PaymentCryptography/Client.html#add_key_replication_regions-instance_method
|
87
|
+
def add_key_replication_regions: (
|
88
|
+
key_identifier: ::String,
|
89
|
+
replication_regions: Array[::String]
|
90
|
+
) -> _AddKeyReplicationRegionsResponseSuccess
|
91
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddKeyReplicationRegionsResponseSuccess
|
92
|
+
|
82
93
|
interface _CreateAliasResponseSuccess
|
83
94
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAliasOutput]
|
84
95
|
def alias: () -> Types::Alias
|
@@ -112,7 +123,7 @@ module Aws
|
|
112
123
|
no_restrictions: bool?
|
113
124
|
}
|
114
125
|
},
|
115
|
-
?key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC"),
|
126
|
+
?key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1"),
|
116
127
|
exportable: bool,
|
117
128
|
?enabled: bool,
|
118
129
|
?tags: Array[
|
@@ -121,7 +132,8 @@ module Aws
|
|
121
132
|
value: ::String
|
122
133
|
},
|
123
134
|
],
|
124
|
-
?derive_key_usage: ("TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY")
|
135
|
+
?derive_key_usage: ("TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY"),
|
136
|
+
?replication_regions: Array[::String]
|
125
137
|
) -> _CreateKeyResponseSuccess
|
126
138
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateKeyResponseSuccess
|
127
139
|
|
@@ -145,6 +157,26 @@ module Aws
|
|
145
157
|
) -> _DeleteKeyResponseSuccess
|
146
158
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKeyResponseSuccess
|
147
159
|
|
160
|
+
interface _DisableDefaultKeyReplicationRegionsResponseSuccess
|
161
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisableDefaultKeyReplicationRegionsOutput]
|
162
|
+
def enabled_replication_regions: () -> ::Array[::String]
|
163
|
+
end
|
164
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PaymentCryptography/Client.html#disable_default_key_replication_regions-instance_method
|
165
|
+
def disable_default_key_replication_regions: (
|
166
|
+
replication_regions: Array[::String]
|
167
|
+
) -> _DisableDefaultKeyReplicationRegionsResponseSuccess
|
168
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableDefaultKeyReplicationRegionsResponseSuccess
|
169
|
+
|
170
|
+
interface _EnableDefaultKeyReplicationRegionsResponseSuccess
|
171
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EnableDefaultKeyReplicationRegionsOutput]
|
172
|
+
def enabled_replication_regions: () -> ::Array[::String]
|
173
|
+
end
|
174
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PaymentCryptography/Client.html#enable_default_key_replication_regions-instance_method
|
175
|
+
def enable_default_key_replication_regions: (
|
176
|
+
replication_regions: Array[::String]
|
177
|
+
) -> _EnableDefaultKeyReplicationRegionsResponseSuccess
|
178
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableDefaultKeyReplicationRegionsResponseSuccess
|
179
|
+
|
148
180
|
interface _ExportKeyResponseSuccess
|
149
181
|
include ::Seahorse::Client::_ResponseSuccess[Types::ExportKeyOutput]
|
150
182
|
def wrapped_key: () -> Types::WrappedKey
|
@@ -232,7 +264,7 @@ module Aws
|
|
232
264
|
export_dukpt_initial_key: {
|
233
265
|
key_serial_number: ::String
|
234
266
|
}?,
|
235
|
-
key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")?
|
267
|
+
key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")?
|
236
268
|
}
|
237
269
|
) -> _ExportKeyResponseSuccess
|
238
270
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportKeyResponseSuccess
|
@@ -247,6 +279,15 @@ module Aws
|
|
247
279
|
) -> _GetAliasResponseSuccess
|
248
280
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAliasResponseSuccess
|
249
281
|
|
282
|
+
interface _GetDefaultKeyReplicationRegionsResponseSuccess
|
283
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDefaultKeyReplicationRegionsOutput]
|
284
|
+
def enabled_replication_regions: () -> ::Array[::String]
|
285
|
+
end
|
286
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PaymentCryptography/Client.html#get_default_key_replication_regions-instance_method
|
287
|
+
def get_default_key_replication_regions: (
|
288
|
+
) -> _GetDefaultKeyReplicationRegionsResponseSuccess
|
289
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDefaultKeyReplicationRegionsResponseSuccess
|
290
|
+
|
250
291
|
interface _GetKeyResponseSuccess
|
251
292
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetKeyOutput]
|
252
293
|
def key: () -> Types::Key
|
@@ -391,14 +432,15 @@ module Aws
|
|
391
432
|
wrapped_key_block: ::String
|
392
433
|
}?
|
393
434
|
},
|
394
|
-
?key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC"),
|
435
|
+
?key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1"),
|
395
436
|
?enabled: bool,
|
396
437
|
?tags: Array[
|
397
438
|
{
|
398
439
|
key: ::String,
|
399
440
|
value: ::String
|
400
441
|
},
|
401
|
-
]
|
442
|
+
],
|
443
|
+
?replication_regions: Array[::String]
|
402
444
|
) -> _ImportKeyResponseSuccess
|
403
445
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportKeyResponseSuccess
|
404
446
|
|
@@ -441,6 +483,17 @@ module Aws
|
|
441
483
|
) -> _ListTagsForResourceResponseSuccess
|
442
484
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
443
485
|
|
486
|
+
interface _RemoveKeyReplicationRegionsResponseSuccess
|
487
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RemoveKeyReplicationRegionsOutput]
|
488
|
+
def key: () -> Types::Key
|
489
|
+
end
|
490
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PaymentCryptography/Client.html#remove_key_replication_regions-instance_method
|
491
|
+
def remove_key_replication_regions: (
|
492
|
+
key_identifier: ::String,
|
493
|
+
replication_regions: Array[::String]
|
494
|
+
) -> _RemoveKeyReplicationRegionsResponseSuccess
|
495
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveKeyReplicationRegionsResponseSuccess
|
496
|
+
|
444
497
|
interface _RestoreKeyResponseSuccess
|
445
498
|
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreKeyOutput]
|
446
499
|
def key: () -> Types::Key
|
data/sig/types.rbs
CHANGED
@@ -13,6 +13,17 @@ module Aws::PaymentCryptography
|
|
13
13
|
SENSITIVE: []
|
14
14
|
end
|
15
15
|
|
16
|
+
class AddKeyReplicationRegionsInput
|
17
|
+
attr_accessor key_identifier: ::String
|
18
|
+
attr_accessor replication_regions: ::Array[::String]
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class AddKeyReplicationRegionsOutput
|
23
|
+
attr_accessor key: Types::Key
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
16
27
|
class Alias
|
17
28
|
attr_accessor alias_name: ::String
|
18
29
|
attr_accessor key_arn: ::String
|
@@ -37,11 +48,12 @@ module Aws::PaymentCryptography
|
|
37
48
|
|
38
49
|
class CreateKeyInput
|
39
50
|
attr_accessor key_attributes: Types::KeyAttributes
|
40
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
51
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
41
52
|
attr_accessor exportable: bool
|
42
53
|
attr_accessor enabled: bool
|
43
54
|
attr_accessor tags: ::Array[Types::Tag]
|
44
55
|
attr_accessor derive_key_usage: ("TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY")
|
56
|
+
attr_accessor replication_regions: ::Array[::String]
|
45
57
|
SENSITIVE: []
|
46
58
|
end
|
47
59
|
|
@@ -80,9 +92,29 @@ module Aws::PaymentCryptography
|
|
80
92
|
end
|
81
93
|
end
|
82
94
|
|
95
|
+
class DisableDefaultKeyReplicationRegionsInput
|
96
|
+
attr_accessor replication_regions: ::Array[::String]
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class DisableDefaultKeyReplicationRegionsOutput
|
101
|
+
attr_accessor enabled_replication_regions: ::Array[::String]
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class EnableDefaultKeyReplicationRegionsInput
|
106
|
+
attr_accessor replication_regions: ::Array[::String]
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class EnableDefaultKeyReplicationRegionsOutput
|
111
|
+
attr_accessor enabled_replication_regions: ::Array[::String]
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
83
115
|
class ExportAttributes
|
84
116
|
attr_accessor export_dukpt_initial_key: Types::ExportDukptInitialKey
|
85
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
117
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
86
118
|
SENSITIVE: []
|
87
119
|
end
|
88
120
|
|
@@ -95,7 +127,7 @@ module Aws::PaymentCryptography
|
|
95
127
|
attr_accessor key_derivation_hash_algorithm: ("SHA_256" | "SHA_384" | "SHA_512")
|
96
128
|
attr_accessor derivation_data: Types::DiffieHellmanDerivationData
|
97
129
|
attr_accessor key_block_headers: Types::KeyBlockHeaders
|
98
|
-
SENSITIVE: [
|
130
|
+
SENSITIVE: []
|
99
131
|
end
|
100
132
|
|
101
133
|
class ExportDukptInitialKey
|
@@ -107,7 +139,7 @@ module Aws::PaymentCryptography
|
|
107
139
|
attr_accessor certificate_authority_public_key_identifier: ::String
|
108
140
|
attr_accessor wrapping_key_certificate: ::String
|
109
141
|
attr_accessor wrapping_spec: ("RSA_OAEP_SHA_256" | "RSA_OAEP_SHA_512")
|
110
|
-
SENSITIVE: [
|
142
|
+
SENSITIVE: []
|
111
143
|
end
|
112
144
|
|
113
145
|
class ExportKeyInput
|
@@ -155,7 +187,7 @@ module Aws::PaymentCryptography
|
|
155
187
|
attr_accessor key_block_format: ("X9_TR34_2012")
|
156
188
|
attr_accessor random_nonce: ::String
|
157
189
|
attr_accessor key_block_headers: Types::KeyBlockHeaders
|
158
|
-
SENSITIVE: [
|
190
|
+
SENSITIVE: []
|
159
191
|
end
|
160
192
|
|
161
193
|
class GetAliasInput
|
@@ -168,6 +200,14 @@ module Aws::PaymentCryptography
|
|
168
200
|
SENSITIVE: []
|
169
201
|
end
|
170
202
|
|
203
|
+
class GetDefaultKeyReplicationRegionsInput < Aws::EmptyStructure
|
204
|
+
end
|
205
|
+
|
206
|
+
class GetDefaultKeyReplicationRegionsOutput
|
207
|
+
attr_accessor enabled_replication_regions: ::Array[::String]
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
171
211
|
class GetKeyInput
|
172
212
|
attr_accessor key_identifier: ::String
|
173
213
|
SENSITIVE: []
|
@@ -190,7 +230,7 @@ module Aws::PaymentCryptography
|
|
190
230
|
attr_accessor signing_key_algorithm: ("TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256" | "HMAC_SHA256" | "HMAC_SHA384" | "HMAC_SHA512" | "HMAC_SHA224" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521")
|
191
231
|
attr_accessor export_token: ::String
|
192
232
|
attr_accessor parameters_valid_until_timestamp: ::Time
|
193
|
-
SENSITIVE: [
|
233
|
+
SENSITIVE: []
|
194
234
|
end
|
195
235
|
|
196
236
|
class GetParametersForImportInput
|
@@ -205,7 +245,7 @@ module Aws::PaymentCryptography
|
|
205
245
|
attr_accessor wrapping_key_algorithm: ("TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256" | "HMAC_SHA256" | "HMAC_SHA384" | "HMAC_SHA512" | "HMAC_SHA224" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521")
|
206
246
|
attr_accessor import_token: ::String
|
207
247
|
attr_accessor parameters_valid_until_timestamp: ::Time
|
208
|
-
SENSITIVE: [
|
248
|
+
SENSITIVE: []
|
209
249
|
end
|
210
250
|
|
211
251
|
class GetPublicKeyCertificateInput
|
@@ -216,7 +256,7 @@ module Aws::PaymentCryptography
|
|
216
256
|
class GetPublicKeyCertificateOutput
|
217
257
|
attr_accessor key_certificate: ::String
|
218
258
|
attr_accessor key_certificate_chain: ::String
|
219
|
-
SENSITIVE: [
|
259
|
+
SENSITIVE: []
|
220
260
|
end
|
221
261
|
|
222
262
|
class ImportDiffieHellmanTr31KeyBlock
|
@@ -228,7 +268,7 @@ module Aws::PaymentCryptography
|
|
228
268
|
attr_accessor key_derivation_hash_algorithm: ("SHA_256" | "SHA_384" | "SHA_512")
|
229
269
|
attr_accessor derivation_data: Types::DiffieHellmanDerivationData
|
230
270
|
attr_accessor wrapped_key_block: ::String
|
231
|
-
SENSITIVE: [:
|
271
|
+
SENSITIVE: [:wrapped_key_block]
|
232
272
|
end
|
233
273
|
|
234
274
|
class ImportKeyCryptogram
|
@@ -242,9 +282,10 @@ module Aws::PaymentCryptography
|
|
242
282
|
|
243
283
|
class ImportKeyInput
|
244
284
|
attr_accessor key_material: Types::ImportKeyMaterial
|
245
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
285
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
246
286
|
attr_accessor enabled: bool
|
247
287
|
attr_accessor tags: ::Array[Types::Tag]
|
288
|
+
attr_accessor replication_regions: ::Array[::String]
|
248
289
|
SENSITIVE: []
|
249
290
|
end
|
250
291
|
|
@@ -292,7 +333,7 @@ module Aws::PaymentCryptography
|
|
292
333
|
attr_accessor wrapped_key_block: ::String
|
293
334
|
attr_accessor key_block_format: ("X9_TR34_2012")
|
294
335
|
attr_accessor random_nonce: ::String
|
295
|
-
SENSITIVE: [:
|
336
|
+
SENSITIVE: [:wrapped_key_block]
|
296
337
|
end
|
297
338
|
|
298
339
|
class InternalServerException
|
@@ -304,7 +345,7 @@ module Aws::PaymentCryptography
|
|
304
345
|
attr_accessor key_arn: ::String
|
305
346
|
attr_accessor key_attributes: Types::KeyAttributes
|
306
347
|
attr_accessor key_check_value: ::String
|
307
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
348
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
308
349
|
attr_accessor enabled: bool
|
309
350
|
attr_accessor exportable: bool
|
310
351
|
attr_accessor key_state: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_COMPLETE")
|
@@ -315,6 +356,10 @@ module Aws::PaymentCryptography
|
|
315
356
|
attr_accessor delete_pending_timestamp: ::Time
|
316
357
|
attr_accessor delete_timestamp: ::Time
|
317
358
|
attr_accessor derive_key_usage: ("TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY")
|
359
|
+
attr_accessor multi_region_key_type: ("PRIMARY" | "REPLICA")
|
360
|
+
attr_accessor primary_region: ::String
|
361
|
+
attr_accessor replication_status: ::Hash[::String, Types::ReplicationStatusType]
|
362
|
+
attr_accessor using_default_replication_regions: bool
|
318
363
|
SENSITIVE: []
|
319
364
|
end
|
320
365
|
|
@@ -354,6 +399,8 @@ module Aws::PaymentCryptography
|
|
354
399
|
attr_accessor key_check_value: ::String
|
355
400
|
attr_accessor exportable: bool
|
356
401
|
attr_accessor enabled: bool
|
402
|
+
attr_accessor multi_region_key_type: ("PRIMARY" | "REPLICA")
|
403
|
+
attr_accessor primary_region: ::String
|
357
404
|
SENSITIVE: []
|
358
405
|
end
|
359
406
|
|
@@ -396,6 +443,23 @@ module Aws::PaymentCryptography
|
|
396
443
|
SENSITIVE: []
|
397
444
|
end
|
398
445
|
|
446
|
+
class RemoveKeyReplicationRegionsInput
|
447
|
+
attr_accessor key_identifier: ::String
|
448
|
+
attr_accessor replication_regions: ::Array[::String]
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class RemoveKeyReplicationRegionsOutput
|
453
|
+
attr_accessor key: Types::Key
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class ReplicationStatusType
|
458
|
+
attr_accessor status: ("IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "SYNCHRONIZED")
|
459
|
+
attr_accessor status_message: ::String
|
460
|
+
SENSITIVE: []
|
461
|
+
end
|
462
|
+
|
399
463
|
class ResourceNotFoundException
|
400
464
|
attr_accessor resource_id: ::String
|
401
465
|
SENSITIVE: []
|
@@ -414,7 +478,7 @@ module Aws::PaymentCryptography
|
|
414
478
|
class RootCertificatePublicKey
|
415
479
|
attr_accessor key_attributes: Types::KeyAttributes
|
416
480
|
attr_accessor public_key_certificate: ::String
|
417
|
-
SENSITIVE: [
|
481
|
+
SENSITIVE: []
|
418
482
|
end
|
419
483
|
|
420
484
|
class ServiceQuotaExceededException
|
@@ -471,7 +535,7 @@ module Aws::PaymentCryptography
|
|
471
535
|
attr_accessor key_attributes: Types::KeyAttributes
|
472
536
|
attr_accessor public_key_certificate: ::String
|
473
537
|
attr_accessor certificate_authority_public_key_identifier: ::String
|
474
|
-
SENSITIVE: [
|
538
|
+
SENSITIVE: []
|
475
539
|
end
|
476
540
|
|
477
541
|
class UntagResourceInput
|
@@ -504,7 +568,7 @@ module Aws::PaymentCryptography
|
|
504
568
|
attr_accessor wrapped_key_material_format: ("KEY_CRYPTOGRAM" | "TR31_KEY_BLOCK" | "TR34_KEY_BLOCK")
|
505
569
|
attr_accessor key_material: ::String
|
506
570
|
attr_accessor key_check_value: ::String
|
507
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
571
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
508
572
|
SENSITIVE: [:key_material]
|
509
573
|
end
|
510
574
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-paymentcryptography
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.42.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.231.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.231.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|