|
100 | 100 | ],
|
101 | 101 | "idempotent":true
|
102 | 102 | },
|
| 103 | + "CreateIndex":{ |
| 104 | + "name":"CreateIndex", |
| 105 | + "http":{ |
| 106 | + "method":"POST", |
| 107 | + "requestUri":"/" |
| 108 | + }, |
| 109 | + "input":{"shape":"CreateIndexRequest"}, |
| 110 | + "output":{"shape":"CreateIndexResponse"}, |
| 111 | + "errors":[ |
| 112 | + {"shape":"InternalServerException"}, |
| 113 | + {"shape":"ResourceNotFoundException"}, |
| 114 | + {"shape":"ConflictException"}, |
| 115 | + {"shape":"ValidationException"} |
| 116 | + ], |
| 117 | + "idempotent":true |
| 118 | + }, |
103 | 119 | "CreateLifecyclePolicy":{
|
104 | 120 | "name":"CreateLifecyclePolicy",
|
105 | 121 | "http":{
|
|
196 | 212 | ],
|
197 | 213 | "idempotent":true
|
198 | 214 | },
|
| 215 | + "DeleteIndex":{ |
| 216 | + "name":"DeleteIndex", |
| 217 | + "http":{ |
| 218 | + "method":"POST", |
| 219 | + "requestUri":"/" |
| 220 | + }, |
| 221 | + "input":{"shape":"DeleteIndexRequest"}, |
| 222 | + "output":{"shape":"DeleteIndexResponse"}, |
| 223 | + "errors":[ |
| 224 | + {"shape":"InternalServerException"}, |
| 225 | + {"shape":"ResourceNotFoundException"}, |
| 226 | + {"shape":"ValidationException"} |
| 227 | + ], |
| 228 | + "idempotent":true |
| 229 | + }, |
199 | 230 | "DeleteLifecyclePolicy":{
|
200 | 231 | "name":"DeleteLifecyclePolicy",
|
201 | 232 | "http":{
|
|
287 | 318 | {"shape":"ValidationException"}
|
288 | 319 | ]
|
289 | 320 | },
|
| 321 | + "GetIndex":{ |
| 322 | + "name":"GetIndex", |
| 323 | + "http":{ |
| 324 | + "method":"POST", |
| 325 | + "requestUri":"/" |
| 326 | + }, |
| 327 | + "input":{"shape":"GetIndexRequest"}, |
| 328 | + "output":{"shape":"GetIndexResponse"}, |
| 329 | + "errors":[ |
| 330 | + {"shape":"InternalServerException"}, |
| 331 | + {"shape":"ResourceNotFoundException"}, |
| 332 | + {"shape":"ValidationException"} |
| 333 | + ] |
| 334 | + }, |
290 | 335 | "GetPoliciesStats":{
|
291 | 336 | "name":"GetPoliciesStats",
|
292 | 337 | "http":{
|
|
494 | 539 | ],
|
495 | 540 | "idempotent":true
|
496 | 541 | },
|
| 542 | + "UpdateIndex":{ |
| 543 | + "name":"UpdateIndex", |
| 544 | + "http":{ |
| 545 | + "method":"POST", |
| 546 | + "requestUri":"/" |
| 547 | + }, |
| 548 | + "input":{"shape":"UpdateIndexRequest"}, |
| 549 | + "output":{"shape":"UpdateIndexResponse"}, |
| 550 | + "errors":[ |
| 551 | + {"shape":"InternalServerException"}, |
| 552 | + {"shape":"ResourceNotFoundException"}, |
| 553 | + {"shape":"ValidationException"} |
| 554 | + ], |
| 555 | + "idempotent":true |
| 556 | + }, |
497 | 557 | "UpdateLifecyclePolicy":{
|
498 | 558 | "name":"UpdateLifecyclePolicy",
|
499 | 559 | "http":{
|
|
870 | 930 | "groupAttribute":{"shape":"IamIdentityCenterGroupAttribute"}
|
871 | 931 | }
|
872 | 932 | },
|
| 933 | + "CreateIndexRequest":{ |
| 934 | + "type":"structure", |
| 935 | + "required":[ |
| 936 | + "id", |
| 937 | + "indexName" |
| 938 | + ], |
| 939 | + "members":{ |
| 940 | + "id":{"shape":"CollectionId"}, |
| 941 | + "indexName":{"shape":"IndexName"}, |
| 942 | + "indexSchema":{"shape":"IndexSchema"} |
| 943 | + } |
| 944 | + }, |
| 945 | + "CreateIndexResponse":{ |
| 946 | + "type":"structure", |
| 947 | + "members":{ |
| 948 | + } |
| 949 | + }, |
873 | 950 | "CreateLifecyclePolicyRequest":{
|
874 | 951 | "type":"structure",
|
875 | 952 | "required":[
|
|
1020 | 1097 | "deleteCollectionDetail":{"shape":"DeleteCollectionDetail"}
|
1021 | 1098 | }
|
1022 | 1099 | },
|
| 1100 | + "DeleteIndexRequest":{ |
| 1101 | + "type":"structure", |
| 1102 | + "required":[ |
| 1103 | + "id", |
| 1104 | + "indexName" |
| 1105 | + ], |
| 1106 | + "members":{ |
| 1107 | + "id":{"shape":"CollectionId"}, |
| 1108 | + "indexName":{"shape":"IndexName"} |
| 1109 | + } |
| 1110 | + }, |
| 1111 | + "DeleteIndexResponse":{ |
| 1112 | + "type":"structure", |
| 1113 | + "members":{ |
| 1114 | + } |
| 1115 | + }, |
1023 | 1116 | "DeleteLifecyclePolicyRequest":{
|
1024 | 1117 | "type":"structure",
|
1025 | 1118 | "required":[
|
|
1163 | 1256 | "accountSettingsDetail":{"shape":"AccountSettingsDetail"}
|
1164 | 1257 | }
|
1165 | 1258 | },
|
| 1259 | + "GetIndexRequest":{ |
| 1260 | + "type":"structure", |
| 1261 | + "required":[ |
| 1262 | + "id", |
| 1263 | + "indexName" |
| 1264 | + ], |
| 1265 | + "members":{ |
| 1266 | + "id":{"shape":"CollectionId"}, |
| 1267 | + "indexName":{"shape":"IndexName"} |
| 1268 | + } |
| 1269 | + }, |
| 1270 | + "GetIndexResponse":{ |
| 1271 | + "type":"structure", |
| 1272 | + "members":{ |
| 1273 | + "indexSchema":{"shape":"IndexSchema"} |
| 1274 | + } |
| 1275 | + }, |
1166 | 1276 | "GetPoliciesStatsRequest":{
|
1167 | 1277 | "type":"structure",
|
1168 | 1278 | "members":{
|
|
1253 | 1363 | "Email"
|
1254 | 1364 | ]
|
1255 | 1365 | },
|
| 1366 | + "IndexName":{"type":"string"}, |
| 1367 | + "IndexSchema":{ |
| 1368 | + "type":"structure", |
| 1369 | + "members":{ |
| 1370 | + }, |
| 1371 | + "document":true |
| 1372 | + }, |
1256 | 1373 | "IndexingCapacityValue":{
|
1257 | 1374 | "type":"integer",
|
1258 | 1375 | "box":true,
|
|
1873 | 1990 | "groupAttribute":{"shape":"IamIdentityCenterGroupAttribute"}
|
1874 | 1991 | }
|
1875 | 1992 | },
|
| 1993 | + "UpdateIndexRequest":{ |
| 1994 | + "type":"structure", |
| 1995 | + "required":[ |
| 1996 | + "id", |
| 1997 | + "indexName" |
| 1998 | + ], |
| 1999 | + "members":{ |
| 2000 | + "id":{"shape":"CollectionId"}, |
| 2001 | + "indexName":{"shape":"IndexName"}, |
| 2002 | + "indexSchema":{"shape":"IndexSchema"} |
| 2003 | + } |
| 2004 | + }, |
| 2005 | + "UpdateIndexResponse":{ |
| 2006 | + "type":"structure", |
| 2007 | + "members":{ |
| 2008 | + } |
| 2009 | + }, |
1876 | 2010 | "UpdateLifecyclePolicyRequest":{
|
1877 | 2011 | "type":"structure",
|
1878 | 2012 | "required":[
|
|
0 commit comments