Cloud Keys 2020 Python Edition

Questions / Feedback?

on_tag_list Event

Fires once for each tag returned when a key's information is retrieved.

Syntax

class AzureKeysTagListEventParams(object):
  @property
  def key_name() -> str: ...
  @property
  def version_id() -> str: ...
  @property
  def name() -> str: ...
  @property
  def value() -> str: ...

# In class AzureKeys:
@property
def on_tag_list() -> Callable[[AzureKeysTagListEventParams], None]: ...
@on_tag_list.setter
def on_tag_list(event_hook: Callable[[AzureKeysTagListEventParams], None]) -> None: ...

Remarks

This event fires once for each tag returned when get_key_info is called.

KeyName reflects the name of the key.

VersionId reflects the Id of the key version.

Name reflects the name of the tag.

Value reflects the value of the tag.

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