aws-sdk-mediatailor 1.77.0 → 1.78.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: 6ac497c09a095134d28a5a433308f4f8efe3538a7e6ed89ba019c2f436f0aafb
4
- data.tar.gz: 42148c9dd82872fc530c786df5a9f3cd8c38d5118ebb0326c23f7dc09b192a77
3
+ metadata.gz: 98de906a3e2176fd839b50d82bcc57832b418004f2e05bb46d45a66c566eefbf
4
+ data.tar.gz: bda303663d29a6df00bf7d1e771f59ae15df1b6dac8c5956e592870ef1fbe1b7
5
5
  SHA512:
6
- metadata.gz: 534bc7836ed2e9b3e1daaee3d38a31f0304371bc939707e447b6bc5d5d418ecacbf18a8bf5e43f83c6305e9d99e056b9edc48c12ba020ab22c511f5f3868dc3e
7
- data.tar.gz: 1c7ad3a2c5499e85d7cb70fd2bc49e0ee87fd016906836ed3c294b77c174363723d9b738501f2b41f49e662f89975bb087d92cfc7fdc1a3f0f85fed9821184c0
6
+ metadata.gz: 8e93b6e0d9ed5d3e56113eaeb686e70ab5eff415ca47715fbf6eed1d265fe43376a737b463d70a8fd472108a1ff33b471466ba4eb10b096d8475e3ee65748cd7
7
+ data.tar.gz: be63fe4d90a7e21c3d58f660a9a330fff2d83616326982bf5ee50f8ae65bafab887924863dd593aafda9e0b154b2e0485ad609a3a1d4136db40dee0de302038a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2024-04-12)
5
+ ------------------
6
+
7
+ * Feature - Added InsertionMode to PlaybackConfigurations. This setting controls whether players can use stitched or guided ad insertion. The default for players that do not specify an insertion mode is stitched.
8
+
4
9
  1.77.0 (2024-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.78.0
@@ -1866,6 +1866,7 @@ module Aws::MediaTailor
1866
1866
  # * {Types::GetPlaybackConfigurationResponse#configuration_aliases #configuration_aliases} => Hash<String,Hash<String,String>>
1867
1867
  # * {Types::GetPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
1868
1868
  # * {Types::GetPlaybackConfigurationResponse#hls_configuration #hls_configuration} => Types::HlsConfiguration
1869
+ # * {Types::GetPlaybackConfigurationResponse#insertion_mode #insertion_mode} => String
1869
1870
  # * {Types::GetPlaybackConfigurationResponse#live_pre_roll_configuration #live_pre_roll_configuration} => Types::LivePreRollConfiguration
1870
1871
  # * {Types::GetPlaybackConfigurationResponse#log_configuration #log_configuration} => Types::LogConfiguration
1871
1872
  # * {Types::GetPlaybackConfigurationResponse#manifest_processing_rules #manifest_processing_rules} => Types::ManifestProcessingRules
@@ -1902,6 +1903,7 @@ module Aws::MediaTailor
1902
1903
  # resp.dash_configuration.mpd_location #=> String
1903
1904
  # resp.dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
1904
1905
  # resp.hls_configuration.manifest_endpoint_prefix #=> String
1906
+ # resp.insertion_mode #=> String, one of "STITCHED_ONLY", "PLAYER_SELECT"
1905
1907
  # resp.live_pre_roll_configuration.ad_decision_server_url #=> String
1906
1908
  # resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
1907
1909
  # resp.log_configuration.percent_enabled #=> Integer
@@ -2214,6 +2216,7 @@ module Aws::MediaTailor
2214
2216
  # resp.items[0].dash_configuration.mpd_location #=> String
2215
2217
  # resp.items[0].dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
2216
2218
  # resp.items[0].hls_configuration.manifest_endpoint_prefix #=> String
2219
+ # resp.items[0].insertion_mode #=> String, one of "STITCHED_ONLY", "PLAYER_SELECT"
2217
2220
  # resp.items[0].live_pre_roll_configuration.ad_decision_server_url #=> String
2218
2221
  # resp.items[0].live_pre_roll_configuration.max_duration_seconds #=> Integer
2219
2222
  # resp.items[0].log_configuration.percent_enabled #=> Integer
@@ -2536,6 +2539,14 @@ module Aws::MediaTailor
2536
2539
  # @option params [Types::DashConfigurationForPut] :dash_configuration
2537
2540
  # The configuration for DASH content.
2538
2541
  #
2542
+ # @option params [String] :insertion_mode
2543
+ # The setting that controls whether players can use stitched or guided
2544
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player sessions
2545
+ # to use stitched (server-side) ad insertion. Choosing `PLAYER_SELECT`
2546
+ # allows players to select either stitched or guided ad insertion at
2547
+ # session-initialization time. The default for players that do not
2548
+ # specify an insertion mode is stitched.
2549
+ #
2539
2550
  # @option params [Types::LivePreRollConfiguration] :live_pre_roll_configuration
2540
2551
  # The configuration for pre-roll ad insertion.
2541
2552
  #
@@ -2599,6 +2610,7 @@ module Aws::MediaTailor
2599
2610
  # * {Types::PutPlaybackConfigurationResponse#configuration_aliases #configuration_aliases} => Hash<String,Hash<String,String>>
2600
2611
  # * {Types::PutPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
2601
2612
  # * {Types::PutPlaybackConfigurationResponse#hls_configuration #hls_configuration} => Types::HlsConfiguration
2613
+ # * {Types::PutPlaybackConfigurationResponse#insertion_mode #insertion_mode} => String
2602
2614
  # * {Types::PutPlaybackConfigurationResponse#live_pre_roll_configuration #live_pre_roll_configuration} => Types::LivePreRollConfiguration
2603
2615
  # * {Types::PutPlaybackConfigurationResponse#log_configuration #log_configuration} => Types::LogConfiguration
2604
2616
  # * {Types::PutPlaybackConfigurationResponse#manifest_processing_rules #manifest_processing_rules} => Types::ManifestProcessingRules
@@ -2638,6 +2650,7 @@ module Aws::MediaTailor
2638
2650
  # mpd_location: "__string",
2639
2651
  # origin_manifest_type: "SINGLE_PERIOD", # accepts SINGLE_PERIOD, MULTI_PERIOD
2640
2652
  # },
2653
+ # insertion_mode: "STITCHED_ONLY", # accepts STITCHED_ONLY, PLAYER_SELECT
2641
2654
  # live_pre_roll_configuration: {
2642
2655
  # ad_decision_server_url: "__string",
2643
2656
  # max_duration_seconds: 1,
@@ -2674,6 +2687,7 @@ module Aws::MediaTailor
2674
2687
  # resp.dash_configuration.mpd_location #=> String
2675
2688
  # resp.dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
2676
2689
  # resp.hls_configuration.manifest_endpoint_prefix #=> String
2690
+ # resp.insertion_mode #=> String, one of "STITCHED_ONLY", "PLAYER_SELECT"
2677
2691
  # resp.live_pre_roll_configuration.ad_decision_server_url #=> String
2678
2692
  # resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
2679
2693
  # resp.log_configuration.percent_enabled #=> Integer
@@ -3363,7 +3377,7 @@ module Aws::MediaTailor
3363
3377
  params: params,
3364
3378
  config: config)
3365
3379
  context[:gem_name] = 'aws-sdk-mediatailor'
3366
- context[:gem_version] = '1.77.0'
3380
+ context[:gem_version] = '1.78.0'
3367
3381
  Seahorse::Client::Request.new(handlers, context)
3368
3382
  end
3369
3383
 
@@ -96,6 +96,7 @@ module Aws::MediaTailor
96
96
  HttpConfiguration = Shapes::StructureShape.new(name: 'HttpConfiguration')
97
97
  HttpPackageConfiguration = Shapes::StructureShape.new(name: 'HttpPackageConfiguration')
98
98
  HttpPackageConfigurations = Shapes::ListShape.new(name: 'HttpPackageConfigurations')
99
+ InsertionMode = Shapes::StringShape.new(name: 'InsertionMode')
99
100
  Integer = Shapes::IntegerShape.new(name: 'Integer')
100
101
  KeyValuePair = Shapes::StructureShape.new(name: 'KeyValuePair')
101
102
  ListAlertsRequest = Shapes::StructureShape.new(name: 'ListAlertsRequest')
@@ -585,6 +586,7 @@ module Aws::MediaTailor
585
586
  GetPlaybackConfigurationResponse.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesResponse, location_name: "ConfigurationAliases"))
586
587
  GetPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
587
588
  GetPlaybackConfigurationResponse.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
589
+ GetPlaybackConfigurationResponse.add_member(:insertion_mode, Shapes::ShapeRef.new(shape: InsertionMode, location_name: "InsertionMode"))
588
590
  GetPlaybackConfigurationResponse.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
589
591
  GetPlaybackConfigurationResponse.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "LogConfiguration"))
590
592
  GetPlaybackConfigurationResponse.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
@@ -730,6 +732,7 @@ module Aws::MediaTailor
730
732
  PlaybackConfiguration.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesResponse, location_name: "ConfigurationAliases"))
731
733
  PlaybackConfiguration.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
732
734
  PlaybackConfiguration.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
735
+ PlaybackConfiguration.add_member(:insertion_mode, Shapes::ShapeRef.new(shape: InsertionMode, location_name: "InsertionMode"))
733
736
  PlaybackConfiguration.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
734
737
  PlaybackConfiguration.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "LogConfiguration"))
735
738
  PlaybackConfiguration.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
@@ -774,6 +777,7 @@ module Aws::MediaTailor
774
777
  PutPlaybackConfigurationRequest.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
775
778
  PutPlaybackConfigurationRequest.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesRequest, location_name: "ConfigurationAliases"))
776
779
  PutPlaybackConfigurationRequest.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfigurationForPut, location_name: "DashConfiguration"))
780
+ PutPlaybackConfigurationRequest.add_member(:insertion_mode, Shapes::ShapeRef.new(shape: InsertionMode, location_name: "InsertionMode"))
777
781
  PutPlaybackConfigurationRequest.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
778
782
  PutPlaybackConfigurationRequest.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
779
783
  PutPlaybackConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Name"))
@@ -791,6 +795,7 @@ module Aws::MediaTailor
791
795
  PutPlaybackConfigurationResponse.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesResponse, location_name: "ConfigurationAliases"))
792
796
  PutPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
793
797
  PutPlaybackConfigurationResponse.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
798
+ PutPlaybackConfigurationResponse.add_member(:insertion_mode, Shapes::ShapeRef.new(shape: InsertionMode, location_name: "InsertionMode"))
794
799
  PutPlaybackConfigurationResponse.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
795
800
  PutPlaybackConfigurationResponse.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "LogConfiguration"))
796
801
  PutPlaybackConfigurationResponse.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
@@ -2097,6 +2097,15 @@ module Aws::MediaTailor
2097
2097
  # The configuration for HLS content.
2098
2098
  # @return [Types::HlsConfiguration]
2099
2099
  #
2100
+ # @!attribute [rw] insertion_mode
2101
+ # The setting that controls whether players can use stitched or guided
2102
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player
2103
+ # sessions to use stitched (server-side) ad insertion. Choosing
2104
+ # `PLAYER_SELECT` allows players to select either stitched or guided
2105
+ # ad insertion at session-initialization time. The default for players
2106
+ # that do not specify an insertion mode is stitched.
2107
+ # @return [String]
2108
+ #
2100
2109
  # @!attribute [rw] live_pre_roll_configuration
2101
2110
  # The configuration for pre-roll ad insertion.
2102
2111
  # @return [Types::LivePreRollConfiguration]
@@ -2188,6 +2197,7 @@ module Aws::MediaTailor
2188
2197
  :configuration_aliases,
2189
2198
  :dash_configuration,
2190
2199
  :hls_configuration,
2200
+ :insertion_mode,
2191
2201
  :live_pre_roll_configuration,
2192
2202
  :log_configuration,
2193
2203
  :manifest_processing_rules,
@@ -2942,6 +2952,15 @@ module Aws::MediaTailor
2942
2952
  # The configuration for HLS content.
2943
2953
  # @return [Types::HlsConfiguration]
2944
2954
  #
2955
+ # @!attribute [rw] insertion_mode
2956
+ # The setting that controls whether players can use stitched or guided
2957
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player
2958
+ # sessions to use stitched (server-side) ad insertion. Choosing
2959
+ # `PLAYER_SELECT` allows players to select either stitched or guided
2960
+ # ad insertion at session-initialization time. The default for players
2961
+ # that do not specify an insertion mode is stitched.
2962
+ # @return [String]
2963
+ #
2945
2964
  # @!attribute [rw] live_pre_roll_configuration
2946
2965
  # The configuration for pre-roll ad insertion.
2947
2966
  # @return [Types::LivePreRollConfiguration]
@@ -3033,6 +3052,7 @@ module Aws::MediaTailor
3033
3052
  :configuration_aliases,
3034
3053
  :dash_configuration,
3035
3054
  :hls_configuration,
3055
+ :insertion_mode,
3036
3056
  :live_pre_roll_configuration,
3037
3057
  :log_configuration,
3038
3058
  :manifest_processing_rules,
@@ -3248,6 +3268,15 @@ module Aws::MediaTailor
3248
3268
  # The configuration for DASH content.
3249
3269
  # @return [Types::DashConfigurationForPut]
3250
3270
  #
3271
+ # @!attribute [rw] insertion_mode
3272
+ # The setting that controls whether players can use stitched or guided
3273
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player
3274
+ # sessions to use stitched (server-side) ad insertion. Choosing
3275
+ # `PLAYER_SELECT` allows players to select either stitched or guided
3276
+ # ad insertion at session-initialization time. The default for players
3277
+ # that do not specify an insertion mode is stitched.
3278
+ # @return [String]
3279
+ #
3251
3280
  # @!attribute [rw] live_pre_roll_configuration
3252
3281
  # The configuration for pre-roll ad insertion.
3253
3282
  # @return [Types::LivePreRollConfiguration]
@@ -3320,6 +3349,7 @@ module Aws::MediaTailor
3320
3349
  :cdn_configuration,
3321
3350
  :configuration_aliases,
3322
3351
  :dash_configuration,
3352
+ :insertion_mode,
3323
3353
  :live_pre_roll_configuration,
3324
3354
  :manifest_processing_rules,
3325
3355
  :name,
@@ -3384,6 +3414,15 @@ module Aws::MediaTailor
3384
3414
  # The configuration for HLS content.
3385
3415
  # @return [Types::HlsConfiguration]
3386
3416
  #
3417
+ # @!attribute [rw] insertion_mode
3418
+ # The setting that controls whether players can use stitched or guided
3419
+ # ad insertion. The default, `STITCHED_ONLY`, forces all player
3420
+ # sessions to use stitched (server-side) ad insertion. Choosing
3421
+ # `PLAYER_SELECT` allows players to select either stitched or guided
3422
+ # ad insertion at session-initialization time. The default for players
3423
+ # that do not specify an insertion mode is stitched.
3424
+ # @return [String]
3425
+ #
3387
3426
  # @!attribute [rw] live_pre_roll_configuration
3388
3427
  # The configuration for pre-roll ad insertion.
3389
3428
  # @return [Types::LivePreRollConfiguration]
@@ -3476,6 +3515,7 @@ module Aws::MediaTailor
3476
3515
  :configuration_aliases,
3477
3516
  :dash_configuration,
3478
3517
  :hls_configuration,
3518
+ :insertion_mode,
3479
3519
  :live_pre_roll_configuration,
3480
3520
  :log_configuration,
3481
3521
  :manifest_processing_rules,
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaTailor
54
54
 
55
- GEM_VERSION = '1.77.0'
55
+ GEM_VERSION = '1.78.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -600,6 +600,7 @@ module Aws
600
600
  def configuration_aliases: () -> ::Hash[::String, ::Hash[::String, ::String]]
601
601
  def dash_configuration: () -> Types::DashConfiguration
602
602
  def hls_configuration: () -> Types::HlsConfiguration
603
+ def insertion_mode: () -> ("STITCHED_ONLY" | "PLAYER_SELECT")
603
604
  def live_pre_roll_configuration: () -> Types::LivePreRollConfiguration
604
605
  def log_configuration: () -> Types::LogConfiguration
605
606
  def manifest_processing_rules: () -> Types::ManifestProcessingRules
@@ -753,6 +754,7 @@ module Aws
753
754
  def configuration_aliases: () -> ::Hash[::String, ::Hash[::String, ::String]]
754
755
  def dash_configuration: () -> Types::DashConfiguration
755
756
  def hls_configuration: () -> Types::HlsConfiguration
757
+ def insertion_mode: () -> ("STITCHED_ONLY" | "PLAYER_SELECT")
756
758
  def live_pre_roll_configuration: () -> Types::LivePreRollConfiguration
757
759
  def log_configuration: () -> Types::LogConfiguration
758
760
  def manifest_processing_rules: () -> Types::ManifestProcessingRules
@@ -787,6 +789,7 @@ module Aws
787
789
  mpd_location: ::String?,
788
790
  origin_manifest_type: ("SINGLE_PERIOD" | "MULTI_PERIOD")?
789
791
  },
792
+ ?insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT"),
790
793
  ?live_pre_roll_configuration: {
791
794
  ad_decision_server_url: ::String?,
792
795
  max_duration_seconds: ::Integer?
data/sig/types.rbs CHANGED
@@ -502,6 +502,7 @@ module Aws::MediaTailor
502
502
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
503
503
  attr_accessor dash_configuration: Types::DashConfiguration
504
504
  attr_accessor hls_configuration: Types::HlsConfiguration
505
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
505
506
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
506
507
  attr_accessor log_configuration: Types::LogConfiguration
507
508
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
@@ -701,6 +702,7 @@ module Aws::MediaTailor
701
702
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
702
703
  attr_accessor dash_configuration: Types::DashConfiguration
703
704
  attr_accessor hls_configuration: Types::HlsConfiguration
705
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
704
706
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
705
707
  attr_accessor log_configuration: Types::LogConfiguration
706
708
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
@@ -756,6 +758,7 @@ module Aws::MediaTailor
756
758
  attr_accessor cdn_configuration: Types::CdnConfiguration
757
759
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
758
760
  attr_accessor dash_configuration: Types::DashConfigurationForPut
761
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
759
762
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
760
763
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
761
764
  attr_accessor name: ::String
@@ -775,6 +778,7 @@ module Aws::MediaTailor
775
778
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
776
779
  attr_accessor dash_configuration: Types::DashConfiguration
777
780
  attr_accessor hls_configuration: Types::HlsConfiguration
781
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
778
782
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
779
783
  attr_accessor log_configuration: Types::LogConfiguration
780
784
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediatailor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.77.0
4
+ version: 1.78.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-03-18 00:00:00.000000000 Z
11
+ date: 2024-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core