davidjumani opened a new pull request #5963:
URL: https://github.com/apache/cloudstack/pull/5963
### Description
This PR adds the search by ID capability to SSH Key pairs to bring it at par
to accounts
Also needed as a UI fix
### Types of changes
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Bug fix (non-breaking change which fixes an issue)
- [x] Enhancement (improves an existing feature and functionality)
- [ ] Cleanup (Code refactoring and cleanup, that may add test cases)
#### Feature/Enhancement Scale
- [ ] Major
- [x] Minor
### Screenshots (if appropriate):
```
(localhost) 🐱 > list sshkeypairs id=5210f701-b13e-4ff7-8aab-eb24ee81526a
filter=id,name
{
"count": 1,
"sshkeypair": [
{
"id": "5210f701-b13e-4ff7-8aab-eb24ee81526a",
"name": "b"
}
]
}
(localhost) 🐱 > list sshkeypairs filter=id,name
{
"count": 3,
"sshkeypair": [
{
"id": "d1348275-e203-46bf-a985-45dc2a1b331f",
"name": "c"
},
{
"id": "5210f701-b13e-4ff7-8aab-eb24ee81526a",
"name": "b"
},
{
"id": "b4430a09-5b9d-49e4-be55-156e1b7ebd72",
"name": "a"
}
]
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]