123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522 |
- {
- "version": "2.0",
- "metadata": {
- "apiVersion": "2018-04-10",
- "endpointPrefix": "backupstorage",
- "jsonVersion": "1.1",
- "protocol": "rest-json",
- "serviceFullName": "AWS Backup Storage",
- "serviceId": "BackupStorage",
- "signatureVersion": "v4",
- "signingName": "backup-storage",
- "uid": "backupstorage-2018-04-10"
- },
- "operations": {
- "DeleteObject": {
- "http": {
- "method": "DELETE",
- "requestUri": "/backup-jobs/{jobId}/object/{objectName}"
- },
- "input": {
- "type": "structure",
- "required": [
- "BackupJobId",
- "ObjectName"
- ],
- "members": {
- "BackupJobId": {
- "location": "uri",
- "locationName": "jobId"
- },
- "ObjectName": {
- "location": "uri",
- "locationName": "objectName"
- }
- }
- }
- },
- "GetChunk": {
- "http": {
- "method": "GET",
- "requestUri": "/restore-jobs/{jobId}/chunk/{chunkToken}"
- },
- "input": {
- "type": "structure",
- "required": [
- "StorageJobId",
- "ChunkToken"
- ],
- "members": {
- "StorageJobId": {
- "location": "uri",
- "locationName": "jobId"
- },
- "ChunkToken": {
- "location": "uri",
- "locationName": "chunkToken"
- }
- }
- },
- "output": {
- "type": "structure",
- "required": [
- "Data",
- "Length",
- "Checksum",
- "ChecksumAlgorithm"
- ],
- "members": {
- "Data": {
- "shape": "S5"
- },
- "Length": {
- "location": "header",
- "locationName": "x-amz-data-length",
- "type": "long"
- },
- "Checksum": {
- "location": "header",
- "locationName": "x-amz-checksum"
- },
- "ChecksumAlgorithm": {
- "location": "header",
- "locationName": "x-amz-checksum-algorithm"
- }
- },
- "payload": "Data"
- }
- },
- "GetObjectMetadata": {
- "http": {
- "method": "GET",
- "requestUri": "/restore-jobs/{jobId}/object/{objectToken}/metadata"
- },
- "input": {
- "type": "structure",
- "required": [
- "StorageJobId",
- "ObjectToken"
- ],
- "members": {
- "StorageJobId": {
- "location": "uri",
- "locationName": "jobId"
- },
- "ObjectToken": {
- "location": "uri",
- "locationName": "objectToken"
- }
- }
- },
- "output": {
- "type": "structure",
- "members": {
- "MetadataString": {
- "location": "header",
- "locationName": "x-amz-metadata-string"
- },
- "MetadataBlob": {
- "shape": "S5"
- },
- "MetadataBlobLength": {
- "location": "header",
- "locationName": "x-amz-data-length",
- "type": "long"
- },
- "MetadataBlobChecksum": {
- "location": "header",
- "locationName": "x-amz-checksum"
- },
- "MetadataBlobChecksumAlgorithm": {
- "location": "header",
- "locationName": "x-amz-checksum-algorithm"
- }
- },
- "payload": "MetadataBlob"
- }
- },
- "ListChunks": {
- "http": {
- "method": "GET",
- "requestUri": "/restore-jobs/{jobId}/chunks/{objectToken}/list"
- },
- "input": {
- "type": "structure",
- "required": [
- "StorageJobId",
- "ObjectToken"
- ],
- "members": {
- "StorageJobId": {
- "location": "uri",
- "locationName": "jobId"
- },
- "ObjectToken": {
- "location": "uri",
- "locationName": "objectToken"
- },
- "MaxResults": {
- "location": "querystring",
- "locationName": "max-results",
- "type": "integer"
- },
- "NextToken": {
- "location": "querystring",
- "locationName": "next-token"
- }
- }
- },
- "output": {
- "type": "structure",
- "required": [
- "ChunkList"
- ],
- "members": {
- "ChunkList": {
- "type": "list",
- "member": {
- "type": "structure",
- "required": [
- "Index",
- "Length",
- "Checksum",
- "ChecksumAlgorithm",
- "ChunkToken"
- ],
- "members": {
- "Index": {
- "type": "long"
- },
- "Length": {
- "type": "long"
- },
- "Checksum": {},
- "ChecksumAlgorithm": {},
- "ChunkToken": {}
- }
- }
- },
- "NextToken": {}
- }
- }
- },
- "ListObjects": {
- "http": {
- "method": "GET",
- "requestUri": "/restore-jobs/{jobId}/objects/list"
- },
- "input": {
- "type": "structure",
- "required": [
- "StorageJobId"
- ],
- "members": {
- "StorageJobId": {
- "location": "uri",
- "locationName": "jobId"
- },
- "StartingObjectName": {
- "location": "querystring",
- "locationName": "starting-object-name"
- },
- "StartingObjectPrefix": {
- "location": "querystring",
- "locationName": "starting-object-prefix"
- },
- "MaxResults": {
- "location": "querystring",
- "locationName": "max-results",
- "type": "integer"
- },
- "NextToken": {
- "location": "querystring",
- "locationName": "next-token"
- },
- "CreatedBefore": {
- "location": "querystring",
- "locationName": "created-before",
- "type": "timestamp"
- },
- "CreatedAfter": {
- "location": "querystring",
- "locationName": "created-after",
- "type": "timestamp"
- }
- }
- },
- "output": {
- "type": "structure",
- "required": [
- "ObjectList"
- ],
- "members": {
- "ObjectList": {
- "type": "list",
- "member": {
- "type": "structure",
- "required": [
- "Name",
- "ObjectChecksum",
- "ObjectChecksumAlgorithm",
- "ObjectToken"
- ],
- "members": {
- "Name": {},
- "ChunksCount": {
- "type": "long"
- },
- "MetadataString": {},
- "ObjectChecksum": {},
- "ObjectChecksumAlgorithm": {},
- "ObjectToken": {}
- }
- }
- },
- "NextToken": {}
- }
- }
- },
- "NotifyObjectComplete": {
- "http": {
- "method": "PUT",
- "requestUri": "/backup-jobs/{jobId}/object/{uploadId}/complete"
- },
- "input": {
- "type": "structure",
- "required": [
- "BackupJobId",
- "UploadId",
- "ObjectChecksum",
- "ObjectChecksumAlgorithm"
- ],
- "members": {
- "BackupJobId": {
- "location": "uri",
- "locationName": "jobId"
- },
- "UploadId": {
- "location": "uri",
- "locationName": "uploadId"
- },
- "ObjectChecksum": {
- "location": "querystring",
- "locationName": "checksum"
- },
- "ObjectChecksumAlgorithm": {
- "location": "querystring",
- "locationName": "checksum-algorithm"
- },
- "MetadataString": {
- "location": "querystring",
- "locationName": "metadata-string"
- },
- "MetadataBlob": {
- "shape": "S5"
- },
- "MetadataBlobLength": {
- "location": "querystring",
- "locationName": "metadata-blob-length",
- "type": "long"
- },
- "MetadataBlobChecksum": {
- "location": "querystring",
- "locationName": "metadata-checksum"
- },
- "MetadataBlobChecksumAlgorithm": {
- "location": "querystring",
- "locationName": "metadata-checksum-algorithm"
- }
- },
- "payload": "MetadataBlob"
- },
- "output": {
- "type": "structure",
- "required": [
- "ObjectChecksum",
- "ObjectChecksumAlgorithm"
- ],
- "members": {
- "ObjectChecksum": {},
- "ObjectChecksumAlgorithm": {}
- }
- },
- "authtype": "v4-unsigned-body"
- },
- "PutChunk": {
- "http": {
- "method": "PUT",
- "requestUri": "/backup-jobs/{jobId}/chunk/{uploadId}/{chunkIndex}"
- },
- "input": {
- "type": "structure",
- "required": [
- "BackupJobId",
- "UploadId",
- "ChunkIndex",
- "Data",
- "Length",
- "Checksum",
- "ChecksumAlgorithm"
- ],
- "members": {
- "BackupJobId": {
- "location": "uri",
- "locationName": "jobId"
- },
- "UploadId": {
- "location": "uri",
- "locationName": "uploadId"
- },
- "ChunkIndex": {
- "location": "uri",
- "locationName": "chunkIndex",
- "type": "long"
- },
- "Data": {
- "shape": "S5"
- },
- "Length": {
- "location": "querystring",
- "locationName": "length",
- "type": "long"
- },
- "Checksum": {
- "location": "querystring",
- "locationName": "checksum"
- },
- "ChecksumAlgorithm": {
- "location": "querystring",
- "locationName": "checksum-algorithm"
- }
- },
- "payload": "Data"
- },
- "output": {
- "type": "structure",
- "required": [
- "ChunkChecksum",
- "ChunkChecksumAlgorithm"
- ],
- "members": {
- "ChunkChecksum": {},
- "ChunkChecksumAlgorithm": {}
- }
- },
- "authtype": "v4-unsigned-body"
- },
- "PutObject": {
- "http": {
- "method": "PUT",
- "requestUri": "/backup-jobs/{jobId}/object/{objectName}/put-object"
- },
- "input": {
- "type": "structure",
- "required": [
- "BackupJobId",
- "ObjectName"
- ],
- "members": {
- "BackupJobId": {
- "location": "uri",
- "locationName": "jobId"
- },
- "ObjectName": {
- "location": "uri",
- "locationName": "objectName"
- },
- "MetadataString": {
- "location": "querystring",
- "locationName": "metadata-string"
- },
- "InlineChunk": {
- "shape": "S5"
- },
- "InlineChunkLength": {
- "location": "querystring",
- "locationName": "length",
- "type": "long"
- },
- "InlineChunkChecksum": {
- "location": "querystring",
- "locationName": "checksum"
- },
- "InlineChunkChecksumAlgorithm": {
- "location": "querystring",
- "locationName": "checksum-algorithm"
- },
- "ObjectChecksum": {
- "location": "querystring",
- "locationName": "object-checksum"
- },
- "ObjectChecksumAlgorithm": {
- "location": "querystring",
- "locationName": "object-checksum-algorithm"
- },
- "ThrowOnDuplicate": {
- "location": "querystring",
- "locationName": "throwOnDuplicate",
- "type": "boolean"
- }
- },
- "payload": "InlineChunk"
- },
- "output": {
- "type": "structure",
- "required": [
- "InlineChunkChecksum",
- "InlineChunkChecksumAlgorithm",
- "ObjectChecksum",
- "ObjectChecksumAlgorithm"
- ],
- "members": {
- "InlineChunkChecksum": {},
- "InlineChunkChecksumAlgorithm": {},
- "ObjectChecksum": {},
- "ObjectChecksumAlgorithm": {}
- }
- },
- "authtype": "v4-unsigned-body"
- },
- "StartObject": {
- "http": {
- "method": "PUT",
- "requestUri": "/backup-jobs/{jobId}/object/{objectName}"
- },
- "input": {
- "type": "structure",
- "required": [
- "BackupJobId",
- "ObjectName"
- ],
- "members": {
- "BackupJobId": {
- "location": "uri",
- "locationName": "jobId"
- },
- "ObjectName": {
- "location": "uri",
- "locationName": "objectName"
- },
- "ThrowOnDuplicate": {
- "type": "boolean"
- }
- }
- },
- "output": {
- "type": "structure",
- "required": [
- "UploadId"
- ],
- "members": {
- "UploadId": {}
- }
- }
- }
- },
- "shapes": {
- "S5": {
- "type": "blob",
- "streaming": true
- }
- }
- }
|