aws-sdk-sagemakerfeaturestoreruntime 1.24.0 → 1.26.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: 26dafee8aca660921ac78690bdc3d3c65ec1f1a5a5d1b80fcf9f31bbb4356b2c
4
- data.tar.gz: 5de97155f20a353747d879a1e6f58d6e0252884900c1a5bf902280b130ef9024
3
+ metadata.gz: 8a1debbc810c92d50851a9d7a9dbb3dbaa8ef9cf4b23de015808acc4c7d5e474
4
+ data.tar.gz: 7cbc092b0e2c138d33e5cb8f691abbb62f4a8916557a975880d67abf17d6ea65
5
5
  SHA512:
6
- metadata.gz: 96c24d83356886cc7b0318a27e81a687cad8ca449a7a6cb3910ddf13fae315fe98c058b8834ad75738b49a7952c72a4d142698554d05035cf315a47b3bebdd64
7
- data.tar.gz: 892467299758b0b72e18fe02fa029551b654f3d3c4d9ec025436f646267a66a1f31b69ebe9a9db05c6d9cf1378ae92c65c0d5fa466e32a1bbb35fed39c2a2bcf
6
+ metadata.gz: ceafa276a7c5678a9ed4d6cdae03500221fb6fe5c785d42bd5ef4a3b600623b04124f1b94dc4f19cb4821a4826a4f9c9fbdf9f3d2aa75069b75a0866a6cb15b3
7
+ data.tar.gz: fd8fa51e0b1df72cac5f2b8c9b72e7ea1e8323627b5eccc357c3584b6aebeb20c60d343e02cfaec6696404f1f89060a09877c3d20f55510b277e342637c45f5e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2023-11-22)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.25.0 (2023-09-28)
10
+ ------------------
11
+
12
+ * Feature - Feature Store supports read/write of records with collection type features.
13
+
4
14
  1.24.0 (2023-09-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.26.0
@@ -427,6 +427,8 @@ module Aws::SageMakerFeatureStoreRuntime
427
427
  # resp.records[0].record #=> Array
428
428
  # resp.records[0].record[0].feature_name #=> String
429
429
  # resp.records[0].record[0].value_as_string #=> String
430
+ # resp.records[0].record[0].value_as_string_list #=> Array
431
+ # resp.records[0].record[0].value_as_string_list[0] #=> String
430
432
  # resp.records[0].expires_at #=> String
431
433
  # resp.errors #=> Array
432
434
  # resp.errors[0].feature_group_name #=> String
@@ -553,6 +555,8 @@ module Aws::SageMakerFeatureStoreRuntime
553
555
  # resp.record #=> Array
554
556
  # resp.record[0].feature_name #=> String
555
557
  # resp.record[0].value_as_string #=> String
558
+ # resp.record[0].value_as_string_list #=> Array
559
+ # resp.record[0].value_as_string_list[0] #=> String
556
560
  # resp.expires_at #=> String
557
561
  #
558
562
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/GetRecord AWS API Documentation
@@ -622,7 +626,8 @@ module Aws::SageMakerFeatureStoreRuntime
622
626
  # record: [ # required
623
627
  # {
624
628
  # feature_name: "FeatureName", # required
625
- # value_as_string: "ValueAsString", # required
629
+ # value_as_string: "ValueAsString",
630
+ # value_as_string_list: ["ValueAsString"],
626
631
  # },
627
632
  # ],
628
633
  # target_stores: ["OnlineStore"], # accepts OnlineStore, OfflineStore
@@ -654,7 +659,7 @@ module Aws::SageMakerFeatureStoreRuntime
654
659
  params: params,
655
660
  config: config)
656
661
  context[:gem_name] = 'aws-sdk-sagemakerfeaturestoreruntime'
657
- context[:gem_version] = '1.24.0'
662
+ context[:gem_version] = '1.26.0'
658
663
  Seahorse::Client::Request.new(handlers, context)
659
664
  end
660
665
 
@@ -47,6 +47,7 @@ module Aws::SageMakerFeatureStoreRuntime
47
47
  UnprocessedIdentifiers = Shapes::ListShape.new(name: 'UnprocessedIdentifiers')
48
48
  ValidationError = Shapes::StructureShape.new(name: 'ValidationError')
49
49
  ValueAsString = Shapes::StringShape.new(name: 'ValueAsString')
50
+ ValueAsStringList = Shapes::ListShape.new(name: 'ValueAsStringList')
50
51
 
51
52
  AccessForbidden.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
52
53
  AccessForbidden.struct_class = Types::AccessForbidden
@@ -93,7 +94,8 @@ module Aws::SageMakerFeatureStoreRuntime
93
94
  FeatureNames.member = Shapes::ShapeRef.new(shape: FeatureName)
94
95
 
95
96
  FeatureValue.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, required: true, location_name: "FeatureName"))
96
- FeatureValue.add_member(:value_as_string, Shapes::ShapeRef.new(shape: ValueAsString, required: true, location_name: "ValueAsString"))
97
+ FeatureValue.add_member(:value_as_string, Shapes::ShapeRef.new(shape: ValueAsString, location_name: "ValueAsString"))
98
+ FeatureValue.add_member(:value_as_string_list, Shapes::ShapeRef.new(shape: ValueAsStringList, location_name: "ValueAsStringList"))
97
99
  FeatureValue.struct_class = Types::FeatureValue
98
100
 
99
101
  GetRecordRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location: "uri", location_name: "FeatureGroupName"))
@@ -136,6 +138,8 @@ module Aws::SageMakerFeatureStoreRuntime
136
138
  ValidationError.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
137
139
  ValidationError.struct_class = Types::ValidationError
138
140
 
141
+ ValueAsStringList.member = Shapes::ShapeRef.new(shape: ValueAsString)
142
+
139
143
 
140
144
  # @api private
141
145
  API = Seahorse::Model::Api.new.tap do |api|
@@ -208,16 +208,25 @@ module Aws::SageMakerFeatureStoreRuntime
208
208
  # @return [String]
209
209
  #
210
210
  # @!attribute [rw] value_as_string
211
- # The value associated with a feature, in string format. Note that
212
- # features types can be String, Integral, or Fractional. This value
213
- # represents all three types as a string.
211
+ # The value in string format associated with a feature. Used when your
212
+ # `CollectionType` is `None`. Note that features types can be
213
+ # `String`, `Integral`, or `Fractional`. This value represents all
214
+ # three types as a string.
214
215
  # @return [String]
215
216
  #
217
+ # @!attribute [rw] value_as_string_list
218
+ # The list of values in string format associated with a feature. Used
219
+ # when your `CollectionType` is a `List`, `Set`, or `Vector`. Note
220
+ # that features types can be `String`, `Integral`, or `Fractional`.
221
+ # These values represents all three types as a string.
222
+ # @return [Array<String>]
223
+ #
216
224
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/FeatureValue AWS API Documentation
217
225
  #
218
226
  class FeatureValue < Struct.new(
219
227
  :feature_name,
220
- :value_as_string)
228
+ :value_as_string,
229
+ :value_as_string_list)
221
230
  SENSITIVE = []
222
231
  include Aws::Structure
223
232
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-sagemakerfeaturestoreruntime/customizations'
52
52
  # @!group service
53
53
  module Aws::SageMakerFeatureStoreRuntime
54
54
 
55
- GEM_VERSION = '1.24.0'
55
+ GEM_VERSION = '1.26.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemakerfeaturestoreruntime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.26.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: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.184.0
22
+ version: 3.188.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.184.0
32
+ version: 3.188.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -80,7 +80,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
- version: '2.3'
83
+ version: '2.5'
84
84
  required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - ">="