mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-06-19 23:15:30 +00:00
1.3 KiB
1.3 KiB
ConjurConnector
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] [readonly] | |
| type | ConnectorType | ||
| name | str | ||
| target | str | ||
| last_modified_date | int | The date when the connector was last modified (Unix timestamp in milliseconds). | [optional] [readonly] |
| account | str | ||
| authentication | ConjurHostAuthentication | ||
| links | SelfLinks | [optional] |
Example
from thousandeyes_sdk.connectors.models.conjur_connector import ConjurConnector
# TODO update the JSON string below
json = "{}"
# create an instance of ConjurConnector from a JSON string
conjur_connector_instance = ConjurConnector.from_json(json)
# print the JSON string representation of the object
print(ConjurConnector.to_json())
# convert the object into a dict
conjur_connector_dict = conjur_connector_instance.to_dict()
# create an instance of ConjurConnector from a dict
conjur_connector_from_dict = ConjurConnector.from_dict(conjur_connector_dict)