Skip to content

Files

Latest commit

ce5fd4a · Feb 20, 2025

History

History
30 lines (21 loc) · 1.06 KB

UpdateTargetDetails.md

File metadata and controls

30 lines (21 loc) · 1.06 KB

UpdateTargetDetails

updateTargetDetails is a command that updates an existing target. [Deprecated]

Properties

Name Type Description Notes
var_json bool Set output format to JSON [optional] [default to False]

Example

from akeyless.models.update_target_details import UpdateTargetDetails

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

# convert the object into a dict
update_target_details_dict = update_target_details_instance.to_dict()
# create an instance of UpdateTargetDetails from a dict
update_target_details_from_dict = UpdateTargetDetails.from_dict(update_target_details_dict)

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