Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.55 KB

File metadata and controls

36 lines (27 loc) · 1.55 KB

AppsecConfig

Properties

Name Type Description Notes
config Config [optional]
session_id str The unique identifier of the session this configuration belongs to [optional] [readonly]
template_id str The unique identifier of the CyPerf configuration template from which this configuration was created [optional] [readonly]
config_type_name str Used for API clients to decide what type of config they have loaded
data_model_version str The version of the data model used for this configuration [optional] [readonly]
id str The unique identifier of the CyPerf configuration [optional] [readonly]
links List[APILink] [optional]
name str The name of the configuration [optional]

Example

from cyperf.models.appsec_config import AppsecConfig

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

# convert the object into a dict
appsec_config_dict = appsec_config_instance.to_dict()
# create an instance of AppsecConfig from a dict
appsec_config_from_dict = AppsecConfig.from_dict(appsec_config_dict)

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