-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathstorage_copy_file_archived_generation.py
72 lines (59 loc) · 2.71 KB
/
storage_copy_file_archived_generation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
# Copyright 2020 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the 'License');
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
# [START storage_copy_file_archived_generation]
from google.cloud import storage
def copy_file_archived_generation(
bucket_name, blob_name, destination_bucket_name, destination_blob_name, generation
):
"""Copies a blob from one bucket to another with a new name with the same generation."""
# bucket_name = "your-bucket-name"
# blob_name = "your-object-name"
# destination_bucket_name = "destination-bucket-name"
# destination_blob_name = "destination-object-name"
# generation = 1579287380533984
storage_client = storage.Client()
source_bucket = storage_client.bucket(bucket_name)
source_blob = source_bucket.blob(blob_name)
destination_bucket = storage_client.bucket(destination_bucket_name)
# Optional: set a generation-match precondition to avoid potential race conditions
# and data corruptions. The request to copy is aborted if the object's
# generation number does not match your precondition. For a destination
# object that does not yet exist, set the if_generation_match precondition to 0.
# If the destination object already exists in your bucket, set instead a
# generation-match precondition using its generation number.
destination_generation_match_precondition = 0
# source_generation selects a specific revision of the source object, as opposed to the latest version.
blob_copy = source_bucket.copy_blob(
source_blob, destination_bucket, destination_blob_name, source_generation=generation, if_generation_match=destination_generation_match_precondition
)
print(
"Generation {} of the blob {} in bucket {} copied to blob {} in bucket {}.".format(
generation,
source_blob.name,
source_bucket.name,
blob_copy.name,
destination_bucket.name,
)
)
# [END storage_copy_file_archived_generation]
if __name__ == "__main__":
copy_file_archived_generation(
bucket_name=sys.argv[1],
blob_name=sys.argv[2],
destination_bucket_name=sys.argv[3],
destination_blob_name=sys.argv[4],
generation=sys.argv[5]
)