module Fog::Terremark::Vcloud
Public Class Methods
new(options={})
click to toggle source
# File lib/fog/terremark/vcloud.rb, line 18 def self.new(options={}) 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 check_shared_options(options) if Fog.mocking? Fog::Terremark::Vcloud::Mock.new(options) else Fog::Terremark::Vcloud::Real.new(options) end end
Public Instance Methods
default_ssh_key()
click to toggle source
# 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