aws-sdk-bedrockagentruntime 1.29.0 → 1.30.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: 874f1f6793b18532bc35891baa80c7ba272f425884814271fca7df08b2e5a5be
4
- data.tar.gz: fd3769ce8236cff70661e686fb9d39bd37a43ffcb47ad06c6e229933e3f4e416
3
+ metadata.gz: ddd19c39eedacc41d2bef21c75ff2669e9badf69d4b784b9b828ef5c9482d225
4
+ data.tar.gz: b3b78d61228b5a8db3fbe3efa336e94f11b1f83b453c7aa1f726d7ffab940ef5
5
5
  SHA512:
6
- metadata.gz: 3997c97c9d6484bdb249afc314d0c254db21297ca85b912b653801b84bb48b61ee224da8a2ae7e286774e90755ba1bfb4345fa22062f1d31545ea0db764a1ad7
7
- data.tar.gz: fb395ef3e0549e25c726e6bbe7a168eb19ff580ee2c4c6b44d9ee55fb4e38026912c212c82c13b451545c37f3f7b71289709041c08080a217f7d7f362e1d4cf6
6
+ metadata.gz: 3ce22f6888e86e1c8303524cbd67791e688f760182d326fb88f856c98aabefe428310b52b954d243f0d7a8e8a46e79c2e3eae70e8f0acde4d47e24d9b7ef1543
7
+ data.tar.gz: 9fae515be407940cd0821112ef9248f5f714e139d332da4f3d6a222ca589332c59cf161729493ae69a309ac894fd614664d7fba3e9bb967f7630aa4ae35402d2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2024-11-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.29.0 (2024-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.30.0
@@ -1920,7 +1920,7 @@ module Aws::BedrockAgentRuntime
1920
1920
  tracer: tracer
1921
1921
  )
1922
1922
  context[:gem_name] = 'aws-sdk-bedrockagentruntime'
1923
- context[:gem_version] = '1.29.0'
1923
+ context[:gem_version] = '1.30.0'
1924
1924
  Seahorse::Client::Request.new(handlers, context)
1925
1925
  end
1926
1926
 
@@ -2842,7 +2842,7 @@ module Aws::BedrockAgentRuntime
2842
2842
  # The following example would return data sources with an `animal`
2843
2843
  # attribute whose value is `cat`:
2844
2844
  #
2845
- # `"equals": \{ "key": "animal", "value": "cat" \}`
2845
+ # `"equals": { "key": "animal", "value": "cat" }`
2846
2846
  # @return [Types::FilterAttribute]
2847
2847
  #
2848
2848
  # @!attribute [rw] greater_than
@@ -2853,7 +2853,7 @@ module Aws::BedrockAgentRuntime
2853
2853
  # The following example would return data sources with an `year`
2854
2854
  # attribute whose value is greater than `1989`:
2855
2855
  #
2856
- # `"greaterThan": \{ "key": "year", "value": 1989 \}`
2856
+ # `"greaterThan": { "key": "year", "value": 1989 }`
2857
2857
  # @return [Types::FilterAttribute]
2858
2858
  #
2859
2859
  # @!attribute [rw] greater_than_or_equals
@@ -2864,7 +2864,7 @@ module Aws::BedrockAgentRuntime
2864
2864
  # The following example would return data sources with an `year`
2865
2865
  # attribute whose value is greater than or equal to `1989`:
2866
2866
  #
2867
- # `"greaterThanOrEquals": \{ "key": "year", "value": 1989 \}`
2867
+ # `"greaterThanOrEquals": { "key": "year", "value": 1989 }`
2868
2868
  # @return [Types::FilterAttribute]
2869
2869
  #
2870
2870
  # @!attribute [rw] in
@@ -2875,7 +2875,7 @@ module Aws::BedrockAgentRuntime
2875
2875
  # The following example would return data sources with an `animal`
2876
2876
  # attribute that is either `cat` or `dog`:
2877
2877
  #
2878
- # `"in": \{ "key": "animal", "value": ["cat", "dog"] \}`
2878
+ # `"in": { "key": "animal", "value": ["cat", "dog"] }`
2879
2879
  # @return [Types::FilterAttribute]
2880
2880
  #
2881
2881
  # @!attribute [rw] less_than
@@ -2886,7 +2886,7 @@ module Aws::BedrockAgentRuntime
2886
2886
  # The following example would return data sources with an `year`
2887
2887
  # attribute whose value is less than to `1989`.
2888
2888
  #
2889
- # `"lessThan": \{ "key": "year", "value": 1989 \}`
2889
+ # `"lessThan": { "key": "year", "value": 1989 }`
2890
2890
  # @return [Types::FilterAttribute]
2891
2891
  #
2892
2892
  # @!attribute [rw] less_than_or_equals
@@ -2897,7 +2897,7 @@ module Aws::BedrockAgentRuntime
2897
2897
  # The following example would return data sources with an `year`
2898
2898
  # attribute whose value is less than or equal to `1989`.
2899
2899
  #
2900
- # `"lessThanOrEquals": \{ "key": "year", "value": 1989 \}`
2900
+ # `"lessThanOrEquals": { "key": "year", "value": 1989 }`
2901
2901
  # @return [Types::FilterAttribute]
2902
2902
  #
2903
2903
  # @!attribute [rw] list_contains
@@ -2909,7 +2909,7 @@ module Aws::BedrockAgentRuntime
2909
2909
  # attribute that is a list containing a `cat` member (for example
2910
2910
  # `["dog", "cat"]`).
2911
2911
  #
2912
- # `"listContains": \{ "key": "animals", "value": "cat" \}`
2912
+ # `"listContains": { "key": "animals", "value": "cat" }`
2913
2913
  # @return [Types::FilterAttribute]
2914
2914
  #
2915
2915
  # @!attribute [rw] not_equals
@@ -2920,7 +2920,7 @@ module Aws::BedrockAgentRuntime
2920
2920
  # The following example would return data sources that don't contain
2921
2921
  # an `animal` attribute whose value is `cat`.
2922
2922
  #
2923
- # `"notEquals": \{ "key": "animal", "value": "cat" \}`
2923
+ # `"notEquals": { "key": "animal", "value": "cat" }`
2924
2924
  # @return [Types::FilterAttribute]
2925
2925
  #
2926
2926
  # @!attribute [rw] not_in
@@ -2931,7 +2931,7 @@ module Aws::BedrockAgentRuntime
2931
2931
  # The following example would return data sources whose `animal`
2932
2932
  # attribute is neither `cat` nor `dog`.
2933
2933
  #
2934
- # `"notIn": \{ "key": "animal", "value": ["cat", "dog"] \}`
2934
+ # `"notIn": { "key": "animal", "value": ["cat", "dog"] }`
2935
2935
  # @return [Types::FilterAttribute]
2936
2936
  #
2937
2937
  # @!attribute [rw] or_all
@@ -2949,7 +2949,7 @@ module Aws::BedrockAgentRuntime
2949
2949
  # The following example would return data sources with an `animal`
2950
2950
  # attribute starts with `ca` (for example, `cat` or `camel`).
2951
2951
  #
2952
- # `"startsWith": \{ "key": "animal", "value": "ca" \}`
2952
+ # `"startsWith": { "key": "animal", "value": "ca" }`
2953
2953
  # @return [Types::FilterAttribute]
2954
2954
  #
2955
2955
  # @!attribute [rw] string_contains
@@ -2961,14 +2961,14 @@ module Aws::BedrockAgentRuntime
2961
2961
  # example would return data sources with an `animal` attribute that
2962
2962
  # contains the substring `at` (for example `cat`).
2963
2963
  #
2964
- # `"stringContains": \{ "key": "animal", "value": "at" \}`
2964
+ # `"stringContains": { "key": "animal", "value": "at" }`
2965
2965
  #
2966
2966
  # * A list with a member that contains the `value` as a substring. The
2967
2967
  # following example would return data sources with an `animals`
2968
2968
  # attribute that is a list containing a member that contains the
2969
2969
  # substring `at` (for example `["dog", "cat"]`).
2970
2970
  #
2971
- # `"stringContains": \{ "key": "animals", "value": "at" \}`
2971
+ # `"stringContains": { "key": "animals", "value": "at" }`
2972
2972
  # @return [Types::FilterAttribute]
2973
2973
  #
2974
2974
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/RetrievalFilter AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::BedrockAgentRuntime
55
55
  autoload :Endpoints, 'aws-sdk-bedrockagentruntime/endpoints'
56
56
  autoload :EventStreams, 'aws-sdk-bedrockagentruntime/event_streams'
57
57
 
58
- GEM_VERSION = '1.29.0'
58
+ GEM_VERSION = '1.30.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentruntime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.0
4
+ version: 1.30.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-10-21 00:00:00.000000000 Z
11
+ date: 2024-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core