aws-sdk-licensemanager 1.42.0 → 1.44.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-licensemanager/client.rb +50 -10
- data/lib/aws-sdk-licensemanager/client_api.rb +7 -0
- data/lib/aws-sdk-licensemanager/endpoint_provider.rb +38 -96
- data/lib/aws-sdk-licensemanager/types.rb +84 -843
- 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: 3c332b2b44e6a934ba618126f02df559e807082396c0f95a513f627bd54fe251
|
4
|
+
data.tar.gz: 7cdb4530695fff68e8cc268de07bf301933d9feae8a1ebf4d61b6b104ba0abe3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8a1079892e8b220ca56c33075cd68685a0246a4c6170b647527a60e777a67a5a681752405df6e3260022046b05871152ec3d6075ffbfcd7e5f298899538f56a
|
7
|
+
data.tar.gz: 01cb49dd83d20e60125d0efb9aa75cb900ab0b68af7bc13068600ff240a3adea5602a8ec085faea167b63423a8d9894487b472174bb51caedb8b336d66fc02cf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.44.0 (2023-04-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds grant override options to the CreateGrantVersion API. These options can be used to specify grant replacement behavior during grant activation.
|
8
|
+
|
9
|
+
1.43.0 (2023-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
15
|
+
|
4
16
|
1.42.0 (2022-11-11)
|
5
17
|
------------------
|
6
18
|
|
@@ -220,4 +232,4 @@ Unreleased Changes
|
|
220
232
|
1.0.0 (2018-11-29)
|
221
233
|
------------------
|
222
234
|
|
223
|
-
* Feature - Initial release of `aws-sdk-licensemanager`.
|
235
|
+
* Feature - Initial release of `aws-sdk-licensemanager`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.0
|
@@ -605,7 +605,14 @@ module Aws::LicenseManager
|
|
605
605
|
end
|
606
606
|
|
607
607
|
# Creates a grant for the specified license. A grant shares the use of
|
608
|
-
# license entitlements with specific Amazon Web Services
|
608
|
+
# license entitlements with a specific Amazon Web Services account, an
|
609
|
+
# organization, or an organizational unit (OU). For more information,
|
610
|
+
# see [Granted licenses in License Manager][1] in the *License Manager
|
611
|
+
# User Guide*.
|
612
|
+
#
|
613
|
+
#
|
614
|
+
#
|
615
|
+
# [1]: https://docs.aws.amazon.com/license-manager/latest/userguide/granted-licenses.html
|
609
616
|
#
|
610
617
|
# @option params [required, String] :client_token
|
611
618
|
# Unique, case-sensitive identifier that you provide to ensure the
|
@@ -618,8 +625,24 @@ module Aws::LicenseManager
|
|
618
625
|
# Amazon Resource Name (ARN) of the license.
|
619
626
|
#
|
620
627
|
# @option params [required, Array<String>] :principals
|
621
|
-
# The grant principals.
|
622
|
-
# Resource Name (ARN)
|
628
|
+
# The grant principals. You can specify one of the following as an
|
629
|
+
# Amazon Resource Name (ARN):
|
630
|
+
#
|
631
|
+
# * An Amazon Web Services account, which includes only the account
|
632
|
+
# specified.
|
633
|
+
#
|
634
|
+
# ^
|
635
|
+
# ^
|
636
|
+
#
|
637
|
+
# * An organizational unit (OU), which includes all accounts in the OU.
|
638
|
+
#
|
639
|
+
# ^
|
640
|
+
# ^
|
641
|
+
#
|
642
|
+
# * An organization, which will include all accounts across your
|
643
|
+
# organization.
|
644
|
+
#
|
645
|
+
# ^
|
623
646
|
#
|
624
647
|
# @option params [required, String] :home_region
|
625
648
|
# Home Region of the grant.
|
@@ -659,7 +682,13 @@ module Aws::LicenseManager
|
|
659
682
|
req.send_request(options)
|
660
683
|
end
|
661
684
|
|
662
|
-
# Creates a new version of the specified grant.
|
685
|
+
# Creates a new version of the specified grant. For more information,
|
686
|
+
# see [Granted licenses in License Manager][1] in the *License Manager
|
687
|
+
# User Guide*.
|
688
|
+
#
|
689
|
+
#
|
690
|
+
#
|
691
|
+
# [1]: https://docs.aws.amazon.com/license-manager/latest/userguide/granted-licenses.html
|
663
692
|
#
|
664
693
|
# @option params [required, String] :client_token
|
665
694
|
# Unique, case-sensitive identifier that you provide to ensure the
|
@@ -683,6 +712,9 @@ module Aws::LicenseManager
|
|
683
712
|
# @option params [String] :source_version
|
684
713
|
# Current version of the grant.
|
685
714
|
#
|
715
|
+
# @option params [Types::Options] :options
|
716
|
+
# The options specified for the grant.
|
717
|
+
#
|
686
718
|
# @return [Types::CreateGrantVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
687
719
|
#
|
688
720
|
# * {Types::CreateGrantVersionResponse#grant_arn #grant_arn} => String
|
@@ -699,6 +731,9 @@ module Aws::LicenseManager
|
|
699
731
|
# status: "PENDING_WORKFLOW", # accepts PENDING_WORKFLOW, PENDING_ACCEPT, REJECTED, ACTIVE, FAILED_WORKFLOW, DELETED, PENDING_DELETE, DISABLED, WORKFLOW_COMPLETED
|
700
732
|
# status_reason: "StatusReasonMessage",
|
701
733
|
# source_version: "String",
|
734
|
+
# options: {
|
735
|
+
# activation_override_behavior: "DISTRIBUTED_GRANTS_ONLY", # accepts DISTRIBUTED_GRANTS_ONLY, ALL_GRANTS_PERMITTED_BY_ISSUER
|
736
|
+
# },
|
702
737
|
# })
|
703
738
|
#
|
704
739
|
# @example Response structure
|
@@ -935,8 +970,7 @@ module Aws::LicenseManager
|
|
935
970
|
# @option params [required, Types::LicenseConversionContext] :source_license_context
|
936
971
|
# Information that identifies the license type you are converting from.
|
937
972
|
# For the structure of the source license, see [Convert a license type
|
938
|
-
# using the
|
939
|
-
# Guide*.
|
973
|
+
# using the CLI ][1] in the *License Manager User Guide*.
|
940
974
|
#
|
941
975
|
#
|
942
976
|
#
|
@@ -945,8 +979,7 @@ module Aws::LicenseManager
|
|
945
979
|
# @option params [required, Types::LicenseConversionContext] :destination_license_context
|
946
980
|
# Information that identifies the license type you are converting to.
|
947
981
|
# For the structure of the destination license, see [Convert a license
|
948
|
-
# type using the
|
949
|
-
# User Guide*.
|
982
|
+
# type using the CLI ][1] in the *License Manager User Guide*.
|
950
983
|
#
|
951
984
|
#
|
952
985
|
#
|
@@ -1466,6 +1499,7 @@ module Aws::LicenseManager
|
|
1466
1499
|
# resp.grant.version #=> String
|
1467
1500
|
# resp.grant.granted_operations #=> Array
|
1468
1501
|
# resp.grant.granted_operations[0] #=> String, one of "CreateGrant", "CheckoutLicense", "CheckoutBorrowLicense", "CheckInLicense", "ExtendConsumptionLicense", "ListPurchasedLicenses", "CreateToken"
|
1502
|
+
# resp.grant.options.activation_override_behavior #=> String, one of "DISTRIBUTED_GRANTS_ONLY", "ALL_GRANTS_PERMITTED_BY_ISSUER"
|
1469
1503
|
#
|
1470
1504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetGrant AWS API Documentation
|
1471
1505
|
#
|
@@ -1862,6 +1896,7 @@ module Aws::LicenseManager
|
|
1862
1896
|
# resp.grants[0].version #=> String
|
1863
1897
|
# resp.grants[0].granted_operations #=> Array
|
1864
1898
|
# resp.grants[0].granted_operations[0] #=> String, one of "CreateGrant", "CheckoutLicense", "CheckoutBorrowLicense", "CheckInLicense", "ExtendConsumptionLicense", "ListPurchasedLicenses", "CreateToken"
|
1899
|
+
# resp.grants[0].options.activation_override_behavior #=> String, one of "DISTRIBUTED_GRANTS_ONLY", "ALL_GRANTS_PERMITTED_BY_ISSUER"
|
1865
1900
|
# resp.next_token #=> String
|
1866
1901
|
#
|
1867
1902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListDistributedGrants AWS API Documentation
|
@@ -2317,7 +2352,10 @@ module Aws::LicenseManager
|
|
2317
2352
|
req.send_request(options)
|
2318
2353
|
end
|
2319
2354
|
|
2320
|
-
# Lists grants that are received
|
2355
|
+
# Lists grants that are received. Received grants are grants created
|
2356
|
+
# while specifying the recipient as this Amazon Web Services account,
|
2357
|
+
# your organization, or an organizational unit (OU) to which this member
|
2358
|
+
# account belongs.
|
2321
2359
|
#
|
2322
2360
|
# @option params [Array<String>] :grant_arns
|
2323
2361
|
# Amazon Resource Names (ARNs) of the grants.
|
@@ -2374,6 +2412,7 @@ module Aws::LicenseManager
|
|
2374
2412
|
# resp.grants[0].version #=> String
|
2375
2413
|
# resp.grants[0].granted_operations #=> Array
|
2376
2414
|
# resp.grants[0].granted_operations[0] #=> String, one of "CreateGrant", "CheckoutLicense", "CheckoutBorrowLicense", "CheckInLicense", "ExtendConsumptionLicense", "ListPurchasedLicenses", "CreateToken"
|
2415
|
+
# resp.grants[0].options.activation_override_behavior #=> String, one of "DISTRIBUTED_GRANTS_ONLY", "ALL_GRANTS_PERMITTED_BY_ISSUER"
|
2377
2416
|
# resp.next_token #=> String
|
2378
2417
|
#
|
2379
2418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListReceivedGrants AWS API Documentation
|
@@ -2436,6 +2475,7 @@ module Aws::LicenseManager
|
|
2436
2475
|
# resp.grants[0].version #=> String
|
2437
2476
|
# resp.grants[0].granted_operations #=> Array
|
2438
2477
|
# resp.grants[0].granted_operations[0] #=> String, one of "CreateGrant", "CheckoutLicense", "CheckoutBorrowLicense", "CheckInLicense", "ExtendConsumptionLicense", "ListPurchasedLicenses", "CreateToken"
|
2478
|
+
# resp.grants[0].options.activation_override_behavior #=> String, one of "DISTRIBUTED_GRANTS_ONLY", "ALL_GRANTS_PERMITTED_BY_ISSUER"
|
2439
2479
|
# resp.next_token #=> String
|
2440
2480
|
#
|
2441
2481
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListReceivedGrantsForOrganization AWS API Documentation
|
@@ -3157,7 +3197,7 @@ module Aws::LicenseManager
|
|
3157
3197
|
params: params,
|
3158
3198
|
config: config)
|
3159
3199
|
context[:gem_name] = 'aws-sdk-licensemanager'
|
3160
|
-
context[:gem_version] = '1.
|
3200
|
+
context[:gem_version] = '1.44.0'
|
3161
3201
|
Seahorse::Client::Request.new(handlers, context)
|
3162
3202
|
end
|
3163
3203
|
|
@@ -16,6 +16,7 @@ module Aws::LicenseManager
|
|
16
16
|
AcceptGrantRequest = Shapes::StructureShape.new(name: 'AcceptGrantRequest')
|
17
17
|
AcceptGrantResponse = Shapes::StructureShape.new(name: 'AcceptGrantResponse')
|
18
18
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
19
|
+
ActivationOverrideBehavior = Shapes::StringShape.new(name: 'ActivationOverrideBehavior')
|
19
20
|
AllowedOperation = Shapes::StringShape.new(name: 'AllowedOperation')
|
20
21
|
AllowedOperationList = Shapes::ListShape.new(name: 'AllowedOperationList')
|
21
22
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
@@ -185,6 +186,7 @@ module Aws::LicenseManager
|
|
185
186
|
Metadata = Shapes::StructureShape.new(name: 'Metadata')
|
186
187
|
MetadataList = Shapes::ListShape.new(name: 'MetadataList')
|
187
188
|
NoEntitlementsAllowedException = Shapes::StructureShape.new(name: 'NoEntitlementsAllowedException')
|
189
|
+
Options = Shapes::StructureShape.new(name: 'Options')
|
188
190
|
OrganizationConfiguration = Shapes::StructureShape.new(name: 'OrganizationConfiguration')
|
189
191
|
PrincipalArnList = Shapes::ListShape.new(name: 'PrincipalArnList')
|
190
192
|
ProductInformation = Shapes::StructureShape.new(name: 'ProductInformation')
|
@@ -343,6 +345,7 @@ module Aws::LicenseManager
|
|
343
345
|
CreateGrantVersionRequest.add_member(:status, Shapes::ShapeRef.new(shape: GrantStatus, location_name: "Status"))
|
344
346
|
CreateGrantVersionRequest.add_member(:status_reason, Shapes::ShapeRef.new(shape: StatusReasonMessage, location_name: "StatusReason"))
|
345
347
|
CreateGrantVersionRequest.add_member(:source_version, Shapes::ShapeRef.new(shape: String, location_name: "SourceVersion"))
|
348
|
+
CreateGrantVersionRequest.add_member(:options, Shapes::ShapeRef.new(shape: Options, location_name: "Options"))
|
346
349
|
CreateGrantVersionRequest.struct_class = Types::CreateGrantVersionRequest
|
347
350
|
|
348
351
|
CreateGrantVersionResponse.add_member(:grant_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "GrantArn"))
|
@@ -611,6 +614,7 @@ module Aws::LicenseManager
|
|
611
614
|
Grant.add_member(:status_reason, Shapes::ShapeRef.new(shape: StatusReasonMessage, location_name: "StatusReason"))
|
612
615
|
Grant.add_member(:version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Version"))
|
613
616
|
Grant.add_member(:granted_operations, Shapes::ShapeRef.new(shape: AllowedOperationList, required: true, location_name: "GrantedOperations"))
|
617
|
+
Grant.add_member(:options, Shapes::ShapeRef.new(shape: Options, location_name: "Options"))
|
614
618
|
Grant.struct_class = Types::Grant
|
615
619
|
|
616
620
|
GrantList.member = Shapes::ShapeRef.new(shape: Grant)
|
@@ -928,6 +932,9 @@ module Aws::LicenseManager
|
|
928
932
|
NoEntitlementsAllowedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
929
933
|
NoEntitlementsAllowedException.struct_class = Types::NoEntitlementsAllowedException
|
930
934
|
|
935
|
+
Options.add_member(:activation_override_behavior, Shapes::ShapeRef.new(shape: ActivationOverrideBehavior, location_name: "ActivationOverrideBehavior"))
|
936
|
+
Options.struct_class = Types::Options
|
937
|
+
|
931
938
|
OrganizationConfiguration.add_member(:enable_integration, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "EnableIntegration"))
|
932
939
|
OrganizationConfiguration.struct_class = Types::OrganizationConfiguration
|
933
940
|
|
@@ -9,104 +9,46 @@
|
|
9
9
|
|
10
10
|
module Aws::LicenseManager
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
20
|
+
end
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
|
+
end
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
21
25
|
end
|
22
|
-
|
23
|
-
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://license-manager-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
|
+
end
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
|
+
end
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://license-manager-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
|
+
end
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
39
|
+
end
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://license-manager.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
43
|
+
end
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
45
|
+
end
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://license-manager.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
47
|
+
end
|
48
|
+
end
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
50
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
51
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
52
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2xpY2Vuc2UtbWFuYWdlci1maXBzLntSZWdp
|
77
|
-
b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
|
78
|
-
b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
|
79
|
-
XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3Rh
|
80
|
-
Y2sgYXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
|
81
|
-
dXBwb3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRp
|
82
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6
|
83
|
-
IlVzZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
|
84
|
-
b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1
|
85
|
-
ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
|
86
|
-
c3VsdCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVs
|
87
|
-
ZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
|
88
|
-
eyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9s
|
89
|
-
aWNlbnNlLW1hbmFnZXItZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0
|
90
|
-
I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
|
91
|
-
eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
|
92
|
-
OiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
|
93
|
-
IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
|
94
|
-
IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VE
|
95
|
-
dWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
|
96
|
-
b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1
|
97
|
-
ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
|
98
|
-
c3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUi
|
99
|
-
LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
|
100
|
-
Imh0dHBzOi8vbGljZW5zZS1tYW5hZ2VyLntSZWdpb259LntQYXJ0aXRpb25S
|
101
|
-
ZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
|
102
|
-
ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25z
|
103
|
-
IjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBw
|
104
|
-
YXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoi
|
105
|
-
ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
|
106
|
-
Imh0dHBzOi8vbGljZW5zZS1tYW5hZ2VyLntSZWdpb259LntQYXJ0aXRpb25S
|
107
|
-
ZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
|
108
|
-
fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
109
|
-
|
110
|
-
JSON
|
111
53
|
end
|
112
54
|
end
|