Name | Type | Description | Notes |
---|---|---|---|
external_kms_id | ExternalKMSKeyId | [optional] | |
key_purpose | List[str] | [optional] | |
key_status | ClassicKeyStatusInfo | [optional] | |
target_assoc_id | str | [optional] | |
target_type | str | [optional] |
from akeyless.models.classic_key_target_info import ClassicKeyTargetInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ClassicKeyTargetInfo from a JSON string
classic_key_target_info_instance = ClassicKeyTargetInfo.from_json(json)
# print the JSON string representation of the object
print(ClassicKeyTargetInfo.to_json())
# convert the object into a dict
classic_key_target_info_dict = classic_key_target_info_instance.to_dict()
# create an instance of ClassicKeyTargetInfo from a dict
classic_key_target_info_from_dict = ClassicKeyTargetInfo.from_dict(classic_key_target_info_dict)