aws-sdk-medialive 1.90.0 → 1.92.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-medialive/client.rb +31 -14
- data/lib/aws-sdk-medialive/client_api.rb +2 -2
- data/lib/aws-sdk-medialive/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-medialive/endpoint_provider.rb +111 -0
- data/lib/aws-sdk-medialive/endpoints.rb +841 -0
- data/lib/aws-sdk-medialive/plugins/endpoints.rb +186 -0
- data/lib/aws-sdk-medialive/types.rb +6 -8314
- data/lib/aws-sdk-medialive.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01212b99fa27adf7cb9a95c288a912ffe6239af4a2906cd75a516cdbc8820608
|
4
|
+
data.tar.gz: cba6873be2d21f8899d790ba494dc5f5a1d46baa124ad1634cb7dee1ec557f77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed1ad4c3e3f98f4abb1fcd1eea13959b7a09eaeba724ee38af3a46d9f45a5390c4b833b788aa83f73f800a46e9d04e3a3e0ff8d529304cc61e7c29f1f29cef33
|
7
|
+
data.tar.gz: f8931cadcccafaaf89de29e93ab2ff2b5d52e95430bcde5b0617345a4c2c70f7f61cd14d1e096b81ed3fd9310a3cc7a16f4de7fcc50a0c11af9ca03453d57422
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.92.0 (2022-12-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates to Event Signaling and Management (ESAM) API and documentation.
|
8
|
+
|
9
|
+
1.91.0 (2022-10-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.90.0 (2022-10-13)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.92.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:medialive)
|
@@ -79,8 +79,9 @@ module Aws::MediaLive
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
|
+
add_plugin(Aws::MediaLive::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::MediaLive
|
|
287
288
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
289
|
# requests are made, and retries are disabled.
|
289
290
|
#
|
291
|
+
# @option options [Aws::TokenProvider] :token_provider
|
292
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
293
|
+
# following classes:
|
294
|
+
#
|
295
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
296
|
+
# tokens.
|
297
|
+
#
|
298
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
299
|
+
# access token generated from `aws login`.
|
300
|
+
#
|
301
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
302
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
303
|
+
#
|
290
304
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
305
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
306
|
# will be used if available.
|
@@ -300,6 +314,9 @@ module Aws::MediaLive
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::MediaLive::EndpointProvider] :endpoint_provider
|
318
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MediaLive::EndpointParameters`
|
319
|
+
#
|
303
320
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
304
321
|
# requests through. Formatted like 'http://proxy.com:123'.
|
305
322
|
#
|
@@ -1021,8 +1038,8 @@ module Aws::MediaLive
|
|
1021
1038
|
# esam: {
|
1022
1039
|
# acquisition_point_id: "__stringMax256", # required
|
1023
1040
|
# ad_avail_offset: 1,
|
1024
|
-
#
|
1025
|
-
# pois_endpoint: "
|
1041
|
+
# password_param: "__string",
|
1042
|
+
# pois_endpoint: "__stringMax2048", # required
|
1026
1043
|
# username: "__string",
|
1027
1044
|
# zone_identity: "__stringMax256",
|
1028
1045
|
# },
|
@@ -1955,7 +1972,7 @@ module Aws::MediaLive
|
|
1955
1972
|
# resp.channel.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
1956
1973
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
1957
1974
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
1958
|
-
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.
|
1975
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.password_param #=> String
|
1959
1976
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
1960
1977
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
1961
1978
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
@@ -3031,7 +3048,7 @@ module Aws::MediaLive
|
|
3031
3048
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
3032
3049
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
3033
3050
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
3034
|
-
# resp.encoder_settings.avail_configuration.avail_settings.esam.
|
3051
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password_param #=> String
|
3035
3052
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
3036
3053
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
3037
3054
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
@@ -3980,7 +3997,7 @@ module Aws::MediaLive
|
|
3980
3997
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
3981
3998
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
3982
3999
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
3983
|
-
# resp.encoder_settings.avail_configuration.avail_settings.esam.
|
4000
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password_param #=> String
|
3984
4001
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
3985
4002
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
3986
4003
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
@@ -5989,7 +6006,7 @@ module Aws::MediaLive
|
|
5989
6006
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
5990
6007
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
5991
6008
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
5992
|
-
# resp.encoder_settings.avail_configuration.avail_settings.esam.
|
6009
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password_param #=> String
|
5993
6010
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
5994
6011
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
5995
6012
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
@@ -6746,7 +6763,7 @@ module Aws::MediaLive
|
|
6746
6763
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
6747
6764
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
6748
6765
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
6749
|
-
# resp.encoder_settings.avail_configuration.avail_settings.esam.
|
6766
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password_param #=> String
|
6750
6767
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
6751
6768
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
6752
6769
|
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
@@ -7558,8 +7575,8 @@ module Aws::MediaLive
|
|
7558
7575
|
# esam: {
|
7559
7576
|
# acquisition_point_id: "__stringMax256", # required
|
7560
7577
|
# ad_avail_offset: 1,
|
7561
|
-
#
|
7562
|
-
# pois_endpoint: "
|
7578
|
+
# password_param: "__string",
|
7579
|
+
# pois_endpoint: "__stringMax2048", # required
|
7563
7580
|
# username: "__string",
|
7564
7581
|
# zone_identity: "__stringMax256",
|
7565
7582
|
# },
|
@@ -8483,7 +8500,7 @@ module Aws::MediaLive
|
|
8483
8500
|
# resp.channel.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
8484
8501
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
8485
8502
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
8486
|
-
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.
|
8503
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.password_param #=> String
|
8487
8504
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
8488
8505
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
8489
8506
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
@@ -9171,7 +9188,7 @@ module Aws::MediaLive
|
|
9171
9188
|
# resp.channel.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
9172
9189
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
9173
9190
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
9174
|
-
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.
|
9191
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.password_param #=> String
|
9175
9192
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
9176
9193
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
9177
9194
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
@@ -10155,7 +10172,7 @@ module Aws::MediaLive
|
|
10155
10172
|
params: params,
|
10156
10173
|
config: config)
|
10157
10174
|
context[:gem_name] = 'aws-sdk-medialive'
|
10158
|
-
context[:gem_version] = '1.
|
10175
|
+
context[:gem_version] = '1.92.0'
|
10159
10176
|
Seahorse::Client::Request.new(handlers, context)
|
10160
10177
|
end
|
10161
10178
|
|
@@ -1700,8 +1700,8 @@ module Aws::MediaLive
|
|
1700
1700
|
|
1701
1701
|
Esam.add_member(:acquisition_point_id, Shapes::ShapeRef.new(shape: __stringMax256, required: true, location_name: "acquisitionPointId"))
|
1702
1702
|
Esam.add_member(:ad_avail_offset, Shapes::ShapeRef.new(shape: __integerMinNegative1000Max1000, location_name: "adAvailOffset"))
|
1703
|
-
Esam.add_member(:
|
1704
|
-
Esam.add_member(:pois_endpoint, Shapes::ShapeRef.new(shape:
|
1703
|
+
Esam.add_member(:password_param, Shapes::ShapeRef.new(shape: __string, location_name: "passwordParam"))
|
1704
|
+
Esam.add_member(:pois_endpoint, Shapes::ShapeRef.new(shape: __stringMax2048, required: true, location_name: "poisEndpoint"))
|
1705
1705
|
Esam.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
|
1706
1706
|
Esam.add_member(:zone_identity, Shapes::ShapeRef.new(shape: __stringMax256, location_name: "zoneIdentity"))
|
1707
1707
|
Esam.struct_class = Types::Esam
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::MediaLive
|
11
|
+
# Endpoint parameters used to influence endpoints per request.
|
12
|
+
#
|
13
|
+
# @!attribute region
|
14
|
+
# The AWS region used to dispatch the request.
|
15
|
+
#
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @!attribute use_dual_stack
|
19
|
+
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
|
+
#
|
21
|
+
# @return [Boolean]
|
22
|
+
#
|
23
|
+
# @!attribute use_fips
|
24
|
+
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
|
+
#
|
26
|
+
# @return [Boolean]
|
27
|
+
#
|
28
|
+
# @!attribute endpoint
|
29
|
+
# Override the endpoint used to send this request
|
30
|
+
#
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
EndpointParameters = Struct.new(
|
34
|
+
:region,
|
35
|
+
:use_dual_stack,
|
36
|
+
:use_fips,
|
37
|
+
:endpoint,
|
38
|
+
) do
|
39
|
+
include Aws::Structure
|
40
|
+
|
41
|
+
# @api private
|
42
|
+
class << self
|
43
|
+
PARAM_MAP = {
|
44
|
+
'Region' => :region,
|
45
|
+
'UseDualStack' => :use_dual_stack,
|
46
|
+
'UseFIPS' => :use_fips,
|
47
|
+
'Endpoint' => :endpoint,
|
48
|
+
}.freeze
|
49
|
+
end
|
50
|
+
|
51
|
+
def initialize(options = {})
|
52
|
+
self[:region] = options[:region]
|
53
|
+
if self[:region].nil?
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
+
end
|
56
|
+
self[:use_dual_stack] = options[:use_dual_stack]
|
57
|
+
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
58
|
+
if self[:use_dual_stack].nil?
|
59
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
60
|
+
end
|
61
|
+
self[:use_fips] = options[:use_fips]
|
62
|
+
self[:use_fips] = false if self[:use_fips].nil?
|
63
|
+
if self[:use_fips].nil?
|
64
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
65
|
+
end
|
66
|
+
self[:endpoint] = options[:endpoint]
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,111 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::MediaLive
|
11
|
+
class EndpointProvider
|
12
|
+
def initialize(rule_set = nil)
|
13
|
+
@@rule_set ||= begin
|
14
|
+
endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
|
15
|
+
Aws::Endpoints::RuleSet.new(
|
16
|
+
version: endpoint_rules['version'],
|
17
|
+
service_id: endpoint_rules['serviceId'],
|
18
|
+
parameters: endpoint_rules['parameters'],
|
19
|
+
rules: endpoint_rules['rules']
|
20
|
+
)
|
21
|
+
end
|
22
|
+
@provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
|
23
|
+
end
|
24
|
+
|
25
|
+
def resolve_endpoint(parameters)
|
26
|
+
@provider.resolve_endpoint(parameters)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @api private
|
30
|
+
RULES = <<-JSON
|
31
|
+
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
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
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
|
54
|
+
c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
|
55
|
+
dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
56
|
+
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
|
57
|
+
In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
|
58
|
+
UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
|
59
|
+
cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
|
60
|
+
cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
|
61
|
+
ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
|
62
|
+
IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
|
63
|
+
bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
|
64
|
+
LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
|
65
|
+
bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
|
66
|
+
IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
|
67
|
+
YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
|
68
|
+
Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
|
69
|
+
YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
70
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
|
71
|
+
biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
|
72
|
+
fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
|
73
|
+
cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
|
74
|
+
cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
|
75
|
+
ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
|
76
|
+
Ijp7InVybCI6Imh0dHBzOi8vbWVkaWFsaXZlLWZpcHMue1JlZ2lvbn0ue1Bh
|
77
|
+
cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
|
78
|
+
cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
|
79
|
+
bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
|
80
|
+
ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
|
81
|
+
b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
|
82
|
+
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
83
|
+
UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
84
|
+
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
85
|
+
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
86
|
+
InN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
87
|
+
Y29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
88
|
+
dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21lZGlhbGl2
|
89
|
+
ZS1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIs
|
90
|
+
InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
|
91
|
+
dCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5h
|
92
|
+
YmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBT
|
93
|
+
IiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9v
|
94
|
+
bGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRy
|
95
|
+
dWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7
|
96
|
+
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRB
|
97
|
+
dHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBv
|
98
|
+
cnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
|
99
|
+
b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9tZWRp
|
100
|
+
YWxpdmUue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNT
|
101
|
+
dWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6
|
102
|
+
ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxT
|
103
|
+
dGFjayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
|
104
|
+
dXBwb3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
|
105
|
+
b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9tZWRpYWxpdmUu
|
106
|
+
e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
|
107
|
+
dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
108
|
+
|
109
|
+
JSON
|
110
|
+
end
|
111
|
+
end
|