Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.22 KB

InlineResponse200451ResultData.md

File metadata and controls

34 lines (25 loc) · 2.22 KB

InlineResponse200451ResultData

Properties

Name Type Description Notes
error str An error message about why system couldn't read a resource's status file. [optional]
name str The cPanel services, devices, and server health check points on the server. * A valid cPanel service. * `CPU Count` — The number of CPUs on the server. * `Disk mount (mount)` — The server's disk mounts, where `mount` represents the disk mount location. * `Server Load` — The server's CPU load. * `Memory Used` — The server's current memory use. * `Swap` — The server's swap space. [optional]
status InlineResponse200451ResultDataStatus [optional]
type str The type of resource. * `device` * `metric` * `service` [optional]
value InlineResponse200451ResultDataValue [optional]
version str The resource's software version. Important: The function only returns this value if a valid software version exists. [optional]

Example

from clientapi_cpanel.models.inline_response200451_result_data import InlineResponse200451ResultData

# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200451ResultData from a JSON string
inline_response200451_result_data_instance = InlineResponse200451ResultData.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200451ResultData.to_json())

# convert the object into a dict
inline_response200451_result_data_dict = inline_response200451_result_data_instance.to_dict()
# create an instance of InlineResponse200451ResultData from a dict
inline_response200451_result_data_from_dict = InlineResponse200451ResultData.from_dict(inline_response200451_result_data_dict)

[Back to Model list] [Back to API list] [Back to README]