aws-sdk-medialive 1.152.0 → 1.153.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +4 -1
- data/lib/aws-sdk-medialive/client_api.rb +2 -0
- data/lib/aws-sdk-medialive/types.rb +12 -2
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +5 -1
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dea8237277d31cc7a2caf909ab6342d20dc40885152374e2a2f30eb00a7438e9
|
4
|
+
data.tar.gz: ac70b1d2b74de725c6cb6b7ee952389f57ada3d5a7bea0b68afca1522584fb3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c47432b47a55c3aecd6a65f8b959764be3c98886e7ee7db8b93bb71ed859becf236fc67857d3aa37e3f1dfb1a62c8c482b6c846e4b51fa56285d53d10c4a059e
|
7
|
+
data.tar.gz: 034c16da72e969ad860793e45e7c70e42f6c5c752b19aeb578e8e25b3be1e9c75da8d5dafa4bae429676763de9c4566e84ee9aea554c9117e9b69fed6ad25bfc
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.153.0
|
@@ -7914,6 +7914,9 @@ module Aws::MediaLive
|
|
7914
7914
|
#
|
7915
7915
|
# @option params [Boolean] :dry_run
|
7916
7916
|
#
|
7917
|
+
# @option params [Types::AnywhereSettings] :anywhere_settings
|
7918
|
+
# Elemental anywhere settings
|
7919
|
+
#
|
7917
7920
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7918
7921
|
#
|
7919
7922
|
# * {Types::UpdateChannelResponse#channel #channel} => Types::Channel
|
@@ -14246,7 +14249,7 @@ module Aws::MediaLive
|
|
14246
14249
|
tracer: tracer
|
14247
14250
|
)
|
14248
14251
|
context[:gem_name] = 'aws-sdk-medialive'
|
14249
|
-
context[:gem_version] = '1.
|
14252
|
+
context[:gem_version] = '1.153.0'
|
14250
14253
|
Seahorse::Client::Request.new(handlers, context)
|
14251
14254
|
end
|
14252
14255
|
|
@@ -5106,6 +5106,7 @@ module Aws::MediaLive
|
|
5106
5106
|
UpdateChannel.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
5107
5107
|
UpdateChannel.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
|
5108
5108
|
UpdateChannel.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
|
5109
|
+
UpdateChannel.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: AnywhereSettings, location_name: "anywhereSettings"))
|
5109
5110
|
UpdateChannel.struct_class = Types::UpdateChannel
|
5110
5111
|
|
5111
5112
|
UpdateChannelClass.add_member(:channel_class, Shapes::ShapeRef.new(shape: ChannelClass, required: true, location_name: "channelClass"))
|
@@ -5147,6 +5148,7 @@ module Aws::MediaLive
|
|
5147
5148
|
UpdateChannelRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
5148
5149
|
UpdateChannelRequest.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
|
5149
5150
|
UpdateChannelRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
|
5151
|
+
UpdateChannelRequest.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: AnywhereSettings, location_name: "anywhereSettings"))
|
5150
5152
|
UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
|
5151
5153
|
|
5152
5154
|
UpdateChannelResponse.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, location_name: "channel"))
|
@@ -12736,6 +12736,10 @@ module Aws::MediaLive
|
|
12736
12736
|
# @!attribute [rw] dry_run
|
12737
12737
|
# @return [Boolean]
|
12738
12738
|
#
|
12739
|
+
# @!attribute [rw] anywhere_settings
|
12740
|
+
# The Elemental Anywhere settings for this channel.
|
12741
|
+
# @return [Types::AnywhereSettings]
|
12742
|
+
#
|
12739
12743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
|
12740
12744
|
#
|
12741
12745
|
class UpdateChannel < Struct.new(
|
@@ -12749,7 +12753,8 @@ module Aws::MediaLive
|
|
12749
12753
|
:name,
|
12750
12754
|
:role_arn,
|
12751
12755
|
:channel_engine_version,
|
12752
|
-
:dry_run
|
12756
|
+
:dry_run,
|
12757
|
+
:anywhere_settings)
|
12753
12758
|
SENSITIVE = []
|
12754
12759
|
include Aws::Structure
|
12755
12760
|
end
|
@@ -12841,6 +12846,10 @@ module Aws::MediaLive
|
|
12841
12846
|
# @!attribute [rw] dry_run
|
12842
12847
|
# @return [Boolean]
|
12843
12848
|
#
|
12849
|
+
# @!attribute [rw] anywhere_settings
|
12850
|
+
# Elemental anywhere settings
|
12851
|
+
# @return [Types::AnywhereSettings]
|
12852
|
+
#
|
12844
12853
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest AWS API Documentation
|
12845
12854
|
#
|
12846
12855
|
class UpdateChannelRequest < Struct.new(
|
@@ -12855,7 +12864,8 @@ module Aws::MediaLive
|
|
12855
12864
|
:name,
|
12856
12865
|
:role_arn,
|
12857
12866
|
:channel_engine_version,
|
12858
|
-
:dry_run
|
12867
|
+
:dry_run,
|
12868
|
+
:anywhere_settings)
|
12859
12869
|
SENSITIVE = []
|
12860
12870
|
include Aws::Structure
|
12861
12871
|
end
|
data/lib/aws-sdk-medialive.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -3637,7 +3637,11 @@ module Aws
|
|
3637
3637
|
?channel_engine_version: {
|
3638
3638
|
version: ::String?
|
3639
3639
|
},
|
3640
|
-
?dry_run: bool
|
3640
|
+
?dry_run: bool,
|
3641
|
+
?anywhere_settings: {
|
3642
|
+
channel_placement_group_id: ::String?,
|
3643
|
+
cluster_id: ::String?
|
3644
|
+
}
|
3641
3645
|
) -> _UpdateChannelResponseSuccess
|
3642
3646
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
|
3643
3647
|
|
data/sig/types.rbs
CHANGED
@@ -3247,6 +3247,7 @@ module Aws::MediaLive
|
|
3247
3247
|
attr_accessor role_arn: ::String
|
3248
3248
|
attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
|
3249
3249
|
attr_accessor dry_run: bool
|
3250
|
+
attr_accessor anywhere_settings: Types::AnywhereSettings
|
3250
3251
|
SENSITIVE: []
|
3251
3252
|
end
|
3252
3253
|
|
@@ -3281,6 +3282,7 @@ module Aws::MediaLive
|
|
3281
3282
|
attr_accessor role_arn: ::String
|
3282
3283
|
attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
|
3283
3284
|
attr_accessor dry_run: bool
|
3285
|
+
attr_accessor anywhere_settings: Types::AnywhereSettings
|
3284
3286
|
SENSITIVE: []
|
3285
3287
|
end
|
3286
3288
|
|