Properties
| Name |
Type |
Description |
Notes |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
| url |
str |
|
[optional] |
| authentication_type |
str |
* `API` - API Key * `Password` - Username/Password * `SSH` - SSH |
[optional] |
| extras |
str |
Additional definitions that will be consumed by scanner |
[optional] |
| username |
str |
|
[optional] |
| password |
str |
|
[optional] |
| auth_title |
str |
|
[optional] |
| ssh |
str |
|
[optional] |
| api_key |
str |
|
[optional] |
| tool_type |
int |
|
[optional] |
Example
from defectdojo_api_generated.models.patched_tool_configuration_request import PatchedToolConfigurationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedToolConfigurationRequest from a JSON string
patched_tool_configuration_request_instance = PatchedToolConfigurationRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedToolConfigurationRequest.to_json())
# convert the object into a dict
patched_tool_configuration_request_dict = patched_tool_configuration_request_instance.to_dict()
# create an instance of PatchedToolConfigurationRequest from a dict
patched_tool_configuration_request_from_dict = PatchedToolConfigurationRequest.from_dict(patched_tool_configuration_request_dict)
[Back to Model list] [Back to API list] [Back to README]