public void move()

in src/main/java/org/elasticsearch/aliyun/oss/blobstore/OssBlobStore.java [181:191]


    public void move(String sourceBlobName, String targetBlobName)
        throws OSSException, ClientException, IOException {
        doPrivilegedAndRefreshClient(() -> {
            this.client.copyObject(bucket, sourceBlobName, bucket, targetBlobName);
            return null;
        });
        doPrivilegedAndRefreshClient(() -> {
            this.client.deleteObject(bucket, sourceBlobName);
            return null;
        });
    }