TagList Event

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

Syntax

class AzureSecretsTagListEventParams {
public:
  const QString &SecretName();
  const QString &VersionId();
  const QString &Name();
  const QString &Value();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void TagList(AzureSecretsTagListEventParams *e);
// Or, subclass AzureSecrets and override this emitter function. virtual int FireTagList(AzureSecretsTagListEventParams *e) {...}

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 Qt Edition - Version 20.0 [Build 8157]