Cloud Keys 2020 Python Edition

Questions / Feedback?

on_tag_list Event

Fires once for each tag returned when a secret is retrieved.

Syntax

class AzureSecretsTagListEventParams(object):
  @property
  def secret_name() -> str: ...
  @property
  def version_id() -> str: ...
  @property
  def name() -> str: ...
  @property
  def value() -> str: ...

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

Remarks

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

SecretName reflects the name of the secret.

VersionId reflects the Id of the secret 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]