We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6ff7b3 commit 5601d25Copy full SHA for 5601d25
examples/buckets_management.py
@@ -36,7 +36,7 @@
36
List all Buckets
37
"""
38
print(f"\n------- List -------\n")
39
- buckets = buckets_api.find_buckets().buckets
+ buckets = buckets_api.find_buckets_iter()
40
print("\n".join([f" ---\n ID: {bucket.id}\n Name: {bucket.name}\n Retention: {bucket.retention_rules}"
41
for bucket in buckets]))
42
print("---")
0 commit comments