aws-sdk-paymentcryptography 1.41.0 → 1.43.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 +481 -17
- data/lib/aws-sdk-paymentcryptography/client_api.rb +188 -2
- data/lib/aws-sdk-paymentcryptography/types.rb +472 -18
- data/lib/aws-sdk-paymentcryptography.rb +2 -2
- data/sig/client.rbs +84 -7
- data/sig/types.rbs +106 -15
- metadata +1 -1
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:paymentcryptography)
|
|
23
23
|
# structure.
|
24
24
|
#
|
25
25
|
# payment_cryptography = Aws::PaymentCryptography::Client.new
|
26
|
-
# resp = payment_cryptography.
|
26
|
+
# resp = payment_cryptography.add_key_replication_regions(params)
|
27
27
|
#
|
28
28
|
# See {Client} for more information.
|
29
29
|
#
|
@@ -55,7 +55,7 @@ module Aws::PaymentCryptography
|
|
55
55
|
autoload :EndpointProvider, 'aws-sdk-paymentcryptography/endpoint_provider'
|
56
56
|
autoload :Endpoints, 'aws-sdk-paymentcryptography/endpoints'
|
57
57
|
|
58
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.43.0'
|
59
59
|
|
60
60
|
end
|
61
61
|
|
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
|
@@ -174,7 +206,9 @@ module Aws
|
|
174
206
|
tr_34_key_block: {
|
175
207
|
certificate_authority_public_key_identifier: ::String,
|
176
208
|
wrapping_key_certificate: ::String,
|
177
|
-
export_token: ::String
|
209
|
+
export_token: ::String?,
|
210
|
+
signing_key_identifier: ::String?,
|
211
|
+
signing_key_certificate: ::String?,
|
178
212
|
key_block_format: ("X9_TR34_2012"),
|
179
213
|
random_nonce: ::String?,
|
180
214
|
key_block_headers: {
|
@@ -232,7 +266,7 @@ module Aws
|
|
232
266
|
export_dukpt_initial_key: {
|
233
267
|
key_serial_number: ::String
|
234
268
|
}?,
|
235
|
-
key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")?
|
269
|
+
key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")?
|
236
270
|
}
|
237
271
|
) -> _ExportKeyResponseSuccess
|
238
272
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportKeyResponseSuccess
|
@@ -247,6 +281,35 @@ module Aws
|
|
247
281
|
) -> _GetAliasResponseSuccess
|
248
282
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAliasResponseSuccess
|
249
283
|
|
284
|
+
interface _GetCertificateSigningRequestResponseSuccess
|
285
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCertificateSigningRequestOutput]
|
286
|
+
def certificate_signing_request: () -> ::String
|
287
|
+
end
|
288
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PaymentCryptography/Client.html#get_certificate_signing_request-instance_method
|
289
|
+
def get_certificate_signing_request: (
|
290
|
+
key_identifier: ::String,
|
291
|
+
signing_algorithm: ("SHA224" | "SHA256" | "SHA384" | "SHA512"),
|
292
|
+
certificate_subject: {
|
293
|
+
common_name: ::String,
|
294
|
+
organization_unit: ::String?,
|
295
|
+
organization: ::String?,
|
296
|
+
city: ::String?,
|
297
|
+
country: ::String?,
|
298
|
+
state_or_province: ::String?,
|
299
|
+
email_address: ::String?
|
300
|
+
}
|
301
|
+
) -> _GetCertificateSigningRequestResponseSuccess
|
302
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCertificateSigningRequestResponseSuccess
|
303
|
+
|
304
|
+
interface _GetDefaultKeyReplicationRegionsResponseSuccess
|
305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDefaultKeyReplicationRegionsOutput]
|
306
|
+
def enabled_replication_regions: () -> ::Array[::String]
|
307
|
+
end
|
308
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PaymentCryptography/Client.html#get_default_key_replication_regions-instance_method
|
309
|
+
def get_default_key_replication_regions: (
|
310
|
+
) -> _GetDefaultKeyReplicationRegionsResponseSuccess
|
311
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDefaultKeyReplicationRegionsResponseSuccess
|
312
|
+
|
250
313
|
interface _GetKeyResponseSuccess
|
251
314
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetKeyOutput]
|
252
315
|
def key: () -> Types::Key
|
@@ -351,7 +414,9 @@ module Aws
|
|
351
414
|
tr_34_key_block: {
|
352
415
|
certificate_authority_public_key_identifier: ::String,
|
353
416
|
signing_key_certificate: ::String,
|
354
|
-
import_token: ::String
|
417
|
+
import_token: ::String?,
|
418
|
+
wrapping_key_identifier: ::String?,
|
419
|
+
wrapping_key_certificate: ::String?,
|
355
420
|
wrapped_key_block: ::String,
|
356
421
|
key_block_format: ("X9_TR34_2012"),
|
357
422
|
random_nonce: ::String?
|
@@ -391,14 +456,15 @@ module Aws
|
|
391
456
|
wrapped_key_block: ::String
|
392
457
|
}?
|
393
458
|
},
|
394
|
-
?key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC"),
|
459
|
+
?key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1"),
|
395
460
|
?enabled: bool,
|
396
461
|
?tags: Array[
|
397
462
|
{
|
398
463
|
key: ::String,
|
399
464
|
value: ::String
|
400
465
|
},
|
401
|
-
]
|
466
|
+
],
|
467
|
+
?replication_regions: Array[::String]
|
402
468
|
) -> _ImportKeyResponseSuccess
|
403
469
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportKeyResponseSuccess
|
404
470
|
|
@@ -441,6 +507,17 @@ module Aws
|
|
441
507
|
) -> _ListTagsForResourceResponseSuccess
|
442
508
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
443
509
|
|
510
|
+
interface _RemoveKeyReplicationRegionsResponseSuccess
|
511
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RemoveKeyReplicationRegionsOutput]
|
512
|
+
def key: () -> Types::Key
|
513
|
+
end
|
514
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PaymentCryptography/Client.html#remove_key_replication_regions-instance_method
|
515
|
+
def remove_key_replication_regions: (
|
516
|
+
key_identifier: ::String,
|
517
|
+
replication_regions: Array[::String]
|
518
|
+
) -> _RemoveKeyReplicationRegionsResponseSuccess
|
519
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveKeyReplicationRegionsResponseSuccess
|
520
|
+
|
444
521
|
interface _RestoreKeyResponseSuccess
|
445
522
|
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreKeyOutput]
|
446
523
|
def key: () -> Types::Key
|
data/sig/types.rbs
CHANGED
@@ -13,12 +13,34 @@ 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
|
19
30
|
SENSITIVE: []
|
20
31
|
end
|
21
32
|
|
33
|
+
class CertificateSubjectType
|
34
|
+
attr_accessor common_name: ::String
|
35
|
+
attr_accessor organization_unit: ::String
|
36
|
+
attr_accessor organization: ::String
|
37
|
+
attr_accessor city: ::String
|
38
|
+
attr_accessor country: ::String
|
39
|
+
attr_accessor state_or_province: ::String
|
40
|
+
attr_accessor email_address: ::String
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
22
44
|
class ConflictException
|
23
45
|
attr_accessor message: ::String
|
24
46
|
SENSITIVE: []
|
@@ -37,11 +59,12 @@ module Aws::PaymentCryptography
|
|
37
59
|
|
38
60
|
class CreateKeyInput
|
39
61
|
attr_accessor key_attributes: Types::KeyAttributes
|
40
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
62
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
41
63
|
attr_accessor exportable: bool
|
42
64
|
attr_accessor enabled: bool
|
43
65
|
attr_accessor tags: ::Array[Types::Tag]
|
44
66
|
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")
|
67
|
+
attr_accessor replication_regions: ::Array[::String]
|
45
68
|
SENSITIVE: []
|
46
69
|
end
|
47
70
|
|
@@ -80,9 +103,29 @@ module Aws::PaymentCryptography
|
|
80
103
|
end
|
81
104
|
end
|
82
105
|
|
106
|
+
class DisableDefaultKeyReplicationRegionsInput
|
107
|
+
attr_accessor replication_regions: ::Array[::String]
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class DisableDefaultKeyReplicationRegionsOutput
|
112
|
+
attr_accessor enabled_replication_regions: ::Array[::String]
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class EnableDefaultKeyReplicationRegionsInput
|
117
|
+
attr_accessor replication_regions: ::Array[::String]
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class EnableDefaultKeyReplicationRegionsOutput
|
122
|
+
attr_accessor enabled_replication_regions: ::Array[::String]
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
83
126
|
class ExportAttributes
|
84
127
|
attr_accessor export_dukpt_initial_key: Types::ExportDukptInitialKey
|
85
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
128
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
86
129
|
SENSITIVE: []
|
87
130
|
end
|
88
131
|
|
@@ -95,7 +138,7 @@ module Aws::PaymentCryptography
|
|
95
138
|
attr_accessor key_derivation_hash_algorithm: ("SHA_256" | "SHA_384" | "SHA_512")
|
96
139
|
attr_accessor derivation_data: Types::DiffieHellmanDerivationData
|
97
140
|
attr_accessor key_block_headers: Types::KeyBlockHeaders
|
98
|
-
SENSITIVE: [
|
141
|
+
SENSITIVE: []
|
99
142
|
end
|
100
143
|
|
101
144
|
class ExportDukptInitialKey
|
@@ -107,7 +150,7 @@ module Aws::PaymentCryptography
|
|
107
150
|
attr_accessor certificate_authority_public_key_identifier: ::String
|
108
151
|
attr_accessor wrapping_key_certificate: ::String
|
109
152
|
attr_accessor wrapping_spec: ("RSA_OAEP_SHA_256" | "RSA_OAEP_SHA_512")
|
110
|
-
SENSITIVE: [
|
153
|
+
SENSITIVE: []
|
111
154
|
end
|
112
155
|
|
113
156
|
class ExportKeyInput
|
@@ -152,10 +195,12 @@ module Aws::PaymentCryptography
|
|
152
195
|
attr_accessor certificate_authority_public_key_identifier: ::String
|
153
196
|
attr_accessor wrapping_key_certificate: ::String
|
154
197
|
attr_accessor export_token: ::String
|
198
|
+
attr_accessor signing_key_identifier: ::String
|
199
|
+
attr_accessor signing_key_certificate: ::String
|
155
200
|
attr_accessor key_block_format: ("X9_TR34_2012")
|
156
201
|
attr_accessor random_nonce: ::String
|
157
202
|
attr_accessor key_block_headers: Types::KeyBlockHeaders
|
158
|
-
SENSITIVE: [
|
203
|
+
SENSITIVE: []
|
159
204
|
end
|
160
205
|
|
161
206
|
class GetAliasInput
|
@@ -168,6 +213,26 @@ module Aws::PaymentCryptography
|
|
168
213
|
SENSITIVE: []
|
169
214
|
end
|
170
215
|
|
216
|
+
class GetCertificateSigningRequestInput
|
217
|
+
attr_accessor key_identifier: ::String
|
218
|
+
attr_accessor signing_algorithm: ("SHA224" | "SHA256" | "SHA384" | "SHA512")
|
219
|
+
attr_accessor certificate_subject: Types::CertificateSubjectType
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class GetCertificateSigningRequestOutput
|
224
|
+
attr_accessor certificate_signing_request: ::String
|
225
|
+
SENSITIVE: [:certificate_signing_request]
|
226
|
+
end
|
227
|
+
|
228
|
+
class GetDefaultKeyReplicationRegionsInput < Aws::EmptyStructure
|
229
|
+
end
|
230
|
+
|
231
|
+
class GetDefaultKeyReplicationRegionsOutput
|
232
|
+
attr_accessor enabled_replication_regions: ::Array[::String]
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
171
236
|
class GetKeyInput
|
172
237
|
attr_accessor key_identifier: ::String
|
173
238
|
SENSITIVE: []
|
@@ -190,7 +255,7 @@ module Aws::PaymentCryptography
|
|
190
255
|
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
256
|
attr_accessor export_token: ::String
|
192
257
|
attr_accessor parameters_valid_until_timestamp: ::Time
|
193
|
-
SENSITIVE: [
|
258
|
+
SENSITIVE: []
|
194
259
|
end
|
195
260
|
|
196
261
|
class GetParametersForImportInput
|
@@ -205,7 +270,7 @@ module Aws::PaymentCryptography
|
|
205
270
|
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
271
|
attr_accessor import_token: ::String
|
207
272
|
attr_accessor parameters_valid_until_timestamp: ::Time
|
208
|
-
SENSITIVE: [
|
273
|
+
SENSITIVE: []
|
209
274
|
end
|
210
275
|
|
211
276
|
class GetPublicKeyCertificateInput
|
@@ -216,7 +281,7 @@ module Aws::PaymentCryptography
|
|
216
281
|
class GetPublicKeyCertificateOutput
|
217
282
|
attr_accessor key_certificate: ::String
|
218
283
|
attr_accessor key_certificate_chain: ::String
|
219
|
-
SENSITIVE: [
|
284
|
+
SENSITIVE: []
|
220
285
|
end
|
221
286
|
|
222
287
|
class ImportDiffieHellmanTr31KeyBlock
|
@@ -228,7 +293,7 @@ module Aws::PaymentCryptography
|
|
228
293
|
attr_accessor key_derivation_hash_algorithm: ("SHA_256" | "SHA_384" | "SHA_512")
|
229
294
|
attr_accessor derivation_data: Types::DiffieHellmanDerivationData
|
230
295
|
attr_accessor wrapped_key_block: ::String
|
231
|
-
SENSITIVE: [:
|
296
|
+
SENSITIVE: [:wrapped_key_block]
|
232
297
|
end
|
233
298
|
|
234
299
|
class ImportKeyCryptogram
|
@@ -242,9 +307,10 @@ module Aws::PaymentCryptography
|
|
242
307
|
|
243
308
|
class ImportKeyInput
|
244
309
|
attr_accessor key_material: Types::ImportKeyMaterial
|
245
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
310
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
246
311
|
attr_accessor enabled: bool
|
247
312
|
attr_accessor tags: ::Array[Types::Tag]
|
313
|
+
attr_accessor replication_regions: ::Array[::String]
|
248
314
|
SENSITIVE: []
|
249
315
|
end
|
250
316
|
|
@@ -289,10 +355,12 @@ module Aws::PaymentCryptography
|
|
289
355
|
attr_accessor certificate_authority_public_key_identifier: ::String
|
290
356
|
attr_accessor signing_key_certificate: ::String
|
291
357
|
attr_accessor import_token: ::String
|
358
|
+
attr_accessor wrapping_key_identifier: ::String
|
359
|
+
attr_accessor wrapping_key_certificate: ::String
|
292
360
|
attr_accessor wrapped_key_block: ::String
|
293
361
|
attr_accessor key_block_format: ("X9_TR34_2012")
|
294
362
|
attr_accessor random_nonce: ::String
|
295
|
-
SENSITIVE: [:
|
363
|
+
SENSITIVE: [:wrapped_key_block]
|
296
364
|
end
|
297
365
|
|
298
366
|
class InternalServerException
|
@@ -304,7 +372,7 @@ module Aws::PaymentCryptography
|
|
304
372
|
attr_accessor key_arn: ::String
|
305
373
|
attr_accessor key_attributes: Types::KeyAttributes
|
306
374
|
attr_accessor key_check_value: ::String
|
307
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
375
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
308
376
|
attr_accessor enabled: bool
|
309
377
|
attr_accessor exportable: bool
|
310
378
|
attr_accessor key_state: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_COMPLETE")
|
@@ -315,6 +383,10 @@ module Aws::PaymentCryptography
|
|
315
383
|
attr_accessor delete_pending_timestamp: ::Time
|
316
384
|
attr_accessor delete_timestamp: ::Time
|
317
385
|
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")
|
386
|
+
attr_accessor multi_region_key_type: ("PRIMARY" | "REPLICA")
|
387
|
+
attr_accessor primary_region: ::String
|
388
|
+
attr_accessor replication_status: ::Hash[::String, Types::ReplicationStatusType]
|
389
|
+
attr_accessor using_default_replication_regions: bool
|
318
390
|
SENSITIVE: []
|
319
391
|
end
|
320
392
|
|
@@ -354,6 +426,8 @@ module Aws::PaymentCryptography
|
|
354
426
|
attr_accessor key_check_value: ::String
|
355
427
|
attr_accessor exportable: bool
|
356
428
|
attr_accessor enabled: bool
|
429
|
+
attr_accessor multi_region_key_type: ("PRIMARY" | "REPLICA")
|
430
|
+
attr_accessor primary_region: ::String
|
357
431
|
SENSITIVE: []
|
358
432
|
end
|
359
433
|
|
@@ -396,6 +470,23 @@ module Aws::PaymentCryptography
|
|
396
470
|
SENSITIVE: []
|
397
471
|
end
|
398
472
|
|
473
|
+
class RemoveKeyReplicationRegionsInput
|
474
|
+
attr_accessor key_identifier: ::String
|
475
|
+
attr_accessor replication_regions: ::Array[::String]
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class RemoveKeyReplicationRegionsOutput
|
480
|
+
attr_accessor key: Types::Key
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class ReplicationStatusType
|
485
|
+
attr_accessor status: ("IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "SYNCHRONIZED")
|
486
|
+
attr_accessor status_message: ::String
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
399
490
|
class ResourceNotFoundException
|
400
491
|
attr_accessor resource_id: ::String
|
401
492
|
SENSITIVE: []
|
@@ -414,7 +505,7 @@ module Aws::PaymentCryptography
|
|
414
505
|
class RootCertificatePublicKey
|
415
506
|
attr_accessor key_attributes: Types::KeyAttributes
|
416
507
|
attr_accessor public_key_certificate: ::String
|
417
|
-
SENSITIVE: [
|
508
|
+
SENSITIVE: []
|
418
509
|
end
|
419
510
|
|
420
511
|
class ServiceQuotaExceededException
|
@@ -471,7 +562,7 @@ module Aws::PaymentCryptography
|
|
471
562
|
attr_accessor key_attributes: Types::KeyAttributes
|
472
563
|
attr_accessor public_key_certificate: ::String
|
473
564
|
attr_accessor certificate_authority_public_key_identifier: ::String
|
474
|
-
SENSITIVE: [
|
565
|
+
SENSITIVE: []
|
475
566
|
end
|
476
567
|
|
477
568
|
class UntagResourceInput
|
@@ -504,7 +595,7 @@ module Aws::PaymentCryptography
|
|
504
595
|
attr_accessor wrapped_key_material_format: ("KEY_CRYPTOGRAM" | "TR31_KEY_BLOCK" | "TR34_KEY_BLOCK")
|
505
596
|
attr_accessor key_material: ::String
|
506
597
|
attr_accessor key_check_value: ::String
|
507
|
-
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC")
|
598
|
+
attr_accessor key_check_value_algorithm: ("CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1")
|
508
599
|
SENSITIVE: [:key_material]
|
509
600
|
end
|
510
601
|
end
|