aws-sdk-opensearchserverless 1.7.0 → 1.8.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: e54f63ef51baa7aa9c1a3bfe2746c393034608cd590da28ea614daa3e305c976
4
- data.tar.gz: 88beb99fe2661fceca355aae83520549e780598e8b12faeb61ad76aad292e51b
3
+ metadata.gz: '0362298a00ab36e7cdeed02f82e952dcbe56321560888652e4be071918273e73'
4
+ data.tar.gz: f3d6188ac86614c8893dbaa685efbe2c8332c951c61eaed11ff4925624043a64
5
5
  SHA512:
6
- metadata.gz: ed763a9daa0e27ce2b2584f64b53c7986fcc11075a33394671c9492d4e44255f1eb038346695e649c3655afaac9bdf53c73a5f5c3b029f74da71f45675c2381f
7
- data.tar.gz: 2cddd713412881367ffe6d314e035ce476da5ff3e182bd2391e261075da9380e62b078be5d40a3ac6caf3b3f3e1d5df61fb58dc01fc15141ce9d281d9e2dd3f0
6
+ metadata.gz: 9e4fa44c85e0679653d0a9834ff64557a60ed8de7bcc3ef323ef5bc1321b36cc3ad423ff34a7226c41785f510371485786ad49af8d65674b8393cc29febc3acd
7
+ data.tar.gz: bd93594d5d78521f63e028359bb09596e994e5f3368aa70d8822117ae6bd5329fcb8fec0bbad91b8019a516b17f5ebde4df2f491e630f8ce055cd121a75ba3b8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2023-07-26)
5
+ ------------------
6
+
7
+ * Feature - This release adds new collection type VectorSearch.
8
+
4
9
  1.7.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.8.0
@@ -445,7 +445,7 @@ module Aws::OpenSearchServerless
445
445
  # resp.collection_details[0].last_modified_date #=> Integer
446
446
  # resp.collection_details[0].name #=> String
447
447
  # resp.collection_details[0].status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"
448
- # resp.collection_details[0].type #=> String, one of "SEARCH", "TIMESERIES"
448
+ # resp.collection_details[0].type #=> String, one of "SEARCH", "TIMESERIES", "VECTORSEARCH"
449
449
  # resp.collection_error_details #=> Array
450
450
  # resp.collection_error_details[0].error_code #=> String
451
451
  # resp.collection_error_details[0].error_message #=> String
@@ -615,7 +615,7 @@ module Aws::OpenSearchServerless
615
615
  # value: "TagValue", # required
616
616
  # },
617
617
  # ],
618
- # type: "SEARCH", # accepts SEARCH, TIMESERIES
618
+ # type: "SEARCH", # accepts SEARCH, TIMESERIES, VECTORSEARCH
619
619
  # })
620
620
  #
621
621
  # @example Response structure
@@ -628,7 +628,7 @@ module Aws::OpenSearchServerless
628
628
  # resp.create_collection_detail.last_modified_date #=> Integer
629
629
  # resp.create_collection_detail.name #=> String
630
630
  # resp.create_collection_detail.status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"
631
- # resp.create_collection_detail.type #=> String, one of "SEARCH", "TIMESERIES"
631
+ # resp.create_collection_detail.type #=> String, one of "SEARCH", "TIMESERIES", "VECTORSEARCH"
632
632
  #
633
633
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/CreateCollection AWS API Documentation
634
634
  #
@@ -1758,7 +1758,7 @@ module Aws::OpenSearchServerless
1758
1758
  # resp.update_collection_detail.last_modified_date #=> Integer
1759
1759
  # resp.update_collection_detail.name #=> String
1760
1760
  # resp.update_collection_detail.status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"
1761
- # resp.update_collection_detail.type #=> String, one of "SEARCH", "TIMESERIES"
1761
+ # resp.update_collection_detail.type #=> String, one of "SEARCH", "TIMESERIES", "VECTORSEARCH"
1762
1762
  #
1763
1763
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/UpdateCollection AWS API Documentation
1764
1764
  #
@@ -1987,7 +1987,7 @@ module Aws::OpenSearchServerless
1987
1987
  params: params,
1988
1988
  config: config)
1989
1989
  context[:gem_name] = 'aws-sdk-opensearchserverless'
1990
- context[:gem_version] = '1.7.0'
1990
+ context[:gem_version] = '1.8.0'
1991
1991
  Seahorse::Client::Request.new(handlers, context)
1992
1992
  end
1993
1993
 
@@ -1352,7 +1352,8 @@ module Aws::OpenSearchServerless
1352
1352
  include Aws::Structure
1353
1353
  end
1354
1354
 
1355
- # OCU Limit Exceeded for service limits
1355
+ # Thrown when the collection you're attempting to create results in a
1356
+ # number of search or indexing OCUs that exceeds the account limit.
1356
1357
  #
1357
1358
  # @!attribute [rw] message
1358
1359
  # Description of the error.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-opensearchserverless/customizations'
52
52
  # @!group service
53
53
  module Aws::OpenSearchServerless
54
54
 
55
- GEM_VERSION = '1.7.0'
55
+ GEM_VERSION = '1.8.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-opensearchserverless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.8.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-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core