Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

CreateNativeK8STargetOutput.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

CreateNativeK8STargetOutput

Properties

Name Type Description Notes
target_id int [optional]

Example

from akeyless.models.create_native_k8_s_target_output import CreateNativeK8STargetOutput

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

# convert the object into a dict
create_native_k8_s_target_output_dict = create_native_k8_s_target_output_instance.to_dict()
# create an instance of CreateNativeK8STargetOutput from a dict
create_native_k8_s_target_output_from_dict = CreateNativeK8STargetOutput.from_dict(create_native_k8_s_target_output_dict)

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