aws-sdk-licensemanager 1.33.0 → 1.34.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: a823b6e38d585fc53b997fc617364e386df1a035ae9101e12788122cbec65d39
4
- data.tar.gz: ae29e4f68ee3ccab6dd501a8726025d5e7722e06dcd038a80eb9cc79d41db101
3
+ metadata.gz: ddb56ac0bcfe9040ee0192e0637d6ee42111ba21d7cd8842e85d36f7578adbae
4
+ data.tar.gz: 5c188a9c7b580d2d92e067515f046f2c4e3e8f1db1b78199056423774b8189ac
5
5
  SHA512:
6
- metadata.gz: 61fd7ef6363959b3f8852246aee57fb680bd55a185dea6a4b225a5ac108d5f05bba489cfb0d4ca300ee5e54908cf4ecc17563b32718dcf78d62f6f9e1a775955
7
- data.tar.gz: d7fd2aa7ba4209fea9ea45a57f574dc29c041c86337d6fb7e01326cf9f949268f6d53fd549d35372c763a663c587065d0e6cfb2a7cb76b7534c1fc159c075255
6
+ metadata.gz: 6c3e67d1f2d0763db804dc640be73f11a76fef3f62bfc36a20df9469d18fdcf624f4ab899002b880f6978deeb49547c348c044d1036b5ef86d1f6a5e02d51ea5
7
+ data.tar.gz: b6c4cdccabf0c93f957b829b2f581fb0d4527753cf5f11824e00eff92ce98eba0667f679bceb7cc6f636f13a830c82628dfe03eb4f950eaa25a10b17d51d5839
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2021-09-24)
5
+ ------------------
6
+
7
+ * Feature - AWS License Manager now allows customers to get the LicenseArn in the Checkout API Response.
8
+
4
9
  1.33.0 (2021-09-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.0
@@ -515,6 +515,7 @@ module Aws::LicenseManager
515
515
  # * {Types::CheckoutLicenseResponse#node_id #node_id} => String
516
516
  # * {Types::CheckoutLicenseResponse#issued_at #issued_at} => String
517
517
  # * {Types::CheckoutLicenseResponse#expiration #expiration} => String
518
+ # * {Types::CheckoutLicenseResponse#license_arn #license_arn} => String
518
519
  #
519
520
  # @example Request syntax with placeholder values
520
521
  #
@@ -546,6 +547,7 @@ module Aws::LicenseManager
546
547
  # resp.node_id #=> String
547
548
  # resp.issued_at #=> String
548
549
  # resp.expiration #=> String
550
+ # resp.license_arn #=> String
549
551
  #
550
552
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CheckoutLicense AWS API Documentation
551
553
  #
@@ -2965,7 +2967,7 @@ module Aws::LicenseManager
2965
2967
  params: params,
2966
2968
  config: config)
2967
2969
  context[:gem_name] = 'aws-sdk-licensemanager'
2968
- context[:gem_version] = '1.33.0'
2970
+ context[:gem_version] = '1.34.0'
2969
2971
  Seahorse::Client::Request.new(handlers, context)
2970
2972
  end
2971
2973
 
@@ -302,6 +302,7 @@ module Aws::LicenseManager
302
302
  CheckoutLicenseResponse.add_member(:node_id, Shapes::ShapeRef.new(shape: String, location_name: "NodeId"))
303
303
  CheckoutLicenseResponse.add_member(:issued_at, Shapes::ShapeRef.new(shape: ISO8601DateTime, location_name: "IssuedAt"))
304
304
  CheckoutLicenseResponse.add_member(:expiration, Shapes::ShapeRef.new(shape: ISO8601DateTime, location_name: "Expiration"))
305
+ CheckoutLicenseResponse.add_member(:license_arn, Shapes::ShapeRef.new(shape: String, location_name: "LicenseArn"))
305
306
  CheckoutLicenseResponse.struct_class = Types::CheckoutLicenseResponse
306
307
 
307
308
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
@@ -353,6 +353,10 @@ module Aws::LicenseManager
353
353
  # Date and time at which the license checkout expires.
354
354
  # @return [String]
355
355
  #
356
+ # @!attribute [rw] license_arn
357
+ # Amazon Resource Name (ARN) of the checkout license.
358
+ # @return [String]
359
+ #
356
360
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CheckoutLicenseResponse AWS API Documentation
357
361
  #
358
362
  class CheckoutLicenseResponse < Struct.new(
@@ -362,7 +366,8 @@ module Aws::LicenseManager
362
366
  :signed_token,
363
367
  :node_id,
364
368
  :issued_at,
365
- :expiration)
369
+ :expiration,
370
+ :license_arn)
366
371
  SENSITIVE = []
367
372
  include Aws::Structure
368
373
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-licensemanager/customizations'
48
48
  # @!group service
49
49
  module Aws::LicenseManager
50
50
 
51
- GEM_VERSION = '1.33.0'
51
+ GEM_VERSION = '1.34.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-licensemanager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.34.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: 2021-09-22 00:00:00.000000000 Z
11
+ date: 2021-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core