@@ -882,6 +882,10 @@ def download_to_file(
882882 The ``encryption_key`` should be a str or bytes with a length of at
883883 least 32.
884884
885+ If the :attr:`chunk_size` of a current blob is `None`, will download data
886+ in single download request otherwise it will download the :attr:`chunk_size`
887+ of data in each request.
888+
885889 For more fine-grained control over the download process, check out
886890 `google-resumable-media`_. For example, this library allows
887891 downloading **parts** of a blob rather than the whole thing.
@@ -1574,7 +1578,7 @@ def _do_upload(
15741578 ):
15751579 """Determine an upload strategy and then perform the upload.
15761580
1577- If the size of the data to be uploaded exceeds 5 MB a resumable media
1581+ If the size of the data to be uploaded exceeds 8 MB a resumable media
15781582 request will be used, otherwise the content and the metadata will be
15791583 uploaded in a single multipart upload request.
15801584
@@ -1704,6 +1708,10 @@ def upload_from_file(
17041708 The ``encryption_key`` should be a str or bytes with a length of at
17051709 least 32.
17061710
1711+ If the size of the data to be uploaded exceeds 8 MB a resumable media
1712+ request will be used, otherwise the content and the metadata will be
1713+ uploaded in a single multipart upload request.
1714+
17071715 For more fine-grained over the upload process, check out
17081716 `google-resumable-media`_.
17091717
0 commit comments