Append RETENTION property to params.
(params: list[EncodableT], retention: int | None)
| 1475 | |
| 1476 | @staticmethod |
| 1477 | def _append_retention(params: list[EncodableT], retention: int | None): |
| 1478 | """Append RETENTION property to params.""" |
| 1479 | if retention is not None: |
| 1480 | params.extend(["RETENTION", retention]) |
| 1481 | |
| 1482 | @staticmethod |
| 1483 | def _append_labels(params: list[EncodableT], labels: dict[str, str] | None): |