LinkedTargetDetails
Name | Type | Description | Notes |
---|---|---|---|
hosts | Dict[str, str] | key hostname, value description | [optional] |
from akeyless.models.linked_target_details import LinkedTargetDetails
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedTargetDetails from a JSON string
linked_target_details_instance = LinkedTargetDetails.from_json(json)
# print the JSON string representation of the object
print(LinkedTargetDetails.to_json())
# convert the object into a dict
linked_target_details_dict = linked_target_details_instance.to_dict()
# create an instance of LinkedTargetDetails from a dict
linked_target_details_from_dict = LinkedTargetDetails.from_dict(linked_target_details_dict)