Module: Fog::Terremark::Vcloud
- Extended by:
- Shared
- Defined in:
- lib/fog/terremark/vcloud.rb
Defined Under Namespace
Modules: Bin, Defaults Classes: Mock, Real
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Shared
check_shared_options, shared_requires
Class Method Details
.new(options = {}) ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/fog/terremark/vcloud.rb', line 18 def self.new(={}) Fog::Logger.deprecation("Fog::Terremark::Vcloud is deprecated, to be replaced with Vcloud 1.0 someday/maybe [light_black](#{caller.first})[/]") unless @required shared_requires @required = true end () if Fog.mocking? Fog::Terremark::Vcloud::Mock.new() else Fog::Terremark::Vcloud::Real.new() end end |
Instance Method Details
#default_ssh_key ⇒ Object
100 101 102 103 104 105 106 107 |
# File 'lib/fog/terremark/vcloud.rb', line 100 def default_ssh_key if default_ssh_key @default_ssh_key ||= begin keys = get_keys_list(default_organization_id).body["Keys"] keys.find { |item| item["IsDefault"] == "true" } end end end |