Class: Bosh::Clouds::InternalCpi

Inherits:
Object
  • Object
show all
Defined in:
lib/cloud/internal_cpi.rb

Instance Method Summary collapse

Constructor Details

#initialize(cloud) ⇒ InternalCpi

Returns a new instance of InternalCpi.



3
4
5
# File 'lib/cloud/internal_cpi.rb', line 3

def initialize(cloud)
  @cloud = cloud
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_sym, *arguments, &block) ⇒ Object (private)



9
10
11
# File 'lib/cloud/internal_cpi.rb', line 9

def method_missing(method_sym, *arguments, &block)
  invoke_cpi_method(method_sym, arguments)
end