Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.85 KB

CreateLinkedTarget.md

File metadata and controls

37 lines (28 loc) · 1.85 KB

CreateLinkedTarget

createLinkedTarget is a command that creates a new Linked Target which can inherit credentials from existing Targets. [Deprecated: Use target-create-linked command]

Properties

Name Type Description Notes
description str Description of the object [optional]
hosts str A comma seperated list of server hosts and server descriptions joined by semicolon ';' (i.e. 'server-dev.com;My Dev server,server-prod.com;My Prod server description') [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str Target name
parent_target_name str The parent Target name [optional]
token str Authentication token (see `/auth` and `/configure`) [optional]
type str Specifies the hosts type, relevant only when working without parent target [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]

Example

from akeyless.models.create_linked_target import CreateLinkedTarget

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

# convert the object into a dict
create_linked_target_dict = create_linked_target_instance.to_dict()
# create an instance of CreateLinkedTarget from a dict
create_linked_target_from_dict = CreateLinkedTarget.from_dict(create_linked_target_dict)

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