Cloud Keys 2020 Python Edition

Questions / Feedback?

on_label_list Event

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

Syntax

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

# In class GoogleKMS:
@property
def on_label_list() -> Callable[[GoogleKMSLabelListEventParams], None]: ...
@on_label_list.setter
def on_label_list(event_hook: Callable[[GoogleKMSLabelListEventParams], None]) -> None: ...

Remarks

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

KeyName reflects the name of the key.

Name reflects the name of the label.

Value reflects the value of the label.

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