Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.83 KB

VerifyDataWithClassicKey.md

File metadata and controls

38 lines (29 loc) · 1.83 KB

VerifyDataWithClassicKey

Properties

Name Type Description Notes
data str Data
display_id str The display id of the key to use in the verification process [optional]
hashed bool Defines whether the data should be hashed as part of the signing. If true, the data will not be hashed [optional] [default to False]
hashing_method str HashingMethod [optional] [default to 'SHA256']
var_json bool Set output format to JSON [optional] [default to False]
name str The name of the key to use in the verification process
signature str The data's signature in a Base64 format.
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]
version int classic key version

Example

from akeyless.models.verify_data_with_classic_key import VerifyDataWithClassicKey

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

# convert the object into a dict
verify_data_with_classic_key_dict = verify_data_with_classic_key_instance.to_dict()
# create an instance of VerifyDataWithClassicKey from a dict
verify_data_with_classic_key_from_dict = VerifyDataWithClassicKey.from_dict(verify_data_with_classic_key_dict)

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