aws-sdk-elasticloadbalancingv2 1.81.0 → 1.83.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-elasticloadbalancingv2/client.rb +29 -33
- data/lib/aws-sdk-elasticloadbalancingv2/endpoint_provider.rb +38 -102
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +103 -1087
- data/lib/aws-sdk-elasticloadbalancingv2.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: 525791642b2e92f0e3dcb7984d99afd71d89af20269a295a961e5caebdb7930e
|
4
|
+
data.tar.gz: 429261925b3c2b12a32d3e89ba20ceed4339b2040e5614e22f08046779827d8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e11b9ed767a6c13b405edb400a497a1089934a75cc08b8658d7922159d09d60627bf1db8427a5dd70818e071395124ac058b44ef6e37c539abc4ccb54f89daa3
|
7
|
+
data.tar.gz: ee92124f8600d957413c7bbd20df9d0a43e685596ba9c270af9b13067ba4c5e94fa91526395dd26ea157de2ea70d25cd7a9bd4d8e2af844fa09a4840a024944a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.83.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
11
|
+
1.82.0 (2022-11-17)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
* Feature - Provides new target group attributes to turn on/off cross zone load balancing and configure target group health for Network Load Balancers and Application Load Balancers. Provides improvements to health check configuration for Network Load Balancers.
|
15
|
+
|
4
16
|
1.81.0 (2022-10-25)
|
5
17
|
------------------
|
6
18
|
|
@@ -486,4 +498,4 @@ Unreleased Changes
|
|
486
498
|
1.0.0.rc1 (2016-12-05)
|
487
499
|
------------------
|
488
500
|
|
489
|
-
* Feature - Initial preview release of the `aws-sdk-elasticloadbalancingv2` gem.
|
501
|
+
* Feature - Initial preview release of the `aws-sdk-elasticloadbalancingv2` gem.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.83.0
|
@@ -1413,39 +1413,39 @@ module Aws::ElasticLoadBalancingV2
|
|
1413
1413
|
#
|
1414
1414
|
# @option params [Integer] :health_check_interval_seconds
|
1415
1415
|
# The approximate amount of time, in seconds, between health checks of
|
1416
|
-
# an individual target. If the target group protocol
|
1417
|
-
#
|
1418
|
-
#
|
1419
|
-
#
|
1420
|
-
# default is 10 seconds. If the target type is `lambda`, the default is
|
1421
|
-
# 35 seconds.
|
1416
|
+
# an individual target. The range is 5-300. If the target group protocol
|
1417
|
+
# is TCP, TLS, UDP, TCP\_UDP, HTTP or HTTPS, the default is 30 seconds.
|
1418
|
+
# If the target group protocol is GENEVE, the default is 10 seconds. If
|
1419
|
+
# the target type is `lambda`, the default is 35 seconds.
|
1422
1420
|
#
|
1423
1421
|
# @option params [Integer] :health_check_timeout_seconds
|
1424
1422
|
# The amount of time, in seconds, during which no response from a target
|
1425
|
-
# means a failed health check.
|
1426
|
-
#
|
1427
|
-
# with a protocol of TCP or
|
1428
|
-
#
|
1429
|
-
# target type is `lambda`, the default is 30 seconds.
|
1423
|
+
# means a failed health check. The range is 2–120 seconds. For target
|
1424
|
+
# groups with a protocol of HTTP, the default is 6 seconds. For target
|
1425
|
+
# groups with a protocol of TCP, TLS or HTTPS, the default is 10
|
1426
|
+
# seconds. For target groups with a protocol of GENEVE, the default is 5
|
1427
|
+
# seconds. If the target type is `lambda`, the default is 30 seconds.
|
1430
1428
|
#
|
1431
1429
|
# @option params [Integer] :healthy_threshold_count
|
1432
|
-
# The number of consecutive health
|
1433
|
-
# considering
|
1434
|
-
# protocol
|
1435
|
-
#
|
1436
|
-
# is `lambda`, the default is 5.
|
1430
|
+
# The number of consecutive health check successes required before
|
1431
|
+
# considering a target healthy. The range is 2-10. If the target group
|
1432
|
+
# protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is 5.
|
1433
|
+
# For target groups with a protocol of GENEVE, the default is 3. If the
|
1434
|
+
# target type is `lambda`, the default is 5.
|
1437
1435
|
#
|
1438
1436
|
# @option params [Integer] :unhealthy_threshold_count
|
1439
1437
|
# The number of consecutive health check failures required before
|
1440
|
-
# considering a target unhealthy. If the target group
|
1441
|
-
# or HTTPS, the default is 2.
|
1442
|
-
#
|
1443
|
-
#
|
1444
|
-
# type is `lambda`, the default is 2.
|
1438
|
+
# considering a target unhealthy. The range is 2-10. If the target group
|
1439
|
+
# protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is 2.
|
1440
|
+
# For target groups with a protocol of GENEVE, the default is 3. If the
|
1441
|
+
# target type is `lambda`, the default is 5.
|
1445
1442
|
#
|
1446
1443
|
# @option params [Types::Matcher] :matcher
|
1447
1444
|
# \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
|
1448
|
-
# checking for a successful response from a target.
|
1445
|
+
# checking for a successful response from a target. For target groups
|
1446
|
+
# with a protocol of TCP, TCP\_UDP, UDP or TLS the range is 200-599. For
|
1447
|
+
# target groups with a protocol of HTTP or HTTPS, the range is 200-499.
|
1448
|
+
# For target groups with a protocol of GENEVE, the range is 200-399.
|
1449
1449
|
#
|
1450
1450
|
# @option params [String] :target_type
|
1451
1451
|
# The type of target that you must specify when registering targets with
|
@@ -3576,10 +3576,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3576
3576
|
# Modifies the health checks used when evaluating the health state of
|
3577
3577
|
# the targets in the specified target group.
|
3578
3578
|
#
|
3579
|
-
# If the protocol of the target group is TCP, TLS, UDP, or TCP\_UDP, you
|
3580
|
-
# can't modify the health check protocol, interval, timeout, or success
|
3581
|
-
# codes.
|
3582
|
-
#
|
3583
3579
|
# @option params [required, String] :target_group_arn
|
3584
3580
|
# The Amazon Resource Name (ARN) of the target group.
|
3585
3581
|
#
|
@@ -3612,8 +3608,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3612
3608
|
#
|
3613
3609
|
# @option params [Integer] :health_check_interval_seconds
|
3614
3610
|
# The approximate amount of time, in seconds, between health checks of
|
3615
|
-
# an individual target.
|
3616
|
-
# 10 or 30 seconds.
|
3611
|
+
# an individual target.
|
3617
3612
|
#
|
3618
3613
|
# @option params [Integer] :health_check_timeout_seconds
|
3619
3614
|
# \[HTTP/HTTPS health checks\] The amount of time, in seconds, during
|
@@ -3625,13 +3620,14 @@ module Aws::ElasticLoadBalancingV2
|
|
3625
3620
|
#
|
3626
3621
|
# @option params [Integer] :unhealthy_threshold_count
|
3627
3622
|
# The number of consecutive health check failures required before
|
3628
|
-
# considering the target unhealthy.
|
3629
|
-
# TCP or TLS, this value must be the same as the healthy threshold
|
3630
|
-
# count.
|
3623
|
+
# considering the target unhealthy.
|
3631
3624
|
#
|
3632
3625
|
# @option params [Types::Matcher] :matcher
|
3633
3626
|
# \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
|
3634
|
-
# checking for a successful response from a target.
|
3627
|
+
# checking for a successful response from a target. For target groups
|
3628
|
+
# with a protocol of TCP, TCP\_UDP, UDP or TLS the range is 200-599. For
|
3629
|
+
# target groups with a protocol of HTTP or HTTPS, the range is 200-499.
|
3630
|
+
# For target groups with a protocol of GENEVE, the range is 200-399.
|
3635
3631
|
#
|
3636
3632
|
# @return [Types::ModifyTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3637
3633
|
#
|
@@ -4330,7 +4326,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4330
4326
|
params: params,
|
4331
4327
|
config: config)
|
4332
4328
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4333
|
-
context[:gem_version] = '1.
|
4329
|
+
context[:gem_version] = '1.83.0'
|
4334
4330
|
Seahorse::Client::Request.new(handlers, context)
|
4335
4331
|
end
|
4336
4332
|
|
@@ -9,110 +9,46 @@
|
|
9
9
|
|
10
10
|
module Aws::ElasticLoadBalancingV2
|
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 (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
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"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
|
+
end
|
38
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
39
|
+
end
|
40
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
41
|
+
end
|
42
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
43
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
44
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
45
|
+
end
|
46
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
47
|
+
end
|
48
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
49
|
end
|
22
|
-
|
23
|
-
end
|
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
|
-
dCI6eyJ1cmwiOiJodHRwczovL2VsYXN0aWNsb2FkYmFsYW5jaW5nLWZpcHMu
|
77
|
-
e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9
|
78
|
-
IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBv
|
79
|
-
aW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1
|
80
|
-
YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMg
|
81
|
-
bm90IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsi
|
82
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3si
|
83
|
-
cmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
|
84
|
-
Olt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
|
85
|
-
Olt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0
|
86
|
-
aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUi
|
87
|
-
LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVs
|
88
|
-
ZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5nRXF1YWxzIiwiYXJn
|
89
|
-
diI6WyJhd3MtdXMtZ292Iix7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJl
|
90
|
-
ZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJuYW1lIl19XX1dLCJlbmRwb2ludCI6
|
91
|
-
eyJ1cmwiOiJodHRwczovL2VsYXN0aWNsb2FkYmFsYW5jaW5nLntSZWdpb259
|
92
|
-
LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
|
93
|
-
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9u
|
94
|
-
cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZWxhc3RpY2xvYWRi
|
95
|
-
YWxhbmNpbmctZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
|
96
|
-
ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
|
97
|
-
ZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBT
|
98
|
-
IGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
|
99
|
-
cnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJm
|
100
|
-
biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3Rh
|
101
|
-
Y2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
102
|
-
b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
|
103
|
-
IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
|
104
|
-
LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
|
105
|
-
cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
|
106
|
-
Oi8vZWxhc3RpY2xvYWRiYWxhbmNpbmcue1JlZ2lvbn0ue1BhcnRpdGlvblJl
|
107
|
-
c3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
|
108
|
-
YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMi
|
109
|
-
OltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBh
|
110
|
-
cnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFjayIsInR5cGUiOiJl
|
111
|
-
cnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoi
|
112
|
-
aHR0cHM6Ly9lbGFzdGljbG9hZGJhbGFuY2luZy57UmVnaW9ufS57UGFydGl0
|
113
|
-
aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
114
|
-
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
|
115
|
-
|
116
|
-
JSON
|
117
53
|
end
|
118
54
|
end
|