|
239 | 239 | "input":{"shape":"ExecuteQueryInput"}, |
240 | 240 | "output":{"shape":"ExecuteQueryOutput"}, |
241 | 241 | "errors":[ |
242 | | - {"shape":"UnprocessableException"}, |
243 | 242 | {"shape":"ThrottlingException"}, |
| 243 | + {"shape":"UnprocessableException"}, |
244 | 244 | {"shape":"ValidationException"}, |
245 | 245 | {"shape":"ConflictException"}, |
246 | 246 | {"shape":"AccessDeniedException"}, |
|
608 | 608 | "ApiType":{"value":"ControlPlane"} |
609 | 609 | } |
610 | 610 | }, |
| 611 | + "StartGraph":{ |
| 612 | + "name":"StartGraph", |
| 613 | + "http":{ |
| 614 | + "method":"POST", |
| 615 | + "requestUri":"/graphs/{graphIdentifier}/start", |
| 616 | + "responseCode":200 |
| 617 | + }, |
| 618 | + "input":{"shape":"StartGraphInput"}, |
| 619 | + "output":{"shape":"StartGraphOutput"}, |
| 620 | + "errors":[ |
| 621 | + {"shape":"ThrottlingException"}, |
| 622 | + {"shape":"ValidationException"}, |
| 623 | + {"shape":"ConflictException"}, |
| 624 | + {"shape":"InternalServerException"}, |
| 625 | + {"shape":"ResourceNotFoundException"} |
| 626 | + ], |
| 627 | + "documentation":"<p>Starts the specific graph.</p>", |
| 628 | + "staticContextParams":{ |
| 629 | + "ApiType":{"value":"ControlPlane"} |
| 630 | + } |
| 631 | + }, |
611 | 632 | "StartImportTask":{ |
612 | 633 | "name":"StartImportTask", |
613 | 634 | "http":{ |
|
629 | 650 | "ApiType":{"value":"ControlPlane"} |
630 | 651 | } |
631 | 652 | }, |
| 653 | + "StopGraph":{ |
| 654 | + "name":"StopGraph", |
| 655 | + "http":{ |
| 656 | + "method":"POST", |
| 657 | + "requestUri":"/graphs/{graphIdentifier}/stop", |
| 658 | + "responseCode":200 |
| 659 | + }, |
| 660 | + "input":{"shape":"StopGraphInput"}, |
| 661 | + "output":{"shape":"StopGraphOutput"}, |
| 662 | + "errors":[ |
| 663 | + {"shape":"ThrottlingException"}, |
| 664 | + {"shape":"ValidationException"}, |
| 665 | + {"shape":"ConflictException"}, |
| 666 | + {"shape":"InternalServerException"}, |
| 667 | + {"shape":"ResourceNotFoundException"} |
| 668 | + ], |
| 669 | + "documentation":"<p>Stops the specific graph.</p>", |
| 670 | + "staticContextParams":{ |
| 671 | + "ApiType":{"value":"ControlPlane"} |
| 672 | + } |
| 673 | + }, |
632 | 674 | "TagResource":{ |
633 | 675 | "name":"TagResource", |
634 | 676 | "http":{ |
|
1412 | 1454 | }, |
1413 | 1455 | "Document":{ |
1414 | 1456 | "type":"structure", |
1415 | | - "members":{ |
1416 | | - }, |
| 1457 | + "members":{}, |
1417 | 1458 | "document":true |
1418 | 1459 | }, |
1419 | 1460 | "DocumentValuedMap":{ |
|
2233 | 2274 | "UPDATING", |
2234 | 2275 | "SNAPSHOTTING", |
2235 | 2276 | "FAILED", |
2236 | | - "IMPORTING" |
| 2277 | + "IMPORTING", |
| 2278 | + "STARTING", |
| 2279 | + "STOPPING", |
| 2280 | + "STOPPED" |
2237 | 2281 | ] |
2238 | 2282 | }, |
2239 | 2283 | "GraphSummary":{ |
|
3276 | 3320 | "max":1024, |
3277 | 3321 | "min":1 |
3278 | 3322 | }, |
| 3323 | + "StartGraphInput":{ |
| 3324 | + "type":"structure", |
| 3325 | + "required":["graphIdentifier"], |
| 3326 | + "members":{ |
| 3327 | + "graphIdentifier":{ |
| 3328 | + "shape":"GraphIdentifier", |
| 3329 | + "documentation":"<p>The unique identifier of the Neptune Analytics graph.</p>", |
| 3330 | + "location":"uri", |
| 3331 | + "locationName":"graphIdentifier" |
| 3332 | + } |
| 3333 | + } |
| 3334 | + }, |
| 3335 | + "StartGraphOutput":{ |
| 3336 | + "type":"structure", |
| 3337 | + "required":[ |
| 3338 | + "id", |
| 3339 | + "name", |
| 3340 | + "arn" |
| 3341 | + ], |
| 3342 | + "members":{ |
| 3343 | + "id":{ |
| 3344 | + "shape":"GraphId", |
| 3345 | + "documentation":"<p>The unique identifier of the graph.</p>" |
| 3346 | + }, |
| 3347 | + "name":{ |
| 3348 | + "shape":"GraphName", |
| 3349 | + "documentation":"<p>The name of the graph.</p>" |
| 3350 | + }, |
| 3351 | + "arn":{ |
| 3352 | + "shape":"String", |
| 3353 | + "documentation":"<p>The ARN associated with the graph.</p>" |
| 3354 | + }, |
| 3355 | + "status":{ |
| 3356 | + "shape":"GraphStatus", |
| 3357 | + "documentation":"<p>The status of the graph.</p>" |
| 3358 | + }, |
| 3359 | + "statusReason":{ |
| 3360 | + "shape":"String", |
| 3361 | + "documentation":"<p>The reason that the graph has this status.</p>" |
| 3362 | + }, |
| 3363 | + "createTime":{ |
| 3364 | + "shape":"Timestamp", |
| 3365 | + "documentation":"<p>The time at which the graph was created.</p>" |
| 3366 | + }, |
| 3367 | + "provisionedMemory":{ |
| 3368 | + "shape":"ProvisionedMemory", |
| 3369 | + "documentation":"<p>The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.</p>" |
| 3370 | + }, |
| 3371 | + "endpoint":{ |
| 3372 | + "shape":"String", |
| 3373 | + "documentation":"<p>The graph endpoint.</p>" |
| 3374 | + }, |
| 3375 | + "publicConnectivity":{ |
| 3376 | + "shape":"Boolean", |
| 3377 | + "documentation":"<p>If <code>true</code>, the graph has a public endpoint, otherwise not.</p>" |
| 3378 | + }, |
| 3379 | + "vectorSearchConfiguration":{"shape":"VectorSearchConfiguration"}, |
| 3380 | + "replicaCount":{ |
| 3381 | + "shape":"ReplicaCount", |
| 3382 | + "documentation":"<p>The number of replicas for the graph.</p>" |
| 3383 | + }, |
| 3384 | + "kmsKeyIdentifier":{ |
| 3385 | + "shape":"KmsKeyArn", |
| 3386 | + "documentation":"<p>The ID of the KMS key used to encrypt and decrypt graph data.</p>" |
| 3387 | + }, |
| 3388 | + "sourceSnapshotId":{ |
| 3389 | + "shape":"SnapshotId", |
| 3390 | + "documentation":"<p>The ID of the snapshot from which the graph was created, if it was created from a snapshot.</p>" |
| 3391 | + }, |
| 3392 | + "deletionProtection":{ |
| 3393 | + "shape":"Boolean", |
| 3394 | + "documentation":"<p>If <code>true</code>, deletion protection is enabled for the graph.</p>" |
| 3395 | + }, |
| 3396 | + "buildNumber":{ |
| 3397 | + "shape":"String", |
| 3398 | + "documentation":"<p>The build number of the graph.</p>" |
| 3399 | + } |
| 3400 | + } |
| 3401 | + }, |
3279 | 3402 | "StartImportTaskInput":{ |
3280 | 3403 | "type":"structure", |
3281 | 3404 | "required":[ |
|
3357 | 3480 | "importOptions":{"shape":"ImportOptions"} |
3358 | 3481 | } |
3359 | 3482 | }, |
| 3483 | + "StopGraphInput":{ |
| 3484 | + "type":"structure", |
| 3485 | + "required":["graphIdentifier"], |
| 3486 | + "members":{ |
| 3487 | + "graphIdentifier":{ |
| 3488 | + "shape":"GraphIdentifier", |
| 3489 | + "documentation":"<p>The unique identifier of the Neptune Analytics graph.</p>", |
| 3490 | + "location":"uri", |
| 3491 | + "locationName":"graphIdentifier" |
| 3492 | + } |
| 3493 | + } |
| 3494 | + }, |
| 3495 | + "StopGraphOutput":{ |
| 3496 | + "type":"structure", |
| 3497 | + "required":[ |
| 3498 | + "id", |
| 3499 | + "name", |
| 3500 | + "arn" |
| 3501 | + ], |
| 3502 | + "members":{ |
| 3503 | + "id":{ |
| 3504 | + "shape":"GraphId", |
| 3505 | + "documentation":"<p>The unique identifier of the graph.</p>" |
| 3506 | + }, |
| 3507 | + "name":{ |
| 3508 | + "shape":"GraphName", |
| 3509 | + "documentation":"<p>The name of the graph.</p>" |
| 3510 | + }, |
| 3511 | + "arn":{ |
| 3512 | + "shape":"String", |
| 3513 | + "documentation":"<p>The ARN associated with the graph.</p>" |
| 3514 | + }, |
| 3515 | + "status":{ |
| 3516 | + "shape":"GraphStatus", |
| 3517 | + "documentation":"<p>The status of the graph.</p>" |
| 3518 | + }, |
| 3519 | + "statusReason":{ |
| 3520 | + "shape":"String", |
| 3521 | + "documentation":"<p>The reason that the graph has this status.</p>" |
| 3522 | + }, |
| 3523 | + "createTime":{ |
| 3524 | + "shape":"Timestamp", |
| 3525 | + "documentation":"<p>The time at which the graph was created.</p>" |
| 3526 | + }, |
| 3527 | + "provisionedMemory":{ |
| 3528 | + "shape":"ProvisionedMemory", |
| 3529 | + "documentation":"<p>The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.</p>" |
| 3530 | + }, |
| 3531 | + "endpoint":{ |
| 3532 | + "shape":"String", |
| 3533 | + "documentation":"<p>The graph endpoint.</p>" |
| 3534 | + }, |
| 3535 | + "publicConnectivity":{ |
| 3536 | + "shape":"Boolean", |
| 3537 | + "documentation":"<p>If true, the graph has a public endpoint, otherwise not.</p>" |
| 3538 | + }, |
| 3539 | + "vectorSearchConfiguration":{"shape":"VectorSearchConfiguration"}, |
| 3540 | + "replicaCount":{ |
| 3541 | + "shape":"ReplicaCount", |
| 3542 | + "documentation":"<p>The number of replicas for the graph.</p>" |
| 3543 | + }, |
| 3544 | + "kmsKeyIdentifier":{ |
| 3545 | + "shape":"KmsKeyArn", |
| 3546 | + "documentation":"<p>The ID of the KMS key used to encrypt and decrypt graph data.</p>" |
| 3547 | + }, |
| 3548 | + "sourceSnapshotId":{ |
| 3549 | + "shape":"SnapshotId", |
| 3550 | + "documentation":"<p>The ID of the snapshot from which the graph was created, if it was created from a snapshot.</p>" |
| 3551 | + }, |
| 3552 | + "deletionProtection":{ |
| 3553 | + "shape":"Boolean", |
| 3554 | + "documentation":"<p>If <code>true</code>, deletion protection is enabled for the graph.</p>" |
| 3555 | + }, |
| 3556 | + "buildNumber":{ |
| 3557 | + "shape":"String", |
| 3558 | + "documentation":"<p>The build number of the graph.</p>" |
| 3559 | + } |
| 3560 | + } |
| 3561 | + }, |
3360 | 3562 | "String":{"type":"string"}, |
3361 | 3563 | "SubnetId":{ |
3362 | 3564 | "type":"string", |
|
3412 | 3614 | }, |
3413 | 3615 | "TagResourceOutput":{ |
3414 | 3616 | "type":"structure", |
3415 | | - "members":{ |
3416 | | - } |
| 3617 | + "members":{} |
3417 | 3618 | }, |
3418 | 3619 | "TagValue":{ |
3419 | 3620 | "type":"string", |
|
3495 | 3696 | }, |
3496 | 3697 | "UntagResourceOutput":{ |
3497 | 3698 | "type":"structure", |
3498 | | - "members":{ |
3499 | | - } |
| 3699 | + "members":{} |
3500 | 3700 | }, |
3501 | 3701 | "UpdateGraphInput":{ |
3502 | 3702 | "type":"structure", |
|
0 commit comments