|
76 | 76 | ],
|
77 | 77 | "documentation":"<p>Provides access to an Amazon OpenSearch Service domain through the use of an interface VPC endpoint.</p>"
|
78 | 78 | },
|
| 79 | + "CancelDomainConfigChange":{ |
| 80 | + "name":"CancelDomainConfigChange", |
| 81 | + "http":{ |
| 82 | + "method":"POST", |
| 83 | + "requestUri":"/2015-01-01/es/domain/{DomainName}/config/cancel" |
| 84 | + }, |
| 85 | + "input":{"shape":"CancelDomainConfigChangeRequest"}, |
| 86 | + "output":{"shape":"CancelDomainConfigChangeResponse"}, |
| 87 | + "errors":[ |
| 88 | + {"shape":"BaseException"}, |
| 89 | + {"shape":"InternalException"}, |
| 90 | + {"shape":"ResourceNotFoundException"}, |
| 91 | + {"shape":"ValidationException"}, |
| 92 | + {"shape":"DisabledOperationException"} |
| 93 | + ], |
| 94 | + "documentation":"<p>Cancels a pending configuration change on an Amazon OpenSearch Service domain.</p>" |
| 95 | + }, |
79 | 96 | "CancelElasticsearchServiceSoftwareUpdate":{
|
80 | 97 | "name":"CancelElasticsearchServiceSoftwareUpdate",
|
81 | 98 | "http":{
|
|
1287 | 1304 | "exception":true
|
1288 | 1305 | },
|
1289 | 1306 | "Boolean":{"type":"boolean"},
|
| 1307 | + "CancelDomainConfigChangeRequest":{ |
| 1308 | + "type":"structure", |
| 1309 | + "required":["DomainName"], |
| 1310 | + "members":{ |
| 1311 | + "DomainName":{ |
| 1312 | + "shape":"DomainName", |
| 1313 | + "documentation":"<p>Name of the OpenSearch Service domain configuration request to cancel.</p>", |
| 1314 | + "location":"uri", |
| 1315 | + "locationName":"DomainName" |
| 1316 | + }, |
| 1317 | + "DryRun":{ |
| 1318 | + "shape":"DryRun", |
| 1319 | + "documentation":"<p>When set to <b>True</b>, returns the list of change IDs and properties that will be cancelled without actually cancelling the change.</p>" |
| 1320 | + } |
| 1321 | + }, |
| 1322 | + "documentation":"<p>Container for parameters of the <code>CancelDomainConfigChange</code> operation.</p>" |
| 1323 | + }, |
| 1324 | + "CancelDomainConfigChangeResponse":{ |
| 1325 | + "type":"structure", |
| 1326 | + "members":{ |
| 1327 | + "DryRun":{ |
| 1328 | + "shape":"DryRun", |
| 1329 | + "documentation":"<p>Whether or not the request was a dry run. If <b>True</b>, the changes were not actually cancelled.</p>" |
| 1330 | + }, |
| 1331 | + "CancelledChangeIds":{ |
| 1332 | + "shape":"GUIDList", |
| 1333 | + "documentation":"<p>The unique identifiers of the changes that were cancelled.</p>" |
| 1334 | + }, |
| 1335 | + "CancelledChangeProperties":{ |
| 1336 | + "shape":"CancelledChangePropertyList", |
| 1337 | + "documentation":"<p>The domain change properties that were cancelled.</p>" |
| 1338 | + } |
| 1339 | + }, |
| 1340 | + "documentation":"<p>Contains the details of the cancelled domain config change.</p>" |
| 1341 | + }, |
1290 | 1342 | "CancelElasticsearchServiceSoftwareUpdateRequest":{
|
1291 | 1343 | "type":"structure",
|
1292 | 1344 | "required":["DomainName"],
|
|
1308 | 1360 | },
|
1309 | 1361 | "documentation":"<p>The result of a <code>CancelElasticsearchServiceSoftwareUpdate</code> operation. Contains the status of the update.</p>"
|
1310 | 1362 | },
|
| 1363 | + "CancelledChangeProperty":{ |
| 1364 | + "type":"structure", |
| 1365 | + "members":{ |
| 1366 | + "PropertyName":{ |
| 1367 | + "shape":"String", |
| 1368 | + "documentation":"<p>The name of the property whose change was cancelled.</p>" |
| 1369 | + }, |
| 1370 | + "CancelledValue":{ |
| 1371 | + "shape":"String", |
| 1372 | + "documentation":"<p>The pending value of the property that was cancelled. This would have been the eventual value of the property if the chance had not been cancelled.</p>" |
| 1373 | + }, |
| 1374 | + "ActiveValue":{ |
| 1375 | + "shape":"String", |
| 1376 | + "documentation":"<p>The current value of the property, after the change was cancelled.</p>" |
| 1377 | + } |
| 1378 | + }, |
| 1379 | + "documentation":"<p>A property change that was cancelled for an Amazon OpenSearch Service domain.</p>" |
| 1380 | + }, |
| 1381 | + "CancelledChangePropertyList":{ |
| 1382 | + "type":"list", |
| 1383 | + "member":{"shape":"CancelledChangeProperty"} |
| 1384 | + }, |
1311 | 1385 | "ChangeProgressDetails":{
|
1312 | 1386 | "type":"structure",
|
1313 | 1387 | "members":{
|
|
1318 | 1392 | "Message":{
|
1319 | 1393 | "shape":"Message",
|
1320 | 1394 | "documentation":"<p>Contains an optional message associated with the domain configuration change.</p>"
|
| 1395 | + }, |
| 1396 | + "ConfigChangeStatus":{ |
| 1397 | + "shape":"ConfigChangeStatus", |
| 1398 | + "documentation":"<p>The current status of the configuration change.</p>" |
| 1399 | + }, |
| 1400 | + "StartTime":{ |
| 1401 | + "shape":"UpdateTimestamp", |
| 1402 | + "documentation":"<p>The time that the configuration change was initiated, in Universal Coordinated Time (UTC).</p>" |
| 1403 | + }, |
| 1404 | + "LastUpdatedTime":{ |
| 1405 | + "shape":"UpdateTimestamp", |
| 1406 | + "documentation":"<p>The last time that the configuration change was updated.</p>" |
| 1407 | + }, |
| 1408 | + "InitiatedBy":{ |
| 1409 | + "shape":"InitiatedBy", |
| 1410 | + "documentation":"<p>The IAM principal who initiated the configuration change.</p>" |
1321 | 1411 | }
|
1322 | 1412 | },
|
1323 | 1413 | "documentation":"<p>Specifies change details of the domain configuration change.</p>"
|
|
1389 | 1479 | "ChangeProgressStages":{
|
1390 | 1480 | "shape":"ChangeProgressStageList",
|
1391 | 1481 | "documentation":"<p>The specific stages that the domain is going through to perform the configuration change.</p>"
|
| 1482 | + }, |
| 1483 | + "ConfigChangeStatus":{ |
| 1484 | + "shape":"ConfigChangeStatus", |
| 1485 | + "documentation":"<p>The current status of the configuration change.</p>" |
| 1486 | + }, |
| 1487 | + "LastUpdatedTime":{ |
| 1488 | + "shape":"UpdateTimestamp", |
| 1489 | + "documentation":"<p>The last time that the status of the configuration change was updated.</p>" |
| 1490 | + }, |
| 1491 | + "InitiatedBy":{ |
| 1492 | + "shape":"InitiatedBy", |
| 1493 | + "documentation":"<p>The IAM principal who initiated the configuration change.</p>" |
1392 | 1494 | }
|
1393 | 1495 | },
|
1394 | 1496 | "documentation":"<p>The progress details of a specific domain configuration change.</p>"
|
|
1472 | 1574 | },
|
1473 | 1575 | "documentation":"<p> A map from an <code> <a>ElasticsearchVersion</a> </code> to a list of compatible <code> <a>ElasticsearchVersion</a> </code> s to which the domain can be upgraded. </p>"
|
1474 | 1576 | },
|
| 1577 | + "ConfigChangeStatus":{ |
| 1578 | + "type":"string", |
| 1579 | + "enum":[ |
| 1580 | + "Pending", |
| 1581 | + "Initializing", |
| 1582 | + "Validating", |
| 1583 | + "ValidationFailed", |
| 1584 | + "ApplyingChanges", |
| 1585 | + "Completed", |
| 1586 | + "PendingUserInput", |
| 1587 | + "Cancelled" |
| 1588 | + ] |
| 1589 | + }, |
1475 | 1590 | "ConflictException":{
|
1476 | 1591 | "type":"structure",
|
1477 | 1592 | "members":{
|
|
2417 | 2532 | "DISSOCIATION_FAILED"
|
2418 | 2533 | ]
|
2419 | 2534 | },
|
| 2535 | + "DomainProcessingStatusType":{ |
| 2536 | + "type":"string", |
| 2537 | + "enum":[ |
| 2538 | + "Creating", |
| 2539 | + "Active", |
| 2540 | + "Modifying", |
| 2541 | + "UpgradingEngineVersion", |
| 2542 | + "UpdatingServiceSoftware", |
| 2543 | + "Isolated", |
| 2544 | + "Deleting" |
| 2545 | + ] |
| 2546 | + }, |
2420 | 2547 | "Double":{"type":"double"},
|
2421 | 2548 | "DryRun":{"type":"boolean"},
|
2422 | 2549 | "DryRunResults":{
|
|
2696 | 2823 | "ChangeProgressDetails":{
|
2697 | 2824 | "shape":"ChangeProgressDetails",
|
2698 | 2825 | "documentation":"<p>Specifies change details of the domain configuration change.</p>"
|
| 2826 | + }, |
| 2827 | + "ModifyingProperties":{ |
| 2828 | + "shape":"ModifyingPropertiesList", |
| 2829 | + "documentation":"<p>Information about the domain properties that are currently being modified.</p>" |
2699 | 2830 | }
|
2700 | 2831 | },
|
2701 | 2832 | "documentation":"<p>The configuration of an Elasticsearch domain.</p>"
|
|
2805 | 2936 | "ChangeProgressDetails":{
|
2806 | 2937 | "shape":"ChangeProgressDetails",
|
2807 | 2938 | "documentation":"<p>Specifies change details of the domain configuration change.</p>"
|
| 2939 | + }, |
| 2940 | + "DomainProcessingStatus":{ |
| 2941 | + "shape":"DomainProcessingStatusType", |
| 2942 | + "documentation":"<p>The status of any changes that are currently in progress for the domain.</p>" |
| 2943 | + }, |
| 2944 | + "ModifyingProperties":{ |
| 2945 | + "shape":"ModifyingPropertiesList", |
| 2946 | + "documentation":"<p>Information about the domain properties that are currently being modified.</p>" |
2808 | 2947 | }
|
2809 | 2948 | },
|
2810 | 2949 | "documentation":"<p>The current status of an Elasticsearch domain.</p>"
|
|
2925 | 3064 | "type":"string",
|
2926 | 3065 | "pattern":"\\p{XDigit}{8}-\\p{XDigit}{4}-\\p{XDigit}{4}-\\p{XDigit}{4}-\\p{XDigit}{12}"
|
2927 | 3066 | },
|
| 3067 | + "GUIDList":{ |
| 3068 | + "type":"list", |
| 3069 | + "member":{"shape":"GUID"} |
| 3070 | + }, |
2928 | 3071 | "GetCompatibleElasticsearchVersionsRequest":{
|
2929 | 3072 | "type":"structure",
|
2930 | 3073 | "members":{
|
|
3106 | 3249 | "type":"list",
|
3107 | 3250 | "member":{"shape":"InboundCrossClusterSearchConnection"}
|
3108 | 3251 | },
|
| 3252 | + "InitiatedBy":{ |
| 3253 | + "type":"string", |
| 3254 | + "enum":[ |
| 3255 | + "CUSTOMER", |
| 3256 | + "SERVICE" |
| 3257 | + ] |
| 3258 | + }, |
3109 | 3259 | "InstanceCount":{
|
3110 | 3260 | "type":"integer",
|
3111 | 3261 | "documentation":"<p>Specifies the number of EC2 instances in the Elasticsearch domain.</p>",
|
|
3569 | 3719 | "type":"integer",
|
3570 | 3720 | "documentation":"<p> Minimum number of Instances that can be instantiated for given InstanceType. </p>"
|
3571 | 3721 | },
|
| 3722 | + "ModifyingProperties":{ |
| 3723 | + "type":"structure", |
| 3724 | + "members":{ |
| 3725 | + "Name":{ |
| 3726 | + "shape":"String", |
| 3727 | + "documentation":"<p>The name of the property that is currently being modified.</p>" |
| 3728 | + }, |
| 3729 | + "ActiveValue":{ |
| 3730 | + "shape":"String", |
| 3731 | + "documentation":"<p>The current value of the domain property that is being modified.</p>" |
| 3732 | + }, |
| 3733 | + "PendingValue":{ |
| 3734 | + "shape":"String", |
| 3735 | + "documentation":"<p>The value that the property that is currently being modified will eventually have.</p>" |
| 3736 | + }, |
| 3737 | + "ValueType":{ |
| 3738 | + "shape":"PropertyValueType", |
| 3739 | + "documentation":"<p>The type of value that is currently being modified. Properties can have two types:</p> <ul> <li><b>PLAIN_TEXT</b>: Contain direct values such as \"1\", \"True\", or \"c5.large.search\".</li> <li><b>STRINGIFIED_JSON</b>: Contain content in JSON format, such as {\"Enabled\":\"True\"}\".</li> </ul>" |
| 3740 | + } |
| 3741 | + }, |
| 3742 | + "documentation":"<p>Information about the domain properties that are currently being modified.</p>" |
| 3743 | + }, |
| 3744 | + "ModifyingPropertiesList":{ |
| 3745 | + "type":"list", |
| 3746 | + "member":{"shape":"ModifyingProperties"} |
| 3747 | + }, |
3572 | 3748 | "NextToken":{
|
3573 | 3749 | "type":"string",
|
3574 | 3750 | "documentation":"<p> Paginated APIs accepts NextToken input to returns next page results and provides a NextToken output in the response which can be used by the client to retrieve more results. </p>"
|
|
3839 | 4015 | "AWS_SERVICE"
|
3840 | 4016 | ]
|
3841 | 4017 | },
|
| 4018 | + "PropertyValueType":{ |
| 4019 | + "type":"string", |
| 4020 | + "enum":[ |
| 4021 | + "PLAIN_TEXT", |
| 4022 | + "STRINGIFIED_JSON" |
| 4023 | + ] |
| 4024 | + }, |
3842 | 4025 | "PurchaseReservedElasticsearchInstanceOfferingRequest":{
|
3843 | 4026 | "type":"structure",
|
3844 | 4027 | "required":[
|
|
0 commit comments