| Name |
Type |
Description |
Notes |
| cpu |
int |
|
[optional] |
| created_at |
datetime |
|
[optional] |
| disk |
int |
|
[optional] |
| display_name |
str |
|
[optional] |
| ephemeral |
int |
|
[optional] |
| features |
object |
|
[optional] |
| gpu |
str |
|
[optional] |
| gpu_count |
int |
|
[optional] |
| id |
int |
|
[optional] |
| labels |
List[LableResonse] |
|
[optional] |
| name |
str |
|
[optional] |
| ram |
float |
|
[optional] |
| region_name |
str |
|
[optional] |
| stock_available |
bool |
|
[optional] |
from hyperstack.models.flavor_fields import FlavorFields
# TODO update the JSON string below
json = "{}"
# create an instance of FlavorFields from a JSON string
flavor_fields_instance = FlavorFields.from_json(json)
# print the JSON string representation of the object
print(FlavorFields.to_json())
# convert the object into a dict
flavor_fields_dict = flavor_fields_instance.to_dict()
# create an instance of FlavorFields from a dict
flavor_fields_from_dict = FlavorFields.from_dict(flavor_fields_dict)
[Back to Model list] [Back to API list] [Back to README]