(self, key)
| 137 | return self.client.bucket(self.bucket_name) |
| 138 | |
| 139 | def _get_blob(self, key): |
| 140 | key_bucket_path = f'{self.base_path}/{key}' if self.base_path else key |
| 141 | return self.bucket.blob(key_bucket_path) |
| 142 | |
| 143 | def _is_bucket_lifecycle_rule_exists(self): |
| 144 | bucket = self.bucket |
no outgoing calls