aws-sdk-mediapackage 1.8.0 → 1.9.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 239b007ff6d16ca8a01b4bfdd227d9fde88dc3c5
|
4
|
+
data.tar.gz: 799185f39832b5d60fc5e9c033b5512f0d33d7b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b1731382533e9813346f90f297dbd55acec4523add59c64280710d49254bcb390e5c864d11240ae56bb191f00d60c914513ba3dd0513e90c9a48a8f59221279
|
7
|
+
data.tar.gz: 52d55a760e1f5b5e960ca2f5996b51e1e2c73935aaa49a6b66848f17a740d595147443a4ca4147d425b87c2e50bbba01a673ab9de528127078edc1f598cd8ce5
|
data/lib/aws-sdk-mediapackage.rb
CHANGED
@@ -15,6 +15,7 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
|
|
15
15
|
require 'aws-sdk-core/plugins/retry_errors.rb'
|
16
16
|
require 'aws-sdk-core/plugins/global_configuration.rb'
|
17
17
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
18
|
+
require 'aws-sdk-core/plugins/endpoint_discovery.rb'
|
18
19
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
20
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
21
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
@@ -45,6 +46,7 @@ module Aws::MediaPackage
|
|
45
46
|
add_plugin(Aws::Plugins::RetryErrors)
|
46
47
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
47
48
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
49
|
+
add_plugin(Aws::Plugins::EndpointDiscovery)
|
48
50
|
add_plugin(Aws::Plugins::ResponsePaging)
|
49
51
|
add_plugin(Aws::Plugins::StubResponses)
|
50
52
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -98,6 +100,10 @@ module Aws::MediaPackage
|
|
98
100
|
#
|
99
101
|
# @option options [String] :access_key_id
|
100
102
|
#
|
103
|
+
# @option options [Boolean] :active_endpoint_cache (false)
|
104
|
+
# When set to `true`, a thread polling for endpoints will be running in
|
105
|
+
# the background every 60 secs (default). Defaults to `false`.
|
106
|
+
#
|
101
107
|
# @option options [Boolean] :client_side_monitoring (false)
|
102
108
|
# When `true`, client-side metrics will be collected for all API requests from
|
103
109
|
# this client.
|
@@ -123,6 +129,21 @@ module Aws::MediaPackage
|
|
123
129
|
# option. You should only configure an `:endpoint` when connecting
|
124
130
|
# to test endpoints. This should be avalid HTTP(S) URI.
|
125
131
|
#
|
132
|
+
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
133
|
+
# Used for the maximum size limit of the LRU cache storing endpoints data
|
134
|
+
# for endpoint discovery enabled operations. Defaults to 1000.
|
135
|
+
#
|
136
|
+
# @option options [Integer] :endpoint_cache_max_threads (10)
|
137
|
+
# Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
|
138
|
+
#
|
139
|
+
# @option options [Integer] :endpoint_cache_poll_interval (60)
|
140
|
+
# When :endpoint_discovery and :active_endpoint_cache is enabled,
|
141
|
+
# Use this option to config the time interval in seconds for making
|
142
|
+
# requests fetching endpoints information. Defaults to 60 sec.
|
143
|
+
#
|
144
|
+
# @option options [Boolean] :endpoint_discovery (false)
|
145
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
|
146
|
+
#
|
126
147
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
127
148
|
# The log formatter.
|
128
149
|
#
|
@@ -270,6 +291,7 @@ module Aws::MediaPackage
|
|
270
291
|
# encryption: {
|
271
292
|
# key_rotation_interval_seconds: 1,
|
272
293
|
# speke_key_provider: { # required
|
294
|
+
# certificate_arn: "__string",
|
273
295
|
# resource_id: "__string", # required
|
274
296
|
# role_arn: "__string", # required
|
275
297
|
# system_ids: ["__string"], # required
|
@@ -299,6 +321,7 @@ module Aws::MediaPackage
|
|
299
321
|
# encryption: {
|
300
322
|
# key_rotation_interval_seconds: 1,
|
301
323
|
# speke_key_provider: { # required
|
324
|
+
# certificate_arn: "__string",
|
302
325
|
# resource_id: "__string", # required
|
303
326
|
# role_arn: "__string", # required
|
304
327
|
# system_ids: ["__string"], # required
|
@@ -327,6 +350,7 @@ module Aws::MediaPackage
|
|
327
350
|
# key_rotation_interval_seconds: 1,
|
328
351
|
# repeat_ext_x_key: false,
|
329
352
|
# speke_key_provider: { # required
|
353
|
+
# certificate_arn: "__string",
|
330
354
|
# resource_id: "__string", # required
|
331
355
|
# role_arn: "__string", # required
|
332
356
|
# system_ids: ["__string"], # required
|
@@ -350,6 +374,7 @@ module Aws::MediaPackage
|
|
350
374
|
# mss_package: {
|
351
375
|
# encryption: {
|
352
376
|
# speke_key_provider: { # required
|
377
|
+
# certificate_arn: "__string",
|
353
378
|
# resource_id: "__string", # required
|
354
379
|
# role_arn: "__string", # required
|
355
380
|
# system_ids: ["__string"], # required
|
@@ -374,6 +399,7 @@ module Aws::MediaPackage
|
|
374
399
|
# resp.arn #=> String
|
375
400
|
# resp.channel_id #=> String
|
376
401
|
# resp.cmaf_package.encryption.key_rotation_interval_seconds #=> Integer
|
402
|
+
# resp.cmaf_package.encryption.speke_key_provider.certificate_arn #=> String
|
377
403
|
# resp.cmaf_package.encryption.speke_key_provider.resource_id #=> String
|
378
404
|
# resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
|
379
405
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -394,6 +420,7 @@ module Aws::MediaPackage
|
|
394
420
|
# resp.cmaf_package.stream_selection.min_video_bits_per_second #=> Integer
|
395
421
|
# resp.cmaf_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
396
422
|
# resp.dash_package.encryption.key_rotation_interval_seconds #=> Integer
|
423
|
+
# resp.dash_package.encryption.speke_key_provider.certificate_arn #=> String
|
397
424
|
# resp.dash_package.encryption.speke_key_provider.resource_id #=> String
|
398
425
|
# resp.dash_package.encryption.speke_key_provider.role_arn #=> String
|
399
426
|
# resp.dash_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -416,6 +443,7 @@ module Aws::MediaPackage
|
|
416
443
|
# resp.hls_package.encryption.encryption_method #=> String, one of "AES_128", "SAMPLE_AES"
|
417
444
|
# resp.hls_package.encryption.key_rotation_interval_seconds #=> Integer
|
418
445
|
# resp.hls_package.encryption.repeat_ext_x_key #=> Boolean
|
446
|
+
# resp.hls_package.encryption.speke_key_provider.certificate_arn #=> String
|
419
447
|
# resp.hls_package.encryption.speke_key_provider.resource_id #=> String
|
420
448
|
# resp.hls_package.encryption.speke_key_provider.role_arn #=> String
|
421
449
|
# resp.hls_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -432,6 +460,7 @@ module Aws::MediaPackage
|
|
432
460
|
# resp.hls_package.use_audio_rendition_group #=> Boolean
|
433
461
|
# resp.id #=> String
|
434
462
|
# resp.manifest_name #=> String
|
463
|
+
# resp.mss_package.encryption.speke_key_provider.certificate_arn #=> String
|
435
464
|
# resp.mss_package.encryption.speke_key_provider.resource_id #=> String
|
436
465
|
# resp.mss_package.encryption.speke_key_provider.role_arn #=> String
|
437
466
|
# resp.mss_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -567,6 +596,7 @@ module Aws::MediaPackage
|
|
567
596
|
# resp.arn #=> String
|
568
597
|
# resp.channel_id #=> String
|
569
598
|
# resp.cmaf_package.encryption.key_rotation_interval_seconds #=> Integer
|
599
|
+
# resp.cmaf_package.encryption.speke_key_provider.certificate_arn #=> String
|
570
600
|
# resp.cmaf_package.encryption.speke_key_provider.resource_id #=> String
|
571
601
|
# resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
|
572
602
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -587,6 +617,7 @@ module Aws::MediaPackage
|
|
587
617
|
# resp.cmaf_package.stream_selection.min_video_bits_per_second #=> Integer
|
588
618
|
# resp.cmaf_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
589
619
|
# resp.dash_package.encryption.key_rotation_interval_seconds #=> Integer
|
620
|
+
# resp.dash_package.encryption.speke_key_provider.certificate_arn #=> String
|
590
621
|
# resp.dash_package.encryption.speke_key_provider.resource_id #=> String
|
591
622
|
# resp.dash_package.encryption.speke_key_provider.role_arn #=> String
|
592
623
|
# resp.dash_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -609,6 +640,7 @@ module Aws::MediaPackage
|
|
609
640
|
# resp.hls_package.encryption.encryption_method #=> String, one of "AES_128", "SAMPLE_AES"
|
610
641
|
# resp.hls_package.encryption.key_rotation_interval_seconds #=> Integer
|
611
642
|
# resp.hls_package.encryption.repeat_ext_x_key #=> Boolean
|
643
|
+
# resp.hls_package.encryption.speke_key_provider.certificate_arn #=> String
|
612
644
|
# resp.hls_package.encryption.speke_key_provider.resource_id #=> String
|
613
645
|
# resp.hls_package.encryption.speke_key_provider.role_arn #=> String
|
614
646
|
# resp.hls_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -625,6 +657,7 @@ module Aws::MediaPackage
|
|
625
657
|
# resp.hls_package.use_audio_rendition_group #=> Boolean
|
626
658
|
# resp.id #=> String
|
627
659
|
# resp.manifest_name #=> String
|
660
|
+
# resp.mss_package.encryption.speke_key_provider.certificate_arn #=> String
|
628
661
|
# resp.mss_package.encryption.speke_key_provider.resource_id #=> String
|
629
662
|
# resp.mss_package.encryption.speke_key_provider.role_arn #=> String
|
630
663
|
# resp.mss_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -718,6 +751,7 @@ module Aws::MediaPackage
|
|
718
751
|
# resp.origin_endpoints[0].arn #=> String
|
719
752
|
# resp.origin_endpoints[0].channel_id #=> String
|
720
753
|
# resp.origin_endpoints[0].cmaf_package.encryption.key_rotation_interval_seconds #=> Integer
|
754
|
+
# resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.certificate_arn #=> String
|
721
755
|
# resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.resource_id #=> String
|
722
756
|
# resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.role_arn #=> String
|
723
757
|
# resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -738,6 +772,7 @@ module Aws::MediaPackage
|
|
738
772
|
# resp.origin_endpoints[0].cmaf_package.stream_selection.min_video_bits_per_second #=> Integer
|
739
773
|
# resp.origin_endpoints[0].cmaf_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
740
774
|
# resp.origin_endpoints[0].dash_package.encryption.key_rotation_interval_seconds #=> Integer
|
775
|
+
# resp.origin_endpoints[0].dash_package.encryption.speke_key_provider.certificate_arn #=> String
|
741
776
|
# resp.origin_endpoints[0].dash_package.encryption.speke_key_provider.resource_id #=> String
|
742
777
|
# resp.origin_endpoints[0].dash_package.encryption.speke_key_provider.role_arn #=> String
|
743
778
|
# resp.origin_endpoints[0].dash_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -760,6 +795,7 @@ module Aws::MediaPackage
|
|
760
795
|
# resp.origin_endpoints[0].hls_package.encryption.encryption_method #=> String, one of "AES_128", "SAMPLE_AES"
|
761
796
|
# resp.origin_endpoints[0].hls_package.encryption.key_rotation_interval_seconds #=> Integer
|
762
797
|
# resp.origin_endpoints[0].hls_package.encryption.repeat_ext_x_key #=> Boolean
|
798
|
+
# resp.origin_endpoints[0].hls_package.encryption.speke_key_provider.certificate_arn #=> String
|
763
799
|
# resp.origin_endpoints[0].hls_package.encryption.speke_key_provider.resource_id #=> String
|
764
800
|
# resp.origin_endpoints[0].hls_package.encryption.speke_key_provider.role_arn #=> String
|
765
801
|
# resp.origin_endpoints[0].hls_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -776,6 +812,7 @@ module Aws::MediaPackage
|
|
776
812
|
# resp.origin_endpoints[0].hls_package.use_audio_rendition_group #=> Boolean
|
777
813
|
# resp.origin_endpoints[0].id #=> String
|
778
814
|
# resp.origin_endpoints[0].manifest_name #=> String
|
815
|
+
# resp.origin_endpoints[0].mss_package.encryption.speke_key_provider.certificate_arn #=> String
|
779
816
|
# resp.origin_endpoints[0].mss_package.encryption.speke_key_provider.resource_id #=> String
|
780
817
|
# resp.origin_endpoints[0].mss_package.encryption.speke_key_provider.role_arn #=> String
|
781
818
|
# resp.origin_endpoints[0].mss_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -970,6 +1007,7 @@ module Aws::MediaPackage
|
|
970
1007
|
# encryption: {
|
971
1008
|
# key_rotation_interval_seconds: 1,
|
972
1009
|
# speke_key_provider: { # required
|
1010
|
+
# certificate_arn: "__string",
|
973
1011
|
# resource_id: "__string", # required
|
974
1012
|
# role_arn: "__string", # required
|
975
1013
|
# system_ids: ["__string"], # required
|
@@ -999,6 +1037,7 @@ module Aws::MediaPackage
|
|
999
1037
|
# encryption: {
|
1000
1038
|
# key_rotation_interval_seconds: 1,
|
1001
1039
|
# speke_key_provider: { # required
|
1040
|
+
# certificate_arn: "__string",
|
1002
1041
|
# resource_id: "__string", # required
|
1003
1042
|
# role_arn: "__string", # required
|
1004
1043
|
# system_ids: ["__string"], # required
|
@@ -1027,6 +1066,7 @@ module Aws::MediaPackage
|
|
1027
1066
|
# key_rotation_interval_seconds: 1,
|
1028
1067
|
# repeat_ext_x_key: false,
|
1029
1068
|
# speke_key_provider: { # required
|
1069
|
+
# certificate_arn: "__string",
|
1030
1070
|
# resource_id: "__string", # required
|
1031
1071
|
# role_arn: "__string", # required
|
1032
1072
|
# system_ids: ["__string"], # required
|
@@ -1050,6 +1090,7 @@ module Aws::MediaPackage
|
|
1050
1090
|
# mss_package: {
|
1051
1091
|
# encryption: {
|
1052
1092
|
# speke_key_provider: { # required
|
1093
|
+
# certificate_arn: "__string",
|
1053
1094
|
# resource_id: "__string", # required
|
1054
1095
|
# role_arn: "__string", # required
|
1055
1096
|
# system_ids: ["__string"], # required
|
@@ -1074,6 +1115,7 @@ module Aws::MediaPackage
|
|
1074
1115
|
# resp.arn #=> String
|
1075
1116
|
# resp.channel_id #=> String
|
1076
1117
|
# resp.cmaf_package.encryption.key_rotation_interval_seconds #=> Integer
|
1118
|
+
# resp.cmaf_package.encryption.speke_key_provider.certificate_arn #=> String
|
1077
1119
|
# resp.cmaf_package.encryption.speke_key_provider.resource_id #=> String
|
1078
1120
|
# resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
|
1079
1121
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -1094,6 +1136,7 @@ module Aws::MediaPackage
|
|
1094
1136
|
# resp.cmaf_package.stream_selection.min_video_bits_per_second #=> Integer
|
1095
1137
|
# resp.cmaf_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
1096
1138
|
# resp.dash_package.encryption.key_rotation_interval_seconds #=> Integer
|
1139
|
+
# resp.dash_package.encryption.speke_key_provider.certificate_arn #=> String
|
1097
1140
|
# resp.dash_package.encryption.speke_key_provider.resource_id #=> String
|
1098
1141
|
# resp.dash_package.encryption.speke_key_provider.role_arn #=> String
|
1099
1142
|
# resp.dash_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -1116,6 +1159,7 @@ module Aws::MediaPackage
|
|
1116
1159
|
# resp.hls_package.encryption.encryption_method #=> String, one of "AES_128", "SAMPLE_AES"
|
1117
1160
|
# resp.hls_package.encryption.key_rotation_interval_seconds #=> Integer
|
1118
1161
|
# resp.hls_package.encryption.repeat_ext_x_key #=> Boolean
|
1162
|
+
# resp.hls_package.encryption.speke_key_provider.certificate_arn #=> String
|
1119
1163
|
# resp.hls_package.encryption.speke_key_provider.resource_id #=> String
|
1120
1164
|
# resp.hls_package.encryption.speke_key_provider.role_arn #=> String
|
1121
1165
|
# resp.hls_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -1132,6 +1176,7 @@ module Aws::MediaPackage
|
|
1132
1176
|
# resp.hls_package.use_audio_rendition_group #=> Boolean
|
1133
1177
|
# resp.id #=> String
|
1134
1178
|
# resp.manifest_name #=> String
|
1179
|
+
# resp.mss_package.encryption.speke_key_provider.certificate_arn #=> String
|
1135
1180
|
# resp.mss_package.encryption.speke_key_provider.resource_id #=> String
|
1136
1181
|
# resp.mss_package.encryption.speke_key_provider.role_arn #=> String
|
1137
1182
|
# resp.mss_package.encryption.speke_key_provider.system_ids #=> Array
|
@@ -1170,7 +1215,7 @@ module Aws::MediaPackage
|
|
1170
1215
|
params: params,
|
1171
1216
|
config: config)
|
1172
1217
|
context[:gem_name] = 'aws-sdk-mediapackage'
|
1173
|
-
context[:gem_version] = '1.
|
1218
|
+
context[:gem_version] = '1.9.0'
|
1174
1219
|
Seahorse::Client::Request.new(handlers, context)
|
1175
1220
|
end
|
1176
1221
|
|
@@ -343,6 +343,7 @@ module Aws::MediaPackage
|
|
343
343
|
RotateIngestEndpointCredentialsResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
344
344
|
RotateIngestEndpointCredentialsResponse.struct_class = Types::RotateIngestEndpointCredentialsResponse
|
345
345
|
|
346
|
+
SpekeKeyProvider.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: __string, location_name: "certificateArn"))
|
346
347
|
SpekeKeyProvider.add_member(:resource_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "resourceId"))
|
347
348
|
SpekeKeyProvider.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "roleArn"))
|
348
349
|
SpekeKeyProvider.add_member(:system_ids, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "systemIds"))
|
@@ -95,6 +95,7 @@ module Aws::MediaPackage
|
|
95
95
|
# {
|
96
96
|
# key_rotation_interval_seconds: 1,
|
97
97
|
# speke_key_provider: { # required
|
98
|
+
# certificate_arn: "__string",
|
98
99
|
# resource_id: "__string", # required
|
99
100
|
# role_arn: "__string", # required
|
100
101
|
# system_ids: ["__string"], # required
|
@@ -164,6 +165,7 @@ module Aws::MediaPackage
|
|
164
165
|
# encryption: {
|
165
166
|
# key_rotation_interval_seconds: 1,
|
166
167
|
# speke_key_provider: { # required
|
168
|
+
# certificate_arn: "__string",
|
167
169
|
# resource_id: "__string", # required
|
168
170
|
# role_arn: "__string", # required
|
169
171
|
# system_ids: ["__string"], # required
|
@@ -277,6 +279,7 @@ module Aws::MediaPackage
|
|
277
279
|
# encryption: {
|
278
280
|
# key_rotation_interval_seconds: 1,
|
279
281
|
# speke_key_provider: { # required
|
282
|
+
# certificate_arn: "__string",
|
280
283
|
# resource_id: "__string", # required
|
281
284
|
# role_arn: "__string", # required
|
282
285
|
# system_ids: ["__string"], # required
|
@@ -306,6 +309,7 @@ module Aws::MediaPackage
|
|
306
309
|
# encryption: {
|
307
310
|
# key_rotation_interval_seconds: 1,
|
308
311
|
# speke_key_provider: { # required
|
312
|
+
# certificate_arn: "__string",
|
309
313
|
# resource_id: "__string", # required
|
310
314
|
# role_arn: "__string", # required
|
311
315
|
# system_ids: ["__string"], # required
|
@@ -334,6 +338,7 @@ module Aws::MediaPackage
|
|
334
338
|
# key_rotation_interval_seconds: 1,
|
335
339
|
# repeat_ext_x_key: false,
|
336
340
|
# speke_key_provider: { # required
|
341
|
+
# certificate_arn: "__string",
|
337
342
|
# resource_id: "__string", # required
|
338
343
|
# role_arn: "__string", # required
|
339
344
|
# system_ids: ["__string"], # required
|
@@ -357,6 +362,7 @@ module Aws::MediaPackage
|
|
357
362
|
# mss_package: {
|
358
363
|
# encryption: {
|
359
364
|
# speke_key_provider: { # required
|
365
|
+
# certificate_arn: "__string",
|
360
366
|
# resource_id: "__string", # required
|
361
367
|
# role_arn: "__string", # required
|
362
368
|
# system_ids: ["__string"], # required
|
@@ -503,6 +509,7 @@ module Aws::MediaPackage
|
|
503
509
|
# {
|
504
510
|
# key_rotation_interval_seconds: 1,
|
505
511
|
# speke_key_provider: { # required
|
512
|
+
# certificate_arn: "__string",
|
506
513
|
# resource_id: "__string", # required
|
507
514
|
# role_arn: "__string", # required
|
508
515
|
# system_ids: ["__string"], # required
|
@@ -537,6 +544,7 @@ module Aws::MediaPackage
|
|
537
544
|
# encryption: {
|
538
545
|
# key_rotation_interval_seconds: 1,
|
539
546
|
# speke_key_provider: { # required
|
547
|
+
# certificate_arn: "__string",
|
540
548
|
# resource_id: "__string", # required
|
541
549
|
# role_arn: "__string", # required
|
542
550
|
# system_ids: ["__string"], # required
|
@@ -792,6 +800,7 @@ module Aws::MediaPackage
|
|
792
800
|
# key_rotation_interval_seconds: 1,
|
793
801
|
# repeat_ext_x_key: false,
|
794
802
|
# speke_key_provider: { # required
|
803
|
+
# certificate_arn: "__string",
|
795
804
|
# resource_id: "__string", # required
|
796
805
|
# role_arn: "__string", # required
|
797
806
|
# system_ids: ["__string"], # required
|
@@ -1002,6 +1011,7 @@ module Aws::MediaPackage
|
|
1002
1011
|
# key_rotation_interval_seconds: 1,
|
1003
1012
|
# repeat_ext_x_key: false,
|
1004
1013
|
# speke_key_provider: { # required
|
1014
|
+
# certificate_arn: "__string",
|
1005
1015
|
# resource_id: "__string", # required
|
1006
1016
|
# role_arn: "__string", # required
|
1007
1017
|
# system_ids: ["__string"], # required
|
@@ -1202,6 +1212,7 @@ module Aws::MediaPackage
|
|
1202
1212
|
#
|
1203
1213
|
# {
|
1204
1214
|
# speke_key_provider: { # required
|
1215
|
+
# certificate_arn: "__string",
|
1205
1216
|
# resource_id: "__string", # required
|
1206
1217
|
# role_arn: "__string", # required
|
1207
1218
|
# system_ids: ["__string"], # required
|
@@ -1230,6 +1241,7 @@ module Aws::MediaPackage
|
|
1230
1241
|
# {
|
1231
1242
|
# encryption: {
|
1232
1243
|
# speke_key_provider: { # required
|
1244
|
+
# certificate_arn: "__string",
|
1233
1245
|
# resource_id: "__string", # required
|
1234
1246
|
# role_arn: "__string", # required
|
1235
1247
|
# system_ids: ["__string"], # required
|
@@ -1592,12 +1604,19 @@ module Aws::MediaPackage
|
|
1592
1604
|
# data as a hash:
|
1593
1605
|
#
|
1594
1606
|
# {
|
1607
|
+
# certificate_arn: "__string",
|
1595
1608
|
# resource_id: "__string", # required
|
1596
1609
|
# role_arn: "__string", # required
|
1597
1610
|
# system_ids: ["__string"], # required
|
1598
1611
|
# url: "__string", # required
|
1599
1612
|
# }
|
1600
1613
|
#
|
1614
|
+
# @!attribute [rw] certificate_arn
|
1615
|
+
# An Amazon Resource Name (ARN) of a Certificate Manager certificate
|
1616
|
+
# that MediaPackage will use for enforcing secure end-to-end data
|
1617
|
+
# transfer with the key provider service.
|
1618
|
+
# @return [String]
|
1619
|
+
#
|
1601
1620
|
# @!attribute [rw] resource_id
|
1602
1621
|
# The resource ID to include in key requests.
|
1603
1622
|
# @return [String]
|
@@ -1618,6 +1637,7 @@ module Aws::MediaPackage
|
|
1618
1637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/SpekeKeyProvider AWS API Documentation
|
1619
1638
|
#
|
1620
1639
|
class SpekeKeyProvider < Struct.new(
|
1640
|
+
:certificate_arn,
|
1621
1641
|
:resource_id,
|
1622
1642
|
:role_arn,
|
1623
1643
|
:system_ids,
|
@@ -1710,6 +1730,7 @@ module Aws::MediaPackage
|
|
1710
1730
|
# encryption: {
|
1711
1731
|
# key_rotation_interval_seconds: 1,
|
1712
1732
|
# speke_key_provider: { # required
|
1733
|
+
# certificate_arn: "__string",
|
1713
1734
|
# resource_id: "__string", # required
|
1714
1735
|
# role_arn: "__string", # required
|
1715
1736
|
# system_ids: ["__string"], # required
|
@@ -1739,6 +1760,7 @@ module Aws::MediaPackage
|
|
1739
1760
|
# encryption: {
|
1740
1761
|
# key_rotation_interval_seconds: 1,
|
1741
1762
|
# speke_key_provider: { # required
|
1763
|
+
# certificate_arn: "__string",
|
1742
1764
|
# resource_id: "__string", # required
|
1743
1765
|
# role_arn: "__string", # required
|
1744
1766
|
# system_ids: ["__string"], # required
|
@@ -1767,6 +1789,7 @@ module Aws::MediaPackage
|
|
1767
1789
|
# key_rotation_interval_seconds: 1,
|
1768
1790
|
# repeat_ext_x_key: false,
|
1769
1791
|
# speke_key_provider: { # required
|
1792
|
+
# certificate_arn: "__string",
|
1770
1793
|
# resource_id: "__string", # required
|
1771
1794
|
# role_arn: "__string", # required
|
1772
1795
|
# system_ids: ["__string"], # required
|
@@ -1790,6 +1813,7 @@ module Aws::MediaPackage
|
|
1790
1813
|
# mss_package: {
|
1791
1814
|
# encryption: {
|
1792
1815
|
# speke_key_provider: { # required
|
1816
|
+
# certificate_arn: "__string",
|
1793
1817
|
# resource_id: "__string", # required
|
1794
1818
|
# role_arn: "__string", # required
|
1795
1819
|
# system_ids: ["__string"], # required
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediapackage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.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: 2018-
|
11
|
+
date: 2018-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|