aws-sdk-sagemakerfeaturestoreruntime 1.26.0 → 1.28.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemakerfeaturestoreruntime/client.rb +18 -4
- data/lib/aws-sdk-sagemakerfeaturestoreruntime/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-sagemakerfeaturestoreruntime/plugins/endpoints.rb +3 -2
- data/lib/aws-sdk-sagemakerfeaturestoreruntime.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 066adccd8780bfbe93cf9dd4e6146a78b8e0dfef94e89982ef86d09eb5f94b43
|
4
|
+
data.tar.gz: 3901f8f52c0675446351694df11df401c76b8e011ebc99fa78983b4033c6a89c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d95ec6e231c6bbd606bc710f5756cc83ab32fe8bf76dacc217e09eb4215a7665af384f7cf6efa55238a4eea33dd5295d9b4a82636c2318df5c683449c62573c
|
7
|
+
data.tar.gz: adc83f77b9ca03c3a6817de83e4ba7c972383386fa1a2e9f4934735fae18aa04484c648b6c77f1d9fa00de14e945e6fc2c873676548d6ee8e6f04f32443effc1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.28.0 (2024-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Increase BatchGetRecord limits from 10 items to 100 items
|
8
|
+
|
9
|
+
1.27.0 (2023-11-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.26.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.28.0
|
@@ -457,14 +457,16 @@ module Aws::SageMakerFeatureStoreRuntime
|
|
457
457
|
# longer retrievable by `GetRecord` or `BatchGetRecord`. For
|
458
458
|
# `HardDelete`, the complete `Record` is removed from the `OnlineStore`.
|
459
459
|
# In both cases, Feature Store appends the deleted record marker to the
|
460
|
-
# `OfflineStore
|
461
|
-
#
|
460
|
+
# `OfflineStore`. The deleted record marker is a record with the same
|
461
|
+
# `RecordIdentifer` as the original, but with `is_deleted` value set to
|
462
|
+
# `True`, `EventTime` set to the delete input `EventTime`, and other
|
463
|
+
# feature values set to `null`.
|
462
464
|
#
|
463
465
|
# Note that the `EventTime` specified in `DeleteRecord` should be set
|
464
466
|
# later than the `EventTime` of the existing record in the `OnlineStore`
|
465
467
|
# for that `RecordIdentifer`. If it is not, the deletion does not occur:
|
466
468
|
#
|
467
|
-
# * For `SoftDelete`, the existing (
|
469
|
+
# * For `SoftDelete`, the existing (not deleted) record remains in the
|
468
470
|
# `OnlineStore`, though the delete record marker is still written to
|
469
471
|
# the `OfflineStore`.
|
470
472
|
#
|
@@ -472,6 +474,18 @@ module Aws::SageMakerFeatureStoreRuntime
|
|
472
474
|
# indicate that the delete operation failed. No delete record marker
|
473
475
|
# is written to the `OfflineStore`.
|
474
476
|
#
|
477
|
+
# When a record is deleted from the `OnlineStore`, the deleted record
|
478
|
+
# marker is appended to the `OfflineStore`. If you have the Iceberg
|
479
|
+
# table format enabled for your `OfflineStore`, you can remove all
|
480
|
+
# history of a record from the `OfflineStore` using Amazon Athena or
|
481
|
+
# Apache Spark. For information on how to hard delete a record from the
|
482
|
+
# `OfflineStore` with the Iceberg table format enabled, see [Delete
|
483
|
+
# records from the offline store][1].
|
484
|
+
#
|
485
|
+
#
|
486
|
+
#
|
487
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store-delete-records-offline-store.html#feature-store-delete-records-offline-store
|
488
|
+
#
|
475
489
|
# @option params [required, String] :feature_group_name
|
476
490
|
# The name or Amazon Resource Name (ARN) of the feature group to delete
|
477
491
|
# the record from.
|
@@ -659,7 +673,7 @@ module Aws::SageMakerFeatureStoreRuntime
|
|
659
673
|
params: params,
|
660
674
|
config: config)
|
661
675
|
context[:gem_name] = 'aws-sdk-sagemakerfeaturestoreruntime'
|
662
|
-
context[:gem_version] = '1.
|
676
|
+
context[:gem_version] = '1.28.0'
|
663
677
|
Seahorse::Client::Request.new(handlers, context)
|
664
678
|
end
|
665
679
|
|
@@ -32,7 +32,7 @@ module Aws::SageMakerFeatureStoreRuntime
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://featurestore-runtime.sagemaker-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -25,16 +25,17 @@ module Aws::SageMakerFeatureStoreRuntime
|
|
25
25
|
# @api private
|
26
26
|
class Handler < Seahorse::Client::Handler
|
27
27
|
def call(context)
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
28
|
unless context[:discovered_endpoint]
|
30
29
|
params = parameters_for_operation(context)
|
31
30
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
31
|
|
33
32
|
context.http_request.endpoint = endpoint.url
|
34
33
|
apply_endpoint_headers(context, endpoint.headers)
|
34
|
+
|
35
|
+
context[:endpoint_params] = params
|
36
|
+
context[:endpoint_properties] = endpoint.properties
|
35
37
|
end
|
36
38
|
|
37
|
-
context[:endpoint_params] = params
|
38
39
|
context[:auth_scheme] =
|
39
40
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
41
|
|
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.
|
4
|
+
version: 1.28.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -72,7 +72,7 @@ licenses:
|
|
72
72
|
metadata:
|
73
73
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemakerfeaturestoreruntime
|
74
74
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemakerfeaturestoreruntime/CHANGELOG.md
|
75
|
-
post_install_message:
|
75
|
+
post_install_message:
|
76
76
|
rdoc_options: []
|
77
77
|
require_paths:
|
78
78
|
- lib
|
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '0'
|
89
89
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
90
|
+
rubygems_version: 3.4.10
|
91
|
+
signing_key:
|
92
92
|
specification_version: 4
|
93
93
|
summary: AWS SDK for Ruby - Amazon SageMaker Feature Store Runtime
|
94
94
|
test_files: []
|