aws-sdk-mediaconnect 1.44.0 → 1.46.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-mediaconnect/client.rb +84 -24
- data/lib/aws-sdk-mediaconnect/client_api.rb +6 -0
- data/lib/aws-sdk-mediaconnect/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-mediaconnect/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-mediaconnect/endpoints.rb +435 -0
- data/lib/aws-sdk-mediaconnect/plugins/endpoints.rb +128 -0
- data/lib/aws-sdk-mediaconnect/types.rb +53 -10
- data/lib/aws-sdk-mediaconnect.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: b519b44f40cf3c3c038e655aa14181773bef6022dddae39a788173d5f837f544
|
4
|
+
data.tar.gz: be263e0ab5a4daa6b01c1252e3082417d04028672cdd582385ae1380f80eb072
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 287fe360c57004a89dd318600fc824ee90fb1bbb227219262a36f0d0bf979650bc2fc1303607e9c4bfa12df8795901f5b8c454ecb0b40ccfdeef44739c8f4f31
|
7
|
+
data.tar.gz: d57e38292290ce53e747930fd6f4adb2a1866ac5b4dd1bb7aa723b02e581c58247d05f68a8c31bfe6f4e1d2e38dcd0f29c3735f3e1ee96b54447fe5e6f3f5779
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.46.0 (2022-10-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.45.0 (2022-09-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This change allows the customer to use the SRT Caller protocol as part of their flows
|
13
|
+
|
4
14
|
1.44.0 (2022-03-21)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.46.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(:mediaconnect)
|
@@ -79,8 +79,9 @@ module Aws::MediaConnect
|
|
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::MediaConnect::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::MediaConnect
|
|
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::MediaConnect
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::MediaConnect::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::MediaConnect::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
|
#
|
@@ -478,7 +495,7 @@ module Aws::MediaConnect
|
|
478
495
|
# min_latency: 1,
|
479
496
|
# name: "__string",
|
480
497
|
# port: 1,
|
481
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
498
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
482
499
|
# remote_id: "__string",
|
483
500
|
# sender_control_port: 1,
|
484
501
|
# smoothing_latency: 1,
|
@@ -528,11 +545,13 @@ module Aws::MediaConnect
|
|
528
545
|
# resp.outputs[0].transport.max_latency #=> Integer
|
529
546
|
# resp.outputs[0].transport.max_sync_buffer #=> Integer
|
530
547
|
# resp.outputs[0].transport.min_latency #=> Integer
|
531
|
-
# resp.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
548
|
+
# resp.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
532
549
|
# resp.outputs[0].transport.remote_id #=> String
|
533
550
|
# resp.outputs[0].transport.sender_control_port #=> Integer
|
534
551
|
# resp.outputs[0].transport.sender_ip_address #=> String
|
535
552
|
# resp.outputs[0].transport.smoothing_latency #=> Integer
|
553
|
+
# resp.outputs[0].transport.source_listener_address #=> String
|
554
|
+
# resp.outputs[0].transport.source_listener_port #=> Integer
|
536
555
|
# resp.outputs[0].transport.stream_id #=> String
|
537
556
|
# resp.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
538
557
|
#
|
@@ -596,9 +615,11 @@ module Aws::MediaConnect
|
|
596
615
|
# ],
|
597
616
|
# min_latency: 1,
|
598
617
|
# name: "__string",
|
599
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
618
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
600
619
|
# sender_control_port: 1,
|
601
620
|
# sender_ip_address: "__string",
|
621
|
+
# source_listener_address: "__string",
|
622
|
+
# source_listener_port: 1,
|
602
623
|
# stream_id: "__string",
|
603
624
|
# vpc_interface_name: "__string",
|
604
625
|
# whitelist_cidr: "__string",
|
@@ -641,11 +662,13 @@ module Aws::MediaConnect
|
|
641
662
|
# resp.sources[0].transport.max_latency #=> Integer
|
642
663
|
# resp.sources[0].transport.max_sync_buffer #=> Integer
|
643
664
|
# resp.sources[0].transport.min_latency #=> Integer
|
644
|
-
# resp.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
665
|
+
# resp.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
645
666
|
# resp.sources[0].transport.remote_id #=> String
|
646
667
|
# resp.sources[0].transport.sender_control_port #=> Integer
|
647
668
|
# resp.sources[0].transport.sender_ip_address #=> String
|
648
669
|
# resp.sources[0].transport.smoothing_latency #=> Integer
|
670
|
+
# resp.sources[0].transport.source_listener_address #=> String
|
671
|
+
# resp.sources[0].transport.source_listener_port #=> Integer
|
649
672
|
# resp.sources[0].transport.stream_id #=> String
|
650
673
|
# resp.sources[0].vpc_interface_name #=> String
|
651
674
|
# resp.sources[0].whitelist_cidr #=> String
|
@@ -833,7 +856,7 @@ module Aws::MediaConnect
|
|
833
856
|
# min_latency: 1,
|
834
857
|
# name: "__string",
|
835
858
|
# port: 1,
|
836
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
859
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
837
860
|
# remote_id: "__string",
|
838
861
|
# sender_control_port: 1,
|
839
862
|
# smoothing_latency: 1,
|
@@ -877,9 +900,11 @@ module Aws::MediaConnect
|
|
877
900
|
# ],
|
878
901
|
# min_latency: 1,
|
879
902
|
# name: "__string",
|
880
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
903
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
881
904
|
# sender_control_port: 1,
|
882
905
|
# sender_ip_address: "__string",
|
906
|
+
# source_listener_address: "__string",
|
907
|
+
# source_listener_port: 1,
|
883
908
|
# stream_id: "__string",
|
884
909
|
# vpc_interface_name: "__string",
|
885
910
|
# whitelist_cidr: "__string",
|
@@ -927,9 +952,11 @@ module Aws::MediaConnect
|
|
927
952
|
# ],
|
928
953
|
# min_latency: 1,
|
929
954
|
# name: "__string",
|
930
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
955
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
931
956
|
# sender_control_port: 1,
|
932
957
|
# sender_ip_address: "__string",
|
958
|
+
# source_listener_address: "__string",
|
959
|
+
# source_listener_port: 1,
|
933
960
|
# stream_id: "__string",
|
934
961
|
# vpc_interface_name: "__string",
|
935
962
|
# whitelist_cidr: "__string",
|
@@ -1025,11 +1052,13 @@ module Aws::MediaConnect
|
|
1025
1052
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
1026
1053
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
1027
1054
|
# resp.flow.outputs[0].transport.min_latency #=> Integer
|
1028
|
-
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
1055
|
+
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
1029
1056
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
1030
1057
|
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
1031
1058
|
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
1032
1059
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
1060
|
+
# resp.flow.outputs[0].transport.source_listener_address #=> String
|
1061
|
+
# resp.flow.outputs[0].transport.source_listener_port #=> Integer
|
1033
1062
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
1034
1063
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
1035
1064
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
@@ -1063,11 +1092,13 @@ module Aws::MediaConnect
|
|
1063
1092
|
# resp.flow.source.transport.max_latency #=> Integer
|
1064
1093
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
1065
1094
|
# resp.flow.source.transport.min_latency #=> Integer
|
1066
|
-
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
1095
|
+
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
1067
1096
|
# resp.flow.source.transport.remote_id #=> String
|
1068
1097
|
# resp.flow.source.transport.sender_control_port #=> Integer
|
1069
1098
|
# resp.flow.source.transport.sender_ip_address #=> String
|
1070
1099
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
1100
|
+
# resp.flow.source.transport.source_listener_address #=> String
|
1101
|
+
# resp.flow.source.transport.source_listener_port #=> Integer
|
1071
1102
|
# resp.flow.source.transport.stream_id #=> String
|
1072
1103
|
# resp.flow.source.vpc_interface_name #=> String
|
1073
1104
|
# resp.flow.source.whitelist_cidr #=> String
|
@@ -1107,11 +1138,13 @@ module Aws::MediaConnect
|
|
1107
1138
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
1108
1139
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
1109
1140
|
# resp.flow.sources[0].transport.min_latency #=> Integer
|
1110
|
-
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
1141
|
+
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
1111
1142
|
# resp.flow.sources[0].transport.remote_id #=> String
|
1112
1143
|
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
1113
1144
|
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
1114
1145
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
1146
|
+
# resp.flow.sources[0].transport.source_listener_address #=> String
|
1147
|
+
# resp.flow.sources[0].transport.source_listener_port #=> Integer
|
1115
1148
|
# resp.flow.sources[0].transport.stream_id #=> String
|
1116
1149
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
1117
1150
|
# resp.flow.sources[0].whitelist_cidr #=> String
|
@@ -1260,11 +1293,13 @@ module Aws::MediaConnect
|
|
1260
1293
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
1261
1294
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
1262
1295
|
# resp.flow.outputs[0].transport.min_latency #=> Integer
|
1263
|
-
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
1296
|
+
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
1264
1297
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
1265
1298
|
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
1266
1299
|
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
1267
1300
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
1301
|
+
# resp.flow.outputs[0].transport.source_listener_address #=> String
|
1302
|
+
# resp.flow.outputs[0].transport.source_listener_port #=> Integer
|
1268
1303
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
1269
1304
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
1270
1305
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
@@ -1298,11 +1333,13 @@ module Aws::MediaConnect
|
|
1298
1333
|
# resp.flow.source.transport.max_latency #=> Integer
|
1299
1334
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
1300
1335
|
# resp.flow.source.transport.min_latency #=> Integer
|
1301
|
-
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
1336
|
+
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
1302
1337
|
# resp.flow.source.transport.remote_id #=> String
|
1303
1338
|
# resp.flow.source.transport.sender_control_port #=> Integer
|
1304
1339
|
# resp.flow.source.transport.sender_ip_address #=> String
|
1305
1340
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
1341
|
+
# resp.flow.source.transport.source_listener_address #=> String
|
1342
|
+
# resp.flow.source.transport.source_listener_port #=> Integer
|
1306
1343
|
# resp.flow.source.transport.stream_id #=> String
|
1307
1344
|
# resp.flow.source.vpc_interface_name #=> String
|
1308
1345
|
# resp.flow.source.whitelist_cidr #=> String
|
@@ -1342,11 +1379,13 @@ module Aws::MediaConnect
|
|
1342
1379
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
1343
1380
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
1344
1381
|
# resp.flow.sources[0].transport.min_latency #=> Integer
|
1345
|
-
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
1382
|
+
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
1346
1383
|
# resp.flow.sources[0].transport.remote_id #=> String
|
1347
1384
|
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
1348
1385
|
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
1349
1386
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
1387
|
+
# resp.flow.sources[0].transport.source_listener_address #=> String
|
1388
|
+
# resp.flow.sources[0].transport.source_listener_port #=> Integer
|
1350
1389
|
# resp.flow.sources[0].transport.stream_id #=> String
|
1351
1390
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
1352
1391
|
# resp.flow.sources[0].whitelist_cidr #=> String
|
@@ -2190,11 +2229,13 @@ module Aws::MediaConnect
|
|
2190
2229
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
2191
2230
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
2192
2231
|
# resp.flow.outputs[0].transport.min_latency #=> Integer
|
2193
|
-
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
2232
|
+
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
2194
2233
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
2195
2234
|
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
2196
2235
|
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
2197
2236
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
2237
|
+
# resp.flow.outputs[0].transport.source_listener_address #=> String
|
2238
|
+
# resp.flow.outputs[0].transport.source_listener_port #=> Integer
|
2198
2239
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
2199
2240
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
2200
2241
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
@@ -2228,11 +2269,13 @@ module Aws::MediaConnect
|
|
2228
2269
|
# resp.flow.source.transport.max_latency #=> Integer
|
2229
2270
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
2230
2271
|
# resp.flow.source.transport.min_latency #=> Integer
|
2231
|
-
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
2272
|
+
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
2232
2273
|
# resp.flow.source.transport.remote_id #=> String
|
2233
2274
|
# resp.flow.source.transport.sender_control_port #=> Integer
|
2234
2275
|
# resp.flow.source.transport.sender_ip_address #=> String
|
2235
2276
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
2277
|
+
# resp.flow.source.transport.source_listener_address #=> String
|
2278
|
+
# resp.flow.source.transport.source_listener_port #=> Integer
|
2236
2279
|
# resp.flow.source.transport.stream_id #=> String
|
2237
2280
|
# resp.flow.source.vpc_interface_name #=> String
|
2238
2281
|
# resp.flow.source.whitelist_cidr #=> String
|
@@ -2272,11 +2315,13 @@ module Aws::MediaConnect
|
|
2272
2315
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
2273
2316
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
2274
2317
|
# resp.flow.sources[0].transport.min_latency #=> Integer
|
2275
|
-
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
2318
|
+
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
2276
2319
|
# resp.flow.sources[0].transport.remote_id #=> String
|
2277
2320
|
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
2278
2321
|
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
2279
2322
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
2323
|
+
# resp.flow.sources[0].transport.source_listener_address #=> String
|
2324
|
+
# resp.flow.sources[0].transport.source_listener_port #=> Integer
|
2280
2325
|
# resp.flow.sources[0].transport.stream_id #=> String
|
2281
2326
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
2282
2327
|
# resp.flow.sources[0].whitelist_cidr #=> String
|
@@ -2488,7 +2533,8 @@ module Aws::MediaConnect
|
|
2488
2533
|
# @option params [required, String] :flow_arn
|
2489
2534
|
#
|
2490
2535
|
# @option params [Integer] :max_latency
|
2491
|
-
# The maximum latency in milliseconds
|
2536
|
+
# The maximum latency in milliseconds. This parameter applies only to
|
2537
|
+
# RIST-based, Zixi-based, and Fujitsu-based streams.
|
2492
2538
|
#
|
2493
2539
|
# @option params [Array<Types::MediaStreamOutputConfigurationRequest>] :media_stream_output_configurations
|
2494
2540
|
# The media streams that are associated with the output, and the
|
@@ -2578,7 +2624,7 @@ module Aws::MediaConnect
|
|
2578
2624
|
# min_latency: 1,
|
2579
2625
|
# output_arn: "__string", # required
|
2580
2626
|
# port: 1,
|
2581
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
2627
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
2582
2628
|
# remote_id: "__string",
|
2583
2629
|
# sender_control_port: 1,
|
2584
2630
|
# sender_ip_address: "__string",
|
@@ -2626,11 +2672,13 @@ module Aws::MediaConnect
|
|
2626
2672
|
# resp.output.transport.max_latency #=> Integer
|
2627
2673
|
# resp.output.transport.max_sync_buffer #=> Integer
|
2628
2674
|
# resp.output.transport.min_latency #=> Integer
|
2629
|
-
# resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
2675
|
+
# resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
2630
2676
|
# resp.output.transport.remote_id #=> String
|
2631
2677
|
# resp.output.transport.sender_control_port #=> Integer
|
2632
2678
|
# resp.output.transport.sender_ip_address #=> String
|
2633
2679
|
# resp.output.transport.smoothing_latency #=> Integer
|
2680
|
+
# resp.output.transport.source_listener_address #=> String
|
2681
|
+
# resp.output.transport.source_listener_port #=> Integer
|
2634
2682
|
# resp.output.transport.stream_id #=> String
|
2635
2683
|
# resp.output.vpc_interface_attachment.vpc_interface_name #=> String
|
2636
2684
|
#
|
@@ -2690,6 +2738,8 @@ module Aws::MediaConnect
|
|
2690
2738
|
# The protocol that is used by the source.
|
2691
2739
|
#
|
2692
2740
|
# @option params [Integer] :sender_control_port
|
2741
|
+
# The port that the flow uses to send outbound requests to initiate
|
2742
|
+
# connection with the sender.
|
2693
2743
|
#
|
2694
2744
|
# @option params [String] :sender_ip_address
|
2695
2745
|
# The IP address that the flow communicates with to initiate connection
|
@@ -2697,6 +2747,12 @@ module Aws::MediaConnect
|
|
2697
2747
|
#
|
2698
2748
|
# @option params [required, String] :source_arn
|
2699
2749
|
#
|
2750
|
+
# @option params [String] :source_listener_address
|
2751
|
+
# Source IP or domain name for SRT-caller protocol.
|
2752
|
+
#
|
2753
|
+
# @option params [Integer] :source_listener_port
|
2754
|
+
# Source port for SRT-caller protocol.
|
2755
|
+
#
|
2700
2756
|
# @option params [String] :stream_id
|
2701
2757
|
# The stream ID that you want to use for this transport. This parameter
|
2702
2758
|
# applies only to Zixi-based streams.
|
@@ -2750,10 +2806,12 @@ module Aws::MediaConnect
|
|
2750
2806
|
# },
|
2751
2807
|
# ],
|
2752
2808
|
# min_latency: 1,
|
2753
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
2809
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
2754
2810
|
# sender_control_port: 1,
|
2755
2811
|
# sender_ip_address: "__string",
|
2756
2812
|
# source_arn: "__string", # required
|
2813
|
+
# source_listener_address: "__string",
|
2814
|
+
# source_listener_port: 1,
|
2757
2815
|
# stream_id: "__string",
|
2758
2816
|
# vpc_interface_name: "__string",
|
2759
2817
|
# whitelist_cidr: "__string",
|
@@ -2793,11 +2851,13 @@ module Aws::MediaConnect
|
|
2793
2851
|
# resp.source.transport.max_latency #=> Integer
|
2794
2852
|
# resp.source.transport.max_sync_buffer #=> Integer
|
2795
2853
|
# resp.source.transport.min_latency #=> Integer
|
2796
|
-
# resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
2854
|
+
# resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
2797
2855
|
# resp.source.transport.remote_id #=> String
|
2798
2856
|
# resp.source.transport.sender_control_port #=> Integer
|
2799
2857
|
# resp.source.transport.sender_ip_address #=> String
|
2800
2858
|
# resp.source.transport.smoothing_latency #=> Integer
|
2859
|
+
# resp.source.transport.source_listener_address #=> String
|
2860
|
+
# resp.source.transport.source_listener_port #=> Integer
|
2801
2861
|
# resp.source.transport.stream_id #=> String
|
2802
2862
|
# resp.source.vpc_interface_name #=> String
|
2803
2863
|
# resp.source.whitelist_cidr #=> String
|
@@ -2824,7 +2884,7 @@ module Aws::MediaConnect
|
|
2824
2884
|
params: params,
|
2825
2885
|
config: config)
|
2826
2886
|
context[:gem_name] = 'aws-sdk-mediaconnect'
|
2827
|
-
context[:gem_version] = '1.
|
2887
|
+
context[:gem_version] = '1.46.0'
|
2828
2888
|
Seahorse::Client::Request.new(handlers, context)
|
2829
2889
|
end
|
2830
2890
|
|
@@ -626,6 +626,8 @@ module Aws::MediaConnect
|
|
626
626
|
SetSourceRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "protocol"))
|
627
627
|
SetSourceRequest.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
|
628
628
|
SetSourceRequest.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
|
629
|
+
SetSourceRequest.add_member(:source_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "sourceListenerAddress"))
|
630
|
+
SetSourceRequest.add_member(:source_listener_port, Shapes::ShapeRef.new(shape: __integer, location_name: "sourceListenerPort"))
|
629
631
|
SetSourceRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
|
630
632
|
SetSourceRequest.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: __string, location_name: "vpcInterfaceName"))
|
631
633
|
SetSourceRequest.add_member(:whitelist_cidr, Shapes::ShapeRef.new(shape: __string, location_name: "whitelistCidr"))
|
@@ -681,6 +683,8 @@ module Aws::MediaConnect
|
|
681
683
|
Transport.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
|
682
684
|
Transport.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
|
683
685
|
Transport.add_member(:smoothing_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "smoothingLatency"))
|
686
|
+
Transport.add_member(:source_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "sourceListenerAddress"))
|
687
|
+
Transport.add_member(:source_listener_port, Shapes::ShapeRef.new(shape: __integer, location_name: "sourceListenerPort"))
|
684
688
|
Transport.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
|
685
689
|
Transport.struct_class = Types::Transport
|
686
690
|
|
@@ -775,6 +779,8 @@ module Aws::MediaConnect
|
|
775
779
|
UpdateFlowSourceRequest.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
|
776
780
|
UpdateFlowSourceRequest.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
|
777
781
|
UpdateFlowSourceRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "sourceArn"))
|
782
|
+
UpdateFlowSourceRequest.add_member(:source_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "sourceListenerAddress"))
|
783
|
+
UpdateFlowSourceRequest.add_member(:source_listener_port, Shapes::ShapeRef.new(shape: __integer, location_name: "sourceListenerPort"))
|
778
784
|
UpdateFlowSourceRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
|
779
785
|
UpdateFlowSourceRequest.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: __string, location_name: "vpcInterfaceName"))
|
780
786
|
UpdateFlowSourceRequest.add_member(:whitelist_cidr, Shapes::ShapeRef.new(shape: __string, location_name: "whitelistCidr"))
|
@@ -0,0 +1,66 @@
|
|
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::MediaConnect
|
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
|
+
self[:use_dual_stack] = options[:use_dual_stack]
|
54
|
+
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
|
+
if self[:use_dual_stack].nil?
|
56
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
57
|
+
end
|
58
|
+
self[:use_fips] = options[:use_fips]
|
59
|
+
self[:use_fips] = false if self[:use_fips].nil?
|
60
|
+
if self[:use_fips].nil?
|
61
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
62
|
+
end
|
63
|
+
self[:endpoint] = options[:endpoint]
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,112 @@
|
|
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::MediaConnect
|
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
|
+
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
|
+
dCI6eyJ1cmwiOiJodHRwczovL21lZGlhY29ubmVjdC1maXBzLntSZWdpb259
|
77
|
+
LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
|
78
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
|
79
|
+
eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sg
|
80
|
+
YXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
|
81
|
+
b3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
|
82
|
+
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
|
83
|
+
ZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
|
84
|
+
aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
|
85
|
+
ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
|
86
|
+
dCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
|
87
|
+
Olt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
|
88
|
+
b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9tZWRp
|
89
|
+
YWNvbm5lY3QtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
|
90
|
+
ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
|
91
|
+
ZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBT
|
92
|
+
IGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
|
93
|
+
cnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJm
|
94
|
+
biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3Rh
|
95
|
+
Y2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
96
|
+
b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
|
97
|
+
IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
|
98
|
+
LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
|
99
|
+
cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
|
100
|
+
Oi8vbWVkaWFjb25uZWN0LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVh
|
101
|
+
bFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
|
102
|
+
fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
|
103
|
+
b3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24g
|
104
|
+
ZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19
|
105
|
+
LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
|
106
|
+
bWVkaWFjb25uZWN0LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3Vm
|
107
|
+
Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
|
108
|
+
bmRwb2ludCJ9XX1dfQ==
|
109
|
+
|
110
|
+
JSON
|
111
|
+
end
|
112
|
+
end
|