SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_destroy_action Event

Fires when an object destruction request is received.

Syntax

class KMIPServerDestroyActionEventParams(object):
  @property
  def connection_id() -> int: ...
  @property
  def unique_identifier() -> str: ...
  @property
  def object_type() -> int: ...
  @property
  def object_state() -> int: ...
  @property
  def remove() -> bool: ...
  @remove.setter
  def remove(value) -> None: ...

# In class KMIPServer:
@property
def on_destroy_action() -> Callable[[KMIPServerDestroyActionEventParams], None]: ...
@on_destroy_action.setter
def on_destroy_action(event_hook: Callable[[KMIPServerDestroyActionEventParams], None]) -> None: ...

Remarks

The class fires this event when it receives a request from the client to destroy and existing object. Set Remove to true to proceed with the destruction, or to false to reject the request.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Python Edition - Version 20.0 [Build 8154]