aws-sdk-s3vectors 1.9.0 → 1.10.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3vectors/client.rb +259 -152
- data/lib/aws-sdk-s3vectors/client_api.rb +88 -2
- data/lib/aws-sdk-s3vectors/types.rb +167 -94
- data/lib/aws-sdk-s3vectors.rb +1 -1
- data/sig/client.rbs +38 -2
- data/sig/types.rbs +33 -2
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -26,6 +26,8 @@ module Aws::S3Vectors
|
|
|
26
26
|
attr_accessor dimension: ::Integer
|
|
27
27
|
attr_accessor distance_metric: ("euclidean" | "cosine")
|
|
28
28
|
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
|
29
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
30
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
29
31
|
SENSITIVE: []
|
|
30
32
|
end
|
|
31
33
|
|
|
@@ -37,6 +39,7 @@ module Aws::S3Vectors
|
|
|
37
39
|
class CreateVectorBucketInput
|
|
38
40
|
attr_accessor vector_bucket_name: ::String
|
|
39
41
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
42
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
40
43
|
SENSITIVE: []
|
|
41
44
|
end
|
|
42
45
|
|
|
@@ -155,6 +158,7 @@ module Aws::S3Vectors
|
|
|
155
158
|
attr_accessor dimension: ::Integer
|
|
156
159
|
attr_accessor distance_metric: ("euclidean" | "cosine")
|
|
157
160
|
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
|
161
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
158
162
|
SENSITIVE: []
|
|
159
163
|
end
|
|
160
164
|
|
|
@@ -213,6 +217,16 @@ module Aws::S3Vectors
|
|
|
213
217
|
SENSITIVE: []
|
|
214
218
|
end
|
|
215
219
|
|
|
220
|
+
class ListTagsForResourceInput
|
|
221
|
+
attr_accessor resource_arn: ::String
|
|
222
|
+
SENSITIVE: []
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
class ListTagsForResourceOutput
|
|
226
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
227
|
+
SENSITIVE: []
|
|
228
|
+
end
|
|
229
|
+
|
|
216
230
|
class ListVectorBucketsInput
|
|
217
231
|
attr_accessor max_results: ::Integer
|
|
218
232
|
attr_accessor next_token: ::String
|
|
@@ -284,10 +298,9 @@ module Aws::S3Vectors
|
|
|
284
298
|
end
|
|
285
299
|
|
|
286
300
|
class QueryOutputVector
|
|
301
|
+
attr_accessor distance: ::Float
|
|
287
302
|
attr_accessor key: ::String
|
|
288
|
-
attr_accessor data: Types::VectorData
|
|
289
303
|
attr_accessor metadata: untyped
|
|
290
|
-
attr_accessor distance: ::Float
|
|
291
304
|
SENSITIVE: []
|
|
292
305
|
end
|
|
293
306
|
|
|
@@ -324,11 +337,29 @@ module Aws::S3Vectors
|
|
|
324
337
|
SENSITIVE: []
|
|
325
338
|
end
|
|
326
339
|
|
|
340
|
+
class TagResourceInput
|
|
341
|
+
attr_accessor resource_arn: ::String
|
|
342
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
343
|
+
SENSITIVE: []
|
|
344
|
+
end
|
|
345
|
+
|
|
346
|
+
class TagResourceOutput < Aws::EmptyStructure
|
|
347
|
+
end
|
|
348
|
+
|
|
327
349
|
class TooManyRequestsException
|
|
328
350
|
attr_accessor message: ::String
|
|
329
351
|
SENSITIVE: []
|
|
330
352
|
end
|
|
331
353
|
|
|
354
|
+
class UntagResourceInput
|
|
355
|
+
attr_accessor resource_arn: ::String
|
|
356
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
357
|
+
SENSITIVE: []
|
|
358
|
+
end
|
|
359
|
+
|
|
360
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
|
361
|
+
end
|
|
362
|
+
|
|
332
363
|
class ValidationException
|
|
333
364
|
attr_accessor message: ::String
|
|
334
365
|
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|