| Name |
Type |
Description |
Notes |
| environment_name |
str |
The name of the environment where the key pair is being created. |
|
| name |
str |
The name of the key pair that is being created. |
|
| public_key |
str |
The public key that is being used to import an SSH key pair. |
|
from hyperstack.models.import_keypair_payload import ImportKeypairPayload
# TODO update the JSON string below
json = "{}"
# create an instance of ImportKeypairPayload from a JSON string
import_keypair_payload_instance = ImportKeypairPayload.from_json(json)
# print the JSON string representation of the object
print(ImportKeypairPayload.to_json())
# convert the object into a dict
import_keypair_payload_dict = import_keypair_payload_instance.to_dict()
# create an instance of ImportKeypairPayload from a dict
import_keypair_payload_from_dict = ImportKeypairPayload.from_dict(import_keypair_payload_dict)
[Back to Model list] [Back to API list] [Back to README]