aws-sdk-marketplacemetering 1.19.0 → 1.20.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 63c740894e05bfbb4ef7e82cb07fd245e4c9a2a8
4
- data.tar.gz: 3a0b8c1404fb9cbf3b57103c2dedc81c0562c682
3
+ metadata.gz: 31e14c72933c6c389721453ce01c69452a358d6b
4
+ data.tar.gz: d3e70a6e82fda9b06d320138567556e8deb91b50
5
5
  SHA512:
6
- metadata.gz: 5e80bec81814416c61155fca87ba4fbc2aaa2fa4617f83bf0c2dd6a0b9106463b2be713e4f79c24d8d8bf1a2677e541bf4e652f90a219b765d77303684c68815
7
- data.tar.gz: fed31d39cd6cc6d39de524383235ebd1b41579d139bc850dfc3762ba3eca4db982c90b8c70e30fe4bae4ef56cc4577ef5d0b88ce4d1d4e31d2448398030ce21d
6
+ metadata.gz: a6bf4ffe074cbccd83ad8286a9fdaae607b57c1c16d6e13c4726bd356d79075afa70d4f61dd2af7e7e767592c72404a57eeb6c0b57bcb47c0759a5dbed8df5d9
7
+ data.tar.gz: fd92b2aed890b148eb4d15b0ec999ee7562ceccb0b7928a754490de62bff009cfb59d07685876540edf8ecb9867f24ce17965b56210128a99bfdfe3817ca0dbf
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-marketplacemetering/customizations'
42
42
  # @service
43
43
  module Aws::MarketplaceMetering
44
44
 
45
- GEM_VERSION = '1.19.0'
45
+ GEM_VERSION = '1.20.0'
46
46
 
47
47
  end
@@ -386,10 +386,9 @@ module Aws::MarketplaceMetering
386
386
 
387
387
  # Paid container software products sold through AWS Marketplace must
388
388
  # integrate with the AWS Marketplace Metering Service and call the
389
- # RegisterUsage operation for software entitlement and metering. Calling
390
- # RegisterUsage from containers running outside of ECS is not currently
391
- # supported. Free and BYOL products for ECS aren't required to call
392
- # RegisterUsage, but you may choose to do so if you would like to
389
+ # RegisterUsage operation for software entitlement and metering. Free
390
+ # and BYOL products for Amazon ECS or Amazon EKS aren't required to
391
+ # call RegisterUsage, but you may choose to do so if you would like to
393
392
  # receive usage data in your seller reports. The sections below explain
394
393
  # the behavior of RegisterUsage. RegisterUsage performs two primary
395
394
  # functions: metering and entitlement.
@@ -401,22 +400,24 @@ module Aws::MarketplaceMetering
401
400
  # to guard against unauthorized use at container startup, as such a
402
401
  # CustomerNotSubscribedException/PlatformNotSupportedException will
403
402
  # only be thrown on the initial call to RegisterUsage. Subsequent
404
- # calls from the same Amazon ECS task instance (e.g. task-id) will not
405
- # throw a CustomerNotSubscribedException, even if the customer
406
- # unsubscribes while the Amazon ECS task is still running.
403
+ # calls from the same Amazon ECS task instance (e.g. task-id) or
404
+ # Amazon EKS pod will not throw a CustomerNotSubscribedException, even
405
+ # if the customer unsubscribes while the Amazon ECS task or Amazon EKS
406
+ # pod is still running.
407
407
  #
408
408
  # * *Metering*\: RegisterUsage meters software use per ECS task, per
409
- # hour, with usage prorated to the second. A minimum of 1 minute of
410
- # usage applies to tasks that are short lived. For example, if a
411
- # customer has a 10 node ECS cluster and creates an ECS service
412
- # configured as a Daemon Set, then ECS will launch a task on all 10
413
- # cluster nodes and the customer will be charged: (10 *
414
- # hourly\_rate). Metering for software use is automatically handled by
415
- # the AWS Marketplace Metering Control Plane -- your software is not
416
- # required to perform any metering specific actions, other than call
417
- # RegisterUsage once for metering of software use to commence. The AWS
418
- # Marketplace Metering Control Plane will also continue to bill
419
- # customers for running ECS tasks, regardless of the customers
409
+ # hour, or per pod for Amazon EKS with usage prorated to the second. A
410
+ # minimum of 1 minute of usage applies to tasks that are short lived.
411
+ # For example, if a customer has a 10 node Amazon ECS or Amazon EKS
412
+ # cluster and a service configured as a Daemon Set, then Amazon ECS or
413
+ # Amazon EKS will launch a task on all 10 cluster nodes and the
414
+ # customer will be charged: (10 * hourly\_rate). Metering for
415
+ # software use is automatically handled by the AWS Marketplace
416
+ # Metering Control Plane -- your software is not required to perform
417
+ # any metering specific actions, other than call RegisterUsage once
418
+ # for metering of software use to commence. The AWS Marketplace
419
+ # Metering Control Plane will also continue to bill customers for
420
+ # running ECS tasks and Amazon EKS pods, regardless of the customers
420
421
  # subscription state, removing the need for your software to perform
421
422
  # entitlement checks at runtime.
422
423
  #
@@ -509,7 +510,7 @@ module Aws::MarketplaceMetering
509
510
  params: params,
510
511
  config: config)
511
512
  context[:gem_name] = 'aws-sdk-marketplacemetering'
512
- context[:gem_version] = '1.19.0'
513
+ context[:gem_version] = '1.20.0'
513
514
  Seahorse::Client::Request.new(handlers, context)
514
515
  end
515
516
 
@@ -192,6 +192,7 @@ module Aws::MarketplaceMetering
192
192
  o.errors << Shapes::ShapeRef.new(shape: TimestampOutOfBoundsException)
193
193
  o.errors << Shapes::ShapeRef.new(shape: DuplicateRequestException)
194
194
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
195
+ o.errors << Shapes::ShapeRef.new(shape: CustomerNotEntitledException)
195
196
  end)
196
197
 
197
198
  api.add_operation(:register_usage, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-marketplacemetering
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.20.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: 2019-10-23 00:00:00.000000000 Z
11
+ date: 2019-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core