mirror of https://github.com/docker/docs.git
19 lines
456 B
Go
19 lines
456 B
Go
package amz
|
|
|
|
type CreateKeyPairResponse struct {
|
|
KeyName string `xml:"keyName"`
|
|
KeyFingerprint string `xml:"keyFingerprint"`
|
|
KeyMaterial []byte `xml:"keyMaterial"`
|
|
}
|
|
|
|
type ImportKeyPairResponse struct {
|
|
KeyName string `xml:"keyName"`
|
|
KeyFingerprint string `xml:"keyFingerprint"`
|
|
KeyMaterial []byte `xml:"keyMaterial"`
|
|
}
|
|
|
|
type KeyPair struct {
|
|
KeyFingerprint string `xml:"keyFingerprint"`
|
|
KeyName string `xml:"keyName"`
|
|
}
|