Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.25 KB

WindowsTargetDetails.md

File metadata and controls

37 lines (28 loc) · 1.25 KB

WindowsTargetDetails

WindowsTargetDetails

Properties

Name Type Description Notes
certificate str [optional]
connection_type str [optional]
domain_name str [optional]
hostname str [optional]
password str [optional]
port str [optional]
use_tls bool [optional]
username str [optional]

Example

from akeyless.models.windows_target_details import WindowsTargetDetails

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

# convert the object into a dict
windows_target_details_dict = windows_target_details_instance.to_dict()
# create an instance of WindowsTargetDetails from a dict
windows_target_details_from_dict = WindowsTargetDetails.from_dict(windows_target_details_dict)

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