You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
:type client: :class:`~google.cloud.storage.client.Client` or
2270
+
``NoneType``
2271
+
:param client: (Optional) The client to use. If not passed, falls back
2272
+
to the ``client`` stored on the current bucket.
2273
+
2274
+
:type if_generation_match: int
2275
+
:param if_generation_match:
2276
+
(Optional) See :ref:`using-if-generation-match`
2277
+
Note that the generation to be matched is that of the
2278
+
``destination`` blob.
2279
+
2280
+
:type if_generation_not_match: int
2281
+
:param if_generation_not_match:
2282
+
(Optional) See :ref:`using-if-generation-not-match`
2283
+
Note that the generation to be matched is that of the
2284
+
``destination`` blob.
2285
+
2286
+
:type if_metageneration_match: int
2287
+
:param if_metageneration_match:
2288
+
(Optional) See :ref:`using-if-metageneration-match`
2289
+
Note that the metageneration to be matched is that of the
2290
+
``destination`` blob.
2291
+
2292
+
:type if_metageneration_not_match: int
2293
+
:param if_metageneration_not_match:
2294
+
(Optional) See :ref:`using-if-metageneration-not-match`
2295
+
Note that the metageneration to be matched is that of the
2296
+
``destination`` blob.
2297
+
2298
+
:type if_source_generation_match: int
2299
+
:param if_source_generation_match:
2300
+
(Optional) Makes the operation conditional on whether the source
2301
+
object's generation matches the given value.
2302
+
2303
+
:type if_source_generation_not_match: int
2304
+
:param if_source_generation_not_match:
2305
+
(Optional) Makes the operation conditional on whether the source
2306
+
object's generation does not match the given value.
2307
+
2308
+
:type if_source_metageneration_match: int
2309
+
:param if_source_metageneration_match:
2310
+
(Optional) Makes the operation conditional on whether the source
2311
+
object's current metageneration matches the given value.
2312
+
2313
+
:type if_source_metageneration_not_match: int
2314
+
:param if_source_metageneration_not_match:
2315
+
(Optional) Makes the operation conditional on whether the source
2316
+
object's current metageneration does not match the given value.
2317
+
2318
+
:type timeout: float or tuple
2319
+
:param timeout:
2320
+
(Optional) The amount of time, in seconds, to wait
2321
+
for the server response. See: :ref:`configuring_timeouts`
2322
+
2323
+
:type retry: google.api_core.retry.Retry
2324
+
:param retry:
2325
+
(Optional) How to retry the RPC.
2326
+
See [Configuring Retries](https://cloud.google.com/python/docs/reference/storage/latest/retry_timeout).
0 commit comments