aws-sdk-sagemakerfeaturestoreruntime 1.27.0 → 1.29.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 +1 -0
- data/lib/aws-sdk-sagemakerfeaturestoreruntime.rb +1 -1
- data/sig/client.rbs +138 -0
- data/sig/errors.rbs +31 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +116 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95ca36463d7cde6966aa33d746dbd5c7699d45afbf5466be667612b9677f7f09
|
4
|
+
data.tar.gz: 2f830425d32fb0baa0161f8db87c97addcd899ca4b31e9fd213f84b73da40c7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c1a7bdb7226cab1419d37d4c52cd0f8bfab92b19fccbbad875f6a6e0f18cb2d18590ae4f7b7961e4b918e00916676f3d6f3592242a2484a278d0c144a6e0951
|
7
|
+
data.tar.gz: eec72bc505dcbd145bd400a10eb409088e38772e32d3be5050b4e2024ef9118de197177c012036782192648ab16daa24d73bb7049040e941af82a6e44bd232b4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.29.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.28.0 (2024-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Increase BatchGetRecord limits from 10 items to 100 items
|
13
|
+
|
4
14
|
1.27.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.29.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.29.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"
|
@@ -14,6 +14,7 @@ module Aws::SageMakerFeatureStoreRuntime
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::SageMakerFeatureStoreRuntime::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,138 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module SageMakerFeatureStoreRuntime
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerFeatureStoreRuntime/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _BatchGetRecordResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetRecordResponse]
|
77
|
+
def records: () -> ::Array[Types::BatchGetRecordResultDetail]
|
78
|
+
def errors: () -> ::Array[Types::BatchGetRecordError]
|
79
|
+
def unprocessed_identifiers: () -> ::Array[Types::BatchGetRecordIdentifier]
|
80
|
+
end
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerFeatureStoreRuntime/Client.html#batch_get_record-instance_method
|
82
|
+
def batch_get_record: (
|
83
|
+
identifiers: Array[
|
84
|
+
{
|
85
|
+
feature_group_name: ::String,
|
86
|
+
record_identifiers_value_as_string: Array[::String],
|
87
|
+
feature_names: Array[::String]?
|
88
|
+
},
|
89
|
+
],
|
90
|
+
?expiration_time_response: ("Enabled" | "Disabled")
|
91
|
+
) -> _BatchGetRecordResponseSuccess
|
92
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetRecordResponseSuccess
|
93
|
+
|
94
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerFeatureStoreRuntime/Client.html#delete_record-instance_method
|
95
|
+
def delete_record: (
|
96
|
+
feature_group_name: ::String,
|
97
|
+
record_identifier_value_as_string: ::String,
|
98
|
+
event_time: ::String,
|
99
|
+
?target_stores: Array[("OnlineStore" | "OfflineStore")],
|
100
|
+
?deletion_mode: ("SoftDelete" | "HardDelete")
|
101
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
102
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
103
|
+
|
104
|
+
interface _GetRecordResponseSuccess
|
105
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetRecordResponse]
|
106
|
+
def record: () -> ::Array[Types::FeatureValue]
|
107
|
+
def expires_at: () -> ::String
|
108
|
+
end
|
109
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerFeatureStoreRuntime/Client.html#get_record-instance_method
|
110
|
+
def get_record: (
|
111
|
+
feature_group_name: ::String,
|
112
|
+
record_identifier_value_as_string: ::String,
|
113
|
+
?feature_names: Array[::String],
|
114
|
+
?expiration_time_response: ("Enabled" | "Disabled")
|
115
|
+
) -> _GetRecordResponseSuccess
|
116
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRecordResponseSuccess
|
117
|
+
|
118
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerFeatureStoreRuntime/Client.html#put_record-instance_method
|
119
|
+
def put_record: (
|
120
|
+
feature_group_name: ::String,
|
121
|
+
record: Array[
|
122
|
+
{
|
123
|
+
feature_name: ::String,
|
124
|
+
value_as_string: ::String?,
|
125
|
+
value_as_string_list: Array[::String]?
|
126
|
+
},
|
127
|
+
],
|
128
|
+
?target_stores: Array[("OnlineStore" | "OfflineStore")],
|
129
|
+
?ttl_duration: {
|
130
|
+
unit: ("Seconds" | "Minutes" | "Hours" | "Days" | "Weeks"),
|
131
|
+
value: ::Integer
|
132
|
+
}
|
133
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
134
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module SageMakerFeatureStoreRuntime
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessForbidden < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class InternalFailure < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class ResourceNotFound < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ServiceUnavailable < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ValidationError < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module SageMakerFeatureStoreRuntime
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerFeatureStoreRuntime/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerFeatureStoreRuntime/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::SageMakerFeatureStoreRuntime
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessForbidden
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class BatchGetRecordError
|
17
|
+
attr_accessor feature_group_name: ::String
|
18
|
+
attr_accessor record_identifier_value_as_string: ::String
|
19
|
+
attr_accessor error_code: ::String
|
20
|
+
attr_accessor error_message: ::String
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class BatchGetRecordIdentifier
|
25
|
+
attr_accessor feature_group_name: ::String
|
26
|
+
attr_accessor record_identifiers_value_as_string: ::Array[::String]
|
27
|
+
attr_accessor feature_names: ::Array[::String]
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class BatchGetRecordRequest
|
32
|
+
attr_accessor identifiers: ::Array[Types::BatchGetRecordIdentifier]
|
33
|
+
attr_accessor expiration_time_response: ("Enabled" | "Disabled")
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class BatchGetRecordResponse
|
38
|
+
attr_accessor records: ::Array[Types::BatchGetRecordResultDetail]
|
39
|
+
attr_accessor errors: ::Array[Types::BatchGetRecordError]
|
40
|
+
attr_accessor unprocessed_identifiers: ::Array[Types::BatchGetRecordIdentifier]
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class BatchGetRecordResultDetail
|
45
|
+
attr_accessor feature_group_name: ::String
|
46
|
+
attr_accessor record_identifier_value_as_string: ::String
|
47
|
+
attr_accessor record: ::Array[Types::FeatureValue]
|
48
|
+
attr_accessor expires_at: ::String
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class DeleteRecordRequest
|
53
|
+
attr_accessor feature_group_name: ::String
|
54
|
+
attr_accessor record_identifier_value_as_string: ::String
|
55
|
+
attr_accessor event_time: ::String
|
56
|
+
attr_accessor target_stores: ::Array[("OnlineStore" | "OfflineStore")]
|
57
|
+
attr_accessor deletion_mode: ("SoftDelete" | "HardDelete")
|
58
|
+
SENSITIVE: []
|
59
|
+
end
|
60
|
+
|
61
|
+
class FeatureValue
|
62
|
+
attr_accessor feature_name: ::String
|
63
|
+
attr_accessor value_as_string: ::String
|
64
|
+
attr_accessor value_as_string_list: ::Array[::String]
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class GetRecordRequest
|
69
|
+
attr_accessor feature_group_name: ::String
|
70
|
+
attr_accessor record_identifier_value_as_string: ::String
|
71
|
+
attr_accessor feature_names: ::Array[::String]
|
72
|
+
attr_accessor expiration_time_response: ("Enabled" | "Disabled")
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class GetRecordResponse
|
77
|
+
attr_accessor record: ::Array[Types::FeatureValue]
|
78
|
+
attr_accessor expires_at: ::String
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class InternalFailure
|
83
|
+
attr_accessor message: ::String
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class PutRecordRequest
|
88
|
+
attr_accessor feature_group_name: ::String
|
89
|
+
attr_accessor record: ::Array[Types::FeatureValue]
|
90
|
+
attr_accessor target_stores: ::Array[("OnlineStore" | "OfflineStore")]
|
91
|
+
attr_accessor ttl_duration: Types::TtlDuration
|
92
|
+
SENSITIVE: []
|
93
|
+
end
|
94
|
+
|
95
|
+
class ResourceNotFound
|
96
|
+
attr_accessor message: ::String
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class ServiceUnavailable
|
101
|
+
attr_accessor message: ::String
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class TtlDuration
|
106
|
+
attr_accessor unit: ("Seconds" | "Minutes" | "Hours" | "Days" | "Weeks")
|
107
|
+
attr_accessor value: ::Integer
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class ValidationError
|
112
|
+
attr_accessor message: ::String
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module SageMakerFeatureStoreRuntime
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
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.
|
4
|
+
version: 1.29.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-26 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.
|
22
|
+
version: 3.191.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.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-sagemakerfeaturestoreruntime/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-sagemakerfeaturestoreruntime/resource.rb
|
68
68
|
- lib/aws-sdk-sagemakerfeaturestoreruntime/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemakerfeaturestoreruntime
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemakerfeaturestoreruntime/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Amazon SageMaker Feature Store Runtime
|
94
99
|
test_files: []
|