Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.11 KB

File metadata and controls

34 lines (25 loc) · 1.11 KB

KeypairFields

Properties

Name Type Description Notes
created_at datetime [optional]
environment KeypairEnvironmentFields [optional]
fingerprint str [optional]
id int [optional]
name str [optional]
public_key str [optional]

Example

from hyperstack.models.keypair_fields import KeypairFields

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

# convert the object into a dict
keypair_fields_dict = keypair_fields_instance.to_dict()
# create an instance of KeypairFields from a dict
keypair_fields_from_dict = KeypairFields.from_dict(keypair_fields_dict)

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