Get the openstack keypairs for a given account and scope
GET/v1/cloudaccounts/openstack/:uid/properties/keypairs
Get the openstack keypairs for a given account and scope
Request
Path Parameters
uid stringrequired
Query Parameters
project string
region string
domain string
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
 
(empty)
- application/json
 
- Schema
 - Example (from schema)
 
Schema
- Array [
 - ]
 
items object[]required
namestring
Name is used to refer to this keypair from other services within this region
publicKeystring
PublicKey is the public key from this pair, in OpenSSH format
{
  "items": [
    {
      "name": "string",
      "publicKey": "string"
    }
  ]
}
Loading...