Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

KmipDeleteClient.md

File metadata and controls

33 lines (24 loc) · 1.24 KB

KmipDeleteClient

Properties

Name Type Description Notes
client_id str [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str [optional]
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]

Example

from akeyless.models.kmip_delete_client import KmipDeleteClient

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

# convert the object into a dict
kmip_delete_client_dict = kmip_delete_client_instance.to_dict()
# create an instance of KmipDeleteClient from a dict
kmip_delete_client_from_dict = KmipDeleteClient.from_dict(kmip_delete_client_dict)

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