aws-sdk-paymentcryptography 1.52.0 → 1.54.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.
data/sig/types.rbs CHANGED
@@ -30,6 +30,18 @@ module Aws::PaymentCryptography
30
30
  SENSITIVE: []
31
31
  end
32
32
 
33
+ class AssociateMpaTeamInput
34
+ attr_accessor action: ("IMPORT_ROOT_PUBLIC_KEY_CERTIFICATE")
35
+ attr_accessor mpa_team_arn: ::String
36
+ attr_accessor requester_comment: ::String
37
+ SENSITIVE: [:requester_comment]
38
+ end
39
+
40
+ class AssociateMpaTeamOutput
41
+ attr_accessor mpa_team_association: Types::MpaTeamAssociation
42
+ SENSITIVE: []
43
+ end
44
+
33
45
  class CertificateSubjectType
34
46
  attr_accessor common_name: ::String
35
47
  attr_accessor organization_unit: ::String
@@ -92,6 +104,14 @@ module Aws::PaymentCryptography
92
104
  SENSITIVE: []
93
105
  end
94
106
 
107
+ class DeleteResourcePolicyInput
108
+ attr_accessor resource_arn: ::String
109
+ SENSITIVE: []
110
+ end
111
+
112
+ class DeleteResourcePolicyOutput < Aws::EmptyStructure
113
+ end
114
+
95
115
  class DiffieHellmanDerivationData
96
116
  attr_accessor shared_information: ::String
97
117
  attr_accessor unknown: untyped
@@ -113,6 +133,17 @@ module Aws::PaymentCryptography
113
133
  SENSITIVE: []
114
134
  end
115
135
 
136
+ class DisassociateMpaTeamInput
137
+ attr_accessor action: ("IMPORT_ROOT_PUBLIC_KEY_CERTIFICATE")
138
+ attr_accessor requester_comment: ::String
139
+ SENSITIVE: [:requester_comment]
140
+ end
141
+
142
+ class DisassociateMpaTeamOutput
143
+ attr_accessor mpa_team_association: Types::MpaTeamAssociation
144
+ SENSITIVE: []
145
+ end
146
+
116
147
  class EnableDefaultKeyReplicationRegionsInput
117
148
  attr_accessor replication_regions: ::Array[::String]
118
149
  SENSITIVE: []
@@ -252,9 +283,20 @@ module Aws::PaymentCryptography
252
283
  SENSITIVE: []
253
284
  end
254
285
 
286
+ class GetMpaTeamAssociationInput
287
+ attr_accessor action: ("IMPORT_ROOT_PUBLIC_KEY_CERTIFICATE")
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class GetMpaTeamAssociationOutput
292
+ attr_accessor mpa_team_association: Types::MpaTeamAssociation
293
+ SENSITIVE: []
294
+ end
295
+
255
296
  class GetParametersForExportInput
256
297
  attr_accessor key_material_type: ("TR34_KEY_BLOCK" | "TR31_KEY_BLOCK" | "ROOT_PUBLIC_KEY_CERTIFICATE" | "TRUSTED_PUBLIC_KEY_CERTIFICATE" | "KEY_CRYPTOGRAM")
257
298
  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")
299
+ attr_accessor reuse_last_generated_token: bool
258
300
  SENSITIVE: []
259
301
  end
260
302
 
@@ -270,6 +312,7 @@ module Aws::PaymentCryptography
270
312
  class GetParametersForImportInput
271
313
  attr_accessor key_material_type: ("TR34_KEY_BLOCK" | "TR31_KEY_BLOCK" | "ROOT_PUBLIC_KEY_CERTIFICATE" | "TRUSTED_PUBLIC_KEY_CERTIFICATE" | "KEY_CRYPTOGRAM")
272
314
  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")
315
+ attr_accessor reuse_last_generated_token: bool
273
316
  SENSITIVE: []
274
317
  end
275
318
 
@@ -293,6 +336,17 @@ module Aws::PaymentCryptography
293
336
  SENSITIVE: []
294
337
  end
295
338
 
339
+ class GetResourcePolicyInput
340
+ attr_accessor resource_arn: ::String
341
+ SENSITIVE: []
342
+ end
343
+
344
+ class GetResourcePolicyOutput
345
+ attr_accessor resource_arn: ::String
346
+ attr_accessor policy: ::String
347
+ SENSITIVE: []
348
+ end
349
+
296
350
  class ImportAs2805KeyCryptogram
297
351
  attr_accessor as_2805_key_variant: ("TERMINAL_MAJOR_KEY_VARIANT_00" | "PIN_ENCRYPTION_KEY_VARIANT_28" | "MESSAGE_AUTHENTICATION_KEY_VARIANT_24" | "DATA_ENCRYPTION_KEY_VARIANT_22")
298
352
  attr_accessor key_modes_of_use: Types::KeyModesOfUse
@@ -330,7 +384,8 @@ module Aws::PaymentCryptography
330
384
  attr_accessor enabled: bool
331
385
  attr_accessor tags: ::Array[Types::Tag]
332
386
  attr_accessor replication_regions: ::Array[::String]
333
- SENSITIVE: []
387
+ attr_accessor requester_comment: ::String
388
+ SENSITIVE: [:requester_comment]
334
389
  end
335
390
 
336
391
  class ImportKeyMaterial
@@ -409,6 +464,7 @@ module Aws::PaymentCryptography
409
464
  attr_accessor primary_region: ::String
410
465
  attr_accessor replication_status: ::Hash[::String, Types::ReplicationStatusType]
411
466
  attr_accessor using_default_replication_regions: bool
467
+ attr_accessor mpa_status: Types::MpaStatus
412
468
  SENSITIVE: []
413
469
  end
414
470
 
@@ -492,6 +548,39 @@ module Aws::PaymentCryptography
492
548
  SENSITIVE: []
493
549
  end
494
550
 
551
+ class MpaStatus
552
+ attr_accessor mpa_session_arn: ::String
553
+ attr_accessor status: ("PENDING" | "APPROVED" | "FAILED" | "CANCELLED")
554
+ attr_accessor initiation_date: ::Time
555
+ attr_accessor status_message: ::String
556
+ SENSITIVE: []
557
+ end
558
+
559
+ class MpaTeamAssociation
560
+ attr_accessor action: ("IMPORT_ROOT_PUBLIC_KEY_CERTIFICATE")
561
+ attr_accessor mpa_team_arn: ::String
562
+ attr_accessor association_state: ("ACTIVE" | "UPDATE_PENDING" | "DELETE_PENDING")
563
+ attr_accessor mpa_status: Types::MpaStatus
564
+ SENSITIVE: []
565
+ end
566
+
567
+ class PublicPolicyException
568
+ attr_accessor message: ::String
569
+ SENSITIVE: []
570
+ end
571
+
572
+ class PutResourcePolicyInput
573
+ attr_accessor resource_arn: ::String
574
+ attr_accessor policy: ::String
575
+ SENSITIVE: []
576
+ end
577
+
578
+ class PutResourcePolicyOutput
579
+ attr_accessor resource_arn: ::String
580
+ attr_accessor policy: ::String
581
+ SENSITIVE: []
582
+ end
583
+
495
584
  class RemoveKeyReplicationRegionsInput
496
585
  attr_accessor key_identifier: ::String
497
586
  attr_accessor replication_regions: ::Array[::String]
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.52.0
4
+ version: 1.54.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services