Skip to content

Commit 6323343

Browse files
author
AWS
committed
OpenSearch Service Serverless Update: Adds support for updating the vector options field for existing collections.
1 parent 540a433 commit 6323343

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "OpenSearch Service Serverless",
4+
"contributor": "",
5+
"description": "Adds support for updating the vector options field for existing collections."
6+
}

services/opensearchserverless/src/main/resources/codegen-resources/service-2.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1307,9 +1307,11 @@
13071307
"type":"string",
13081308
"enum":[
13091309
"CREATING",
1310+
"UPDATING",
13101311
"DELETING",
13111312
"ACTIVE",
1312-
"FAILED"
1313+
"FAILED",
1314+
"UPDATE_FAILED"
13131315
]
13141316
},
13151317
"CollectionSummaries":{
@@ -1370,7 +1372,7 @@
13701372
"members":{
13711373
"message":{"shape":"String"}
13721374
},
1373-
"documentation":"<p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>",
1375+
"documentation":"<p>When creating a resource, thrown when a resource with the same name already exists or is being created. When deleting a resource, thrown when the resource is not in the ACTIVE, FAILED, or UPDATE_FAILED state.</p>",
13741376
"exception":true
13751377
},
13761378
"CreateAccessPolicyRequest":{
@@ -3372,6 +3374,10 @@
33723374
"shape":"String",
33733375
"documentation":"<p>The description of the collection.</p>"
33743376
},
3377+
"vectorOptions":{
3378+
"shape":"VectorOptions",
3379+
"documentation":"<p>Configuration options for vector search capabilities in the collection.</p>"
3380+
},
33753381
"arn":{
33763382
"shape":"String",
33773383
"documentation":"<p>The Amazon Resource Name (ARN) of the collection.</p>"
@@ -3470,6 +3476,10 @@
34703476
"shape":"UpdateCollectionRequestDescriptionString",
34713477
"documentation":"<p>A description of the collection.</p>"
34723478
},
3479+
"vectorOptions":{
3480+
"shape":"VectorOptions",
3481+
"documentation":"<p>Configuration options for vector search capabilities in the collection.</p>"
3482+
},
34733483
"clientToken":{
34743484
"shape":"ClientToken",
34753485
"documentation":"<p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>",

0 commit comments

Comments
 (0)