aws-sdk-ssm 1.145.0 → 1.147.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +23 -10
- data/lib/aws-sdk-ssm/client_api.rb +3 -0
- data/lib/aws-sdk-ssm/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-ssm/endpoint_provider.rb +80 -81
- data/lib/aws-sdk-ssm/types.rb +18 -3265
- data/lib/aws-sdk-ssm.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: 62f7c393c9b3b4d50b770f23e6e99cfda50ec439acf107ecc40caab7472d682a
|
|
4
|
+
data.tar.gz: 144e8cf93fd577426b15e4296613883d697d5a8302ad6e42a2b81c1d69bd5e61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53d21d07e11e11580266d00f86d988e2a95337e53626a6c51e6649aeaf26fbe63a9efe9a4531a137c7352bd7d19ca7d51d68e1e01003d772d7eff2cef6fb7ad4
|
|
7
|
+
data.tar.gz: 25e4f95cb4d30cd61a4c226c5b64bd1b46e60d856ac4fd8911fdb46fb152f767edca3d4c41a04a89e527afeac7dcecdf8a21454bb52fffa28100993d81a5cf70
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.147.0 (2023-01-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding support for QuickSetup Document Type in Systems Manager
|
|
8
|
+
|
|
9
|
+
1.146.0 (2022-12-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Doc-only updates for December 2022.
|
|
13
|
+
|
|
4
14
|
1.145.0 (2022-11-16)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.147.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
|
@@ -1405,6 +1405,8 @@ module Aws::SSM
|
|
|
1405
1405
|
# {
|
|
1406
1406
|
# name: "DocumentARN", # required
|
|
1407
1407
|
# version: "DocumentVersion",
|
|
1408
|
+
# require_type: "RequireType",
|
|
1409
|
+
# version_name: "DocumentVersionName",
|
|
1408
1410
|
# },
|
|
1409
1411
|
# ],
|
|
1410
1412
|
# attachments: [
|
|
@@ -1417,7 +1419,7 @@ module Aws::SSM
|
|
|
1417
1419
|
# name: "DocumentName", # required
|
|
1418
1420
|
# display_name: "DocumentDisplayName",
|
|
1419
1421
|
# version_name: "DocumentVersionName",
|
|
1420
|
-
# document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar, Automation.ChangeTemplate, ProblemAnalysis, ProblemAnalysisTemplate, CloudFormation, ConformancePackTemplate
|
|
1422
|
+
# document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar, Automation.ChangeTemplate, ProblemAnalysis, ProblemAnalysisTemplate, CloudFormation, ConformancePackTemplate, QuickSetup
|
|
1421
1423
|
# document_format: "YAML", # accepts YAML, JSON, TEXT
|
|
1422
1424
|
# target_type: "TargetType",
|
|
1423
1425
|
# tags: [
|
|
@@ -1449,7 +1451,7 @@ module Aws::SSM
|
|
|
1449
1451
|
# resp.document_description.parameters[0].default_value #=> String
|
|
1450
1452
|
# resp.document_description.platform_types #=> Array
|
|
1451
1453
|
# resp.document_description.platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
|
|
1452
|
-
# resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate"
|
|
1454
|
+
# resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
|
|
1453
1455
|
# resp.document_description.schema_version #=> String
|
|
1454
1456
|
# resp.document_description.latest_version #=> String
|
|
1455
1457
|
# resp.document_description.default_version #=> String
|
|
@@ -1463,6 +1465,8 @@ module Aws::SSM
|
|
|
1463
1465
|
# resp.document_description.requires #=> Array
|
|
1464
1466
|
# resp.document_description.requires[0].name #=> String
|
|
1465
1467
|
# resp.document_description.requires[0].version #=> String
|
|
1468
|
+
# resp.document_description.requires[0].require_type #=> String
|
|
1469
|
+
# resp.document_description.requires[0].version_name #=> String
|
|
1466
1470
|
# resp.document_description.author #=> String
|
|
1467
1471
|
# resp.document_description.review_information #=> Array
|
|
1468
1472
|
# resp.document_description.review_information[0].reviewed_time #=> Time
|
|
@@ -3439,7 +3443,7 @@ module Aws::SSM
|
|
|
3439
3443
|
# resp.document.parameters[0].default_value #=> String
|
|
3440
3444
|
# resp.document.platform_types #=> Array
|
|
3441
3445
|
# resp.document.platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
|
|
3442
|
-
# resp.document.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate"
|
|
3446
|
+
# resp.document.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
|
|
3443
3447
|
# resp.document.schema_version #=> String
|
|
3444
3448
|
# resp.document.latest_version #=> String
|
|
3445
3449
|
# resp.document.default_version #=> String
|
|
@@ -3453,6 +3457,8 @@ module Aws::SSM
|
|
|
3453
3457
|
# resp.document.requires #=> Array
|
|
3454
3458
|
# resp.document.requires[0].name #=> String
|
|
3455
3459
|
# resp.document.requires[0].version #=> String
|
|
3460
|
+
# resp.document.requires[0].require_type #=> String
|
|
3461
|
+
# resp.document.requires[0].version_name #=> String
|
|
3456
3462
|
# resp.document.author #=> String
|
|
3457
3463
|
# resp.document.review_information #=> Array
|
|
3458
3464
|
# resp.document.review_information[0].reviewed_time #=> Time
|
|
@@ -5793,11 +5799,13 @@ module Aws::SSM
|
|
|
5793
5799
|
# resp.status #=> String, one of "Creating", "Active", "Updating", "Deleting", "Failed"
|
|
5794
5800
|
# resp.status_information #=> String
|
|
5795
5801
|
# resp.content #=> String
|
|
5796
|
-
# resp.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate"
|
|
5802
|
+
# resp.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
|
|
5797
5803
|
# resp.document_format #=> String, one of "YAML", "JSON", "TEXT"
|
|
5798
5804
|
# resp.requires #=> Array
|
|
5799
5805
|
# resp.requires[0].name #=> String
|
|
5800
5806
|
# resp.requires[0].version #=> String
|
|
5807
|
+
# resp.requires[0].require_type #=> String
|
|
5808
|
+
# resp.requires[0].version_name #=> String
|
|
5801
5809
|
# resp.attachments_content #=> Array
|
|
5802
5810
|
# resp.attachments_content[0].name #=> String
|
|
5803
5811
|
# resp.attachments_content[0].size #=> Integer
|
|
@@ -7795,7 +7803,7 @@ module Aws::SSM
|
|
|
7795
7803
|
# resp.document_identifiers[0].platform_types #=> Array
|
|
7796
7804
|
# resp.document_identifiers[0].platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
|
|
7797
7805
|
# resp.document_identifiers[0].document_version #=> String
|
|
7798
|
-
# resp.document_identifiers[0].document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate"
|
|
7806
|
+
# resp.document_identifiers[0].document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
|
|
7799
7807
|
# resp.document_identifiers[0].schema_version #=> String
|
|
7800
7808
|
# resp.document_identifiers[0].document_format #=> String, one of "YAML", "JSON", "TEXT"
|
|
7801
7809
|
# resp.document_identifiers[0].target_type #=> String
|
|
@@ -7805,6 +7813,8 @@ module Aws::SSM
|
|
|
7805
7813
|
# resp.document_identifiers[0].requires #=> Array
|
|
7806
7814
|
# resp.document_identifiers[0].requires[0].name #=> String
|
|
7807
7815
|
# resp.document_identifiers[0].requires[0].version #=> String
|
|
7816
|
+
# resp.document_identifiers[0].requires[0].require_type #=> String
|
|
7817
|
+
# resp.document_identifiers[0].requires[0].version_name #=> String
|
|
7808
7818
|
# resp.document_identifiers[0].review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
|
|
7809
7819
|
# resp.document_identifiers[0].author #=> String
|
|
7810
7820
|
# resp.next_token #=> String
|
|
@@ -8785,8 +8795,8 @@ module Aws::SSM
|
|
|
8785
8795
|
# OpsCenter operational work items (OpsItems).
|
|
8786
8796
|
#
|
|
8787
8797
|
# @option params [required, String] :resource_arn
|
|
8788
|
-
# Amazon Resource Name (ARN) of the resource to which
|
|
8789
|
-
#
|
|
8798
|
+
# Amazon Resource Name (ARN) of the resource to which you want to attach
|
|
8799
|
+
# a policy.
|
|
8790
8800
|
#
|
|
8791
8801
|
# @option params [required, String] :policy
|
|
8792
8802
|
# A policy you want to associate with a resource.
|
|
@@ -8796,7 +8806,8 @@ module Aws::SSM
|
|
|
8796
8806
|
#
|
|
8797
8807
|
# @option params [String] :policy_hash
|
|
8798
8808
|
# ID of the current policy version. The hash helps to prevent a
|
|
8799
|
-
# situation where multiple users attempt to overwrite a policy.
|
|
8809
|
+
# situation where multiple users attempt to overwrite a policy. You must
|
|
8810
|
+
# provide this hash when updating or deleting a policy.
|
|
8800
8811
|
#
|
|
8801
8812
|
# @return [Types::PutResourcePolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8802
8813
|
#
|
|
@@ -10815,7 +10826,7 @@ module Aws::SSM
|
|
|
10815
10826
|
# resp.document_description.parameters[0].default_value #=> String
|
|
10816
10827
|
# resp.document_description.platform_types #=> Array
|
|
10817
10828
|
# resp.document_description.platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
|
|
10818
|
-
# resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate"
|
|
10829
|
+
# resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
|
|
10819
10830
|
# resp.document_description.schema_version #=> String
|
|
10820
10831
|
# resp.document_description.latest_version #=> String
|
|
10821
10832
|
# resp.document_description.default_version #=> String
|
|
@@ -10829,6 +10840,8 @@ module Aws::SSM
|
|
|
10829
10840
|
# resp.document_description.requires #=> Array
|
|
10830
10841
|
# resp.document_description.requires[0].name #=> String
|
|
10831
10842
|
# resp.document_description.requires[0].version #=> String
|
|
10843
|
+
# resp.document_description.requires[0].require_type #=> String
|
|
10844
|
+
# resp.document_description.requires[0].version_name #=> String
|
|
10832
10845
|
# resp.document_description.author #=> String
|
|
10833
10846
|
# resp.document_description.review_information #=> Array
|
|
10834
10847
|
# resp.document_description.review_information[0].reviewed_time #=> Time
|
|
@@ -12118,7 +12131,7 @@ module Aws::SSM
|
|
|
12118
12131
|
params: params,
|
|
12119
12132
|
config: config)
|
|
12120
12133
|
context[:gem_name] = 'aws-sdk-ssm'
|
|
12121
|
-
context[:gem_version] = '1.
|
|
12134
|
+
context[:gem_version] = '1.147.0'
|
|
12122
12135
|
Seahorse::Client::Request.new(handlers, context)
|
|
12123
12136
|
end
|
|
12124
12137
|
|
|
@@ -991,6 +991,7 @@ module Aws::SSM
|
|
|
991
991
|
RemainingCount = Shapes::IntegerShape.new(name: 'RemainingCount')
|
|
992
992
|
RemoveTagsFromResourceRequest = Shapes::StructureShape.new(name: 'RemoveTagsFromResourceRequest')
|
|
993
993
|
RemoveTagsFromResourceResult = Shapes::StructureShape.new(name: 'RemoveTagsFromResourceResult')
|
|
994
|
+
RequireType = Shapes::StringShape.new(name: 'RequireType')
|
|
994
995
|
ResetServiceSettingRequest = Shapes::StructureShape.new(name: 'ResetServiceSettingRequest')
|
|
995
996
|
ResetServiceSettingResult = Shapes::StructureShape.new(name: 'ResetServiceSettingResult')
|
|
996
997
|
ResolvedTargets = Shapes::StructureShape.new(name: 'ResolvedTargets')
|
|
@@ -2376,6 +2377,8 @@ module Aws::SSM
|
|
|
2376
2377
|
|
|
2377
2378
|
DocumentRequires.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "Name"))
|
|
2378
2379
|
DocumentRequires.add_member(:version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "Version"))
|
|
2380
|
+
DocumentRequires.add_member(:require_type, Shapes::ShapeRef.new(shape: RequireType, location_name: "RequireType"))
|
|
2381
|
+
DocumentRequires.add_member(:version_name, Shapes::ShapeRef.new(shape: DocumentVersionName, location_name: "VersionName"))
|
|
2379
2382
|
DocumentRequires.struct_class = Types::DocumentRequires
|
|
2380
2383
|
|
|
2381
2384
|
DocumentRequiresList.member = Shapes::ShapeRef.new(shape: DocumentRequires)
|
|
@@ -50,6 +50,9 @@ module Aws::SSM
|
|
|
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,87 +29,86 @@ module Aws::SSM
|
|
|
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
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
|
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
|
+
Ly9zc20tZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFj
|
|
76
|
+
a0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
|
|
77
|
+
eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
|
|
78
|
+
RklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0
|
|
79
|
+
aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJl
|
|
80
|
+
cnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
|
81
|
+
LCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRy
|
|
82
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
|
|
83
|
+
YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJy
|
|
84
|
+
ZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0
|
|
85
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6
|
|
86
|
+
InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdF
|
|
87
|
+
cXVhbHMiLCJhcmd2IjpbImF3cy11cy1nb3YiLHsiZm4iOiJnZXRBdHRyIiwi
|
|
88
|
+
YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sIm5hbWUiXX1dfV0s
|
|
89
|
+
ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc3NtLntSZWdpb259LntQYXJ0
|
|
90
|
+
aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
|
|
91
|
+
ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W10s
|
|
92
|
+
ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc3NtLWZpcHMue1JlZ2lvbn0u
|
|
93
|
+
e1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30s
|
|
94
|
+
ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0
|
|
95
|
+
aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBh
|
|
96
|
+
cnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3Ii
|
|
97
|
+
fV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
|
|
98
|
+
diI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRy
|
|
99
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
|
|
100
|
+
YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJy
|
|
101
|
+
ZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1d
|
|
102
|
+
fV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJl
|
|
103
|
+
bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3NzbS57UmVnaW9ufS57UGFydGl0
|
|
104
|
+
aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
|
|
105
|
+
fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0
|
|
106
|
+
aW9ucyI6W10sImVycm9yIjoiRHVhbFN0YWNrIGlzIGVuYWJsZWQgYnV0IHRo
|
|
107
|
+
aXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRHVhbFN0YWNrIiwidHlw
|
|
108
|
+
ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1
|
|
109
|
+
cmwiOiJodHRwczovL3NzbS57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ru
|
|
110
|
+
c1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
|
|
111
|
+
IjoiZW5kcG9pbnQifV19XX0=
|
|
113
112
|
|
|
114
113
|
JSON
|
|
115
114
|
end
|