aws-sdk-locationservice 1.25.0 → 1.27.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-locationservice/client.rb +110 -31
- data/lib/aws-sdk-locationservice/client_api.rb +4 -0
- data/lib/aws-sdk-locationservice/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-locationservice/endpoint_provider.rb +74 -72
- data/lib/aws-sdk-locationservice/types.rb +147 -732
- data/lib/aws-sdk-locationservice.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: a727051b2b51410bc2f04a75bbb93b968a6ffc1a38153d97ae709d939c1e84ef
|
4
|
+
data.tar.gz: 2252b944c806a3a2a33140385fed01d36ed3d5afd317e2174c6d132811a1204d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53fd2c99eb8dd2a8fdd114e2e7d9f7d2eebd49378812a50f592241f60149e2aa48ab06c5d7cb605442fa6f5ab97978f7f299b7729a1c5efe0b835d9063d9c78b
|
7
|
+
data.tar.gz: 51520861979a521445174f7b0e52960e2517b5216039463ee3838649eb77421113a38a494dc89d9051bef062484963dbb0c1eca3b3f604e99c6ee72a6acb28de
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.27.0 (2023-01-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for two new route travel models, Bicycle and Motorcycle which can be used with Grab data source.
|
8
|
+
|
9
|
+
1.26.0 (2022-12-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for a new style, "VectorOpenDataStandardLight" which can be used with the new data source, "Open Data Maps (Preview)".
|
13
|
+
|
4
14
|
1.25.0 (2022-10-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.27.0
|
@@ -884,7 +884,19 @@ module Aws::LocationService
|
|
884
884
|
# @option params [String] :travel_mode
|
885
885
|
# Specifies the mode of transport when calculating a route. Used in
|
886
886
|
# estimating the speed of travel and road compatibility. You can choose
|
887
|
-
# `Car`, `Truck`, or `
|
887
|
+
# `Car`, `Truck`, `Walking`, `Bicycle` or `Motorcycle` as options for
|
888
|
+
# the `TravelMode`.
|
889
|
+
#
|
890
|
+
# <note markdown="1"> `Bicycle` and `Motorcycle` are only valid when using Grab as a data
|
891
|
+
# provider, and only within Southeast Asia.
|
892
|
+
#
|
893
|
+
# `Truck` is not available for Grab.
|
894
|
+
#
|
895
|
+
# For more details on the using Grab for routing, including areas of
|
896
|
+
# coverage, see [GrabMaps][1] in the *Amazon Location Service Developer
|
897
|
+
# Guide*.
|
898
|
+
#
|
899
|
+
# </note>
|
888
900
|
#
|
889
901
|
# The `TravelMode` you specify also determines how you specify route
|
890
902
|
# preferences:
|
@@ -895,6 +907,10 @@ module Aws::LocationService
|
|
895
907
|
#
|
896
908
|
# Default Value: `Car`
|
897
909
|
#
|
910
|
+
#
|
911
|
+
#
|
912
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
|
913
|
+
#
|
898
914
|
# @option params [Types::CalculateRouteTruckModeOptions] :truck_mode_options
|
899
915
|
# Specifies route preferences when traveling by `Truck`, such as
|
900
916
|
# avoiding routes that use ferries or tolls, and truck specifications to
|
@@ -950,7 +966,7 @@ module Aws::LocationService
|
|
950
966
|
# destination_position: [1.0], # required
|
951
967
|
# distance_unit: "Kilometers", # accepts Kilometers, Miles
|
952
968
|
# include_leg_geometry: false,
|
953
|
-
# travel_mode: "Car", # accepts Car, Truck, Walking
|
969
|
+
# travel_mode: "Car", # accepts Car, Truck, Walking, Bicycle, Motorcycle
|
954
970
|
# truck_mode_options: {
|
955
971
|
# avoid_ferries: false,
|
956
972
|
# avoid_tolls: false,
|
@@ -1158,8 +1174,22 @@ module Aws::LocationService
|
|
1158
1174
|
#
|
1159
1175
|
# * If traveling by `Truck` use the `TruckModeOptions` parameter.
|
1160
1176
|
#
|
1177
|
+
# <note markdown="1"> `Bicycle` or `Motorcycle` are only valid when using `Grab` as a data
|
1178
|
+
# provider, and only within Southeast Asia.
|
1179
|
+
#
|
1180
|
+
# `Truck` is not available for Grab.
|
1181
|
+
#
|
1182
|
+
# For more information about using Grab as a data provider, see
|
1183
|
+
# [GrabMaps][1] in the *Amazon Location Service Developer Guide*.
|
1184
|
+
#
|
1185
|
+
# </note>
|
1186
|
+
#
|
1161
1187
|
# Default Value: `Car`
|
1162
1188
|
#
|
1189
|
+
#
|
1190
|
+
#
|
1191
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
|
1192
|
+
#
|
1163
1193
|
# @option params [Types::CalculateRouteTruckModeOptions] :truck_mode_options
|
1164
1194
|
# Specifies route preferences when traveling by `Truck`, such as
|
1165
1195
|
# avoiding routes that use ferries or tolls, and truck specifications to
|
@@ -1191,7 +1221,7 @@ module Aws::LocationService
|
|
1191
1221
|
# [1.0],
|
1192
1222
|
# ],
|
1193
1223
|
# distance_unit: "Kilometers", # accepts Kilometers, Miles
|
1194
|
-
# travel_mode: "Car", # accepts Car, Truck, Walking
|
1224
|
+
# travel_mode: "Car", # accepts Car, Truck, Walking, Bicycle, Motorcycle
|
1195
1225
|
# truck_mode_options: {
|
1196
1226
|
# avoid_ferries: false,
|
1197
1227
|
# avoid_tolls: false,
|
@@ -1328,8 +1358,8 @@ module Aws::LocationService
|
|
1328
1358
|
# of different styles sourced from global location data providers.
|
1329
1359
|
#
|
1330
1360
|
# <note markdown="1"> If your application is tracking or routing assets you use in your
|
1331
|
-
# business, such as delivery vehicles or employees, you
|
1332
|
-
#
|
1361
|
+
# business, such as delivery vehicles or employees, you must not use
|
1362
|
+
# Esri as your geolocation provider. See section 82 of the [AWS service
|
1333
1363
|
# terms][1] for more details.
|
1334
1364
|
#
|
1335
1365
|
# </note>
|
@@ -1427,8 +1457,8 @@ module Aws::LocationService
|
|
1427
1457
|
# operation.
|
1428
1458
|
#
|
1429
1459
|
# <note markdown="1"> If your application is tracking or routing assets you use in your
|
1430
|
-
# business, such as delivery vehicles or employees, you
|
1431
|
-
#
|
1460
|
+
# business, such as delivery vehicles or employees, you must not use
|
1461
|
+
# Esri as your geolocation provider. See section 82 of the [AWS service
|
1432
1462
|
# terms][1] for more details.
|
1433
1463
|
#
|
1434
1464
|
# </note>
|
@@ -1451,27 +1481,33 @@ module Aws::LocationService
|
|
1451
1481
|
# your region of interest, see [Esri details on geocoding
|
1452
1482
|
# coverage][2].
|
1453
1483
|
#
|
1454
|
-
# * `
|
1484
|
+
# * `Grab` – Grab provides place index functionality for Southeast Asia.
|
1485
|
+
# For additional information about [GrabMaps][3]' coverage, see
|
1486
|
+
# [GrabMaps countries and areas covered][4].
|
1487
|
+
#
|
1488
|
+
# * `Here` – For additional information about [HERE Technologies][5]'
|
1455
1489
|
# coverage in your region of interest, see [HERE details on goecoding
|
1456
|
-
# coverage][
|
1490
|
+
# coverage][6].
|
1457
1491
|
#
|
1458
1492
|
# If you specify HERE Technologies (`Here`) as the data provider, you
|
1459
|
-
# may not [store results][
|
1460
|
-
# information, see the [AWS Service Terms][
|
1493
|
+
# may not [store results][7] for locations in Japan. For more
|
1494
|
+
# information, see the [AWS Service Terms][8] for Amazon Location
|
1461
1495
|
# Service.
|
1462
1496
|
#
|
1463
|
-
# For additional information , see [Data providers][
|
1497
|
+
# For additional information , see [Data providers][9] on the *Amazon
|
1464
1498
|
# Location Service Developer Guide*.
|
1465
1499
|
#
|
1466
1500
|
#
|
1467
1501
|
#
|
1468
1502
|
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/esri.html
|
1469
1503
|
# [2]: https://developers.arcgis.com/rest/geocode/api-reference/geocode-coverage.htm
|
1470
|
-
# [3]: https://docs.aws.amazon.com/location/latest/developerguide/
|
1471
|
-
# [4]: https://
|
1472
|
-
# [5]: https://docs.aws.amazon.com/location
|
1473
|
-
# [6]: https://
|
1474
|
-
# [7]: https://docs.aws.amazon.com/location/latest/
|
1504
|
+
# [3]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
|
1505
|
+
# [4]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area
|
1506
|
+
# [5]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
|
1507
|
+
# [6]: https://developer.here.com/documentation/geocoder/dev_guide/topics/coverage-geocoder.html
|
1508
|
+
# [7]: https://docs.aws.amazon.com/location-places/latest/APIReference/API_DataSourceConfiguration.html
|
1509
|
+
# [8]: https://aws.amazon.com/service-terms/
|
1510
|
+
# [9]: https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html
|
1475
1511
|
#
|
1476
1512
|
# @option params [Types::DataSourceConfiguration] :data_source_configuration
|
1477
1513
|
# Specifies the data storage option requesting Places.
|
@@ -1561,8 +1597,8 @@ module Aws::LocationService
|
|
1561
1597
|
# traffic and road network data from your chosen data provider.
|
1562
1598
|
#
|
1563
1599
|
# <note markdown="1"> If your application is tracking or routing assets you use in your
|
1564
|
-
# business, such as delivery vehicles or employees, you
|
1565
|
-
#
|
1600
|
+
# business, such as delivery vehicles or employees, you must not use
|
1601
|
+
# Esri as your geolocation provider. See section 82 of the [AWS service
|
1566
1602
|
# terms][1] for more details.
|
1567
1603
|
#
|
1568
1604
|
# </note>
|
@@ -1587,9 +1623,7 @@ module Aws::LocationService
|
|
1587
1623
|
# Specifies the data provider of traffic and road network data.
|
1588
1624
|
#
|
1589
1625
|
# <note markdown="1"> This field is case-sensitive. Enter the valid values as shown. For
|
1590
|
-
# example, entering `HERE` returns an error.
|
1591
|
-
# Esri as a data source only calculate routes that are shorter than 400
|
1592
|
-
# km.
|
1626
|
+
# example, entering `HERE` returns an error.
|
1593
1627
|
#
|
1594
1628
|
# </note>
|
1595
1629
|
#
|
@@ -1599,21 +1633,30 @@ module Aws::LocationService
|
|
1599
1633
|
# your region of interest, see [Esri details on street networks and
|
1600
1634
|
# traffic coverage][2].
|
1601
1635
|
#
|
1602
|
-
#
|
1636
|
+
# Route calculators that use Esri as a data source only calculate
|
1637
|
+
# routes that are shorter than 400 km.
|
1638
|
+
#
|
1639
|
+
# * `Grab` – Grab provides routing functionality for Southeast Asia. For
|
1640
|
+
# additional information about [GrabMaps][3]' coverage, see [GrabMaps
|
1641
|
+
# countries and areas covered][4].
|
1642
|
+
#
|
1643
|
+
# * `Here` – For additional information about [HERE Technologies][5]'
|
1603
1644
|
# coverage in your region of interest, see [HERE car routing
|
1604
|
-
# coverage][
|
1645
|
+
# coverage][6] and [HERE truck routing coverage][7].
|
1605
1646
|
#
|
1606
|
-
# For additional information , see [Data providers][
|
1647
|
+
# For additional information , see [Data providers][8] on the *Amazon
|
1607
1648
|
# Location Service Developer Guide*.
|
1608
1649
|
#
|
1609
1650
|
#
|
1610
1651
|
#
|
1611
1652
|
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/esri.html
|
1612
1653
|
# [2]: https://doc.arcgis.com/en/arcgis-online/reference/network-coverage.htm
|
1613
|
-
# [3]: https://docs.aws.amazon.com/location/latest/developerguide/
|
1614
|
-
# [4]: https://
|
1615
|
-
# [5]: https://
|
1616
|
-
# [6]: https://
|
1654
|
+
# [3]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
|
1655
|
+
# [4]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area
|
1656
|
+
# [5]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
|
1657
|
+
# [6]: https://developer.here.com/documentation/routing-api/dev_guide/topics/coverage/car-routing.html
|
1658
|
+
# [7]: https://developer.here.com/documentation/routing-api/dev_guide/topics/coverage/truck-routing.html
|
1659
|
+
# [8]: https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html
|
1617
1660
|
#
|
1618
1661
|
# @option params [String] :description
|
1619
1662
|
# The optional description for the route calculator resource.
|
@@ -2428,10 +2471,35 @@ module Aws::LocationService
|
|
2428
2471
|
# `Fira GO Map Bold` \| `Noto Sans CJK JP Bold` \| `Noto Sans CJK JP
|
2429
2472
|
# Light` \| `Noto Sans CJK JP Regular`
|
2430
2473
|
#
|
2474
|
+
# Valid font stacks for [GrabMaps][3] styles:
|
2475
|
+
#
|
2476
|
+
# * VectorGrabStandardLight, VectorGrabStandardDark – `Noto Sans
|
2477
|
+
# Regular` \| `Noto Sans Medium` \| `Noto Sans Bold`
|
2478
|
+
#
|
2479
|
+
# ^
|
2480
|
+
#
|
2481
|
+
# Valid font stacks for [Open Data (Preview)][4] styles:
|
2482
|
+
#
|
2483
|
+
# * VectorOpenDataStandardLight – `Amazon Ember Regular,Noto Sans
|
2484
|
+
# Regular` \| `Amazon Ember Bold,Noto Sans Bold` \| `Amazon Ember
|
2485
|
+
# Medium,Noto Sans Medium` \| `Amazon Ember Regular Italic,Noto Sans
|
2486
|
+
# Italic` \| `Amazon Ember Condensed RC Regular,Noto Sans Regular` \|
|
2487
|
+
# `Amazon Ember Condensed RC Bold,Noto Sans Bold`
|
2488
|
+
#
|
2489
|
+
# ^
|
2490
|
+
#
|
2491
|
+
# <note markdown="1"> The fonts used by `VectorOpenDataStandardLight` are combined fonts
|
2492
|
+
# that use `Amazon Ember` for most glyphs but `Noto Sans` for glyphs
|
2493
|
+
# unsupported by `Amazon Ember`.
|
2494
|
+
#
|
2495
|
+
# </note>
|
2496
|
+
#
|
2431
2497
|
#
|
2432
2498
|
#
|
2433
2499
|
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/esri.html
|
2434
2500
|
# [2]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
|
2501
|
+
# [3]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
|
2502
|
+
# [4]: https://docs.aws.amazon.com/location/latest/developerguide/open-data.html
|
2435
2503
|
#
|
2436
2504
|
# @option params [required, String] :font_unicode_range
|
2437
2505
|
# A Unicode range of characters to download glyphs for. Each response
|
@@ -3585,7 +3653,18 @@ module Aws::LocationService
|
|
3585
3653
|
# Assigns one or more tags (key-value pairs) to the specified Amazon
|
3586
3654
|
# Location Service resource.
|
3587
3655
|
#
|
3588
|
-
#
|
3656
|
+
# Tags can help you organize and categorize your resources. You can also
|
3657
|
+
# use them to scope user permissions, by granting a user permission to
|
3658
|
+
# access or change only resources with certain tag values.
|
3659
|
+
#
|
3660
|
+
# You can use the `TagResource` operation with an Amazon Location
|
3661
|
+
# Service resource that already has tags. If you specify a new tag key
|
3662
|
+
# for the resource, this tag is appended to the tags already associated
|
3663
|
+
# with the resource. If you specify a tag key that's already associated
|
3664
|
+
# with the resource, the new tag value that you specify replaces the
|
3665
|
+
# previous value for that tag.
|
3666
|
+
#
|
3667
|
+
# You can associate up to 50 tags with a resource.
|
3589
3668
|
#
|
3590
3669
|
# @option params [required, String] :resource_arn
|
3591
3670
|
# The Amazon Resource Name (ARN) of the resource whose tags you want to
|
@@ -3933,7 +4012,7 @@ module Aws::LocationService
|
|
3933
4012
|
params: params,
|
3934
4013
|
config: config)
|
3935
4014
|
context[:gem_name] = 'aws-sdk-locationservice'
|
3936
|
-
context[:gem_version] = '1.
|
4015
|
+
context[:gem_version] = '1.27.0'
|
3937
4016
|
Seahorse::Client::Request.new(handlers, context)
|
3938
4017
|
end
|
3939
4018
|
|
@@ -1346,6 +1346,7 @@ module Aws::LocationService
|
|
1346
1346
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1347
1347
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1348
1348
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1349
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1349
1350
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1350
1351
|
end)
|
1351
1352
|
|
@@ -1362,6 +1363,7 @@ module Aws::LocationService
|
|
1362
1363
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1363
1364
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1364
1365
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1366
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1365
1367
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1366
1368
|
end)
|
1367
1369
|
|
@@ -1378,6 +1380,7 @@ module Aws::LocationService
|
|
1378
1380
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1379
1381
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1380
1382
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1383
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1381
1384
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1382
1385
|
end)
|
1383
1386
|
|
@@ -1394,6 +1397,7 @@ module Aws::LocationService
|
|
1394
1397
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1395
1398
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1396
1399
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1400
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1397
1401
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1398
1402
|
end)
|
1399
1403
|
|
@@ -50,6 +50,9 @@ module Aws::LocationService
|
|
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,81 +29,83 @@ module Aws::LocationService
|
|
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
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2dlby1maXBzLntSZWdpb259LntQYXJ0aXRp
|
77
|
-
b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
|
78
|
-
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
|
79
|
-
b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
|
80
|
-
ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
|
81
|
-
ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
|
82
|
-
IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
|
83
|
-
cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
84
|
-
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
|
85
|
-
QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
|
86
|
-
b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
87
|
-
dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2dlby1maXBz
|
88
|
-
LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
|
89
|
-
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
|
90
|
-
eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0
|
91
|
-
IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUi
|
92
|
-
OiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVh
|
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
|
93
67
|
bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
|
94
68
|
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
95
69
|
b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
70
|
+
Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
|
71
|
+
XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
72
|
+
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
73
|
+
InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
74
|
+
IjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
75
|
+
Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZ2Vv
|
76
|
+
LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNT
|
77
|
+
dWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6
|
78
|
+
ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQ
|
79
|
+
UyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRp
|
80
|
+
b24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJv
|
81
|
+
ciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
|
82
|
+
cmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUi
|
83
|
+
LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxz
|
84
|
+
IiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYi
|
85
|
+
OiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBl
|
86
|
+
IjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRy
|
87
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVy
|
88
|
+
bCI6Imh0dHBzOi8vZ2VvLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3Vs
|
89
|
+
dCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwi
|
90
|
+
dHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9y
|
91
|
+
IjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5v
|
92
|
+
dCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
|
93
|
+
cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNl
|
94
|
+
RHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
95
|
+
Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
|
96
|
+
dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
|
97
|
+
ZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVl
|
98
|
+
IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1
|
99
|
+
bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
|
100
|
+
cHM6Ly9nZW8ue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tE
|
101
|
+
bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
102
|
+
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
|
103
|
+
RHVhbFN0YWNrIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMg
|
104
|
+
bm90IHN1cHBvcnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNv
|
105
|
+
bmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
106
|
+
b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9nZW8ue1JlZ2lv
|
107
|
+
bn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
|
108
|
+
e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19XX0=
|
107
109
|
|
108
110
|
JSON
|
109
111
|
end
|