The test configuration
| Name | Type | Description | Notes |
|---|---|---|---|
| attack_profiles | List[AttackProfile] | [optional] | |
| config_validation | ConfigValidation | [optional] | |
| custom_dashboards | CustomDashboards | [optional] | |
| expected_disk_space | List[ExpectedDiskSpace] | [optional] | |
| network_profiles | List[NetworkProfile] | [optional] | |
| traffic_profiles | List[ApplicationProfile] | [optional] | |
| links | List[APILink] | [optional] | |
| validate | List[bytearray] | [optional] |
from cyperf.models.config import Config
# TODO update the JSON string below
json = "{}"
# create an instance of Config from a JSON string
config_instance = Config.from_json(json)
# print the JSON string representation of the object
print(Config.to_json())
# convert the object into a dict
config_dict = config_instance.to_dict()
# create an instance of Config from a dict
config_from_dict = Config.from_dict(config_dict)