mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
16 lines
276 B
Ruby
16 lines
276 B
Ruby
![]() |
require 'fog/core/model'
|
||
|
|
||
|
module Fog
|
||
|
module Compute
|
||
|
class SakuraCloud
|
||
|
class SshKey < Fog::Model
|
||
|
|
||
|
identity :id, :aliases => 'ID'
|
||
|
attribute :name, :aliases => 'Name'
|
||
|
attribute :public_key, :aliases => 'PublicKey'
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|