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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b8632ac91a7fdced0da018aab211085cb508a9c052240b812ab7930ef4ee205
4
- data.tar.gz: 56dce7d22b0fad01392a67f49aaa0623c6a2613c8365700298389eab266b417c
3
+ metadata.gz: dea8237277d31cc7a2caf909ab6342d20dc40885152374e2a2f30eb00a7438e9
4
+ data.tar.gz: ac70b1d2b74de725c6cb6b7ee952389f57ada3d5a7bea0b68afca1522584fb3c
5
5
  SHA512:
6
- metadata.gz: 69eb956a82e42eef21dc2e199c369a801459bb896ae57f6429b14636610e69f386614e9f73b987995ccac5ce37722828e32470784a3b8833b50403bfa740f685
7
- data.tar.gz: cad24d202c0addc62fcadaa94399bb998bde264802cca5dfc1ae68343da517a70df4ede7d5129b1dd19d33af22fc47a3c1e8e02adf0e29e70b97114b5131e2a6
6
+ metadata.gz: c47432b47a55c3aecd6a65f8b959764be3c98886e7ee7db8b93bb71ed859becf236fc67857d3aa37e3f1dfb1a62c8c482b6c846e4b51fa56285d53d10c4a059e
7
+ data.tar.gz: 034c16da72e969ad860793e45e7c70e42f6c5c752b19aeb578e8e25b3be1e9c75da8d5dafa4bae429676763de9c4566e84ee9aea554c9117e9b69fed6ad25bfc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.153.0 (2025-05-07)
5
+ ------------------
6
+
7
+ * Feature - Enables Updating Anywhere Settings on a MediaLive Anywhere Channel.
8
+
4
9
  1.152.0 (2025-05-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.152.0
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.152.0'
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
@@ -55,7 +55,7 @@ module Aws::MediaLive
55
55
  autoload :EndpointProvider, 'aws-sdk-medialive/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-medialive/endpoints'
57
57
 
58
- GEM_VERSION = '1.152.0'
58
+ GEM_VERSION = '1.153.0'
59
59
 
60
60
  end
61
61
 
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.152.0
4
+ version: 1.153.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services