aws-sdk-sagemaker 1.388.0 → 1.389.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: 3bca424f9583a3f72d964f750f0d721e5fbb33ea6bedb1eb242b1ee683b5f91e
4
- data.tar.gz: a954f85213a2145d319aa1facda1f8696fb694c5fc34cc7a27c8ea1ae2037cfe
3
+ metadata.gz: 237019ab09d2f1b00eec927d4a4bd76d2623259406c6d726a380bc27412eae44
4
+ data.tar.gz: c83c34bbb62c9c25a341a333bc7753c4100fd8fe653f1cce5e5c0581d43fd36c
5
5
  SHA512:
6
- metadata.gz: 2fcc516df6800396522d2c88b2d1f3c67ed12d720b671c55a19d1bc4d7eb58bf1b7ed90235f2ff74c365e5db2fe503c63ee47f288bc666abb0aa14df3b0a27f9
7
- data.tar.gz: e105929f1f0cbb58f04f5c9cfd2b9a7c5c66048a8a520beffa6b95c88f4f48d4270ada99ac80868e7abca1486196e70c9f9e24cbf85cb0665518c28f9bc6c574
6
+ metadata.gz: e3a1408ba35c9309bf2d03c10b08e38d9f3fbf7eee1a86ce4c30391260ad0f0d4f12a1427f255b9057d3672db18390775d48581334721729fa876075b569c3b3
7
+ data.tar.gz: c0b6134668a40d9a92c5feb957b19b31807090289f46bd59c00e8f2410fa4b9daddb2e51d842f84d6236c18c70e95da49f8bf60e87af225faf65c30a19190fea
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.389.0 (2026-09-02)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker Feature Store now supports the Standard V2 online store type, which enables feature-level writes to feature groups. You can select Standard V2 when creating a feature group, and update the storage type of an existing feature group via UpdateFeatureGroup.
8
+
4
9
  1.388.0 (2026-08-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.388.0
1
+ 1.389.0
@@ -5258,7 +5258,7 @@ module Aws::SageMaker
5258
5258
  # unit: "Seconds", # accepts Seconds, Minutes, Hours, Days, Weeks
5259
5259
  # value: 1,
5260
5260
  # },
5261
- # storage_type: "Standard", # accepts Standard, InMemory
5261
+ # storage_type: "Standard", # accepts Standard, Standard_V2, InMemory
5262
5262
  # },
5263
5263
  # offline_store_config: {
5264
5264
  # s3_storage_config: { # required
@@ -16848,7 +16848,7 @@ module Aws::SageMaker
16848
16848
  # resp.online_store_config.enable_online_store #=> Boolean
16849
16849
  # resp.online_store_config.ttl_duration.unit #=> String, one of "Seconds", "Minutes", "Hours", "Days", "Weeks"
16850
16850
  # resp.online_store_config.ttl_duration.value #=> Integer
16851
- # resp.online_store_config.storage_type #=> String, one of "Standard", "InMemory"
16851
+ # resp.online_store_config.storage_type #=> String, one of "Standard", "Standard_V2", "InMemory"
16852
16852
  # resp.offline_store_config.s3_storage_config.s3_uri #=> String
16853
16853
  # resp.offline_store_config.s3_storage_config.kms_key_id #=> String
16854
16854
  # resp.offline_store_config.s3_storage_config.resolved_output_s3_uri #=> String
@@ -31846,6 +31846,7 @@ module Aws::SageMaker
31846
31846
  # unit: "Seconds", # accepts Seconds, Minutes, Hours, Days, Weeks
31847
31847
  # value: 1,
31848
31848
  # },
31849
+ # storage_type: "Standard", # accepts Standard, Standard_V2, InMemory
31849
31850
  # },
31850
31851
  # throughput_config: {
31851
31852
  # throughput_mode: "OnDemand", # accepts OnDemand, Provisioned
@@ -34632,7 +34633,7 @@ module Aws::SageMaker
34632
34633
  tracer: tracer
34633
34634
  )
34634
34635
  context[:gem_name] = 'aws-sdk-sagemaker'
34635
- context[:gem_version] = '1.388.0'
34636
+ context[:gem_version] = '1.389.0'
34636
34637
  Seahorse::Client::Request.new(handlers, context)
34637
34638
  end
34638
34639
 
@@ -10850,6 +10850,7 @@ module Aws::SageMaker
10850
10850
  OnlineStoreConfig.struct_class = Types::OnlineStoreConfig
10851
10851
 
10852
10852
  OnlineStoreConfigUpdate.add_member(:ttl_duration, Shapes::ShapeRef.new(shape: TtlDuration, location_name: "TtlDuration"))
10853
+ OnlineStoreConfigUpdate.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
10853
10854
  OnlineStoreConfigUpdate.struct_class = Types::OnlineStoreConfigUpdate
10854
10855
 
10855
10856
  OnlineStoreSecurityConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
@@ -44475,8 +44475,18 @@ module Aws::SageMaker
44475
44475
  #
44476
44476
  # * `Standard`: A managed low latency data store for feature groups.
44477
44477
  #
44478
+ # * `Standard_V2`: A managed low latency data store for feature groups
44479
+ # that supports partial updates to individual features using the
44480
+ # [UpdateRecord][1] operation. Choose this storage type at feature
44481
+ # group creation time if your use case requires updating specific
44482
+ # feature values without rewriting the entire record.
44483
+ #
44478
44484
  # * `InMemory`: A managed data store for feature groups that supports
44479
44485
  # very low latency retrieval.
44486
+ #
44487
+ #
44488
+ #
44489
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_UpdateRecord.html
44480
44490
  # @return [String]
44481
44491
  #
44482
44492
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OnlineStoreConfig AWS API Documentation
@@ -44503,10 +44513,23 @@ module Aws::SageMaker
44503
44513
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html
44504
44514
  # @return [Types::TtlDuration]
44505
44515
  #
44516
+ # @!attribute [rw] storage_type
44517
+ # The online store storage type to migrate the feature group to. Use
44518
+ # this parameter to migrate an existing feature group from `Standard`
44519
+ # to `Standard_V2` storage format, enabling support for the
44520
+ # [UpdateRecord][1] operation. Migration is a one-way operation and
44521
+ # cannot be reversed.
44522
+ #
44523
+ #
44524
+ #
44525
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_UpdateRecord.html
44526
+ # @return [String]
44527
+ #
44506
44528
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OnlineStoreConfigUpdate AWS API Documentation
44507
44529
  #
44508
44530
  class OnlineStoreConfigUpdate < Struct.new(
44509
- :ttl_duration)
44531
+ :ttl_duration,
44532
+ :storage_type)
44510
44533
  SENSITIVE = []
44511
44534
  include Aws::Structure
44512
44535
  end
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.388.0'
58
+ GEM_VERSION = '1.389.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1261,7 +1261,7 @@ module Aws
1261
1261
  unit: ("Seconds" | "Minutes" | "Hours" | "Days" | "Weeks")?,
1262
1262
  value: ::Integer?
1263
1263
  }?,
1264
- storage_type: ("Standard" | "InMemory")?
1264
+ storage_type: ("Standard" | "Standard_V2" | "InMemory")?
1265
1265
  },
1266
1266
  ?offline_store_config: {
1267
1267
  s3_storage_config: {
@@ -7688,7 +7688,8 @@ module Aws
7688
7688
  ttl_duration: {
7689
7689
  unit: ("Seconds" | "Minutes" | "Hours" | "Days" | "Weeks")?,
7690
7690
  value: ::Integer?
7691
- }?
7691
+ }?,
7692
+ storage_type: ("Standard" | "Standard_V2" | "InMemory")?
7692
7693
  },
7693
7694
  ?throughput_config: {
7694
7695
  throughput_mode: ("OnDemand" | "Provisioned")?,
data/sig/types.rbs CHANGED
@@ -9590,12 +9590,13 @@ module Aws::SageMaker
9590
9590
  attr_accessor security_config: Types::OnlineStoreSecurityConfig
9591
9591
  attr_accessor enable_online_store: bool
9592
9592
  attr_accessor ttl_duration: Types::TtlDuration
9593
- attr_accessor storage_type: ("Standard" | "InMemory")
9593
+ attr_accessor storage_type: ("Standard" | "Standard_V2" | "InMemory")
9594
9594
  SENSITIVE: []
9595
9595
  end
9596
9596
 
9597
9597
  class OnlineStoreConfigUpdate
9598
9598
  attr_accessor ttl_duration: Types::TtlDuration
9599
+ attr_accessor storage_type: ("Standard" | "Standard_V2" | "InMemory")
9599
9600
  SENSITIVE: []
9600
9601
  end
9601
9602
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.388.0
4
+ version: 1.389.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services