aws-sdk-marketplacemetering 1.91.0 → 1.92.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: a708345315a14af47a9d39f30deae8cae6d88e3a27ed30274a880604db5937ea
4
- data.tar.gz: 45af1ac2bd9771eac1da3c9bc5d72eb8b30a226ef3a70ae3fe7d71eb2bb4673d
3
+ metadata.gz: bc027680612c20455b34c6b2d641aef69f9dc90329b08bbafd472042f2a02529
4
+ data.tar.gz: 955eb99be2d45b7874bb7583d3fb4303d0ba25798d881d57fef82f8b81fe84dc
5
5
  SHA512:
6
- metadata.gz: '06659accd952b05e3defb3a19fdef5e7bb6b4a63f491249d3f7ddcf6b4084d91e7f3d44d7fdbca0a81a58dc417db22099a051c8a6e9ac262d1c3d4d9295c965d'
7
- data.tar.gz: 5dd1570dc5c151d8f28c41708c7edeede43790a2829cccde91c1850aed2dfe1b60637ef5b40b6136e55c551e1316bd3f1e0531acba4cc313fcd2bae791dd4f46
6
+ metadata.gz: 4269a445e2416f58dbf978ef09fc7a0a73411b39c749db61a87050eae58421c317f25c4213b6d3a87ba5a63e3d9f04b523826e1af991b2554d8bcc56a033b49c
7
+ data.tar.gz: f50b57c990c6cb20c2477390eedb60ae8c1d62cbb2d42962111e8e5aaeb1889f7172f5d696f271d7160444b22c0cb2ce95158d7728edd9f297e3baa1c489fee7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.92.0 (2026-01-22)
5
+ ------------------
6
+
7
+ * Feature - Customer Identifier parameter deprecation date has been removed. For new implementations, we recommend using the CustomerAWSAccountID. Your current integration will continue to work. When updating your implementation, consider migrating to CustomerAWSAccountID for improved integration.
8
+
4
9
  1.91.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.92.0
@@ -483,11 +483,12 @@ module Aws::MarketplaceMetering
483
483
 
484
484
  # @!group API Operations
485
485
 
486
- # The `CustomerIdentifier` parameter is scheduled for deprecation on
487
- # March 31, 2026. Use `CustomerAWSAccountID` instead.
488
- #
489
- # These parameters are mutually exclusive. You can't specify both
490
- # `CustomerIdentifier` and `CustomerAWSAccountID` in the same request.
486
+ # The `CustomerIdentifier` and `CustomerAWSAccountID` are mutually
487
+ # exclusive parameters. You must use one or the other, but not both in
488
+ # the same API request. For new implementations, we recommend using the
489
+ # `CustomerAWSAccountID`. Your current integration will continue to
490
+ # work. When updating your implementation, consider migrating to
491
+ # `CustomerAWSAccountID` for improved integration.
491
492
  #
492
493
  # To post metering records for customers, SaaS applications call
493
494
  # `BatchMeterUsage`, which is used for metering SaaS flexible
@@ -600,37 +601,78 @@ module Aws::MarketplaceMetering
600
601
  req.send_request(options)
601
602
  end
602
603
 
603
- # API to emit metering records. For identical requests, the API is
604
- # idempotent and returns the metering record ID. This is used for
605
- # metering flexible consumption pricing (FCP) Amazon Machine Images
606
- # (AMI) and container products.
607
- #
608
- # `MeterUsage` is authenticated on the buyer's Amazon Web Services
609
- # account using credentials from the Amazon EC2 instance, Amazon ECS
610
- # task, or Amazon EKS pod.
611
- #
612
- # `MeterUsage` can optionally include multiple usage allocations, to
613
- # provide customers with usage data split into buckets by tags that you
614
- # define (or allow the customer to define).
615
- #
616
- # Submit usage records to report events from the previous hour. If you
617
- # submit records that are greater than six hours after events occur, the
618
- # records won’t be accepted. The timestamp in your request determines
619
- # when an event is recorded. You can only report usage once per hour for
620
- # each dimension. For AMI-based products, this is per dimension and per
621
- # EC2 instance. For container products, this is per dimension and per
622
- # ECS task or EKS pod. You can’t modify values after they’re recorded.
623
- # If you report usage before the current hour ends, you will be unable
624
- # to report additional usage until the next hour begins.
604
+ # As a seller, your software hosted in the buyer's Amazon Web Services
605
+ # account uses this API action to emit metering records directly to
606
+ # Amazon Web Services Marketplace. You must use the following buyer
607
+ # Amazon Web Services account credentials to sign the API request.
608
+ #
609
+ # * For **Amazon EC2** deployments, your software must use the [IAM role
610
+ # for Amazon EC2][1] to sign the API call for `MeterUsage` API
611
+ # operation.
612
+ #
613
+ # * For **Amazon EKS** deployments, your software must use [IAM roles
614
+ # for service accounts (IRSA)][2] to sign the API call for the
615
+ # `MeterUsage` API operation. Using [EKS Pod Identity][3], the node
616
+ # role, or long-term access keys is not supported.
617
+ #
618
+ # * For **Amazon ECS** deployments, your software must use [Amazon ECS
619
+ # task IAM][4] role to sign the API call for the `MeterUsage` API
620
+ # operation. Using the node role or long-term access keys are not
621
+ # supported.
622
+ #
623
+ # * For **Amazon Bedrock AgentCore Runtime** deployments, your software
624
+ # must use the [AgentCore Runtime execution role][5] to sign the API
625
+ # call for the `MeterUsage` API operation. Long-term access keys are
626
+ # not supported.
627
+ #
628
+ # The handling of `MeterUsage` requests varies between Amazon Bedrock
629
+ # AgentCore Runtime and non-Amazon Bedrock AgentCore deployments.
630
+ #
631
+ # * For **non-Amazon Bedrock AgentCore Runtime** deployments, you can
632
+ # only report usage once per hour for each dimension. For AMI-based
633
+ # products, this is per dimension and per EC2 instance. For container
634
+ # products, this is per dimension and per ECS task or EKS pod. You
635
+ # can't modify values after they're recorded. If you report usage
636
+ # before a current hour ends, you will be unable to report additional
637
+ # usage until the next hour begins. The `Timestamp` request parameter
638
+ # is rounded down to the hour and used to enforce this once-per-hour
639
+ # rule for idempotency. For requests that are identical after the
640
+ # `Timestamp` is rounded down, the API is idempotent and returns the
641
+ # metering record ID.
642
+ #
643
+ # * For **Amazon Bedrock AgentCore Runtime** deployments, you can report
644
+ # usage multiple times per hour for the same dimension. You do not
645
+ # need to aggregate metering records by the hour. You must include an
646
+ # idempotency token in the `ClientToken` request parameter. If using
647
+ # an Amazon SDK or the Amazon Web Services CLI, you must use the
648
+ # latest version which automatically includes an idempotency token in
649
+ # the `ClientToken` request parameter so that the request is processed
650
+ # successfully. The `Timestamp` request parameter is not rounded down
651
+ # to the hour and is not used for duplicate validation. Requests with
652
+ # duplicate `Timestamps` are aggregated as long as the `ClientToken`
653
+ # is unique.
654
+ #
655
+ # If you submit records more than six hours after events occur, the
656
+ # records won't be accepted. The timestamp in your request determines
657
+ # when an event is recorded.
658
+ #
659
+ # You can optionally include multiple usage allocations, to provide
660
+ # customers with usage data split into buckets by tags that you define
661
+ # or allow the customer to define.
625
662
  #
626
663
  # For Amazon Web Services Regions that support `MeterUsage`, see
627
- # [MeterUsage Region support for Amazon EC2][1] and [MeterUsage Region
628
- # support for Amazon ECS and Amazon EKS][2].
664
+ # [MeterUsage Region support for Amazon EC2][6] and [MeterUsage Region
665
+ # support for Amazon ECS and Amazon EKS][7].
629
666
  #
630
667
  #
631
668
  #
632
- # [1]: https://docs.aws.amazon.com/marketplace/latest/APIReference/metering-regions.html#meterusage-region-support-ec2
633
- # [2]: https://docs.aws.amazon.com/marketplace/latest/APIReference/metering-regions.html#meterusage-region-support-ecs-eks
669
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html
670
+ # [2]: https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html
671
+ # [3]: https://docs.aws.amazon.com/eks/latest/userguide/pod-identities.html
672
+ # [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
673
+ # [5]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/runtime-permissions.html#runtime-permissions-execution
674
+ # [6]: https://docs.aws.amazon.com/marketplace/latest/APIReference/metering-regions.html#meterusage-region-support-ec2
675
+ # [7]: https://docs.aws.amazon.com/marketplace/latest/APIReference/metering-regions.html#meterusage-region-support-ecs-eks
634
676
  #
635
677
  # @option params [required, String] :product_code
636
678
  # Product code is used to uniquely identify a product in Amazon Web
@@ -893,7 +935,7 @@ module Aws::MarketplaceMetering
893
935
  tracer: tracer
894
936
  )
895
937
  context[:gem_name] = 'aws-sdk-marketplacemetering'
896
- context[:gem_version] = '1.91.0'
938
+ context[:gem_version] = '1.92.0'
897
939
  Seahorse::Client::Request.new(handlers, context)
898
940
  end
899
941
 
@@ -54,7 +54,7 @@ module Aws::MarketplaceMetering
54
54
  autoload :EndpointProvider, 'aws-sdk-marketplacemetering/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-marketplacemetering/endpoints'
56
56
 
57
- GEM_VERSION = '1.91.0'
57
+ GEM_VERSION = '1.92.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-marketplacemetering
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.91.0
4
+ version: 1.92.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services