Files
test/keywords/ceph/object/ceph_status_io_object.py
ppeng e55ba3fb7d Add ceph -s keywords
- Add is_ceph_healthy()
- Add wait_for_ceph_health_status()
- Add get_ceph_osd_count()
- Add get_ceph_mon_count()
- Add unit_tests ceph_s_table_parser_test.py

Change-Id: Ibda00d122a704d8741deb15be0b53afcf2d6654d
Signed-off-by: ppeng <peng.peng@windriver.com>
2025-05-14 15:14:40 -04:00

17 lines
276 B
Python

class CephIOObject:
"""
Object to hold the values of Ceph IO Object
"""
def __init__(self):
self.client: str = ""
def get_client(self) -> str:
"""
Getter for client
Returns: client
"""
return self.client