aws-sdk-sagemakerfeaturestoreruntime 1.15.0 → 1.17.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: b45006301b3b83a5e40a47cc14e92cee7edac0d7663dbc6f96490f2a8faccf2f
4
- data.tar.gz: eea1d0a99b434984a9c6377253de322f873937a7a41438da8b965fcdfe3db441
3
+ metadata.gz: e12d6af202963b470615a0ad4d4f6e7c1242c3cae64632f96b3f0c9f4f23150c
4
+ data.tar.gz: cc94c4b724b15651964ae8dfeda13501e1270410030097a72b181903288d3253
5
5
  SHA512:
6
- metadata.gz: 50a669ac8ffa532b38d0fd450861406cc8d2c9d4cc64318540e9ec198f608e2e8744b842e6481239aa9a68aaaf5b4b0738f16cc8d9d7b1758c2b11f877eec6a2
7
- data.tar.gz: '023878ed348501eaf2a3d292e66a5cde43cd55bb69d05f1c2ed99ca7ced132ae08d743ec9b064b6831958a2999f3212004b6a2a0c6fefbb3055ec572ec7c4c96'
6
+ metadata.gz: e6b68c130a57976da3e7286a11319534fe01bde37ec10fe16ccd7386526ab1ca2e59e4d077bf00a0ec2a5e80c541f14e5f5bc4d603bf6729316991f103a8fa71
7
+ data.tar.gz: 7a45ccc56bece3a87978e230976003b438a6ca1ebe3caa8f15295195d40d16691812e89c9596b8eb0064b949a100caf025129314d672c9dd188d0b639b9aea4c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.17.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.16.0 (2023-03-31)
10
+ ------------------
11
+
12
+ * Feature - In this release, you can now chose between soft delete and hard delete when calling the DeleteRecord API, so you have more flexibility when it comes to managing online store data.
13
+
4
14
  1.15.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.17.0
@@ -275,6 +275,11 @@ module Aws::SageMakerFeatureStoreRuntime
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -422,10 +427,26 @@ module Aws::SageMakerFeatureStoreRuntime
422
427
  req.send_request(options)
423
428
  end
424
429
 
425
- # Deletes a `Record` from a `FeatureGroup`. When the `DeleteRecord` API
426
- # is called a new record will be added to the `OfflineStore` and the
427
- # `Record` will be removed from the `OnlineStore`. This record will have
428
- # a value of `True` in the `is_deleted` column.
430
+ # Deletes a `Record` from a `FeatureGroup` in the `OnlineStore`. Feature
431
+ # Store supports both `SOFT_DELETE` and `HARD_DELETE`. For `SOFT_DELETE`
432
+ # (default), feature columns are set to `null` and the record is no
433
+ # longer retrievable by `GetRecord` or `BatchGetRecord`. For`
434
+ # HARD_DELETE`, the complete `Record` is removed from the `OnlineStore`.
435
+ # In both cases, Feature Store appends the deleted record marker to the
436
+ # `OfflineStore` with feature values set to `null`, `is_deleted` value
437
+ # set to `True`, and `EventTime` set to the delete input `EventTime`.
438
+ #
439
+ # Note that the `EventTime` specified in `DeleteRecord` should be set
440
+ # later than the `EventTime` of the existing record in the `OnlineStore`
441
+ # for that `RecordIdentifer`. If it is not, the deletion does not occur:
442
+ #
443
+ # * For `SOFT_DELETE`, the existing (undeleted) record remains in the
444
+ # `OnlineStore`, though the delete record marker is still written to
445
+ # the `OfflineStore`.
446
+ #
447
+ # * `HARD_DELETE` returns `EventTime`: `400 ValidationException` to
448
+ # indicate that the delete operation failed. No delete record marker
449
+ # is written to the `OfflineStore`.
429
450
  #
430
451
  # @option params [required, String] :feature_group_name
431
452
  # The name of the feature group to delete the record from.
@@ -443,6 +464,10 @@ module Aws::SageMakerFeatureStoreRuntime
443
464
  # Feature Store deletes the record from all of the stores that you're
444
465
  # using for the `FeatureGroup`.
445
466
  #
467
+ # @option params [String] :deletion_mode
468
+ # The name of the deletion mode for deleting the record. By default, the
469
+ # deletion mode is set to `SoftDelete`.
470
+ #
446
471
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
447
472
  #
448
473
  # @example Request syntax with placeholder values
@@ -452,6 +477,7 @@ module Aws::SageMakerFeatureStoreRuntime
452
477
  # record_identifier_value_as_string: "ValueAsString", # required
453
478
  # event_time: "ValueAsString", # required
454
479
  # target_stores: ["OnlineStore"], # accepts OnlineStore, OfflineStore
480
+ # deletion_mode: "SoftDelete", # accepts SoftDelete, HardDelete
455
481
  # })
456
482
  #
457
483
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/DeleteRecord AWS API Documentation
@@ -569,7 +595,7 @@ module Aws::SageMakerFeatureStoreRuntime
569
595
  params: params,
570
596
  config: config)
571
597
  context[:gem_name] = 'aws-sdk-sagemakerfeaturestoreruntime'
572
- context[:gem_version] = '1.15.0'
598
+ context[:gem_version] = '1.17.0'
573
599
  Seahorse::Client::Request.new(handlers, context)
574
600
  end
575
601
 
@@ -23,6 +23,7 @@ module Aws::SageMakerFeatureStoreRuntime
23
23
  BatchGetRecordResultDetail = Shapes::StructureShape.new(name: 'BatchGetRecordResultDetail')
24
24
  BatchGetRecordResultDetails = Shapes::ListShape.new(name: 'BatchGetRecordResultDetails')
25
25
  DeleteRecordRequest = Shapes::StructureShape.new(name: 'DeleteRecordRequest')
26
+ DeletionMode = Shapes::StringShape.new(name: 'DeletionMode')
26
27
  FeatureGroupName = Shapes::StringShape.new(name: 'FeatureGroupName')
27
28
  FeatureName = Shapes::StringShape.new(name: 'FeatureName')
28
29
  FeatureNames = Shapes::ListShape.new(name: 'FeatureNames')
@@ -79,6 +80,7 @@ module Aws::SageMakerFeatureStoreRuntime
79
80
  DeleteRecordRequest.add_member(:record_identifier_value_as_string, Shapes::ShapeRef.new(shape: ValueAsString, required: true, location: "querystring", location_name: "RecordIdentifierValueAsString"))
80
81
  DeleteRecordRequest.add_member(:event_time, Shapes::ShapeRef.new(shape: ValueAsString, required: true, location: "querystring", location_name: "EventTime"))
81
82
  DeleteRecordRequest.add_member(:target_stores, Shapes::ShapeRef.new(shape: TargetStores, location: "querystring", location_name: "TargetStores"))
83
+ DeleteRecordRequest.add_member(:deletion_mode, Shapes::ShapeRef.new(shape: DeletionMode, location: "querystring", location_name: "DeletionMode"))
82
84
  DeleteRecordRequest.struct_class = Types::DeleteRecordRequest
83
85
 
84
86
  FeatureNames.member = Shapes::ShapeRef.new(shape: FeatureName)
@@ -50,9 +50,6 @@ module Aws::SageMakerFeatureStoreRuntime
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
- if self[:region].nil?
54
- raise ArgumentError, "Missing required EndpointParameter: :region"
55
- end
56
53
  self[:use_dual_stack] = options[:use_dual_stack]
57
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
55
  if self[:use_dual_stack].nil?
@@ -14,36 +14,39 @@ module Aws::SageMakerFeatureStoreRuntime
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://featurestore-runtime.sagemaker-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://featurestore-runtime.sagemaker-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://featurestore-runtime.sagemaker.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://featurestore-runtime.sagemaker-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
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"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://featurestore-runtime.sagemaker-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://featurestore-runtime.sagemaker.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://featurestore-runtime.sagemaker.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://featurestore-runtime.sagemaker.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -37,7 +37,7 @@ module Aws::SageMakerFeatureStoreRuntime
37
37
  # @return [String]
38
38
  #
39
39
  # @!attribute [rw] error_code
40
- # The error code of an error that has occured when attempting to
40
+ # The error code of an error that has occurred when attempting to
41
41
  # retrieve a batch of Records. For more information on errors, see
42
42
  # [Errors][1].
43
43
  #
@@ -47,7 +47,7 @@ module Aws::SageMakerFeatureStoreRuntime
47
47
  # @return [String]
48
48
  #
49
49
  # @!attribute [rw] error_message
50
- # The error message of an error that has occured when attempting to
50
+ # The error message of an error that has occurred when attempting to
51
51
  # retrieve a record in the batch.
52
52
  # @return [String]
53
53
  #
@@ -134,7 +134,7 @@ module Aws::SageMakerFeatureStoreRuntime
134
134
  # @return [String]
135
135
  #
136
136
  # @!attribute [rw] record_identifier_value_as_string
137
- # The value of the record identifer in string format.
137
+ # The value of the record identifier in string format.
138
138
  # @return [String]
139
139
  #
140
140
  # @!attribute [rw] record
@@ -171,13 +171,19 @@ module Aws::SageMakerFeatureStoreRuntime
171
171
  # using for the `FeatureGroup`.
172
172
  # @return [Array<String>]
173
173
  #
174
+ # @!attribute [rw] deletion_mode
175
+ # The name of the deletion mode for deleting the record. By default,
176
+ # the deletion mode is set to `SoftDelete`.
177
+ # @return [String]
178
+ #
174
179
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/DeleteRecordRequest AWS API Documentation
175
180
  #
176
181
  class DeleteRecordRequest < Struct.new(
177
182
  :feature_group_name,
178
183
  :record_identifier_value_as_string,
179
184
  :event_time,
180
- :target_stores)
185
+ :target_stores,
186
+ :deletion_mode)
181
187
  SENSITIVE = []
182
188
  include Aws::Structure
183
189
  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.15.0'
55
+ GEM_VERSION = '1.17.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.15.0
4
+ version: 1.17.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-01-18 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement