Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.33 KB

KmipClientDeleteRule.md

File metadata and controls

34 lines (25 loc) · 1.33 KB

KmipClientDeleteRule

Properties

Name Type Description Notes
client_id str [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str [optional]
path str Access path
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_client_delete_rule import KmipClientDeleteRule

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

# convert the object into a dict
kmip_client_delete_rule_dict = kmip_client_delete_rule_instance.to_dict()
# create an instance of KmipClientDeleteRule from a dict
kmip_client_delete_rule_from_dict = KmipClientDeleteRule.from_dict(kmip_client_delete_rule_dict)

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