Pular para conteúdo

AuthNodeRequestPubKey

Dados para registrar credenciais de acesso em um node.

Properties

Name Type Description Notes
usuario str Usuário de autenticação no node remoto.
workdir str Diretório de trabalho remoto associado a este usuário.

Example

from pldpro_sdk.api_client.models.auth_node_request_pub_key import AuthNodeRequestPubKey

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

# convert the object into a dict
auth_node_request_pub_key_dict = auth_node_request_pub_key_instance.to_dict()
# create an instance of AuthNodeRequestPubKey from a dict
auth_node_request_pub_key_from_dict = AuthNodeRequestPubKey.from_dict(auth_node_request_pub_key_dict)
[Back to Model list] [Back to API list] [Back to README]