aws-sdk-mediaconnect 1.43.0 → 1.44.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-mediaconnect/client.rb +32 -1
- data/lib/aws-sdk-mediaconnect/client_api.rb +23 -0
- data/lib/aws-sdk-mediaconnect/types.rb +131 -4
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b158b73a6e06a349af9cb0b08727f22f90c2c69dbacef201b594c58e56fa5276
|
4
|
+
data.tar.gz: b00f25eaa462403d4c636c1fe6c17943f7937e083c320b5d9ce97aeba7c3f6d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e9a8ba31cbe012ec60045d96b2cd494485b9b6b8b5ae609573906da4cae8c66142012ba846b1ecfbae4bfd550572930c0e29d1f863b2bd6a4d679c067018b45
|
7
|
+
data.tar.gz: 000bd96251886eb08c64a75a4101d622e02b093219d8cb47bdb8b099f93d06c1d9754f285530d383454c06e9914885c9d5dac65a07ee2ba70e981bbb22d4c1d5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.0
|
@@ -740,6 +740,9 @@ module Aws::MediaConnect
|
|
740
740
|
# @option params [Array<Types::VpcInterfaceRequest>] :vpc_interfaces
|
741
741
|
# The VPC interfaces you want on the flow.
|
742
742
|
#
|
743
|
+
# @option params [Types::AddMaintenance] :maintenance
|
744
|
+
# Create maintenance setting for a flow
|
745
|
+
#
|
743
746
|
# @return [Types::CreateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
744
747
|
#
|
745
748
|
# * {Types::CreateFlowResponse#flow #flow} => Types::Flow
|
@@ -941,6 +944,10 @@ module Aws::MediaConnect
|
|
941
944
|
# subnet_id: "__string", # required
|
942
945
|
# },
|
943
946
|
# ],
|
947
|
+
# maintenance: {
|
948
|
+
# maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
949
|
+
# maintenance_start_hour: "__string", # required
|
950
|
+
# },
|
944
951
|
# })
|
945
952
|
#
|
946
953
|
# @example Response structure
|
@@ -1118,6 +1125,10 @@ module Aws::MediaConnect
|
|
1118
1125
|
# resp.flow.vpc_interfaces[0].security_group_ids #=> Array
|
1119
1126
|
# resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
|
1120
1127
|
# resp.flow.vpc_interfaces[0].subnet_id #=> String
|
1128
|
+
# resp.flow.maintenance.maintenance_day #=> String, one of "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"
|
1129
|
+
# resp.flow.maintenance.maintenance_deadline #=> String
|
1130
|
+
# resp.flow.maintenance.maintenance_scheduled_date #=> String
|
1131
|
+
# resp.flow.maintenance.maintenance_start_hour #=> String
|
1121
1132
|
#
|
1122
1133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlow AWS API Documentation
|
1123
1134
|
#
|
@@ -1349,6 +1360,10 @@ module Aws::MediaConnect
|
|
1349
1360
|
# resp.flow.vpc_interfaces[0].security_group_ids #=> Array
|
1350
1361
|
# resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
|
1351
1362
|
# resp.flow.vpc_interfaces[0].subnet_id #=> String
|
1363
|
+
# resp.flow.maintenance.maintenance_day #=> String, one of "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"
|
1364
|
+
# resp.flow.maintenance.maintenance_deadline #=> String
|
1365
|
+
# resp.flow.maintenance.maintenance_scheduled_date #=> String
|
1366
|
+
# resp.flow.maintenance.maintenance_start_hour #=> String
|
1352
1367
|
# resp.messages.errors #=> Array
|
1353
1368
|
# resp.messages.errors[0] #=> String
|
1354
1369
|
#
|
@@ -1584,6 +1599,10 @@ module Aws::MediaConnect
|
|
1584
1599
|
# resp.flows[0].name #=> String
|
1585
1600
|
# resp.flows[0].source_type #=> String, one of "OWNED", "ENTITLED"
|
1586
1601
|
# resp.flows[0].status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
|
1602
|
+
# resp.flows[0].maintenance.maintenance_day #=> String, one of "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"
|
1603
|
+
# resp.flows[0].maintenance.maintenance_deadline #=> String
|
1604
|
+
# resp.flows[0].maintenance.maintenance_scheduled_date #=> String
|
1605
|
+
# resp.flows[0].maintenance.maintenance_start_hour #=> String
|
1587
1606
|
# resp.next_token #=> String
|
1588
1607
|
#
|
1589
1608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListFlows AWS API Documentation
|
@@ -2070,6 +2089,9 @@ module Aws::MediaConnect
|
|
2070
2089
|
# @option params [Types::UpdateFailoverConfig] :source_failover_config
|
2071
2090
|
# The settings for source failover.
|
2072
2091
|
#
|
2092
|
+
# @option params [Types::UpdateMaintenance] :maintenance
|
2093
|
+
# Update maintenance setting for a flow
|
2094
|
+
#
|
2073
2095
|
# @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2074
2096
|
#
|
2075
2097
|
# * {Types::UpdateFlowResponse#flow #flow} => Types::Flow
|
@@ -2086,6 +2108,11 @@ module Aws::MediaConnect
|
|
2086
2108
|
# },
|
2087
2109
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
2088
2110
|
# },
|
2111
|
+
# maintenance: {
|
2112
|
+
# maintenance_day: "Monday", # accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
2113
|
+
# maintenance_scheduled_date: "__string",
|
2114
|
+
# maintenance_start_hour: "__string",
|
2115
|
+
# },
|
2089
2116
|
# })
|
2090
2117
|
#
|
2091
2118
|
# @example Response structure
|
@@ -2263,6 +2290,10 @@ module Aws::MediaConnect
|
|
2263
2290
|
# resp.flow.vpc_interfaces[0].security_group_ids #=> Array
|
2264
2291
|
# resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
|
2265
2292
|
# resp.flow.vpc_interfaces[0].subnet_id #=> String
|
2293
|
+
# resp.flow.maintenance.maintenance_day #=> String, one of "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"
|
2294
|
+
# resp.flow.maintenance.maintenance_deadline #=> String
|
2295
|
+
# resp.flow.maintenance.maintenance_scheduled_date #=> String
|
2296
|
+
# resp.flow.maintenance.maintenance_start_hour #=> String
|
2266
2297
|
#
|
2267
2298
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlow AWS API Documentation
|
2268
2299
|
#
|
@@ -2793,7 +2824,7 @@ module Aws::MediaConnect
|
|
2793
2824
|
params: params,
|
2794
2825
|
config: config)
|
2795
2826
|
context[:gem_name] = 'aws-sdk-mediaconnect'
|
2796
|
-
context[:gem_version] = '1.
|
2827
|
+
context[:gem_version] = '1.44.0'
|
2797
2828
|
Seahorse::Client::Request.new(handlers, context)
|
2798
2829
|
end
|
2799
2830
|
|
@@ -22,6 +22,7 @@ module Aws::MediaConnect
|
|
22
22
|
AddFlowSourcesResponse = Shapes::StructureShape.new(name: 'AddFlowSourcesResponse')
|
23
23
|
AddFlowVpcInterfacesRequest = Shapes::StructureShape.new(name: 'AddFlowVpcInterfacesRequest')
|
24
24
|
AddFlowVpcInterfacesResponse = Shapes::StructureShape.new(name: 'AddFlowVpcInterfacesResponse')
|
25
|
+
AddMaintenance = Shapes::StructureShape.new(name: 'AddMaintenance')
|
25
26
|
AddMediaStreamRequest = Shapes::StructureShape.new(name: 'AddMediaStreamRequest')
|
26
27
|
AddOutputRequest = Shapes::StructureShape.new(name: 'AddOutputRequest')
|
27
28
|
Algorithm = Shapes::StringShape.new(name: 'Algorithm')
|
@@ -76,6 +77,8 @@ module Aws::MediaConnect
|
|
76
77
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
77
78
|
ListedEntitlement = Shapes::StructureShape.new(name: 'ListedEntitlement')
|
78
79
|
ListedFlow = Shapes::StructureShape.new(name: 'ListedFlow')
|
80
|
+
Maintenance = Shapes::StructureShape.new(name: 'Maintenance')
|
81
|
+
MaintenanceDay = Shapes::StringShape.new(name: 'MaintenanceDay')
|
79
82
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
80
83
|
MediaStream = Shapes::StructureShape.new(name: 'MediaStream')
|
81
84
|
MediaStreamAttributes = Shapes::StructureShape.new(name: 'MediaStreamAttributes')
|
@@ -139,6 +142,7 @@ module Aws::MediaConnect
|
|
139
142
|
UpdateFlowResponse = Shapes::StructureShape.new(name: 'UpdateFlowResponse')
|
140
143
|
UpdateFlowSourceRequest = Shapes::StructureShape.new(name: 'UpdateFlowSourceRequest')
|
141
144
|
UpdateFlowSourceResponse = Shapes::StructureShape.new(name: 'UpdateFlowSourceResponse')
|
145
|
+
UpdateMaintenance = Shapes::StructureShape.new(name: 'UpdateMaintenance')
|
142
146
|
VpcInterface = Shapes::StructureShape.new(name: 'VpcInterface')
|
143
147
|
VpcInterfaceAttachment = Shapes::StructureShape.new(name: 'VpcInterfaceAttachment')
|
144
148
|
VpcInterfaceRequest = Shapes::StructureShape.new(name: 'VpcInterfaceRequest')
|
@@ -210,6 +214,10 @@ module Aws::MediaConnect
|
|
210
214
|
AddFlowVpcInterfacesResponse.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterface, location_name: "vpcInterfaces"))
|
211
215
|
AddFlowVpcInterfacesResponse.struct_class = Types::AddFlowVpcInterfacesResponse
|
212
216
|
|
217
|
+
AddMaintenance.add_member(:maintenance_day, Shapes::ShapeRef.new(shape: MaintenanceDay, required: true, location_name: "maintenanceDay"))
|
218
|
+
AddMaintenance.add_member(:maintenance_start_hour, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "maintenanceStartHour"))
|
219
|
+
AddMaintenance.struct_class = Types::AddMaintenance
|
220
|
+
|
213
221
|
AddMediaStreamRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: MediaStreamAttributesRequest, location_name: "attributes"))
|
214
222
|
AddMediaStreamRequest.add_member(:clock_rate, Shapes::ShapeRef.new(shape: __integer, location_name: "clockRate"))
|
215
223
|
AddMediaStreamRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
@@ -251,6 +259,7 @@ module Aws::MediaConnect
|
|
251
259
|
CreateFlowRequest.add_member(:source_failover_config, Shapes::ShapeRef.new(shape: FailoverConfig, location_name: "sourceFailoverConfig"))
|
252
260
|
CreateFlowRequest.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfSetSourceRequest, location_name: "sources"))
|
253
261
|
CreateFlowRequest.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterfaceRequest, location_name: "vpcInterfaces"))
|
262
|
+
CreateFlowRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: AddMaintenance, location_name: "maintenance"))
|
254
263
|
CreateFlowRequest.struct_class = Types::CreateFlowRequest
|
255
264
|
|
256
265
|
CreateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
|
@@ -340,6 +349,7 @@ module Aws::MediaConnect
|
|
340
349
|
Flow.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfSource, location_name: "sources"))
|
341
350
|
Flow.add_member(:status, Shapes::ShapeRef.new(shape: Status, required: true, location_name: "status"))
|
342
351
|
Flow.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterface, location_name: "vpcInterfaces"))
|
352
|
+
Flow.add_member(:maintenance, Shapes::ShapeRef.new(shape: Maintenance, location_name: "maintenance"))
|
343
353
|
Flow.struct_class = Types::Flow
|
344
354
|
|
345
355
|
Fmtp.add_member(:channel_order, Shapes::ShapeRef.new(shape: __string, location_name: "channelOrder"))
|
@@ -449,8 +459,15 @@ module Aws::MediaConnect
|
|
449
459
|
ListedFlow.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
450
460
|
ListedFlow.add_member(:source_type, Shapes::ShapeRef.new(shape: SourceType, required: true, location_name: "sourceType"))
|
451
461
|
ListedFlow.add_member(:status, Shapes::ShapeRef.new(shape: Status, required: true, location_name: "status"))
|
462
|
+
ListedFlow.add_member(:maintenance, Shapes::ShapeRef.new(shape: Maintenance, location_name: "maintenance"))
|
452
463
|
ListedFlow.struct_class = Types::ListedFlow
|
453
464
|
|
465
|
+
Maintenance.add_member(:maintenance_day, Shapes::ShapeRef.new(shape: MaintenanceDay, location_name: "maintenanceDay"))
|
466
|
+
Maintenance.add_member(:maintenance_deadline, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceDeadline"))
|
467
|
+
Maintenance.add_member(:maintenance_scheduled_date, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceScheduledDate"))
|
468
|
+
Maintenance.add_member(:maintenance_start_hour, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceStartHour"))
|
469
|
+
Maintenance.struct_class = Types::Maintenance
|
470
|
+
|
454
471
|
MediaStream.add_member(:attributes, Shapes::ShapeRef.new(shape: MediaStreamAttributes, location_name: "attributes"))
|
455
472
|
MediaStream.add_member(:clock_rate, Shapes::ShapeRef.new(shape: __integer, location_name: "clockRate"))
|
456
473
|
MediaStream.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
@@ -738,6 +755,7 @@ module Aws::MediaConnect
|
|
738
755
|
|
739
756
|
UpdateFlowRequest.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "flowArn"))
|
740
757
|
UpdateFlowRequest.add_member(:source_failover_config, Shapes::ShapeRef.new(shape: UpdateFailoverConfig, location_name: "sourceFailoverConfig"))
|
758
|
+
UpdateFlowRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: UpdateMaintenance, location_name: "maintenance"))
|
741
759
|
UpdateFlowRequest.struct_class = Types::UpdateFlowRequest
|
742
760
|
|
743
761
|
UpdateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
|
@@ -766,6 +784,11 @@ module Aws::MediaConnect
|
|
766
784
|
UpdateFlowSourceResponse.add_member(:source, Shapes::ShapeRef.new(shape: Source, location_name: "source"))
|
767
785
|
UpdateFlowSourceResponse.struct_class = Types::UpdateFlowSourceResponse
|
768
786
|
|
787
|
+
UpdateMaintenance.add_member(:maintenance_day, Shapes::ShapeRef.new(shape: MaintenanceDay, location_name: "maintenanceDay"))
|
788
|
+
UpdateMaintenance.add_member(:maintenance_scheduled_date, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceScheduledDate"))
|
789
|
+
UpdateMaintenance.add_member(:maintenance_start_hour, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceStartHour"))
|
790
|
+
UpdateMaintenance.struct_class = Types::UpdateMaintenance
|
791
|
+
|
769
792
|
VpcInterface.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
770
793
|
VpcInterface.add_member(:network_interface_ids, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "networkInterfaceIds"))
|
771
794
|
VpcInterface.add_member(:network_interface_type, Shapes::ShapeRef.new(shape: NetworkInterfaceType, required: true, location_name: "networkInterfaceType"))
|
@@ -329,6 +329,35 @@ module Aws::MediaConnect
|
|
329
329
|
include Aws::Structure
|
330
330
|
end
|
331
331
|
|
332
|
+
# Create maintenance setting for a flow
|
333
|
+
#
|
334
|
+
# @note When making an API call, you may pass AddMaintenance
|
335
|
+
# data as a hash:
|
336
|
+
#
|
337
|
+
# {
|
338
|
+
# maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
339
|
+
# maintenance_start_hour: "__string", # required
|
340
|
+
# }
|
341
|
+
#
|
342
|
+
# @!attribute [rw] maintenance_day
|
343
|
+
# A day of a week when the maintenance will happen. Use
|
344
|
+
# Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
345
|
+
# @return [String]
|
346
|
+
#
|
347
|
+
# @!attribute [rw] maintenance_start_hour
|
348
|
+
# UTC time when the maintenance will happen. Use 24-hour HH:MM format.
|
349
|
+
# Minutes must be 00. Example: 13:00. The default value is 02:00.
|
350
|
+
# @return [String]
|
351
|
+
#
|
352
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddMaintenance AWS API Documentation
|
353
|
+
#
|
354
|
+
class AddMaintenance < Struct.new(
|
355
|
+
:maintenance_day,
|
356
|
+
:maintenance_start_hour)
|
357
|
+
SENSITIVE = []
|
358
|
+
include Aws::Structure
|
359
|
+
end
|
360
|
+
|
332
361
|
# The media stream that you want to add to the flow.
|
333
362
|
#
|
334
363
|
# @note When making an API call, you may pass AddMediaStreamRequest
|
@@ -784,6 +813,10 @@ module Aws::MediaConnect
|
|
784
813
|
# subnet_id: "__string", # required
|
785
814
|
# },
|
786
815
|
# ],
|
816
|
+
# maintenance: {
|
817
|
+
# maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
818
|
+
# maintenance_start_hour: "__string", # required
|
819
|
+
# },
|
787
820
|
# }
|
788
821
|
#
|
789
822
|
# @!attribute [rw] availability_zone
|
@@ -824,6 +857,10 @@ module Aws::MediaConnect
|
|
824
857
|
# The VPC interfaces you want on the flow.
|
825
858
|
# @return [Array<Types::VpcInterfaceRequest>]
|
826
859
|
#
|
860
|
+
# @!attribute [rw] maintenance
|
861
|
+
# Create maintenance setting for a flow
|
862
|
+
# @return [Types::AddMaintenance]
|
863
|
+
#
|
827
864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlowRequest AWS API Documentation
|
828
865
|
#
|
829
866
|
class CreateFlowRequest < Struct.new(
|
@@ -835,7 +872,8 @@ module Aws::MediaConnect
|
|
835
872
|
:source,
|
836
873
|
:source_failover_config,
|
837
874
|
:sources,
|
838
|
-
:vpc_interfaces
|
875
|
+
:vpc_interfaces,
|
876
|
+
:maintenance)
|
839
877
|
SENSITIVE = []
|
840
878
|
include Aws::Structure
|
841
879
|
end
|
@@ -1379,6 +1417,10 @@ module Aws::MediaConnect
|
|
1379
1417
|
# The VPC Interfaces for this flow.
|
1380
1418
|
# @return [Array<Types::VpcInterface>]
|
1381
1419
|
#
|
1420
|
+
# @!attribute [rw] maintenance
|
1421
|
+
# The maintenance setting of a flow
|
1422
|
+
# @return [Types::Maintenance]
|
1423
|
+
#
|
1382
1424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Flow AWS API Documentation
|
1383
1425
|
#
|
1384
1426
|
class Flow < Struct.new(
|
@@ -1394,7 +1436,8 @@ module Aws::MediaConnect
|
|
1394
1436
|
:source_failover_config,
|
1395
1437
|
:sources,
|
1396
1438
|
:status,
|
1397
|
-
:vpc_interfaces
|
1439
|
+
:vpc_interfaces,
|
1440
|
+
:maintenance)
|
1398
1441
|
SENSITIVE = []
|
1399
1442
|
include Aws::Structure
|
1400
1443
|
end
|
@@ -2077,6 +2120,10 @@ module Aws::MediaConnect
|
|
2077
2120
|
# The current status of the flow.
|
2078
2121
|
# @return [String]
|
2079
2122
|
#
|
2123
|
+
# @!attribute [rw] maintenance
|
2124
|
+
# The maintenance setting of a flow
|
2125
|
+
# @return [Types::Maintenance]
|
2126
|
+
#
|
2080
2127
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListedFlow AWS API Documentation
|
2081
2128
|
#
|
2082
2129
|
class ListedFlow < Struct.new(
|
@@ -2085,7 +2132,41 @@ module Aws::MediaConnect
|
|
2085
2132
|
:flow_arn,
|
2086
2133
|
:name,
|
2087
2134
|
:source_type,
|
2088
|
-
:status
|
2135
|
+
:status,
|
2136
|
+
:maintenance)
|
2137
|
+
SENSITIVE = []
|
2138
|
+
include Aws::Structure
|
2139
|
+
end
|
2140
|
+
|
2141
|
+
# The maintenance setting of a flow
|
2142
|
+
#
|
2143
|
+
# @!attribute [rw] maintenance_day
|
2144
|
+
# A day of a week when the maintenance will happen. Use
|
2145
|
+
# Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
2146
|
+
# @return [String]
|
2147
|
+
#
|
2148
|
+
# @!attribute [rw] maintenance_deadline
|
2149
|
+
# The Maintenance has to be performed before this deadline in ISO UTC
|
2150
|
+
# format. Example: 2021-01-30T08:30:00Z.
|
2151
|
+
# @return [String]
|
2152
|
+
#
|
2153
|
+
# @!attribute [rw] maintenance_scheduled_date
|
2154
|
+
# A scheduled date in ISO UTC format when the maintenance will happen.
|
2155
|
+
# Use YYYY-MM-DD format. Example: 2021-01-30.
|
2156
|
+
# @return [String]
|
2157
|
+
#
|
2158
|
+
# @!attribute [rw] maintenance_start_hour
|
2159
|
+
# UTC time when the maintenance will happen. Use 24-hour HH:MM format.
|
2160
|
+
# Minutes must be 00. Example: 13:00. The default value is 02:00.
|
2161
|
+
# @return [String]
|
2162
|
+
#
|
2163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Maintenance AWS API Documentation
|
2164
|
+
#
|
2165
|
+
class Maintenance < Struct.new(
|
2166
|
+
:maintenance_day,
|
2167
|
+
:maintenance_deadline,
|
2168
|
+
:maintenance_scheduled_date,
|
2169
|
+
:maintenance_start_hour)
|
2089
2170
|
SENSITIVE = []
|
2090
2171
|
include Aws::Structure
|
2091
2172
|
end
|
@@ -3967,6 +4048,11 @@ module Aws::MediaConnect
|
|
3967
4048
|
# },
|
3968
4049
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
3969
4050
|
# },
|
4051
|
+
# maintenance: {
|
4052
|
+
# maintenance_day: "Monday", # accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
4053
|
+
# maintenance_scheduled_date: "__string",
|
4054
|
+
# maintenance_start_hour: "__string",
|
4055
|
+
# },
|
3970
4056
|
# }
|
3971
4057
|
#
|
3972
4058
|
# @!attribute [rw] flow_arn
|
@@ -3976,11 +4062,16 @@ module Aws::MediaConnect
|
|
3976
4062
|
# The settings for source failover.
|
3977
4063
|
# @return [Types::UpdateFailoverConfig]
|
3978
4064
|
#
|
4065
|
+
# @!attribute [rw] maintenance
|
4066
|
+
# Update maintenance setting for a flow
|
4067
|
+
# @return [Types::UpdateMaintenance]
|
4068
|
+
#
|
3979
4069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowRequest AWS API Documentation
|
3980
4070
|
#
|
3981
4071
|
class UpdateFlowRequest < Struct.new(
|
3982
4072
|
:flow_arn,
|
3983
|
-
:source_failover_config
|
4073
|
+
:source_failover_config,
|
4074
|
+
:maintenance)
|
3984
4075
|
SENSITIVE = []
|
3985
4076
|
include Aws::Structure
|
3986
4077
|
end
|
@@ -4176,6 +4267,42 @@ module Aws::MediaConnect
|
|
4176
4267
|
include Aws::Structure
|
4177
4268
|
end
|
4178
4269
|
|
4270
|
+
# Update maintenance setting for a flow
|
4271
|
+
#
|
4272
|
+
# @note When making an API call, you may pass UpdateMaintenance
|
4273
|
+
# data as a hash:
|
4274
|
+
#
|
4275
|
+
# {
|
4276
|
+
# maintenance_day: "Monday", # accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
4277
|
+
# maintenance_scheduled_date: "__string",
|
4278
|
+
# maintenance_start_hour: "__string",
|
4279
|
+
# }
|
4280
|
+
#
|
4281
|
+
# @!attribute [rw] maintenance_day
|
4282
|
+
# A day of a week when the maintenance will happen. use
|
4283
|
+
# Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
4284
|
+
# @return [String]
|
4285
|
+
#
|
4286
|
+
# @!attribute [rw] maintenance_scheduled_date
|
4287
|
+
# A scheduled date in ISO UTC format when the maintenance will happen.
|
4288
|
+
# Use YYYY-MM-DD format. Example: 2021-01-30.
|
4289
|
+
# @return [String]
|
4290
|
+
#
|
4291
|
+
# @!attribute [rw] maintenance_start_hour
|
4292
|
+
# UTC time when the maintenance will happen. Use 24-hour HH:MM format.
|
4293
|
+
# Minutes must be 00. Example: 13:00. The default value is 02:00.
|
4294
|
+
# @return [String]
|
4295
|
+
#
|
4296
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateMaintenance AWS API Documentation
|
4297
|
+
#
|
4298
|
+
class UpdateMaintenance < Struct.new(
|
4299
|
+
:maintenance_day,
|
4300
|
+
:maintenance_scheduled_date,
|
4301
|
+
:maintenance_start_hour)
|
4302
|
+
SENSITIVE = []
|
4303
|
+
include Aws::Structure
|
4304
|
+
end
|
4305
|
+
|
4179
4306
|
# The settings for a VPC Source.
|
4180
4307
|
#
|
4181
4308
|
# @!attribute [rw] name
|
data/lib/aws-sdk-mediaconnect.rb
CHANGED
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.44.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: 2022-
|
11
|
+
date: 2022-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|