aws-sdk-bedrock 1.91.0 → 1.92.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: 468a384d9e87b708d200ddf9f485b9ef779cca3d38e384a6e89d35e4080a20fe
4
- data.tar.gz: bb7658cf9aa8190e4df2a6de1f2b492a9d5ba41808bd4ddcaceda877819ed34e
3
+ metadata.gz: '09236ae23b9d21c9b370e5e2f541cfc01b824b79266866ffd5a02777567f053a'
4
+ data.tar.gz: a0a32766c945ba844021b84cf184c138d7ac03d9eff14ff2d25698154b985511
5
5
  SHA512:
6
- metadata.gz: 2f821805bfd53681c147965148177f97f9051e1cb31a0d934256132cb5f62d83cbaa5374c090afd181ba24ebbafca66ae1f7411afd895af484a10b0bddc43aae
7
- data.tar.gz: 8b88a369cdd356318eaca8843e650401199db4d3506971013aa0d17ab21c7f884049f10e3f58562aba8d287b97e8a5a777c4bc9c75c13ca17e499b4d64b1a5f2
6
+ metadata.gz: 6654d876f47e8d39772beecc7c6544c0aab0fd1f0f60bf349e06cbfb62768f090dd3b87940abc56402c78b9167474464e3f14dca67c5249dbad5f003059126b1
7
+ data.tar.gz: a6b2f2e1d8aab97d6dfe3449815588912721e25acbdf069c9ed7a149428a59e2b4b7f6ea18eadc37ed7fab51ee49815824bd4fe5b0d8e97bf4def4763774cbec
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.92.0 (2026-09-04)
5
+ ------------------
6
+
7
+ * Feature - New AWS REVIEW mode as supported data retention mode for Bedrock models
8
+
4
9
  1.91.0 (2026-08-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.92.0
@@ -3438,7 +3438,7 @@ module Aws::Bedrock
3438
3438
  #
3439
3439
  # @example Response structure
3440
3440
  #
3441
- # resp.mode #=> String, one of "default", "none", "provider_data_share", "inherit"
3441
+ # resp.mode #=> String, one of "default", "none", "aws_review", "provider_data_share", "inherit"
3442
3442
  # resp.updated_at #=> Time
3443
3443
  #
3444
3444
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-2023-04-20/GetAccountDataRetention AWS API Documentation
@@ -7061,12 +7061,12 @@ module Aws::Bedrock
7061
7061
  # @example Request syntax with placeholder values
7062
7062
  #
7063
7063
  # resp = client.put_account_data_retention({
7064
- # mode: "default", # required, accepts default, none, provider_data_share, inherit
7064
+ # mode: "default", # required, accepts default, none, aws_review, provider_data_share, inherit
7065
7065
  # })
7066
7066
  #
7067
7067
  # @example Response structure
7068
7068
  #
7069
- # resp.mode #=> String, one of "default", "none", "provider_data_share", "inherit"
7069
+ # resp.mode #=> String, one of "default", "none", "aws_review", "provider_data_share", "inherit"
7070
7070
  # resp.updated_at #=> Time
7071
7071
  #
7072
7072
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-2023-04-20/PutAccountDataRetention AWS API Documentation
@@ -8346,7 +8346,7 @@ module Aws::Bedrock
8346
8346
  tracer: tracer
8347
8347
  )
8348
8348
  context[:gem_name] = 'aws-sdk-bedrock'
8349
- context[:gem_version] = '1.91.0'
8349
+ context[:gem_version] = '1.92.0'
8350
8350
  Seahorse::Client::Request.new(handlers, context)
8351
8351
  end
8352
8352
 
@@ -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.91.0'
58
+ GEM_VERSION = '1.92.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -926,7 +926,7 @@ module Aws
926
926
 
927
927
  interface _GetAccountDataRetentionResponseSuccess
928
928
  include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountDataRetentionResponse]
929
- def mode: () -> ("default" | "none" | "provider_data_share" | "inherit")
929
+ def mode: () -> ("default" | "none" | "aws_review" | "provider_data_share" | "inherit")
930
930
  def updated_at: () -> ::Time
931
931
  end
932
932
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Bedrock/Client.html#get_account_data_retention-instance_method
@@ -1734,12 +1734,12 @@ module Aws
1734
1734
 
1735
1735
  interface _PutAccountDataRetentionResponseSuccess
1736
1736
  include ::Seahorse::Client::_ResponseSuccess[Types::PutAccountDataRetentionResponse]
1737
- def mode: () -> ("default" | "none" | "provider_data_share" | "inherit")
1737
+ def mode: () -> ("default" | "none" | "aws_review" | "provider_data_share" | "inherit")
1738
1738
  def updated_at: () -> ::Time
1739
1739
  end
1740
1740
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Bedrock/Client.html#put_account_data_retention-instance_method
1741
1741
  def put_account_data_retention: (
1742
- mode: ("default" | "none" | "provider_data_share" | "inherit")
1742
+ mode: ("default" | "none" | "aws_review" | "provider_data_share" | "inherit")
1743
1743
  ) -> _PutAccountDataRetentionResponseSuccess
1744
1744
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAccountDataRetentionResponseSuccess
1745
1745
 
data/sig/types.rbs CHANGED
@@ -1684,7 +1684,7 @@ module Aws::Bedrock
1684
1684
  end
1685
1685
 
1686
1686
  class GetAccountDataRetentionResponse
1687
- attr_accessor mode: ("default" | "none" | "provider_data_share" | "inherit")
1687
+ attr_accessor mode: ("default" | "none" | "aws_review" | "provider_data_share" | "inherit")
1688
1688
  attr_accessor updated_at: ::Time
1689
1689
  SENSITIVE: []
1690
1690
  end
@@ -3155,12 +3155,12 @@ module Aws::Bedrock
3155
3155
  end
3156
3156
 
3157
3157
  class PutAccountDataRetentionRequest
3158
- attr_accessor mode: ("default" | "none" | "provider_data_share" | "inherit")
3158
+ attr_accessor mode: ("default" | "none" | "aws_review" | "provider_data_share" | "inherit")
3159
3159
  SENSITIVE: []
3160
3160
  end
3161
3161
 
3162
3162
  class PutAccountDataRetentionResponse
3163
- attr_accessor mode: ("default" | "none" | "provider_data_share" | "inherit")
3163
+ attr_accessor mode: ("default" | "none" | "aws_review" | "provider_data_share" | "inherit")
3164
3164
  attr_accessor updated_at: ::Time
3165
3165
  SENSITIVE: []
3166
3166
  end
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.91.0
4
+ version: 1.92.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services