delete method
Deletes a custom (user-defined) secret from a cloud capsule.
Secret value changes are applied at the next successful deployment.
Throws NotFoundException if the capsule or the secret is not found.
Implementation
_i2.Future<void> delete({
required String key,
required String cloudCapsuleId,
}) => caller.callServerEndpoint<void>('secrets', 'delete', {
'key': key,
'cloudCapsuleId': cloudCapsuleId,
});