aws-sdk-ecs 1.106.0 → 1.108.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +25 -1
- data/lib/aws-sdk-ecs/client_api.rb +3 -0
- data/lib/aws-sdk-ecs/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-ecs/endpoint_provider.rb +74 -75
- data/lib/aws-sdk-ecs/types.rb +178 -2250
- data/lib/aws-sdk-ecs.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: f7fb94232a4a8f40897a7f0ec9979932494461cd89b7c73f6b570e0877b30f83
|
4
|
+
data.tar.gz: d90493588b52727e51b343d4828231f07afc1ff086ea3526a045e6a1d3e9d725
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3b990f0d2967a46235d9367a9eb295514509fa2df0028dc1c715aee6096029e6e8d6ebfd1038ef87ac486cf0bf5cc55a60d2541aa384a6b8298b6301e980e15
|
7
|
+
data.tar.gz: 0bf612cb0bdafb0ceb23f39a49bb014226f1d5bad4036499246f4b907ce2ceb24f9ed55e27033a72233c1bc0bc4498c6daf7448fe00713eacb6d15bdfde222c9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.108.0 (2022-12-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for container port ranges in ECS, a new capability that allows customers to provide container port ranges to simplify use cases where multiple ports are in use in a container. This release updates TaskDefinition mutation APIs and the Task description APIs.
|
8
|
+
|
9
|
+
1.107.0 (2022-12-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for Amazon ECS
|
13
|
+
|
4
14
|
1.106.0 (2022-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.108.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -2570,6 +2570,7 @@ module Aws::ECS
|
|
2570
2570
|
# resp.task_definition.container_definitions[0].port_mappings[0].protocol #=> String, one of "tcp", "udp"
|
2571
2571
|
# resp.task_definition.container_definitions[0].port_mappings[0].name #=> String
|
2572
2572
|
# resp.task_definition.container_definitions[0].port_mappings[0].app_protocol #=> String, one of "http", "http2", "grpc"
|
2573
|
+
# resp.task_definition.container_definitions[0].port_mappings[0].container_port_range #=> String
|
2573
2574
|
# resp.task_definition.container_definitions[0].essential #=> Boolean
|
2574
2575
|
# resp.task_definition.container_definitions[0].entry_point #=> Array
|
2575
2576
|
# resp.task_definition.container_definitions[0].entry_point[0] #=> String
|
@@ -3481,6 +3482,7 @@ module Aws::ECS
|
|
3481
3482
|
# resp.task_definition.container_definitions[0].port_mappings[0].protocol #=> String, one of "tcp", "udp"
|
3482
3483
|
# resp.task_definition.container_definitions[0].port_mappings[0].name #=> String
|
3483
3484
|
# resp.task_definition.container_definitions[0].port_mappings[0].app_protocol #=> String, one of "http", "http2", "grpc"
|
3485
|
+
# resp.task_definition.container_definitions[0].port_mappings[0].container_port_range #=> String
|
3484
3486
|
# resp.task_definition.container_definitions[0].essential #=> Boolean
|
3485
3487
|
# resp.task_definition.container_definitions[0].entry_point #=> Array
|
3486
3488
|
# resp.task_definition.container_definitions[0].entry_point[0] #=> String
|
@@ -3855,6 +3857,8 @@ module Aws::ECS
|
|
3855
3857
|
# resp.tasks[0].containers[0].network_bindings[0].container_port #=> Integer
|
3856
3858
|
# resp.tasks[0].containers[0].network_bindings[0].host_port #=> Integer
|
3857
3859
|
# resp.tasks[0].containers[0].network_bindings[0].protocol #=> String, one of "tcp", "udp"
|
3860
|
+
# resp.tasks[0].containers[0].network_bindings[0].container_port_range #=> String
|
3861
|
+
# resp.tasks[0].containers[0].network_bindings[0].host_port_range #=> String
|
3858
3862
|
# resp.tasks[0].containers[0].network_interfaces #=> Array
|
3859
3863
|
# resp.tasks[0].containers[0].network_interfaces[0].attachment_id #=> String
|
3860
3864
|
# resp.tasks[0].containers[0].network_interfaces[0].private_ipv_4_address #=> String
|
@@ -4000,6 +4004,14 @@ module Aws::ECS
|
|
4000
4004
|
# mismatch between the condition key value and the corresponding
|
4001
4005
|
# parameter value.
|
4002
4006
|
#
|
4007
|
+
# For information about required permissions and considerations, see
|
4008
|
+
# [Using Amazon ECS Exec for debugging][1] in the *Amazon ECS Developer
|
4009
|
+
# Guide*.
|
4010
|
+
#
|
4011
|
+
#
|
4012
|
+
#
|
4013
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-exec.htm
|
4014
|
+
#
|
4003
4015
|
# @option params [String] :cluster
|
4004
4016
|
# The Amazon Resource Name (ARN) or short name of the cluster the task
|
4005
4017
|
# is running in. If you do not specify a cluster, the default cluster is
|
@@ -6147,6 +6159,7 @@ module Aws::ECS
|
|
6147
6159
|
# protocol: "tcp", # accepts tcp, udp
|
6148
6160
|
# name: "String",
|
6149
6161
|
# app_protocol: "http", # accepts http, http2, grpc
|
6162
|
+
# container_port_range: "String",
|
6150
6163
|
# },
|
6151
6164
|
# ],
|
6152
6165
|
# essential: false,
|
@@ -6378,6 +6391,7 @@ module Aws::ECS
|
|
6378
6391
|
# resp.task_definition.container_definitions[0].port_mappings[0].protocol #=> String, one of "tcp", "udp"
|
6379
6392
|
# resp.task_definition.container_definitions[0].port_mappings[0].name #=> String
|
6380
6393
|
# resp.task_definition.container_definitions[0].port_mappings[0].app_protocol #=> String, one of "http", "http2", "grpc"
|
6394
|
+
# resp.task_definition.container_definitions[0].port_mappings[0].container_port_range #=> String
|
6381
6395
|
# resp.task_definition.container_definitions[0].essential #=> Boolean
|
6382
6396
|
# resp.task_definition.container_definitions[0].entry_point #=> Array
|
6383
6397
|
# resp.task_definition.container_definitions[0].entry_point[0] #=> String
|
@@ -6950,6 +6964,8 @@ module Aws::ECS
|
|
6950
6964
|
# resp.tasks[0].containers[0].network_bindings[0].container_port #=> Integer
|
6951
6965
|
# resp.tasks[0].containers[0].network_bindings[0].host_port #=> Integer
|
6952
6966
|
# resp.tasks[0].containers[0].network_bindings[0].protocol #=> String, one of "tcp", "udp"
|
6967
|
+
# resp.tasks[0].containers[0].network_bindings[0].container_port_range #=> String
|
6968
|
+
# resp.tasks[0].containers[0].network_bindings[0].host_port_range #=> String
|
6953
6969
|
# resp.tasks[0].containers[0].network_interfaces #=> Array
|
6954
6970
|
# resp.tasks[0].containers[0].network_interfaces[0].attachment_id #=> String
|
6955
6971
|
# resp.tasks[0].containers[0].network_interfaces[0].private_ipv_4_address #=> String
|
@@ -7258,6 +7274,8 @@ module Aws::ECS
|
|
7258
7274
|
# resp.tasks[0].containers[0].network_bindings[0].container_port #=> Integer
|
7259
7275
|
# resp.tasks[0].containers[0].network_bindings[0].host_port #=> Integer
|
7260
7276
|
# resp.tasks[0].containers[0].network_bindings[0].protocol #=> String, one of "tcp", "udp"
|
7277
|
+
# resp.tasks[0].containers[0].network_bindings[0].container_port_range #=> String
|
7278
|
+
# resp.tasks[0].containers[0].network_bindings[0].host_port_range #=> String
|
7261
7279
|
# resp.tasks[0].containers[0].network_interfaces #=> Array
|
7262
7280
|
# resp.tasks[0].containers[0].network_interfaces[0].attachment_id #=> String
|
7263
7281
|
# resp.tasks[0].containers[0].network_interfaces[0].private_ipv_4_address #=> String
|
@@ -7424,6 +7442,8 @@ module Aws::ECS
|
|
7424
7442
|
# resp.task.containers[0].network_bindings[0].container_port #=> Integer
|
7425
7443
|
# resp.task.containers[0].network_bindings[0].host_port #=> Integer
|
7426
7444
|
# resp.task.containers[0].network_bindings[0].protocol #=> String, one of "tcp", "udp"
|
7445
|
+
# resp.task.containers[0].network_bindings[0].container_port_range #=> String
|
7446
|
+
# resp.task.containers[0].network_bindings[0].host_port_range #=> String
|
7427
7447
|
# resp.task.containers[0].network_interfaces #=> Array
|
7428
7448
|
# resp.task.containers[0].network_interfaces[0].attachment_id #=> String
|
7429
7449
|
# resp.task.containers[0].network_interfaces[0].private_ipv_4_address #=> String
|
@@ -7598,6 +7618,8 @@ module Aws::ECS
|
|
7598
7618
|
# container_port: 1,
|
7599
7619
|
# host_port: 1,
|
7600
7620
|
# protocol: "tcp", # accepts tcp, udp
|
7621
|
+
# container_port_range: "String",
|
7622
|
+
# host_port_range: "String",
|
7601
7623
|
# },
|
7602
7624
|
# ],
|
7603
7625
|
# })
|
@@ -7677,6 +7699,8 @@ module Aws::ECS
|
|
7677
7699
|
# container_port: 1,
|
7678
7700
|
# host_port: 1,
|
7679
7701
|
# protocol: "tcp", # accepts tcp, udp
|
7702
|
+
# container_port_range: "String",
|
7703
|
+
# host_port_range: "String",
|
7680
7704
|
# },
|
7681
7705
|
# ],
|
7682
7706
|
# reason: "String",
|
@@ -9349,7 +9373,7 @@ module Aws::ECS
|
|
9349
9373
|
params: params,
|
9350
9374
|
config: config)
|
9351
9375
|
context[:gem_name] = 'aws-sdk-ecs'
|
9352
|
-
context[:gem_version] = '1.
|
9376
|
+
context[:gem_version] = '1.108.0'
|
9353
9377
|
Seahorse::Client::Request.new(handlers, context)
|
9354
9378
|
end
|
9355
9379
|
|
@@ -1165,6 +1165,8 @@ module Aws::ECS
|
|
1165
1165
|
NetworkBinding.add_member(:container_port, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "containerPort"))
|
1166
1166
|
NetworkBinding.add_member(:host_port, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "hostPort"))
|
1167
1167
|
NetworkBinding.add_member(:protocol, Shapes::ShapeRef.new(shape: TransportProtocol, location_name: "protocol"))
|
1168
|
+
NetworkBinding.add_member(:container_port_range, Shapes::ShapeRef.new(shape: String, location_name: "containerPortRange"))
|
1169
|
+
NetworkBinding.add_member(:host_port_range, Shapes::ShapeRef.new(shape: String, location_name: "hostPortRange"))
|
1168
1170
|
NetworkBinding.struct_class = Types::NetworkBinding
|
1169
1171
|
|
1170
1172
|
NetworkBindings.member = Shapes::ShapeRef.new(shape: NetworkBinding)
|
@@ -1208,6 +1210,7 @@ module Aws::ECS
|
|
1208
1210
|
PortMapping.add_member(:protocol, Shapes::ShapeRef.new(shape: TransportProtocol, location_name: "protocol"))
|
1209
1211
|
PortMapping.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
1210
1212
|
PortMapping.add_member(:app_protocol, Shapes::ShapeRef.new(shape: ApplicationProtocol, location_name: "appProtocol"))
|
1213
|
+
PortMapping.add_member(:container_port_range, Shapes::ShapeRef.new(shape: String, location_name: "containerPortRange"))
|
1211
1214
|
PortMapping.struct_class = Types::PortMapping
|
1212
1215
|
|
1213
1216
|
PortMappingList.member = Shapes::ShapeRef.new(shape: PortMapping)
|
@@ -50,6 +50,9 @@ module Aws::ECS
|
|
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,81 @@ module Aws::ECS
|
|
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
|
-
ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
|
81
|
-
ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
|
82
|
-
IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
|
83
|
-
cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
84
|
-
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
|
85
|
-
QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
|
86
|
-
b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
87
|
-
dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
|
88
|
-
IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9lY3MtZmlwcy57UmVn
|
89
|
-
aW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
|
90
|
-
Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJj
|
91
|
-
b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRo
|
92
|
-
aXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJl
|
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
|
+
Ly9lY3MtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFj
|
76
|
+
a0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
|
77
|
+
eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
|
78
|
+
RklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0
|
79
|
+
aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJl
|
93
80
|
cnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
81
|
+
LCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRy
|
82
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
|
83
|
+
YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJy
|
84
|
+
ZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0
|
85
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6
|
86
|
+
InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7
|
87
|
+
InVybCI6Imh0dHBzOi8vZWNzLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJl
|
88
|
+
c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
|
89
|
+
fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVy
|
90
|
+
cm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2Vz
|
91
|
+
IG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
|
92
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
|
93
|
+
VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
|
94
|
+
W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6
|
95
|
+
W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRp
|
96
|
+
b25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0
|
97
|
+
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1
|
98
|
+
cmwiOiJodHRwczovL2Vjcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1
|
99
|
+
YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6
|
100
|
+
e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVy
|
101
|
+
cm9yIjoiRHVhbFN0YWNrIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9u
|
102
|
+
IGRvZXMgbm90IHN1cHBvcnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1d
|
103
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
|
104
|
+
L2Vjcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJw
|
105
|
+
cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
|
106
|
+
fV19XX0=
|
108
107
|
|
109
108
|
JSON
|
110
109
|
end
|