(xml)
| 62 | } |
| 63 | |
| 64 | function _putReplicationRequest(xml) { |
| 65 | const request = { |
| 66 | bucketName, |
| 67 | headers: { host: `${bucketName}.s3.amazonaws.com` }, |
| 68 | url: '/?replication', |
| 69 | }; |
| 70 | request.post = xml; |
| 71 | return request; |
| 72 | } |
| 73 | |
| 74 | function _putVersioningRequest(xml) { |
| 75 | const request = { |
no outgoing calls
no test coverage detected