class documentation
class OverwriteStrategy(pb_enum.Enum): (source)
Undocumented
| Constant | __PB2 |
Undocumented |
| Constant | ALWAYS |
Always overwrite destination objects unconditionally. Use with caution - may cause data loss in destination. Suitable for full bucket synchronization. |
| Constant | IF |
Overwrite only if source object is newer than destination. Comparison based on Last-Modified timestamp. Recommended for incremental sync scenarios. |
| Constant | NEVER |
Never overwrite objects that exist in the destination. If object exists in destination bucket, skip it. Safest option to prevent data loss. |
| Constant | OVERWRITE |
Undocumented |
Inherited from Enum:
| Class Method | get |
Undocumented |
Undocumented
| Value |
|
Always overwrite destination objects unconditionally. Use with caution - may cause data loss in destination. Suitable for full bucket synchronization.
| Value |
|
Overwrite only if source object is newer than destination. Comparison based on Last-Modified timestamp. Recommended for incremental sync scenarios.
| Value |
|