本文整理汇总了Python中kmip.services.kmip_client.KMIPProxy.revoke方法的典型用法代码示例。如果您正苦于以下问题:Python KMIPProxy.revoke方法的具体用法?Python KMIPProxy.revoke怎么用?Python KMIPProxy.revoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kmip.services.kmip_client.KMIPProxy
的用法示例。
在下文中一共展示了KMIPProxy.revoke方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: KMIPProxy
# 需要导入模块: from kmip.services.kmip_client import KMIPProxy [as 别名]
# 或者: from kmip.services.kmip_client.KMIPProxy import revoke [as 别名]
config = opts.config
uuid = opts.uuid
# Exit early if the UUID is not specified
if uuid is None:
logger.error('No UUID provided, exiting early from demo')
sys.exit()
# Build the client and connect to the server
client = KMIPProxy(config=config)
client.open()
# Activate the object
result = client.revoke(
uuid,
RevocationReasonCode.UNSPECIFIED,
'Demo revocation message')
client.close()
# Display operation results
logger.info('revoke() result status: {0}'.format(
result.result_status.value))
if result.result_status.value == ResultStatus.SUCCESS:
logger.info('revoked UUID: {0}'.format(result.unique_identifier.value))
else:
logger.info('revoke() result reason: {0}'.format(
result.result_reason.value))
logger.info('revoke() result message: {0}'.format(
result.result_message.value))