mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-02-04 10:15:30 +00:00
1.3 KiB
1.3 KiB
GenericConnector
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] [readonly] | |
| type | ConnectorType | ||
| name | str | ||
| target | str | ||
| authentication | GenericConnectorAuth | [optional] | |
| last_modified_date | datetime | The date when the connector was last modified. | [optional] [readonly] |
| headers | **List[Header]** | [optional] |
Example
from thousandeyes_sdk.connectors.models.generic_connector import GenericConnector
# TODO update the JSON string below
json = "{}"
# create an instance of GenericConnector from a JSON string
generic_connector_instance = GenericConnector.from_json(json)
# print the JSON string representation of the object
print(GenericConnector.to_json())
# convert the object into a dict
generic_connector_dict = generic_connector_instance.to_dict()
# create an instance of GenericConnector from a dict
generic_connector_from_dict = GenericConnector.from_dict(generic_connector_dict)