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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-licensemanager/client.rb +3 -1
- data/lib/aws-sdk-licensemanager/client_api.rb +1 -0
- data/lib/aws-sdk-licensemanager/types.rb +6 -1
- data/lib/aws-sdk-licensemanager.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ddb56ac0bcfe9040ee0192e0637d6ee42111ba21d7cd8842e85d36f7578adbae
|
|
4
|
+
data.tar.gz: 5c188a9c7b580d2d92e067515f046f2c4e3e8f1db1b78199056423774b8189ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c3e67d1f2d0763db804dc640be73f11a76fef3f62bfc36a20df9469d18fdcf624f4ab899002b880f6978deeb49547c348c044d1036b5ef86d1f6a5e02d51ea5
|
|
7
|
+
data.tar.gz: b6c4cdccabf0c93f957b829b2f581fb0d4527753cf5f11824e00eff92ce98eba0667f679bceb7cc6f636f13a830c82628dfe03eb4f950eaa25a10b17d51d5839
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
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.
|
|
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
|
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.
|
|
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-
|
|
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
|