forked from docs/doc-exports
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: guoyanyan <guoyanyan3@huawei.com> Co-committed-by: guoyanyan <guoyanyan3@huawei.com>
8.3 KiB
8.3 KiB
Response Parameters for Querying SSH Key Pairs
Response parameters are as follows.
Parameter description
Parameter |
Type |
Description |
---|---|---|
keypairs |
List data structure |
Specifies key pairs. For details, see Table 1. |
Parameter |
Type |
Description |
---|---|---|
keypair |
Dictionary data structure |
Specifies details about a key pair. For details, see Table 2. |
Parameter |
Type |
Description |
---|---|---|
fingerprint |
String |
Specifies fingerprint information about the key pair. |
name |
String |
Specifies the key pair name. |
type |
String |
Specifies the key type, which is ssh by default. This parameter is supported in microversion 2.2 and later. |
public_key |
String |
Specifies information about the public key. |
Example response
{ "keypairs": [ { "keypair": { "fingerprint": "15:b0:f8:b3:f9:48:63:71:cf:7b:5b:38:6d:44:2d:4a", "name": "keypair-601a2305-4f25-41ed-89c6-2a966fc8027a", "type": "ssh", "public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQC+Eo/RZRngaGTkFs7I62ZjsIlO79KklKbMXi8F+KITD4bVQHHn+kV+4gRgkgCRbdoDqoGfpaDFs877DYX9n4z6FrAIZ4PES8TNKhatifpn9NdQYWA+IkU8CuvlEKGuFpKRi/k7JLos/gHi2hy7QUwgtRvcefvD/vgQZOVw/mGR9Q== Generated-by-Nova\n" } } ] }
Parent topic: Appendix