A bucket we looked at but aren't migrating, with a reason.
| 84 | |
| 85 | @dataclass |
| 86 | class BucketSkip: |
| 87 | """A bucket we looked at but aren't migrating, with a reason.""" |
| 88 | |
| 89 | bucket: str |
| 90 | reason: str |
| 91 | |
| 92 | def to_dict(self) -> dict[str, Any]: |
| 93 | return {"bucket": self.bucket, "reason": self.reason} |
| 94 | |
| 95 | |
| 96 | @dataclass |