listManaged method
Lists platform-managed secret keys for a cloud capsule.
Returns only the keys of managed secrets (no values). Unlike list, this method filters to platform-managed secrets only, excluding user-created custom secrets.
The returned value reflects the secrets pending for the next deployment, which may differ from the currently active secrets.
Throws NotFoundException if the capsule is not found.
Implementation
_i2.Future<List<String>> listManaged(String cloudCapsuleId) =>
caller.callServerEndpoint<List<String>>('secrets', 'listManaged', {
'cloudCapsuleId': cloudCapsuleId,
});