Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

KeypairEnvironmentFeatures

Properties

Name Type Description Notes
green_status str [optional]
network_optimised bool [optional]

Example

from hyperstack.models.keypair_environment_features import KeypairEnvironmentFeatures

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

# convert the object into a dict
keypair_environment_features_dict = keypair_environment_features_instance.to_dict()
# create an instance of KeypairEnvironmentFeatures from a dict
keypair_environment_features_from_dict = KeypairEnvironmentFeatures.from_dict(keypair_environment_features_dict)

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