You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The response should be aGetSecretMetadataResponse object (this is relevant for the callee if they need to update the metadata and need the version number). From the code:
/** * Gets the metadata key and value pairs for the given secret. * * @param identityId the authenticating identity id * @param secretId the secret id * @return a map of metadata key and value pairs for the secret * @throws DeltaServiceException upon exception */publicGetSecretMetadataResponsegetSecretMetadata(StringidentityId, StringsecretId)
throwsDeltaServiceException {
returnapiClient.getSecretMetadata(newSecretRequest(identityId, secretId));
}
The text was updated successfully, but these errors were encountered:
The response should be a
GetSecretMetadataResponse
object (this is relevant for the callee if they need to update the metadata and need the version number). From the code:The text was updated successfully, but these errors were encountered: