HostCheckResult
Resultado da verificação de integridade de um host/node remoto.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| status | HostCheckStatus | [optional] | |
| exists_in_db | bool | Indica se o registro existe no banco de dados. | [optional] |
| keys_present | bool | Indica se as chaves SSH estão configuradas corretamente. | [optional] |
| connection_ok | bool | Indica se a conexão remota foi bem-sucedida. | [optional] |
| message | str | Mensagem descritiva do resultado da verificação. | [optional] |
Example
from pldpro_sdk.api_client.models.host_check_result import HostCheckResult
# TODO update the JSON string below
json = "{}"
# create an instance of HostCheckResult from a JSON string
host_check_result_instance = HostCheckResult.from_json(json)
# print the JSON string representation of the object
print(HostCheckResult.to_json())
# convert the object into a dict
host_check_result_dict = host_check_result_instance.to_dict()
# create an instance of HostCheckResult from a dict
host_check_result_from_dict = HostCheckResult.from_dict(host_check_result_dict)