aws-sdk-medialive 1.89.0 → 1.91.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +88 -3
- data/lib/aws-sdk-medialive/client_api.rb +17 -0
- data/lib/aws-sdk-medialive/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-medialive/endpoint_provider.rb +112 -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 +155 -0
- 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: d1e6cb273d3b029fa9852bf4e2bbd9ec6fc67f3cc8b6811f701a9eb24d5bd6cc
|
4
|
+
data.tar.gz: 1c87f6141d8f107fc6f4b643f8a43f98ad2ea62b7370c4f32171c1f6e9d7bba0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d461936b2dcc201f2e2531d3843b49acede891325acf08c7092bfbc294d3785f7ce789fe99c376b32108fbeed8a4627a65c96425ed595a21cee6deb83e00e6ea
|
7
|
+
data.tar.gz: 2ff2036f3db0a43ef5391a70c8bd2f1e0fc2ffc04ff673ed1a102e4b3c1f360367475d529f6695f2e2992f7d48464cba214dadf1f6694f9497fb657f544d33ed
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.91.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.90.0 (2022-10-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Elemental MediaLive now supports forwarding SCTE-35 messages through the Event Signaling and Management (ESAM) API, and can read those SCTE-35 messages from an inactive source.
|
13
|
+
|
4
14
|
1.89.0 (2022-09-08)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.91.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
|
#
|
@@ -569,6 +586,10 @@ module Aws::MediaLive
|
|
569
586
|
# },
|
570
587
|
# ],
|
571
588
|
# },
|
589
|
+
# scte_35_input_settings: {
|
590
|
+
# input_attachment_name_reference: "__string",
|
591
|
+
# mode: "FIXED", # required, accepts FIXED, FOLLOW_ACTIVE
|
592
|
+
# },
|
572
593
|
# scte_35_return_to_network_settings: {
|
573
594
|
# splice_event_id: 1, # required
|
574
595
|
# },
|
@@ -668,6 +689,8 @@ module Aws::MediaLive
|
|
668
689
|
# resp.creates.schedule_actions[0].schedule_action_settings.motion_graphics_image_activate_settings.username #=> String
|
669
690
|
# resp.creates.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines #=> Array
|
670
691
|
# resp.creates.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines[0].pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
692
|
+
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_input_settings.input_attachment_name_reference #=> String
|
693
|
+
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_input_settings.mode #=> String, one of "FIXED", "FOLLOW_ACTIVE"
|
671
694
|
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_return_to_network_settings.splice_event_id #=> Integer
|
672
695
|
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.duration #=> Integer
|
673
696
|
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.splice_event_id #=> Integer
|
@@ -727,6 +750,8 @@ module Aws::MediaLive
|
|
727
750
|
# resp.deletes.schedule_actions[0].schedule_action_settings.motion_graphics_image_activate_settings.username #=> String
|
728
751
|
# resp.deletes.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines #=> Array
|
729
752
|
# resp.deletes.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines[0].pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
753
|
+
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_input_settings.input_attachment_name_reference #=> String
|
754
|
+
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_input_settings.mode #=> String, one of "FIXED", "FOLLOW_ACTIVE"
|
730
755
|
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_return_to_network_settings.splice_event_id #=> Integer
|
731
756
|
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.duration #=> Integer
|
732
757
|
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.splice_event_id #=> Integer
|
@@ -1010,6 +1035,14 @@ module Aws::MediaLive
|
|
1010
1035
|
# },
|
1011
1036
|
# avail_configuration: {
|
1012
1037
|
# avail_settings: {
|
1038
|
+
# esam: {
|
1039
|
+
# acquisition_point_id: "__stringMax256", # required
|
1040
|
+
# ad_avail_offset: 1,
|
1041
|
+
# password: "__string",
|
1042
|
+
# pois_endpoint: "__string", # required
|
1043
|
+
# username: "__string",
|
1044
|
+
# zone_identity: "__stringMax256",
|
1045
|
+
# },
|
1013
1046
|
# scte_35_splice_insert: {
|
1014
1047
|
# ad_avail_offset: 1,
|
1015
1048
|
# no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
|
@@ -1937,6 +1970,12 @@ module Aws::MediaLive
|
|
1937
1970
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
1938
1971
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
1939
1972
|
# resp.channel.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
1973
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
1974
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
1975
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
1976
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
1977
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
1978
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
1940
1979
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
1941
1980
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
1942
1981
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -3007,6 +3046,12 @@ module Aws::MediaLive
|
|
3007
3046
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
3008
3047
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
3009
3048
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
3049
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
3050
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
3051
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
3052
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
3053
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
3054
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
3010
3055
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
3011
3056
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
3012
3057
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -3950,6 +3995,12 @@ module Aws::MediaLive
|
|
3950
3995
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
3951
3996
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
3952
3997
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
3998
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
3999
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
4000
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
4001
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
4002
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
4003
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
3953
4004
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
3954
4005
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
3955
4006
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -5024,6 +5075,8 @@ module Aws::MediaLive
|
|
5024
5075
|
# resp.schedule_actions[0].schedule_action_settings.motion_graphics_image_activate_settings.username #=> String
|
5025
5076
|
# resp.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines #=> Array
|
5026
5077
|
# resp.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines[0].pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
5078
|
+
# resp.schedule_actions[0].schedule_action_settings.scte_35_input_settings.input_attachment_name_reference #=> String
|
5079
|
+
# resp.schedule_actions[0].schedule_action_settings.scte_35_input_settings.mode #=> String, one of "FIXED", "FOLLOW_ACTIVE"
|
5027
5080
|
# resp.schedule_actions[0].schedule_action_settings.scte_35_return_to_network_settings.splice_event_id #=> Integer
|
5028
5081
|
# resp.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.duration #=> Integer
|
5029
5082
|
# resp.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.splice_event_id #=> Integer
|
@@ -5951,6 +6004,12 @@ module Aws::MediaLive
|
|
5951
6004
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
5952
6005
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
5953
6006
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
6007
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
6008
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
6009
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
6010
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
6011
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
6012
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
5954
6013
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
5955
6014
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
5956
6015
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -6702,6 +6761,12 @@ module Aws::MediaLive
|
|
6702
6761
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
6703
6762
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
6704
6763
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
6764
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
6765
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
6766
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
6767
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
6768
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
6769
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
6705
6770
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
6706
6771
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
6707
6772
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -7507,6 +7572,14 @@ module Aws::MediaLive
|
|
7507
7572
|
# },
|
7508
7573
|
# avail_configuration: {
|
7509
7574
|
# avail_settings: {
|
7575
|
+
# esam: {
|
7576
|
+
# acquisition_point_id: "__stringMax256", # required
|
7577
|
+
# ad_avail_offset: 1,
|
7578
|
+
# password: "__string",
|
7579
|
+
# pois_endpoint: "__string", # required
|
7580
|
+
# username: "__string",
|
7581
|
+
# zone_identity: "__stringMax256",
|
7582
|
+
# },
|
7510
7583
|
# scte_35_splice_insert: {
|
7511
7584
|
# ad_avail_offset: 1,
|
7512
7585
|
# no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
|
@@ -8425,6 +8498,12 @@ module Aws::MediaLive
|
|
8425
8498
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
8426
8499
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
8427
8500
|
# resp.channel.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
8501
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
8502
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
8503
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
8504
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
8505
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
8506
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
8428
8507
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
8429
8508
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
8430
8509
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -9107,6 +9186,12 @@ module Aws::MediaLive
|
|
9107
9186
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
9108
9187
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
9109
9188
|
# resp.channel.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
9189
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
9190
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
9191
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
9192
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
9193
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
9194
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
9110
9195
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
9111
9196
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
9112
9197
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -10087,7 +10172,7 @@ module Aws::MediaLive
|
|
10087
10172
|
params: params,
|
10088
10173
|
config: config)
|
10089
10174
|
context[:gem_name] = 'aws-sdk-medialive'
|
10090
|
-
context[:gem_version] = '1.
|
10175
|
+
context[:gem_version] = '1.91.0'
|
10091
10176
|
Seahorse::Client::Request.new(handlers, context)
|
10092
10177
|
end
|
10093
10178
|
|
@@ -228,6 +228,7 @@ module Aws::MediaLive
|
|
228
228
|
EmbeddedSourceSettings = Shapes::StructureShape.new(name: 'EmbeddedSourceSettings')
|
229
229
|
Empty = Shapes::StructureShape.new(name: 'Empty')
|
230
230
|
EncoderSettings = Shapes::StructureShape.new(name: 'EncoderSettings')
|
231
|
+
Esam = Shapes::StructureShape.new(name: 'Esam')
|
231
232
|
FailoverCondition = Shapes::StructureShape.new(name: 'FailoverCondition')
|
232
233
|
FailoverConditionSettings = Shapes::StructureShape.new(name: 'FailoverConditionSettings')
|
233
234
|
FeatureActivations = Shapes::StructureShape.new(name: 'FeatureActivations')
|
@@ -588,6 +589,8 @@ module Aws::MediaLive
|
|
588
589
|
Scte35Descriptor = Shapes::StructureShape.new(name: 'Scte35Descriptor')
|
589
590
|
Scte35DescriptorSettings = Shapes::StructureShape.new(name: 'Scte35DescriptorSettings')
|
590
591
|
Scte35DeviceRestrictions = Shapes::StringShape.new(name: 'Scte35DeviceRestrictions')
|
592
|
+
Scte35InputMode = Shapes::StringShape.new(name: 'Scte35InputMode')
|
593
|
+
Scte35InputScheduleActionSettings = Shapes::StructureShape.new(name: 'Scte35InputScheduleActionSettings')
|
591
594
|
Scte35NoRegionalBlackoutFlag = Shapes::StringShape.new(name: 'Scte35NoRegionalBlackoutFlag')
|
592
595
|
Scte35ReturnToNetworkScheduleActionSettings = Shapes::StructureShape.new(name: 'Scte35ReturnToNetworkScheduleActionSettings')
|
593
596
|
Scte35SegmentationCancelIndicator = Shapes::StringShape.new(name: 'Scte35SegmentationCancelIndicator')
|
@@ -969,6 +972,7 @@ module Aws::MediaLive
|
|
969
972
|
AvailConfiguration.add_member(:avail_settings, Shapes::ShapeRef.new(shape: AvailSettings, location_name: "availSettings"))
|
970
973
|
AvailConfiguration.struct_class = Types::AvailConfiguration
|
971
974
|
|
975
|
+
AvailSettings.add_member(:esam, Shapes::ShapeRef.new(shape: Esam, location_name: "esam"))
|
972
976
|
AvailSettings.add_member(:scte_35_splice_insert, Shapes::ShapeRef.new(shape: Scte35SpliceInsert, location_name: "scte35SpliceInsert"))
|
973
977
|
AvailSettings.add_member(:scte_35_time_signal_apos, Shapes::ShapeRef.new(shape: Scte35TimeSignalApos, location_name: "scte35TimeSignalApos"))
|
974
978
|
AvailSettings.struct_class = Types::AvailSettings
|
@@ -1694,6 +1698,14 @@ module Aws::MediaLive
|
|
1694
1698
|
EncoderSettings.add_member(:video_descriptions, Shapes::ShapeRef.new(shape: __listOfVideoDescription, required: true, location_name: "videoDescriptions"))
|
1695
1699
|
EncoderSettings.struct_class = Types::EncoderSettings
|
1696
1700
|
|
1701
|
+
Esam.add_member(:acquisition_point_id, Shapes::ShapeRef.new(shape: __stringMax256, required: true, location_name: "acquisitionPointId"))
|
1702
|
+
Esam.add_member(:ad_avail_offset, Shapes::ShapeRef.new(shape: __integerMinNegative1000Max1000, location_name: "adAvailOffset"))
|
1703
|
+
Esam.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
|
1704
|
+
Esam.add_member(:pois_endpoint, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "poisEndpoint"))
|
1705
|
+
Esam.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
|
1706
|
+
Esam.add_member(:zone_identity, Shapes::ShapeRef.new(shape: __stringMax256, location_name: "zoneIdentity"))
|
1707
|
+
Esam.struct_class = Types::Esam
|
1708
|
+
|
1697
1709
|
FailoverCondition.add_member(:failover_condition_settings, Shapes::ShapeRef.new(shape: FailoverConditionSettings, location_name: "failoverConditionSettings"))
|
1698
1710
|
FailoverCondition.struct_class = Types::FailoverCondition
|
1699
1711
|
|
@@ -2784,6 +2796,7 @@ module Aws::MediaLive
|
|
2784
2796
|
ScheduleActionSettings.add_member(:motion_graphics_image_activate_settings, Shapes::ShapeRef.new(shape: MotionGraphicsActivateScheduleActionSettings, location_name: "motionGraphicsImageActivateSettings"))
|
2785
2797
|
ScheduleActionSettings.add_member(:motion_graphics_image_deactivate_settings, Shapes::ShapeRef.new(shape: MotionGraphicsDeactivateScheduleActionSettings, location_name: "motionGraphicsImageDeactivateSettings"))
|
2786
2798
|
ScheduleActionSettings.add_member(:pause_state_settings, Shapes::ShapeRef.new(shape: PauseStateScheduleActionSettings, location_name: "pauseStateSettings"))
|
2799
|
+
ScheduleActionSettings.add_member(:scte_35_input_settings, Shapes::ShapeRef.new(shape: Scte35InputScheduleActionSettings, location_name: "scte35InputSettings"))
|
2787
2800
|
ScheduleActionSettings.add_member(:scte_35_return_to_network_settings, Shapes::ShapeRef.new(shape: Scte35ReturnToNetworkScheduleActionSettings, location_name: "scte35ReturnToNetworkSettings"))
|
2788
2801
|
ScheduleActionSettings.add_member(:scte_35_splice_insert_settings, Shapes::ShapeRef.new(shape: Scte35SpliceInsertScheduleActionSettings, location_name: "scte35SpliceInsertSettings"))
|
2789
2802
|
ScheduleActionSettings.add_member(:scte_35_time_signal_settings, Shapes::ShapeRef.new(shape: Scte35TimeSignalScheduleActionSettings, location_name: "scte35TimeSignalSettings"))
|
@@ -2826,6 +2839,10 @@ module Aws::MediaLive
|
|
2826
2839
|
Scte35DescriptorSettings.add_member(:segmentation_descriptor_scte_35_descriptor_settings, Shapes::ShapeRef.new(shape: Scte35SegmentationDescriptor, required: true, location_name: "segmentationDescriptorScte35DescriptorSettings"))
|
2827
2840
|
Scte35DescriptorSettings.struct_class = Types::Scte35DescriptorSettings
|
2828
2841
|
|
2842
|
+
Scte35InputScheduleActionSettings.add_member(:input_attachment_name_reference, Shapes::ShapeRef.new(shape: __string, location_name: "inputAttachmentNameReference"))
|
2843
|
+
Scte35InputScheduleActionSettings.add_member(:mode, Shapes::ShapeRef.new(shape: Scte35InputMode, required: true, location_name: "mode"))
|
2844
|
+
Scte35InputScheduleActionSettings.struct_class = Types::Scte35InputScheduleActionSettings
|
2845
|
+
|
2829
2846
|
Scte35ReturnToNetworkScheduleActionSettings.add_member(:splice_event_id, Shapes::ShapeRef.new(shape: __longMin0Max4294967295, required: true, location_name: "spliceEventId"))
|
2830
2847
|
Scte35ReturnToNetworkScheduleActionSettings.struct_class = Types::Scte35ReturnToNetworkScheduleActionSettings
|
2831
2848
|
|
@@ -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::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
|
+
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::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
|
+
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
|
+
dCI6eyJ1cmwiOiJodHRwczovL21lZGlhbGl2ZS1maXBzLntSZWdpb259LntQ
|
77
|
+
YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
|
78
|
+
ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
|
79
|
+
b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJl
|
80
|
+
IGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
|
81
|
+
IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
|
82
|
+
Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJ
|
83
|
+
UFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
84
|
+
b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
|
85
|
+
IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
|
86
|
+
LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
|
87
|
+
ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
|
88
|
+
aXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9tZWRpYWxp
|
89
|
+
dmUtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
|
90
|
+
LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
|
91
|
+
bnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVu
|
92
|
+
YWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQ
|
93
|
+
UyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
94
|
+
b2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0
|
95
|
+
cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
96
|
+
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
|
97
|
+
QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
|
98
|
+
b3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
99
|
+
Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbWVk
|
100
|
+
aWFsaXZlLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5z
|
101
|
+
U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
|
102
|
+
OiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFs
|
103
|
+
U3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
|
104
|
+
c3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
|
105
|
+
aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbWVkaWFsaXZl
|
106
|
+
LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
|
107
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
108
|
+
fQ==
|
109
|
+
|
110
|
+
JSON
|
111
|
+
end
|
112
|
+
end
|