aws-sdk-sagemakerfeaturestoreruntime 1.27.0 → 1.28.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: d8cbd2cdf5c3b5d056e1c42f183a834048f52c3737efffff3ab8b2cfe07a24b7
4
- data.tar.gz: e31685ced5231250ed1fe98b453184ce3cbed93d8cea7f0fa29974de27c4c5f5
3
+ metadata.gz: 066adccd8780bfbe93cf9dd4e6146a78b8e0dfef94e89982ef86d09eb5f94b43
4
+ data.tar.gz: 3901f8f52c0675446351694df11df401c76b8e011ebc99fa78983b4033c6a89c
5
5
  SHA512:
6
- metadata.gz: a064b8cf171ef300dc8f3397a90e372a55127983348a6fb3643a662e9d021d8ba8bdc6cdc731ca94b4376a5fe96bc0a5ad6ea3dafdfc95063021aa8fc767f77a
7
- data.tar.gz: 46bea5abebc38af1d8acf6d3c8014aed306b5f6db411f4c6ad4031fd3909b8fbcc3d69eb3ad840d2d1ab50c2c7ef2b3272d3da8a8cdd5f4df6bb34e27aad34af
6
+ metadata.gz: 5d95ec6e231c6bbd606bc710f5756cc83ab32fe8bf76dacc217e09eb4215a7665af384f7cf6efa55238a4eea33dd5295d9b4a82636c2318df5c683449c62573c
7
+ data.tar.gz: adc83f77b9ca03c3a6817de83e4ba7c972383386fa1a2e9f4934735fae18aa04484c648b6c77f1d9fa00de14e945e6fc2c873676548d6ee8e6f04f32443effc1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.27.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
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` with feature values set to `null`, `is_deleted` value
461
- # set to `True`, and `EventTime` set to the delete input `EventTime`.
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 (undeleted) record remains in the
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.27.0'
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?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
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"
@@ -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.27.0'
55
+ GEM_VERSION = '1.28.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.27.0
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: 2023-11-28 00:00:00.000000000 Z
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.1.6
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: []