mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-15 06:45:17 +01:00
cf036df68b
Add more metrics validation Signed-off-by: Yang Jiao <jiaoya@vmware.com>
21 lines
748 B
Python
21 lines
748 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import base
|
|
from v2_swagger_client.rest import ApiException
|
|
|
|
|
|
class System_info(base.Base):
|
|
|
|
def __init__(self):
|
|
super(System_info, self).__init__(api_type="system_info")
|
|
|
|
def get_system_info(self, expect_status_code=200, expect_response_body=None, **kwargs):
|
|
try:
|
|
return_data, status_code, _ = self._get_client(**kwargs).get_system_info_with_http_info()
|
|
except ApiException as e:
|
|
base._assert_status_code(expect_status_code, e.status)
|
|
if expect_response_body is not None:
|
|
base._assert_status_body(expect_response_body, e.body)
|
|
return
|
|
base._assert_status_code(expect_status_code, status_code)
|
|
return return_data |