Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 941 Bytes

File metadata and controls

29 lines (20 loc) · 941 Bytes

UpdateKeypairName

Properties

Name Type Description Notes
name str The new key pair name.

Example

from hyperstack.models.update_keypair_name import UpdateKeypairName

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

# convert the object into a dict
update_keypair_name_dict = update_keypair_name_instance.to_dict()
# create an instance of UpdateKeypairName from a dict
update_keypair_name_from_dict = UpdateKeypairName.from_dict(update_keypair_name_dict)

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