aws-sdk-paymentcryptography 1.27.0 → 1.28.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f75274d6929a97cc283d787ed5d152b85dc3750ae32116f3506eab2017011640
4
- data.tar.gz: 4df2b88be2f2d4df6275437bd44091bab724e1ec34c49834b3eb71a171c86576
3
+ metadata.gz: e6c374ddcdc6c922601cbf4c1e1b27be98f2069bc208665e9904f5c2133d7240
4
+ data.tar.gz: 105975d7dde2ab4bdc2061865ca0efc327dc0e36d677c043c85a1702d3442a8b
5
5
  SHA512:
6
- metadata.gz: 004ce5d5edbb0b3238a3dd5c9d2afedfc6d03c5ab6ed223bfd684d8bbbda535907eee29b3e2e61e458c2d7a8c8f9cb2f3e5f871fd625d51bc80ecbe6ccdeb118
7
- data.tar.gz: e923881dd2238b55fb1777673ee99665a91ef7bb61bac7b4d6a73df4a409c07951ce9ef9a2773f967a5e2df942b43da7c0f8cc32d719d483f591e81c60d08ac2
6
+ metadata.gz: a677ca4bcef911b815c2a076ed0f633221194e29a8d923591eda6513d6b5d9d8a8a95c17270fbcacce50fcff72b9a2c9254c1eebea238caee01ed41fe6357584
7
+ data.tar.gz: 85766847360d84804012ff837bfaa041490845523270ac7573451faf521008a2ed49b5823d18848eddd604765f4ad2f47fb2420edf7f3f0e99c0f3e449f821bf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2024-11-12)
5
+ ------------------
6
+
7
+ * Feature - Updated ListAliases API with KeyArn filter.
8
+
4
9
  1.27.0 (2024-10-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.28.0
@@ -653,7 +653,7 @@ module Aws::PaymentCryptography
653
653
  # tags: [
654
654
  # {
655
655
  # key: "TagKey", # required
656
- # value: "TagValue",
656
+ # value: "TagValue", # required
657
657
  # },
658
658
  # ],
659
659
  # })
@@ -1720,7 +1720,7 @@ module Aws::PaymentCryptography
1720
1720
  # tags: [
1721
1721
  # {
1722
1722
  # key: "TagKey", # required
1723
- # value: "TagValue",
1723
+ # value: "TagValue", # required
1724
1724
  # },
1725
1725
  # ],
1726
1726
  # })
@@ -1762,8 +1762,8 @@ module Aws::PaymentCryptography
1762
1762
  end
1763
1763
 
1764
1764
  # Lists the aliases for all keys in the caller's Amazon Web Services
1765
- # account and Amazon Web Services Region. You can filter the list of
1766
- # aliases. For more information, see [Using aliases][1] in the *Amazon
1765
+ # account and Amazon Web Services Region. You can filter the aliases by
1766
+ # `keyARN`. For more information, see [Using aliases][1] in the *Amazon
1767
1767
  # Web Services Payment Cryptography User Guide*.
1768
1768
  #
1769
1769
  # This is a paginated operation, which means that each response might
@@ -1794,6 +1794,9 @@ module Aws::PaymentCryptography
1794
1794
  # [4]: https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_GetAlias.html
1795
1795
  # [5]: https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_UpdateAlias.html
1796
1796
  #
1797
+ # @option params [String] :key_arn
1798
+ # The `keyARN` for which you want to list all aliases.
1799
+ #
1797
1800
  # @option params [String] :next_token
1798
1801
  # Use this parameter in a subsequent request after you receive a
1799
1802
  # response with truncated results. Set it to the value of `NextToken`
@@ -1818,6 +1821,7 @@ module Aws::PaymentCryptography
1818
1821
  # @example Request syntax with placeholder values
1819
1822
  #
1820
1823
  # resp = client.list_aliases({
1824
+ # key_arn: "KeyArn",
1821
1825
  # next_token: "NextToken",
1822
1826
  # max_results: 1,
1823
1827
  # })
@@ -2275,7 +2279,7 @@ module Aws::PaymentCryptography
2275
2279
  # tags: [ # required
2276
2280
  # {
2277
2281
  # key: "TagKey", # required
2278
- # value: "TagValue",
2282
+ # value: "TagValue", # required
2279
2283
  # },
2280
2284
  # ],
2281
2285
  # })
@@ -2420,7 +2424,7 @@ module Aws::PaymentCryptography
2420
2424
  tracer: tracer
2421
2425
  )
2422
2426
  context[:gem_name] = 'aws-sdk-paymentcryptography'
2423
- context[:gem_version] = '1.27.0'
2427
+ context[:gem_version] = '1.28.0'
2424
2428
  Seahorse::Client::Request.new(handlers, context)
2425
2429
  end
2426
2430
 
@@ -342,6 +342,7 @@ module Aws::PaymentCryptography
342
342
 
343
343
  KeySummaryList.member = Shapes::ShapeRef.new(shape: KeySummary)
344
344
 
345
+ ListAliasesInput.add_member(:key_arn, Shapes::ShapeRef.new(shape: KeyArn, location_name: "KeyArn"))
345
346
  ListAliasesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
346
347
  ListAliasesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
347
348
  ListAliasesInput.struct_class = Types::ListAliasesInput
@@ -403,7 +404,7 @@ module Aws::PaymentCryptography
403
404
  StopKeyUsageOutput.struct_class = Types::StopKeyUsageOutput
404
405
 
405
406
  Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
406
- Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, location_name: "Value"))
407
+ Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
407
408
  Tag.struct_class = Types::Tag
408
409
 
409
410
  TagKeys.member = Shapes::ShapeRef.new(shape: TagKey)
@@ -697,7 +697,7 @@ module Aws::PaymentCryptography
697
697
  :wrapped_key_cryptogram,
698
698
  :import_token,
699
699
  :wrapping_spec)
700
- SENSITIVE = []
700
+ SENSITIVE = [:wrapped_key_cryptogram]
701
701
  include Aws::Structure
702
702
  end
703
703
 
@@ -890,7 +890,7 @@ module Aws::PaymentCryptography
890
890
  :wrapped_key_block,
891
891
  :key_block_format,
892
892
  :random_nonce)
893
- SENSITIVE = [:signing_key_certificate]
893
+ SENSITIVE = [:signing_key_certificate, :wrapped_key_block]
894
894
  include Aws::Structure
895
895
  end
896
896
 
@@ -1219,6 +1219,10 @@ module Aws::PaymentCryptography
1219
1219
  include Aws::Structure
1220
1220
  end
1221
1221
 
1222
+ # @!attribute [rw] key_arn
1223
+ # The `keyARN` for which you want to list all aliases.
1224
+ # @return [String]
1225
+ #
1222
1226
  # @!attribute [rw] next_token
1223
1227
  # Use this parameter in a subsequent request after you receive a
1224
1228
  # response with truncated results. Set it to the value of `NextToken`
@@ -1239,6 +1243,7 @@ module Aws::PaymentCryptography
1239
1243
  # @see http://docs.aws.amazon.com/goto/WebAPI/payment-cryptography-2021-09-14/ListAliasesInput AWS API Documentation
1240
1244
  #
1241
1245
  class ListAliasesInput < Struct.new(
1246
+ :key_arn,
1242
1247
  :next_token,
1243
1248
  :max_results)
1244
1249
  SENSITIVE = []
@@ -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.27.0'
58
+ GEM_VERSION = '1.28.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -115,7 +115,7 @@ module Aws
115
115
  ?tags: Array[
116
116
  {
117
117
  key: ::String,
118
- value: ::String?
118
+ value: ::String
119
119
  },
120
120
  ]
121
121
  ) -> _CreateKeyResponseSuccess
@@ -353,7 +353,7 @@ module Aws
353
353
  ?tags: Array[
354
354
  {
355
355
  key: ::String,
356
- value: ::String?
356
+ value: ::String
357
357
  },
358
358
  ]
359
359
  ) -> _ImportKeyResponseSuccess
@@ -366,6 +366,7 @@ module Aws
366
366
  end
367
367
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PaymentCryptography/Client.html#list_aliases-instance_method
368
368
  def list_aliases: (
369
+ ?key_arn: ::String,
369
370
  ?next_token: ::String,
370
371
  ?max_results: ::Integer
371
372
  ) -> _ListAliasesResponseSuccess
@@ -436,7 +437,7 @@ module Aws
436
437
  tags: Array[
437
438
  {
438
439
  key: ::String,
439
- value: ::String?
440
+ value: ::String
440
441
  },
441
442
  ]
442
443
  ) -> _TagResourceResponseSuccess
data/sig/types.rbs CHANGED
@@ -198,7 +198,7 @@ module Aws::PaymentCryptography
198
198
  attr_accessor wrapped_key_cryptogram: ::String
199
199
  attr_accessor import_token: ::String
200
200
  attr_accessor wrapping_spec: ("RSA_OAEP_SHA_256" | "RSA_OAEP_SHA_512")
201
- SENSITIVE: []
201
+ SENSITIVE: [:wrapped_key_cryptogram]
202
202
  end
203
203
 
204
204
  class ImportKeyInput
@@ -250,7 +250,7 @@ module Aws::PaymentCryptography
250
250
  attr_accessor wrapped_key_block: ::String
251
251
  attr_accessor key_block_format: ("X9_TR34_2012")
252
252
  attr_accessor random_nonce: ::String
253
- SENSITIVE: [:signing_key_certificate]
253
+ SENSITIVE: [:signing_key_certificate, :wrapped_key_block]
254
254
  end
255
255
 
256
256
  class InternalServerException
@@ -315,6 +315,7 @@ module Aws::PaymentCryptography
315
315
  end
316
316
 
317
317
  class ListAliasesInput
318
+ attr_accessor key_arn: ::String
318
319
  attr_accessor next_token: ::String
319
320
  attr_accessor max_results: ::Integer
320
321
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-paymentcryptography
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.0
4
+ version: 1.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-23 00:00:00.000000000 Z
11
+ date: 2024-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core