File tree Expand file tree Collapse file tree
ground_control_client/lib/src/protocol Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -923,6 +923,20 @@ class EndpointSecrets extends _i1.EndpointRef {
923923 caller.callServerEndpoint <List <String >>('secrets' , 'list' , {
924924 'cloudCapsuleId' : cloudCapsuleId,
925925 });
926+
927+ /// Lists platform-managed secret keys for a cloud capsule.
928+ ///
929+ /// Returns only the keys of managed secrets (no values). Unlike [list] ,
930+ /// this method filters to platform-managed secrets only, excluding
931+ /// user-created custom secrets.
932+ ///
933+ /// Requires capsule authorization.
934+ ///
935+ /// Throws [NotFoundException] if the capsule is not found.
936+ _i2.Future <List <String >> listManaged (String cloudCapsuleId) =>
937+ caller.callServerEndpoint <List <String >>('secrets' , 'listManaged' , {
938+ 'cloudCapsuleId' : cloudCapsuleId,
939+ });
926940}
927941
928942/// Endpoint for accessing capsule deployment status.
You can’t perform that action at this time.
0 commit comments