aws-sdk-sagemakerfeaturestoreruntime 1.24.0 → 1.25.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26dafee8aca660921ac78690bdc3d3c65ec1f1a5a5d1b80fcf9f31bbb4356b2c
4
- data.tar.gz: 5de97155f20a353747d879a1e6f58d6e0252884900c1a5bf902280b130ef9024
3
+ metadata.gz: 0b2ce300e0031068dd29c640bf1f96239e531f2a309984b2371e4ce894dbbca6
4
+ data.tar.gz: 2c103e42ad5155852ffe204be4849bc38ef68d4e54209d162bce85c6d9393430
5
5
  SHA512:
6
- metadata.gz: 96c24d83356886cc7b0318a27e81a687cad8ca449a7a6cb3910ddf13fae315fe98c058b8834ad75738b49a7952c72a4d142698554d05035cf315a47b3bebdd64
7
- data.tar.gz: 892467299758b0b72e18fe02fa029551b654f3d3c4d9ec025436f646267a66a1f31b69ebe9a9db05c6d9cf1378ae92c65c0d5fa466e32a1bbb35fed39c2a2bcf
6
+ metadata.gz: 1832e5296de64362640334cc82cc3bf5c1575333f52a4c5ac5162d1e9d71f0929f6a5e0e27e4d37c1c83436a76417a1270504ca392533a7b7b64c4bf910c90bc
7
+ data.tar.gz: 7014f837fe32e8cac9845e1abcf653c93e12b37cd1979d092c71ad4b22c2f5187d74afc2d7d0dd68925382d3e4d38839ba622907ac9bbd2268ec6100cda21db1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2023-09-28)
5
+ ------------------
6
+
7
+ * Feature - Feature Store supports read/write of records with collection type features.
8
+
4
9
  1.24.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.25.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.25.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.25.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.25.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-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core