@@ -2063,7 +2063,7 @@ def _initiate_resumable_upload(
2063
2063
(Optional) The type of checksum to compute to verify
2064
2064
the integrity of the object. After the upload is complete, the
2065
2065
server-computed checksum of the resulting object will be checked
2066
- and google.cloud.storage._media.common .DataCorruption will be raised on
2066
+ and google.cloud.storage.exceptions .DataCorruption will be raised on
2067
2067
a mismatch. On a validation failure, the client will attempt to
2068
2068
delete the uploaded object automatically. Supported values
2069
2069
are "md5", "crc32c" and None. The default is None.
@@ -2253,7 +2253,7 @@ def _do_resumable_upload(
2253
2253
(Optional) The type of checksum to compute to verify
2254
2254
the integrity of the object. After the upload is complete, the
2255
2255
server-computed checksum of the resulting object will be checked
2256
- and google.cloud.storage._media.common .DataCorruption will be raised on
2256
+ and google.cloud.storage.exceptions .DataCorruption will be raised on
2257
2257
a mismatch. On a validation failure, the client will attempt to
2258
2258
delete the uploaded object automatically. Supported values
2259
2259
are "md5", "crc32c" and None. The default is None.
@@ -2397,7 +2397,7 @@ def _do_upload(
2397
2397
is too large and must be transmitted in multiple requests, the
2398
2398
checksum will be incrementally computed and the client will handle
2399
2399
verification and error handling, raising
2400
- google.cloud.storage._media.common .DataCorruption on a mismatch and
2400
+ google.cloud.storage.exceptions .DataCorruption on a mismatch and
2401
2401
attempting to delete the corrupted file. Supported values are
2402
2402
"md5", "crc32c" and None. The default is None.
2403
2403
@@ -2595,7 +2595,7 @@ def _prep_and_do_upload(
2595
2595
is too large and must be transmitted in multiple requests, the
2596
2596
checksum will be incrementally computed and the client will handle
2597
2597
verification and error handling, raising
2598
- google.cloud.storage._media.common .DataCorruption on a mismatch and
2598
+ google.cloud.storage.exceptions .DataCorruption on a mismatch and
2599
2599
attempting to delete the corrupted file. Supported values are
2600
2600
"md5", "crc32c" and None. The default is None.
2601
2601
@@ -2772,7 +2772,7 @@ def upload_from_file(
2772
2772
is too large and must be transmitted in multiple requests, the
2773
2773
checksum will be incrementally computed and the client will handle
2774
2774
verification and error handling, raising
2775
- google.cloud.storage._media.common .DataCorruption on a mismatch and
2775
+ google.cloud.storage.exceptions .DataCorruption on a mismatch and
2776
2776
attempting to delete the corrupted file. Supported values are
2777
2777
"md5", "crc32c" and None. The default is None.
2778
2778
@@ -2928,7 +2928,7 @@ def upload_from_filename(
2928
2928
is too large and must be transmitted in multiple requests, the
2929
2929
checksum will be incrementally computed and the client will handle
2930
2930
verification and error handling, raising
2931
- google.cloud.storage._media.common .DataCorruption on a mismatch and
2931
+ google.cloud.storage.exceptions .DataCorruption on a mismatch and
2932
2932
attempting to delete the corrupted file. Supported values are
2933
2933
"md5", "crc32c" and None. The default is None.
2934
2934
@@ -3048,7 +3048,7 @@ def upload_from_string(
3048
3048
is too large and must be transmitted in multiple requests, the
3049
3049
checksum will be incrementally computed and the client will handle
3050
3050
verification and error handling, raising
3051
- google.cloud.storage._media.common .DataCorruption on a mismatch and
3051
+ google.cloud.storage.exceptions .DataCorruption on a mismatch and
3052
3052
attempting to delete the corrupted file. Supported values are
3053
3053
"md5", "crc32c" and None. The default is None.
3054
3054
@@ -3165,7 +3165,7 @@ def create_resumable_upload_session(
3165
3165
(Optional) The type of checksum to compute to verify
3166
3166
the integrity of the object. After the upload is complete, the
3167
3167
server-computed checksum of the resulting object will be checked
3168
- and google.cloud.storage._media.common .DataCorruption will be raised on
3168
+ and google.cloud.storage.exceptions .DataCorruption will be raised on
3169
3169
a mismatch. On a validation failure, the client will attempt to
3170
3170
delete the uploaded object automatically. Supported values
3171
3171
are "md5", "crc32c" and None. The default is None.
0 commit comments