aws-sdk-imagebuilder 1.41.0 → 1.42.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-imagebuilder/client.rb +33 -21
- data/lib/aws-sdk-imagebuilder/client_api.rb +8 -0
- data/lib/aws-sdk-imagebuilder/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-imagebuilder/endpoint_provider.rb +74 -76
- data/lib/aws-sdk-imagebuilder/types.rb +141 -1157
- data/lib/aws-sdk-imagebuilder.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: e3ff62b7e78c32165ebd2bfa5ba192f7a7037b902d7b050607171d447cc0c8ec
|
4
|
+
data.tar.gz: 7b314262247902383009e412d26b7adcf69588c17c6b01422bd2b9551fd396ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 775a22f301b9db7716e763ca58228b98b21d87c15252013d462271cf0e0ec77d9490c36ae0eb53dc34443a714507d9df38b7b99ccb8a31bc98d8854026f29aec
|
7
|
+
data.tar.gz: b61531a63fc353c8c89fbedc44bbaa6974b65c6888e6d96b1a90b9596cd913491edea908a2b327cbbd82da4b7327ecbd1bb23edc97902307eb90cdb5f5332f7d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.42.0 (2023-01-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for AWS Marketplace product IDs as input during CreateImageRecipe for the parent-image parameter. Add support for listing third-party components.
|
8
|
+
|
4
9
|
1.41.0 (2022-10-25)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.42.0
|
@@ -448,8 +448,7 @@ module Aws::Imagebuilder
|
|
448
448
|
# </note>
|
449
449
|
#
|
450
450
|
# @option params [String] :description
|
451
|
-
#
|
452
|
-
# component.
|
451
|
+
# Describes the contents of the component.
|
453
452
|
#
|
454
453
|
# @option params [String] :change_description
|
455
454
|
# The change description of the component. Describes what change has
|
@@ -457,7 +456,7 @@ module Aws::Imagebuilder
|
|
457
456
|
# other versions of this component.
|
458
457
|
#
|
459
458
|
# @option params [required, String] :platform
|
460
|
-
# The platform of the component.
|
459
|
+
# The operating system platform of the component.
|
461
460
|
#
|
462
461
|
# @option params [Array<String>] :supported_os_versions
|
463
462
|
# The operating system (OS) version supported by the component. If the
|
@@ -479,10 +478,10 @@ module Aws::Imagebuilder
|
|
479
478
|
# component `data` property. You cannot specify both properties.
|
480
479
|
#
|
481
480
|
# @option params [String] :kms_key_id
|
482
|
-
# The ID of the KMS key that
|
481
|
+
# The ID of the KMS key that is used to encrypt this component.
|
483
482
|
#
|
484
483
|
# @option params [Hash<String,String>] :tags
|
485
|
-
# The tags
|
484
|
+
# The tags that apply to the component.
|
486
485
|
#
|
487
486
|
# @option params [required, String] :client_token
|
488
487
|
# The idempotency token of the component.
|
@@ -563,7 +562,8 @@ module Aws::Imagebuilder
|
|
563
562
|
#
|
564
563
|
# @option params [required, Array<Types::ComponentConfiguration>] :components
|
565
564
|
# Components for build and test that are included in the container
|
566
|
-
# recipe.
|
565
|
+
# recipe. Recipes require a minimum of one build component, and can have
|
566
|
+
# a maximum of 20 build and test components in any combination.
|
567
567
|
#
|
568
568
|
# @option params [Types::InstanceConfiguration] :instance_configuration
|
569
569
|
# A group of options that can be used to configure an instance for
|
@@ -997,7 +997,7 @@ module Aws::Imagebuilder
|
|
997
997
|
# </note>
|
998
998
|
#
|
999
999
|
# @option params [required, Array<Types::ComponentConfiguration>] :components
|
1000
|
-
# The components
|
1000
|
+
# The components included in the image recipe.
|
1001
1001
|
#
|
1002
1002
|
# @option params [required, String] :parent_image
|
1003
1003
|
# The base image of the image recipe. The value of the string can be the
|
@@ -1492,6 +1492,8 @@ module Aws::Imagebuilder
|
|
1492
1492
|
# resp.component.date_created #=> String
|
1493
1493
|
# resp.component.tags #=> Hash
|
1494
1494
|
# resp.component.tags["TagKey"] #=> String
|
1495
|
+
# resp.component.publisher #=> String
|
1496
|
+
# resp.component.obfuscate #=> Boolean
|
1495
1497
|
#
|
1496
1498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetComponent AWS API Documentation
|
1497
1499
|
#
|
@@ -1893,6 +1895,7 @@ module Aws::Imagebuilder
|
|
1893
1895
|
# resp.image.tags #=> Hash
|
1894
1896
|
# resp.image.tags["TagKey"] #=> String
|
1895
1897
|
# resp.image.build_type #=> String, one of "USER_INITIATED", "SCHEDULED", "IMPORT"
|
1898
|
+
# resp.image.image_source #=> String, one of "AMAZON_MANAGED", "AWS_MARKETPLACE", "IMPORTED", "CUSTOM"
|
1896
1899
|
#
|
1897
1900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImage AWS API Documentation
|
1898
1901
|
#
|
@@ -2400,6 +2403,8 @@ module Aws::Imagebuilder
|
|
2400
2403
|
# resp.component_summary_list[0].date_created #=> String
|
2401
2404
|
# resp.component_summary_list[0].tags #=> Hash
|
2402
2405
|
# resp.component_summary_list[0].tags["TagKey"] #=> String
|
2406
|
+
# resp.component_summary_list[0].publisher #=> String
|
2407
|
+
# resp.component_summary_list[0].obfuscate #=> Boolean
|
2403
2408
|
# resp.next_token #=> String
|
2404
2409
|
#
|
2405
2410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListComponentBuildVersions AWS API Documentation
|
@@ -2411,8 +2416,10 @@ module Aws::Imagebuilder
|
|
2411
2416
|
req.send_request(options)
|
2412
2417
|
end
|
2413
2418
|
|
2414
|
-
# Returns the list of
|
2415
|
-
#
|
2419
|
+
# Returns the list of components that can be filtered by name, or by
|
2420
|
+
# using the listed `filters` to streamline results. Newly created
|
2421
|
+
# components can take up to two minutes to appear in the ListComponents
|
2422
|
+
# API Results.
|
2416
2423
|
#
|
2417
2424
|
# <note markdown="1"> The semantic version has four nodes:
|
2418
2425
|
# <major>.<minor>.<patch>/<build>. You can
|
@@ -2427,11 +2434,11 @@ module Aws::Imagebuilder
|
|
2427
2434
|
# </note>
|
2428
2435
|
#
|
2429
2436
|
# @option params [String] :owner
|
2430
|
-
#
|
2431
|
-
# request
|
2432
|
-
#
|
2433
|
-
#
|
2434
|
-
#
|
2437
|
+
# Filters results based on the type of owner for the component. By
|
2438
|
+
# default, this request returns a list of components that your account
|
2439
|
+
# owns. To see results for other types of owners, you can specify
|
2440
|
+
# components that Amazon manages, third party components, or components
|
2441
|
+
# that other accounts have shared with you.
|
2435
2442
|
#
|
2436
2443
|
# @option params [Array<Types::Filter>] :filters
|
2437
2444
|
# Use the following filters to streamline results:
|
@@ -2449,7 +2456,7 @@ module Aws::Imagebuilder
|
|
2449
2456
|
# * `version`
|
2450
2457
|
#
|
2451
2458
|
# @option params [Boolean] :by_name
|
2452
|
-
# Returns the list of
|
2459
|
+
# Returns the list of components for the specified name.
|
2453
2460
|
#
|
2454
2461
|
# @option params [Integer] :max_results
|
2455
2462
|
# The maximum items to return in a request.
|
@@ -2469,7 +2476,7 @@ module Aws::Imagebuilder
|
|
2469
2476
|
# @example Request syntax with placeholder values
|
2470
2477
|
#
|
2471
2478
|
# resp = client.list_components({
|
2472
|
-
# owner: "Self", # accepts Self, Shared, Amazon
|
2479
|
+
# owner: "Self", # accepts Self, Shared, Amazon, ThirdParty
|
2473
2480
|
# filters: [
|
2474
2481
|
# {
|
2475
2482
|
# name: "FilterName",
|
@@ -2543,7 +2550,7 @@ module Aws::Imagebuilder
|
|
2543
2550
|
# @example Request syntax with placeholder values
|
2544
2551
|
#
|
2545
2552
|
# resp = client.list_container_recipes({
|
2546
|
-
# owner: "Self", # accepts Self, Shared, Amazon
|
2553
|
+
# owner: "Self", # accepts Self, Shared, Amazon, ThirdParty
|
2547
2554
|
# filters: [
|
2548
2555
|
# {
|
2549
2556
|
# name: "FilterName",
|
@@ -2712,6 +2719,7 @@ module Aws::Imagebuilder
|
|
2712
2719
|
# resp.image_summary_list[0].tags #=> Hash
|
2713
2720
|
# resp.image_summary_list[0].tags["TagKey"] #=> String
|
2714
2721
|
# resp.image_summary_list[0].build_type #=> String, one of "USER_INITIATED", "SCHEDULED", "IMPORT"
|
2722
|
+
# resp.image_summary_list[0].image_source #=> String, one of "AMAZON_MANAGED", "AWS_MARKETPLACE", "IMPORTED", "CUSTOM"
|
2715
2723
|
# resp.next_token #=> String
|
2716
2724
|
#
|
2717
2725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImageBuildVersions AWS API Documentation
|
@@ -2843,6 +2851,7 @@ module Aws::Imagebuilder
|
|
2843
2851
|
# resp.image_summary_list[0].tags #=> Hash
|
2844
2852
|
# resp.image_summary_list[0].tags["TagKey"] #=> String
|
2845
2853
|
# resp.image_summary_list[0].build_type #=> String, one of "USER_INITIATED", "SCHEDULED", "IMPORT"
|
2854
|
+
# resp.image_summary_list[0].image_source #=> String, one of "AMAZON_MANAGED", "AWS_MARKETPLACE", "IMPORTED", "CUSTOM"
|
2846
2855
|
# resp.next_token #=> String
|
2847
2856
|
#
|
2848
2857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImagePipelineImages AWS API Documentation
|
@@ -2971,7 +2980,7 @@ module Aws::Imagebuilder
|
|
2971
2980
|
# @example Request syntax with placeholder values
|
2972
2981
|
#
|
2973
2982
|
# resp = client.list_image_recipes({
|
2974
|
-
# owner: "Self", # accepts Self, Shared, Amazon
|
2983
|
+
# owner: "Self", # accepts Self, Shared, Amazon, ThirdParty
|
2975
2984
|
# filters: [
|
2976
2985
|
# {
|
2977
2986
|
# name: "FilterName",
|
@@ -3005,7 +3014,9 @@ module Aws::Imagebuilder
|
|
3005
3014
|
req.send_request(options)
|
3006
3015
|
end
|
3007
3016
|
|
3008
|
-
# Returns the list of images that you have access to.
|
3017
|
+
# Returns the list of images that you have access to. Newly created
|
3018
|
+
# images can take up to two minutes to appear in the ListImages API
|
3019
|
+
# Results.
|
3009
3020
|
#
|
3010
3021
|
# @option params [String] :owner
|
3011
3022
|
# The owner defines which images you want to list. By default, this
|
@@ -3051,7 +3062,7 @@ module Aws::Imagebuilder
|
|
3051
3062
|
# @example Request syntax with placeholder values
|
3052
3063
|
#
|
3053
3064
|
# resp = client.list_images({
|
3054
|
-
# owner: "Self", # accepts Self, Shared, Amazon
|
3065
|
+
# owner: "Self", # accepts Self, Shared, Amazon, ThirdParty
|
3055
3066
|
# filters: [
|
3056
3067
|
# {
|
3057
3068
|
# name: "FilterName",
|
@@ -3077,6 +3088,7 @@ module Aws::Imagebuilder
|
|
3077
3088
|
# resp.image_version_list[0].owner #=> String
|
3078
3089
|
# resp.image_version_list[0].date_created #=> String
|
3079
3090
|
# resp.image_version_list[0].build_type #=> String, one of "USER_INITIATED", "SCHEDULED", "IMPORT"
|
3091
|
+
# resp.image_version_list[0].image_source #=> String, one of "AMAZON_MANAGED", "AWS_MARKETPLACE", "IMPORTED", "CUSTOM"
|
3080
3092
|
# resp.next_token #=> String
|
3081
3093
|
#
|
3082
3094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImages AWS API Documentation
|
@@ -3790,7 +3802,7 @@ module Aws::Imagebuilder
|
|
3790
3802
|
params: params,
|
3791
3803
|
config: config)
|
3792
3804
|
context[:gem_name] = 'aws-sdk-imagebuilder'
|
3793
|
-
context[:gem_version] = '1.
|
3805
|
+
context[:gem_version] = '1.42.0'
|
3794
3806
|
Seahorse::Client::Request.new(handlers, context)
|
3795
3807
|
end
|
3796
3808
|
|
@@ -153,6 +153,7 @@ module Aws::Imagebuilder
|
|
153
153
|
ImageRecipeArn = Shapes::StringShape.new(name: 'ImageRecipeArn')
|
154
154
|
ImageRecipeSummary = Shapes::StructureShape.new(name: 'ImageRecipeSummary')
|
155
155
|
ImageRecipeSummaryList = Shapes::ListShape.new(name: 'ImageRecipeSummaryList')
|
156
|
+
ImageSource = Shapes::StringShape.new(name: 'ImageSource')
|
156
157
|
ImageState = Shapes::StructureShape.new(name: 'ImageState')
|
157
158
|
ImageStatus = Shapes::StringShape.new(name: 'ImageStatus')
|
158
159
|
ImageSummary = Shapes::StructureShape.new(name: 'ImageSummary')
|
@@ -338,6 +339,8 @@ module Aws::Imagebuilder
|
|
338
339
|
Component.add_member(:encrypted, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "encrypted"))
|
339
340
|
Component.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
|
340
341
|
Component.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
342
|
+
Component.add_member(:publisher, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "publisher"))
|
343
|
+
Component.add_member(:obfuscate, Shapes::ShapeRef.new(shape: Boolean, location_name: "obfuscate"))
|
341
344
|
Component.struct_class = Types::Component
|
342
345
|
|
343
346
|
ComponentConfiguration.add_member(:component_arn, Shapes::ShapeRef.new(shape: ComponentVersionArnOrBuildVersionArn, required: true, location_name: "componentArn"))
|
@@ -378,6 +381,8 @@ module Aws::Imagebuilder
|
|
378
381
|
ComponentSummary.add_member(:change_description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "changeDescription"))
|
379
382
|
ComponentSummary.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
|
380
383
|
ComponentSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
384
|
+
ComponentSummary.add_member(:publisher, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "publisher"))
|
385
|
+
ComponentSummary.add_member(:obfuscate, Shapes::ShapeRef.new(shape: Boolean, location_name: "obfuscate"))
|
381
386
|
ComponentSummary.struct_class = Types::ComponentSummary
|
382
387
|
|
383
388
|
ComponentSummaryList.member = Shapes::ShapeRef.new(shape: ComponentSummary)
|
@@ -780,6 +785,7 @@ module Aws::Imagebuilder
|
|
780
785
|
Image.add_member(:output_resources, Shapes::ShapeRef.new(shape: OutputResources, location_name: "outputResources"))
|
781
786
|
Image.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
782
787
|
Image.add_member(:build_type, Shapes::ShapeRef.new(shape: BuildType, location_name: "buildType"))
|
788
|
+
Image.add_member(:image_source, Shapes::ShapeRef.new(shape: ImageSource, location_name: "imageSource"))
|
783
789
|
Image.struct_class = Types::Image
|
784
790
|
|
785
791
|
ImagePackage.add_member(:package_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "packageName"))
|
@@ -852,6 +858,7 @@ module Aws::Imagebuilder
|
|
852
858
|
ImageSummary.add_member(:output_resources, Shapes::ShapeRef.new(shape: OutputResources, location_name: "outputResources"))
|
853
859
|
ImageSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
854
860
|
ImageSummary.add_member(:build_type, Shapes::ShapeRef.new(shape: BuildType, location_name: "buildType"))
|
861
|
+
ImageSummary.add_member(:image_source, Shapes::ShapeRef.new(shape: ImageSource, location_name: "imageSource"))
|
855
862
|
ImageSummary.struct_class = Types::ImageSummary
|
856
863
|
|
857
864
|
ImageSummaryList.member = Shapes::ShapeRef.new(shape: ImageSummary)
|
@@ -869,6 +876,7 @@ module Aws::Imagebuilder
|
|
869
876
|
ImageVersion.add_member(:owner, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "owner"))
|
870
877
|
ImageVersion.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
|
871
878
|
ImageVersion.add_member(:build_type, Shapes::ShapeRef.new(shape: BuildType, location_name: "buildType"))
|
879
|
+
ImageVersion.add_member(:image_source, Shapes::ShapeRef.new(shape: ImageSource, location_name: "imageSource"))
|
872
880
|
ImageVersion.struct_class = Types::ImageVersion
|
873
881
|
|
874
882
|
ImageVersionList.member = Shapes::ShapeRef.new(shape: ImageVersion)
|
@@ -50,6 +50,9 @@ module Aws::Imagebuilder
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
+
if self[:region].nil?
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
+
end
|
53
56
|
self[:use_dual_stack] = options[:use_dual_stack]
|
54
57
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
58
|
if self[:use_dual_stack].nil?
|
@@ -29,82 +29,80 @@ module Aws::Imagebuilder
|
|
29
29
|
# @api private
|
30
30
|
RULES = <<-JSON
|
31
31
|
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
|
107
|
-
OiJlbmRwb2ludCJ9XX1dfQ==
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
|
33
|
+
YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
|
34
|
+
ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
|
35
|
+
aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
|
36
|
+
ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
|
37
|
+
IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
|
38
|
+
bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
|
39
|
+
aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
|
40
|
+
IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
|
41
|
+
IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
|
42
|
+
aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
|
43
|
+
Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
|
44
|
+
cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
|
45
|
+
bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
|
46
|
+
YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
|
47
|
+
bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
|
48
|
+
ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
|
49
|
+
IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
|
50
|
+
b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
|
51
|
+
ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
|
52
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
|
53
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
|
54
|
+
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
55
|
+
dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
|
56
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
|
57
|
+
ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
|
58
|
+
b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
59
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
|
60
|
+
VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
|
61
|
+
Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
|
62
|
+
b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
|
63
|
+
XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
|
64
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
65
|
+
fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
|
66
|
+
Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
|
67
|
+
bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
|
68
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
69
|
+
b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
|
70
|
+
Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
|
71
|
+
XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
72
|
+
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
73
|
+
InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
74
|
+
IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
|
75
|
+
Ly9pbWFnZWJ1aWxkZXItZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0
|
76
|
+
I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
77
|
+
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10s
|
78
|
+
ImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQg
|
79
|
+
dGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIs
|
80
|
+
InR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
|
81
|
+
YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwi
|
82
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJi
|
83
|
+
b29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJh
|
84
|
+
cmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBT
|
85
|
+
Il19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
86
|
+
XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9pbWFnZWJ1aWxkZXItZmlw
|
87
|
+
cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
|
88
|
+
ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
|
89
|
+
LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1
|
90
|
+
dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBl
|
91
|
+
IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
|
92
|
+
YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwi
|
93
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJi
|
94
|
+
b29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJh
|
95
|
+
cmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFs
|
96
|
+
U3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
97
|
+
bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2ltYWdlYnVpbGRl
|
98
|
+
ci57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZp
|
99
|
+
eH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5k
|
100
|
+
cG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVhbFN0YWNr
|
101
|
+
IGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
|
102
|
+
cnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
|
103
|
+
OltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2ltYWdlYnVpbGRlci57
|
104
|
+
UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0
|
105
|
+
aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
|
108
106
|
|
109
107
|
JSON
|
110
108
|
end
|