TagList Event

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

Syntax

ANSI (Cross Platform)
virtual int FireTagList(AzureSecretsTagListEventParams *e);
typedef struct {
const char *SecretName;
const char *VersionId;
const char *Name;
const char *Value; int reserved; } AzureSecretsTagListEventParams; Unicode (Windows) virtual INT FireTagList(AzureSecretsTagListEventParams *e);
typedef struct {
LPCWSTR SecretName;
LPCWSTR VersionId;
LPCWSTR Name;
LPCWSTR Value; INT reserved; } AzureSecretsTagListEventParams;
- (void)onTagList:(NSString*)secretName :(NSString*)versionId :(NSString*)name :(NSString*)value;
#define EID_AZURESECRETS_TAGLIST 9

virtual INT CLOUDKEYS_CALL FireTagList(LPSTR &lpszSecretName, LPSTR &lpszVersionId, LPSTR &lpszName, LPSTR &lpszValue);

Remarks

This event fires once for each tag returned when GetSecret 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 C++ Edition - Version 20.0 [Build 8157]