aws-sdk-bedrock 1.67.0 → 1.68.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: 9d377019bfc35e650d86e1bc619a8b85ba238a10a597998127e1da6a8e1ec2ed
4
- data.tar.gz: daea0efd0af60c43a687c54b6333a5bd2cc4c47a1cf441b1baae81a216a072d0
3
+ metadata.gz: 149972ad92dd6f17205fbb4a3fdd49f8ca4ea4c83d81c4f5870130e2d2288378
4
+ data.tar.gz: bb77cc363a8274aa9589ff4e73195afd7d715b0c1791e7b7e239a82e374c9c2a
5
5
  SHA512:
6
- metadata.gz: 92b3f4b6eca8c5e985f9315014bc4e5400fa8b03b5a7806ddd0c350d0550dc0cde311125c47ca5668cd223309a11c05d354f2f6bebea4aac06e982e82f63acf1
7
- data.tar.gz: 8defda555a899ed7e3cfdf3d26f4ab1637f3eafdcdd70e7531e5f37115d8fc8aa18164ef0d2cadbf6f2becb159a53af315abde56904d3f4419e4450a66560e87
6
+ metadata.gz: a401c74bb19c77f38f21780a023ebeb1730de20769c10cd29b69dea82c8a9b1c13f032407eba7dd36bb9992a6319f2422695bdd34fa0b1d08d82e865b8778170
7
+ data.tar.gz: 374debf64d258d0059b1d766bad48b19575bfb4a79013e9f051ccb5c382adb460b02216b54b76e197d8dbb4cf5ffa127fe43e5c33344ffb91a1c7e156c103c9b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2025-12-02)
5
+ ------------------
6
+
7
+ * Feature - Adds the audioDataDeliveryEnabled boolean field to the Model Invocation Logging Configuration.
8
+
4
9
  1.67.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -4808,6 +4808,7 @@ module Aws::Bedrock
4808
4808
  # resp.logging_config.image_data_delivery_enabled #=> Boolean
4809
4809
  # resp.logging_config.embedding_data_delivery_enabled #=> Boolean
4810
4810
  # resp.logging_config.video_data_delivery_enabled #=> Boolean
4811
+ # resp.logging_config.audio_data_delivery_enabled #=> Boolean
4811
4812
  #
4812
4813
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-2023-04-20/GetModelInvocationLoggingConfiguration AWS API Documentation
4813
4814
  #
@@ -6654,6 +6655,7 @@ module Aws::Bedrock
6654
6655
  # image_data_delivery_enabled: false,
6655
6656
  # embedding_data_delivery_enabled: false,
6656
6657
  # video_data_delivery_enabled: false,
6658
+ # audio_data_delivery_enabled: false,
6657
6659
  # },
6658
6660
  # })
6659
6661
  #
@@ -7736,7 +7738,7 @@ module Aws::Bedrock
7736
7738
  tracer: tracer
7737
7739
  )
7738
7740
  context[:gem_name] = 'aws-sdk-bedrock'
7739
- context[:gem_version] = '1.67.0'
7741
+ context[:gem_version] = '1.68.0'
7740
7742
  Seahorse::Client::Request.new(handlers, context)
7741
7743
  end
7742
7744
 
@@ -2817,6 +2817,7 @@ module Aws::Bedrock
2817
2817
  LoggingConfig.add_member(:image_data_delivery_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "imageDataDeliveryEnabled"))
2818
2818
  LoggingConfig.add_member(:embedding_data_delivery_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "embeddingDataDeliveryEnabled"))
2819
2819
  LoggingConfig.add_member(:video_data_delivery_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "videoDataDeliveryEnabled"))
2820
+ LoggingConfig.add_member(:audio_data_delivery_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "audioDataDeliveryEnabled"))
2820
2821
  LoggingConfig.struct_class = Types::LoggingConfig
2821
2822
 
2822
2823
  MarketplaceModelEndpoint.add_member(:endpoint_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "endpointArn"))
@@ -10322,6 +10322,10 @@ module Aws::Bedrock
10322
10322
  # Set to include video data in the log delivery.
10323
10323
  # @return [Boolean]
10324
10324
  #
10325
+ # @!attribute [rw] audio_data_delivery_enabled
10326
+ # Set to include audio data in the log delivery.
10327
+ # @return [Boolean]
10328
+ #
10325
10329
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-2023-04-20/LoggingConfig AWS API Documentation
10326
10330
  #
10327
10331
  class LoggingConfig < Struct.new(
@@ -10330,7 +10334,8 @@ module Aws::Bedrock
10330
10334
  :text_data_delivery_enabled,
10331
10335
  :image_data_delivery_enabled,
10332
10336
  :embedding_data_delivery_enabled,
10333
- :video_data_delivery_enabled)
10337
+ :video_data_delivery_enabled,
10338
+ :audio_data_delivery_enabled)
10334
10339
  SENSITIVE = []
10335
10340
  include Aws::Structure
10336
10341
  end
@@ -55,7 +55,7 @@ module Aws::Bedrock
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrock/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrock/endpoints'
57
57
 
58
- GEM_VERSION = '1.67.0'
58
+ GEM_VERSION = '1.68.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1991,7 +1991,8 @@ module Aws
1991
1991
  text_data_delivery_enabled: bool?,
1992
1992
  image_data_delivery_enabled: bool?,
1993
1993
  embedding_data_delivery_enabled: bool?,
1994
- video_data_delivery_enabled: bool?
1994
+ video_data_delivery_enabled: bool?,
1995
+ audio_data_delivery_enabled: bool?
1995
1996
  }
1996
1997
  ) -> _PutModelInvocationLoggingConfigurationResponseSuccess
1997
1998
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutModelInvocationLoggingConfigurationResponseSuccess
data/sig/types.rbs CHANGED
@@ -2597,6 +2597,7 @@ module Aws::Bedrock
2597
2597
  attr_accessor image_data_delivery_enabled: bool
2598
2598
  attr_accessor embedding_data_delivery_enabled: bool
2599
2599
  attr_accessor video_data_delivery_enabled: bool
2600
+ attr_accessor audio_data_delivery_enabled: bool
2600
2601
  SENSITIVE: []
2601
2602
  end
2602
2603
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrock
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services