aws-sdk-mediaconnect 1.65.0 → 1.66.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +68 -2
- data/lib/aws-sdk-mediaconnect/client_api.rb +38 -0
- data/lib/aws-sdk-mediaconnect/endpoints.rb +14 -0
- data/lib/aws-sdk-mediaconnect/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-mediaconnect/types.rb +102 -11
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- data/sig/client.rbs +17 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +27 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ca071d272d28a8deb78f1cfa6c1e67d05985eb6288d9771a9e5dd22605f2c62
|
4
|
+
data.tar.gz: a5324ccf2dfb70cf616d3e63a38d8720333115424cbbc1915eada093f7a73294
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f284a057bb2d367c592258779a6c34affe34e104fadfa06831f38bafdbb6a6b67976aeaafcce723677367f6da1fb53de01c468c877dad0c882a75784c31f0f15
|
7
|
+
data.tar.gz: f709b1a3ace701ac773d06f9668849e60563a51a833a58330711466f44f3eb69f5a5ed1b29a85cd1b14bb627606b413a5e95301e11803985cbc761268ee97626
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.66.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Elemental MediaConnect introduces thumbnails for Flow source monitoring. Thumbnails provide still image previews of the live content feeding your MediaConnect Flow allowing you to easily verify that your source is operating as expected.
|
8
|
+
|
4
9
|
1.65.0 (2024-07-10)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.66.0
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::MediaConnect
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
88
90
|
add_plugin(Aws::MediaConnect::Plugins::Endpoints)
|
@@ -330,6 +332,16 @@ module Aws::MediaConnect
|
|
330
332
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
331
333
|
# requests are made, and retries are disabled.
|
332
334
|
#
|
335
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
336
|
+
# Allows you to provide a telemetry provider, which is used to
|
337
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
338
|
+
# will not record or emit any telemetry data. The SDK supports the
|
339
|
+
# following telemetry providers:
|
340
|
+
#
|
341
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
342
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
343
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
344
|
+
#
|
333
345
|
# @option options [Aws::TokenProvider] :token_provider
|
334
346
|
# A Bearer Token Provider. This can be an instance of any one of the
|
335
347
|
# following classes:
|
@@ -1081,6 +1093,9 @@ module Aws::MediaConnect
|
|
1081
1093
|
# @option params [Types::AddMaintenance] :maintenance
|
1082
1094
|
# Create maintenance setting for a flow
|
1083
1095
|
#
|
1096
|
+
# @option params [Types::MonitoringConfig] :source_monitoring_config
|
1097
|
+
# The settings for source monitoring.
|
1098
|
+
#
|
1084
1099
|
# @return [Types::CreateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1085
1100
|
#
|
1086
1101
|
# * {Types::CreateFlowResponse#flow #flow} => Types::Flow
|
@@ -1303,6 +1318,9 @@ module Aws::MediaConnect
|
|
1303
1318
|
# maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
1304
1319
|
# maintenance_start_hour: "__string", # required
|
1305
1320
|
# },
|
1321
|
+
# source_monitoring_config: {
|
1322
|
+
# thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
|
1323
|
+
# },
|
1306
1324
|
# })
|
1307
1325
|
#
|
1308
1326
|
# @example Response structure
|
@@ -1498,6 +1516,7 @@ module Aws::MediaConnect
|
|
1498
1516
|
# resp.flow.maintenance.maintenance_deadline #=> String
|
1499
1517
|
# resp.flow.maintenance.maintenance_scheduled_date #=> String
|
1500
1518
|
# resp.flow.maintenance.maintenance_start_hour #=> String
|
1519
|
+
# resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
|
1501
1520
|
#
|
1502
1521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlow AWS API Documentation
|
1503
1522
|
#
|
@@ -1958,6 +1977,7 @@ module Aws::MediaConnect
|
|
1958
1977
|
# resp.flow.maintenance.maintenance_deadline #=> String
|
1959
1978
|
# resp.flow.maintenance.maintenance_scheduled_date #=> String
|
1960
1979
|
# resp.flow.maintenance.maintenance_start_hour #=> String
|
1980
|
+
# resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
|
1961
1981
|
# resp.messages.errors #=> Array
|
1962
1982
|
# resp.messages.errors[0] #=> String
|
1963
1983
|
#
|
@@ -2028,6 +2048,40 @@ module Aws::MediaConnect
|
|
2028
2048
|
req.send_request(options)
|
2029
2049
|
end
|
2030
2050
|
|
2051
|
+
# Displays the thumbnail details of a flow's source stream.
|
2052
|
+
#
|
2053
|
+
# @option params [required, String] :flow_arn
|
2054
|
+
#
|
2055
|
+
# @return [Types::DescribeFlowSourceThumbnailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2056
|
+
#
|
2057
|
+
# * {Types::DescribeFlowSourceThumbnailResponse#thumbnail_details #thumbnail_details} => Types::ThumbnailDetails
|
2058
|
+
#
|
2059
|
+
# @example Request syntax with placeholder values
|
2060
|
+
#
|
2061
|
+
# resp = client.describe_flow_source_thumbnail({
|
2062
|
+
# flow_arn: "__string", # required
|
2063
|
+
# })
|
2064
|
+
#
|
2065
|
+
# @example Response structure
|
2066
|
+
#
|
2067
|
+
# resp.thumbnail_details.flow_arn #=> String
|
2068
|
+
# resp.thumbnail_details.thumbnail #=> String
|
2069
|
+
# resp.thumbnail_details.thumbnail_messages #=> Array
|
2070
|
+
# resp.thumbnail_details.thumbnail_messages[0].code #=> String
|
2071
|
+
# resp.thumbnail_details.thumbnail_messages[0].message #=> String
|
2072
|
+
# resp.thumbnail_details.thumbnail_messages[0].resource_name #=> String
|
2073
|
+
# resp.thumbnail_details.timecode #=> String
|
2074
|
+
# resp.thumbnail_details.timestamp #=> Time
|
2075
|
+
#
|
2076
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceThumbnail AWS API Documentation
|
2077
|
+
#
|
2078
|
+
# @overload describe_flow_source_thumbnail(params = {})
|
2079
|
+
# @param [Hash] params ({})
|
2080
|
+
def describe_flow_source_thumbnail(params = {}, options = {})
|
2081
|
+
req = build_request(:describe_flow_source_thumbnail, params)
|
2082
|
+
req.send_request(options)
|
2083
|
+
end
|
2084
|
+
|
2031
2085
|
# Displays the details of a gateway. The response includes the gateway
|
2032
2086
|
# ARN, name, and CIDR blocks, as well as details about the networks.
|
2033
2087
|
#
|
@@ -3227,6 +3281,9 @@ module Aws::MediaConnect
|
|
3227
3281
|
# @option params [Types::UpdateMaintenance] :maintenance
|
3228
3282
|
# Update maintenance setting for a flow
|
3229
3283
|
#
|
3284
|
+
# @option params [Types::MonitoringConfig] :source_monitoring_config
|
3285
|
+
# The settings for source monitoring.
|
3286
|
+
#
|
3230
3287
|
# @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3231
3288
|
#
|
3232
3289
|
# * {Types::UpdateFlowResponse#flow #flow} => Types::Flow
|
@@ -3248,6 +3305,9 @@ module Aws::MediaConnect
|
|
3248
3305
|
# maintenance_scheduled_date: "__string",
|
3249
3306
|
# maintenance_start_hour: "__string",
|
3250
3307
|
# },
|
3308
|
+
# source_monitoring_config: {
|
3309
|
+
# thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
|
3310
|
+
# },
|
3251
3311
|
# })
|
3252
3312
|
#
|
3253
3313
|
# @example Response structure
|
@@ -3443,6 +3503,7 @@ module Aws::MediaConnect
|
|
3443
3503
|
# resp.flow.maintenance.maintenance_deadline #=> String
|
3444
3504
|
# resp.flow.maintenance.maintenance_scheduled_date #=> String
|
3445
3505
|
# resp.flow.maintenance.maintenance_start_hour #=> String
|
3506
|
+
# resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
|
3446
3507
|
#
|
3447
3508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlow AWS API Documentation
|
3448
3509
|
#
|
@@ -4039,14 +4100,19 @@ module Aws::MediaConnect
|
|
4039
4100
|
# @api private
|
4040
4101
|
def build_request(operation_name, params = {})
|
4041
4102
|
handlers = @handlers.for(operation_name)
|
4103
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
4104
|
+
Aws::Telemetry.module_to_tracer_name('Aws::MediaConnect')
|
4105
|
+
)
|
4042
4106
|
context = Seahorse::Client::RequestContext.new(
|
4043
4107
|
operation_name: operation_name,
|
4044
4108
|
operation: config.api.operation(operation_name),
|
4045
4109
|
client: self,
|
4046
4110
|
params: params,
|
4047
|
-
config: config
|
4111
|
+
config: config,
|
4112
|
+
tracer: tracer
|
4113
|
+
)
|
4048
4114
|
context[:gem_name] = 'aws-sdk-mediaconnect'
|
4049
|
-
context[:gem_version] = '1.
|
4115
|
+
context[:gem_version] = '1.66.0'
|
4050
4116
|
Seahorse::Client::Request.new(handlers, context)
|
4051
4117
|
end
|
4052
4118
|
|
@@ -73,6 +73,8 @@ module Aws::MediaConnect
|
|
73
73
|
DescribeFlowResponse = Shapes::StructureShape.new(name: 'DescribeFlowResponse')
|
74
74
|
DescribeFlowSourceMetadataRequest = Shapes::StructureShape.new(name: 'DescribeFlowSourceMetadataRequest')
|
75
75
|
DescribeFlowSourceMetadataResponse = Shapes::StructureShape.new(name: 'DescribeFlowSourceMetadataResponse')
|
76
|
+
DescribeFlowSourceThumbnailRequest = Shapes::StructureShape.new(name: 'DescribeFlowSourceThumbnailRequest')
|
77
|
+
DescribeFlowSourceThumbnailResponse = Shapes::StructureShape.new(name: 'DescribeFlowSourceThumbnailResponse')
|
76
78
|
DescribeGatewayInstanceRequest = Shapes::StructureShape.new(name: 'DescribeGatewayInstanceRequest')
|
77
79
|
DescribeGatewayInstanceResponse = Shapes::StructureShape.new(name: 'DescribeGatewayInstanceResponse')
|
78
80
|
DescribeGatewayRequest = Shapes::StructureShape.new(name: 'DescribeGatewayRequest')
|
@@ -151,6 +153,7 @@ module Aws::MediaConnect
|
|
151
153
|
MediaStreamType = Shapes::StringShape.new(name: 'MediaStreamType')
|
152
154
|
MessageDetail = Shapes::StructureShape.new(name: 'MessageDetail')
|
153
155
|
Messages = Shapes::StructureShape.new(name: 'Messages')
|
156
|
+
MonitoringConfig = Shapes::StructureShape.new(name: 'MonitoringConfig')
|
154
157
|
NetworkInterfaceType = Shapes::StringShape.new(name: 'NetworkInterfaceType')
|
155
158
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
156
159
|
Offering = Shapes::StructureShape.new(name: 'Offering')
|
@@ -195,6 +198,8 @@ module Aws::MediaConnect
|
|
195
198
|
StopFlowResponse = Shapes::StructureShape.new(name: 'StopFlowResponse')
|
196
199
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
197
200
|
Tcs = Shapes::StringShape.new(name: 'Tcs')
|
201
|
+
ThumbnailDetails = Shapes::StructureShape.new(name: 'ThumbnailDetails')
|
202
|
+
ThumbnailState = Shapes::StringShape.new(name: 'ThumbnailState')
|
198
203
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
199
204
|
Transport = Shapes::StructureShape.new(name: 'Transport')
|
200
205
|
TransportMediaInfo = Shapes::StructureShape.new(name: 'TransportMediaInfo')
|
@@ -473,6 +478,7 @@ module Aws::MediaConnect
|
|
473
478
|
CreateFlowRequest.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfSetSourceRequest, location_name: "sources"))
|
474
479
|
CreateFlowRequest.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterfaceRequest, location_name: "vpcInterfaces"))
|
475
480
|
CreateFlowRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: AddMaintenance, location_name: "maintenance"))
|
481
|
+
CreateFlowRequest.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
|
476
482
|
CreateFlowRequest.struct_class = Types::CreateFlowRequest
|
477
483
|
|
478
484
|
CreateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
|
@@ -538,6 +544,12 @@ module Aws::MediaConnect
|
|
538
544
|
DescribeFlowSourceMetadataResponse.add_member(:transport_media_info, Shapes::ShapeRef.new(shape: TransportMediaInfo, location_name: "transportMediaInfo"))
|
539
545
|
DescribeFlowSourceMetadataResponse.struct_class = Types::DescribeFlowSourceMetadataResponse
|
540
546
|
|
547
|
+
DescribeFlowSourceThumbnailRequest.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "flowArn"))
|
548
|
+
DescribeFlowSourceThumbnailRequest.struct_class = Types::DescribeFlowSourceThumbnailRequest
|
549
|
+
|
550
|
+
DescribeFlowSourceThumbnailResponse.add_member(:thumbnail_details, Shapes::ShapeRef.new(shape: ThumbnailDetails, location_name: "thumbnailDetails"))
|
551
|
+
DescribeFlowSourceThumbnailResponse.struct_class = Types::DescribeFlowSourceThumbnailResponse
|
552
|
+
|
541
553
|
DescribeGatewayInstanceRequest.add_member(:gateway_instance_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "gatewayInstanceArn", metadata: {"pattern"=>"^arn:.+:mediaconnect.+:gateway:.+:instance:.+$"}))
|
542
554
|
DescribeGatewayInstanceRequest.struct_class = Types::DescribeGatewayInstanceRequest
|
543
555
|
|
@@ -625,6 +637,7 @@ module Aws::MediaConnect
|
|
625
637
|
Flow.add_member(:status, Shapes::ShapeRef.new(shape: Status, required: true, location_name: "status"))
|
626
638
|
Flow.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterface, location_name: "vpcInterfaces"))
|
627
639
|
Flow.add_member(:maintenance, Shapes::ShapeRef.new(shape: Maintenance, location_name: "maintenance"))
|
640
|
+
Flow.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
|
628
641
|
Flow.struct_class = Types::Flow
|
629
642
|
|
630
643
|
Fmtp.add_member(:channel_order, Shapes::ShapeRef.new(shape: __string, location_name: "channelOrder"))
|
@@ -870,6 +883,9 @@ module Aws::MediaConnect
|
|
870
883
|
Messages.add_member(:errors, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "errors"))
|
871
884
|
Messages.struct_class = Types::Messages
|
872
885
|
|
886
|
+
MonitoringConfig.add_member(:thumbnail_state, Shapes::ShapeRef.new(shape: ThumbnailState, location_name: "thumbnailState"))
|
887
|
+
MonitoringConfig.struct_class = Types::MonitoringConfig
|
888
|
+
|
873
889
|
NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "message"))
|
874
890
|
NotFoundException.struct_class = Types::NotFoundException
|
875
891
|
|
@@ -1054,6 +1070,13 @@ module Aws::MediaConnect
|
|
1054
1070
|
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, required: true, location_name: "tags"))
|
1055
1071
|
TagResourceRequest.struct_class = Types::TagResourceRequest
|
1056
1072
|
|
1073
|
+
ThumbnailDetails.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "flowArn"))
|
1074
|
+
ThumbnailDetails.add_member(:thumbnail, Shapes::ShapeRef.new(shape: __string, location_name: "thumbnail"))
|
1075
|
+
ThumbnailDetails.add_member(:thumbnail_messages, Shapes::ShapeRef.new(shape: __listOfMessageDetail, required: true, location_name: "thumbnailMessages"))
|
1076
|
+
ThumbnailDetails.add_member(:timecode, Shapes::ShapeRef.new(shape: __string, location_name: "timecode"))
|
1077
|
+
ThumbnailDetails.add_member(:timestamp, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "timestamp"))
|
1078
|
+
ThumbnailDetails.struct_class = Types::ThumbnailDetails
|
1079
|
+
|
1057
1080
|
TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "message"))
|
1058
1081
|
TooManyRequestsException.struct_class = Types::TooManyRequestsException
|
1059
1082
|
|
@@ -1221,6 +1244,7 @@ module Aws::MediaConnect
|
|
1221
1244
|
UpdateFlowRequest.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "flowArn", metadata: {"pattern"=>"^arn:.+:mediaconnect.+:flow:.+$"}))
|
1222
1245
|
UpdateFlowRequest.add_member(:source_failover_config, Shapes::ShapeRef.new(shape: UpdateFailoverConfig, location_name: "sourceFailoverConfig"))
|
1223
1246
|
UpdateFlowRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: UpdateMaintenance, location_name: "maintenance"))
|
1247
|
+
UpdateFlowRequest.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
|
1224
1248
|
UpdateFlowRequest.struct_class = Types::UpdateFlowRequest
|
1225
1249
|
|
1226
1250
|
UpdateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
|
@@ -1616,6 +1640,20 @@ module Aws::MediaConnect
|
|
1616
1640
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1617
1641
|
end)
|
1618
1642
|
|
1643
|
+
api.add_operation(:describe_flow_source_thumbnail, Seahorse::Model::Operation.new.tap do |o|
|
1644
|
+
o.name = "DescribeFlowSourceThumbnail"
|
1645
|
+
o.http_method = "GET"
|
1646
|
+
o.http_request_uri = "/v1/flows/{flowArn}/source-thumbnail"
|
1647
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeFlowSourceThumbnailRequest)
|
1648
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeFlowSourceThumbnailResponse)
|
1649
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1650
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1651
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1652
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1653
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1654
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1655
|
+
end)
|
1656
|
+
|
1619
1657
|
api.add_operation(:describe_gateway, Seahorse::Model::Operation.new.tap do |o|
|
1620
1658
|
o.name = "DescribeGateway"
|
1621
1659
|
o.http_method = "GET"
|
@@ -236,6 +236,20 @@ module Aws::MediaConnect
|
|
236
236
|
end
|
237
237
|
end
|
238
238
|
|
239
|
+
class DescribeFlowSourceThumbnail
|
240
|
+
def self.build(context)
|
241
|
+
unless context.config.regional_endpoint
|
242
|
+
endpoint = context.config.endpoint.to_s
|
243
|
+
end
|
244
|
+
Aws::MediaConnect::EndpointParameters.new(
|
245
|
+
region: context.config.region,
|
246
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
247
|
+
use_fips: context.config.use_fips_endpoint,
|
248
|
+
endpoint: endpoint,
|
249
|
+
)
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
239
253
|
class DescribeGateway
|
240
254
|
def self.build(context)
|
241
255
|
unless context.config.regional_endpoint
|
@@ -90,6 +90,8 @@ module Aws::MediaConnect
|
|
90
90
|
Aws::MediaConnect::Endpoints::DescribeFlow.build(context)
|
91
91
|
when :describe_flow_source_metadata
|
92
92
|
Aws::MediaConnect::Endpoints::DescribeFlowSourceMetadata.build(context)
|
93
|
+
when :describe_flow_source_thumbnail
|
94
|
+
Aws::MediaConnect::Endpoints::DescribeFlowSourceThumbnail.build(context)
|
93
95
|
when :describe_gateway
|
94
96
|
Aws::MediaConnect::Endpoints::DescribeGateway.build(context)
|
95
97
|
when :describe_gateway_instance
|
@@ -609,9 +609,9 @@ module Aws::MediaConnect
|
|
609
609
|
include Aws::Structure
|
610
610
|
end
|
611
611
|
|
612
|
-
# A Bridge is the connection between your
|
612
|
+
# A Bridge is the connection between your data center's Instances and
|
613
613
|
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
614
|
-
# to your
|
614
|
+
# to your data center or from your data center to the AWS cloud.
|
615
615
|
#
|
616
616
|
# @!attribute [rw] bridge_arn
|
617
617
|
# The Amazon Resource Number (ARN) of the bridge.
|
@@ -919,9 +919,9 @@ module Aws::MediaConnect
|
|
919
919
|
# The result of a successful CreateBridge request.
|
920
920
|
#
|
921
921
|
# @!attribute [rw] bridge
|
922
|
-
# A Bridge is the connection between your
|
922
|
+
# A Bridge is the connection between your data center's Instances and
|
923
923
|
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
924
|
-
# to your
|
924
|
+
# to your data center or from your data center to the AWS cloud.
|
925
925
|
# @return [Types::Bridge]
|
926
926
|
#
|
927
927
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridgeResponse AWS API Documentation
|
@@ -992,6 +992,10 @@ module Aws::MediaConnect
|
|
992
992
|
# Create maintenance setting for a flow
|
993
993
|
# @return [Types::AddMaintenance]
|
994
994
|
#
|
995
|
+
# @!attribute [rw] source_monitoring_config
|
996
|
+
# The settings for source monitoring.
|
997
|
+
# @return [Types::MonitoringConfig]
|
998
|
+
#
|
995
999
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlowRequest AWS API Documentation
|
996
1000
|
#
|
997
1001
|
class CreateFlowRequest < Struct.new(
|
@@ -1004,7 +1008,8 @@ module Aws::MediaConnect
|
|
1004
1008
|
:source_failover_config,
|
1005
1009
|
:sources,
|
1006
1010
|
:vpc_interfaces,
|
1007
|
-
:maintenance
|
1011
|
+
:maintenance,
|
1012
|
+
:source_monitoring_config)
|
1008
1013
|
SENSITIVE = []
|
1009
1014
|
include Aws::Structure
|
1010
1015
|
end
|
@@ -1207,9 +1212,9 @@ module Aws::MediaConnect
|
|
1207
1212
|
# The result of a successful DescribeBridge request.
|
1208
1213
|
#
|
1209
1214
|
# @!attribute [rw] bridge
|
1210
|
-
# A Bridge is the connection between your
|
1215
|
+
# A Bridge is the connection between your data center's Instances and
|
1211
1216
|
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
1212
|
-
# to your
|
1217
|
+
# to your data center or from your data center to the AWS cloud.
|
1213
1218
|
# @return [Types::Bridge]
|
1214
1219
|
#
|
1215
1220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridgeResponse AWS API Documentation
|
@@ -1294,6 +1299,32 @@ module Aws::MediaConnect
|
|
1294
1299
|
include Aws::Structure
|
1295
1300
|
end
|
1296
1301
|
|
1302
|
+
# @!attribute [rw] flow_arn
|
1303
|
+
# @return [String]
|
1304
|
+
#
|
1305
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceThumbnailRequest AWS API Documentation
|
1306
|
+
#
|
1307
|
+
class DescribeFlowSourceThumbnailRequest < Struct.new(
|
1308
|
+
:flow_arn)
|
1309
|
+
SENSITIVE = []
|
1310
|
+
include Aws::Structure
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
# The result of a successful DescribeFlowSourceThumbnail request.
|
1314
|
+
#
|
1315
|
+
# @!attribute [rw] thumbnail_details
|
1316
|
+
# The details of the thumbnail, including thumbnail base64 string,
|
1317
|
+
# timecode and the time when thumbnail was generated.
|
1318
|
+
# @return [Types::ThumbnailDetails]
|
1319
|
+
#
|
1320
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceThumbnailResponse AWS API Documentation
|
1321
|
+
#
|
1322
|
+
class DescribeFlowSourceThumbnailResponse < Struct.new(
|
1323
|
+
:thumbnail_details)
|
1324
|
+
SENSITIVE = []
|
1325
|
+
include Aws::Structure
|
1326
|
+
end
|
1327
|
+
|
1297
1328
|
# @!attribute [rw] gateway_instance_arn
|
1298
1329
|
# @return [String]
|
1299
1330
|
#
|
@@ -1753,6 +1784,10 @@ module Aws::MediaConnect
|
|
1753
1784
|
# The maintenance setting of a flow
|
1754
1785
|
# @return [Types::Maintenance]
|
1755
1786
|
#
|
1787
|
+
# @!attribute [rw] source_monitoring_config
|
1788
|
+
# The settings for source monitoring.
|
1789
|
+
# @return [Types::MonitoringConfig]
|
1790
|
+
#
|
1756
1791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Flow AWS API Documentation
|
1757
1792
|
#
|
1758
1793
|
class Flow < Struct.new(
|
@@ -1769,7 +1804,8 @@ module Aws::MediaConnect
|
|
1769
1804
|
:sources,
|
1770
1805
|
:status,
|
1771
1806
|
:vpc_interfaces,
|
1772
|
-
:maintenance
|
1807
|
+
:maintenance,
|
1808
|
+
:source_monitoring_config)
|
1773
1809
|
SENSITIVE = []
|
1774
1810
|
include Aws::Structure
|
1775
1811
|
end
|
@@ -3045,6 +3081,20 @@ module Aws::MediaConnect
|
|
3045
3081
|
include Aws::Structure
|
3046
3082
|
end
|
3047
3083
|
|
3084
|
+
# The settings for source monitoring.
|
3085
|
+
#
|
3086
|
+
# @!attribute [rw] thumbnail_state
|
3087
|
+
# The state of thumbnail monitoring.
|
3088
|
+
# @return [String]
|
3089
|
+
#
|
3090
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/MonitoringConfig AWS API Documentation
|
3091
|
+
#
|
3092
|
+
class MonitoringConfig < Struct.new(
|
3093
|
+
:thumbnail_state)
|
3094
|
+
SENSITIVE = []
|
3095
|
+
include Aws::Structure
|
3096
|
+
end
|
3097
|
+
|
3048
3098
|
# Exception raised by AWS Elemental MediaConnect. See the error message
|
3049
3099
|
# and documentation for the operation for more information on the cause
|
3050
3100
|
# of this exception.
|
@@ -4003,6 +4053,42 @@ module Aws::MediaConnect
|
|
4003
4053
|
include Aws::Structure
|
4004
4054
|
end
|
4005
4055
|
|
4056
|
+
# The details of the thumbnail, including thumbnail base64 string,
|
4057
|
+
# timecode and the time when thumbnail was generated.
|
4058
|
+
#
|
4059
|
+
# @!attribute [rw] flow_arn
|
4060
|
+
# The ARN of the flow that DescribeFlowSourceThumbnail was performed
|
4061
|
+
# on.
|
4062
|
+
# @return [String]
|
4063
|
+
#
|
4064
|
+
# @!attribute [rw] thumbnail
|
4065
|
+
# Thumbnail Base64 string.
|
4066
|
+
# @return [String]
|
4067
|
+
#
|
4068
|
+
# @!attribute [rw] thumbnail_messages
|
4069
|
+
# Status code and messages about the flow source thumbnail.
|
4070
|
+
# @return [Array<Types::MessageDetail>]
|
4071
|
+
#
|
4072
|
+
# @!attribute [rw] timecode
|
4073
|
+
# Timecode of thumbnail.
|
4074
|
+
# @return [String]
|
4075
|
+
#
|
4076
|
+
# @!attribute [rw] timestamp
|
4077
|
+
# The timestamp of when thumbnail was generated.
|
4078
|
+
# @return [Time]
|
4079
|
+
#
|
4080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ThumbnailDetails AWS API Documentation
|
4081
|
+
#
|
4082
|
+
class ThumbnailDetails < Struct.new(
|
4083
|
+
:flow_arn,
|
4084
|
+
:thumbnail,
|
4085
|
+
:thumbnail_messages,
|
4086
|
+
:timecode,
|
4087
|
+
:timestamp)
|
4088
|
+
SENSITIVE = []
|
4089
|
+
include Aws::Structure
|
4090
|
+
end
|
4091
|
+
|
4006
4092
|
# Exception raised by AWS Elemental MediaConnect. See the error message
|
4007
4093
|
# and documentation for the operation for more information on the cause
|
4008
4094
|
# of this exception.
|
@@ -4376,9 +4462,9 @@ module Aws::MediaConnect
|
|
4376
4462
|
# The bridge has been successfully updated.
|
4377
4463
|
#
|
4378
4464
|
# @!attribute [rw] bridge
|
4379
|
-
# A Bridge is the connection between your
|
4465
|
+
# A Bridge is the connection between your data center's Instances and
|
4380
4466
|
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
4381
|
-
# to your
|
4467
|
+
# to your data center or from your data center to the AWS cloud.
|
4382
4468
|
# @return [Types::Bridge]
|
4383
4469
|
#
|
4384
4470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeResponse AWS API Documentation
|
@@ -4868,12 +4954,17 @@ module Aws::MediaConnect
|
|
4868
4954
|
# Update maintenance setting for a flow
|
4869
4955
|
# @return [Types::UpdateMaintenance]
|
4870
4956
|
#
|
4957
|
+
# @!attribute [rw] source_monitoring_config
|
4958
|
+
# The settings for source monitoring.
|
4959
|
+
# @return [Types::MonitoringConfig]
|
4960
|
+
#
|
4871
4961
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowRequest AWS API Documentation
|
4872
4962
|
#
|
4873
4963
|
class UpdateFlowRequest < Struct.new(
|
4874
4964
|
:flow_arn,
|
4875
4965
|
:source_failover_config,
|
4876
|
-
:maintenance
|
4966
|
+
:maintenance,
|
4967
|
+
:source_monitoring_config)
|
4877
4968
|
SENSITIVE = []
|
4878
4969
|
include Aws::Structure
|
4879
4970
|
end
|
data/lib/aws-sdk-mediaconnect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
@@ -577,6 +578,9 @@ module Aws
|
|
577
578
|
?maintenance: {
|
578
579
|
maintenance_day: ("Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday"),
|
579
580
|
maintenance_start_hour: ::String
|
581
|
+
},
|
582
|
+
?source_monitoring_config: {
|
583
|
+
thumbnail_state: ("ENABLED" | "DISABLED")?
|
580
584
|
}
|
581
585
|
) -> _CreateFlowResponseSuccess
|
582
586
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFlowResponseSuccess
|
@@ -675,6 +679,16 @@ module Aws
|
|
675
679
|
) -> _DescribeFlowSourceMetadataResponseSuccess
|
676
680
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFlowSourceMetadataResponseSuccess
|
677
681
|
|
682
|
+
interface _DescribeFlowSourceThumbnailResponseSuccess
|
683
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFlowSourceThumbnailResponse]
|
684
|
+
def thumbnail_details: () -> Types::ThumbnailDetails
|
685
|
+
end
|
686
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#describe_flow_source_thumbnail-instance_method
|
687
|
+
def describe_flow_source_thumbnail: (
|
688
|
+
flow_arn: ::String
|
689
|
+
) -> _DescribeFlowSourceThumbnailResponseSuccess
|
690
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFlowSourceThumbnailResponseSuccess
|
691
|
+
|
678
692
|
interface _DescribeGatewayResponseSuccess
|
679
693
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGatewayResponse]
|
680
694
|
def gateway: () -> Types::Gateway
|
@@ -1074,6 +1088,9 @@ module Aws
|
|
1074
1088
|
maintenance_day: ("Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday")?,
|
1075
1089
|
maintenance_scheduled_date: ::String?,
|
1076
1090
|
maintenance_start_hour: ::String?
|
1091
|
+
},
|
1092
|
+
?source_monitoring_config: {
|
1093
|
+
thumbnail_state: ("ENABLED" | "DISABLED")?
|
1077
1094
|
}
|
1078
1095
|
) -> _UpdateFlowResponseSuccess
|
1079
1096
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFlowResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -277,6 +277,7 @@ module Aws::MediaConnect
|
|
277
277
|
attr_accessor sources: ::Array[Types::SetSourceRequest]
|
278
278
|
attr_accessor vpc_interfaces: ::Array[Types::VpcInterfaceRequest]
|
279
279
|
attr_accessor maintenance: Types::AddMaintenance
|
280
|
+
attr_accessor source_monitoring_config: Types::MonitoringConfig
|
280
281
|
SENSITIVE: []
|
281
282
|
end
|
282
283
|
|
@@ -379,6 +380,16 @@ module Aws::MediaConnect
|
|
379
380
|
SENSITIVE: []
|
380
381
|
end
|
381
382
|
|
383
|
+
class DescribeFlowSourceThumbnailRequest
|
384
|
+
attr_accessor flow_arn: ::String
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class DescribeFlowSourceThumbnailResponse
|
389
|
+
attr_accessor thumbnail_details: Types::ThumbnailDetails
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
382
393
|
class DescribeGatewayInstanceRequest
|
383
394
|
attr_accessor gateway_instance_arn: ::String
|
384
395
|
SENSITIVE: []
|
@@ -499,6 +510,7 @@ module Aws::MediaConnect
|
|
499
510
|
attr_accessor status: ("STANDBY" | "ACTIVE" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "ERROR")
|
500
511
|
attr_accessor vpc_interfaces: ::Array[Types::VpcInterface]
|
501
512
|
attr_accessor maintenance: Types::Maintenance
|
513
|
+
attr_accessor source_monitoring_config: Types::MonitoringConfig
|
502
514
|
SENSITIVE: []
|
503
515
|
end
|
504
516
|
|
@@ -843,6 +855,11 @@ module Aws::MediaConnect
|
|
843
855
|
SENSITIVE: []
|
844
856
|
end
|
845
857
|
|
858
|
+
class MonitoringConfig
|
859
|
+
attr_accessor thumbnail_state: ("ENABLED" | "DISABLED")
|
860
|
+
SENSITIVE: []
|
861
|
+
end
|
862
|
+
|
846
863
|
class NotFoundException
|
847
864
|
attr_accessor message: ::String
|
848
865
|
SENSITIVE: []
|
@@ -1091,6 +1108,15 @@ module Aws::MediaConnect
|
|
1091
1108
|
SENSITIVE: []
|
1092
1109
|
end
|
1093
1110
|
|
1111
|
+
class ThumbnailDetails
|
1112
|
+
attr_accessor flow_arn: ::String
|
1113
|
+
attr_accessor thumbnail: ::String
|
1114
|
+
attr_accessor thumbnail_messages: ::Array[Types::MessageDetail]
|
1115
|
+
attr_accessor timecode: ::String
|
1116
|
+
attr_accessor timestamp: ::Time
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1094
1120
|
class TooManyRequestsException
|
1095
1121
|
attr_accessor message: ::String
|
1096
1122
|
SENSITIVE: []
|
@@ -1311,6 +1337,7 @@ module Aws::MediaConnect
|
|
1311
1337
|
attr_accessor flow_arn: ::String
|
1312
1338
|
attr_accessor source_failover_config: Types::UpdateFailoverConfig
|
1313
1339
|
attr_accessor maintenance: Types::UpdateMaintenance
|
1340
|
+
attr_accessor source_monitoring_config: Types::MonitoringConfig
|
1314
1341
|
SENSITIVE: []
|
1315
1342
|
end
|
1316
1343
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediaconnect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.66.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|