Class: CM::Resource::BOSH

Inherits:
Object
  • Object
show all
Defined in:
lib/CM/resource/BOSH.rb

Instance Method Summary collapse

Instance Method Details

#initialized?(options = {}) ⇒ Boolean


Checks

Returns:

  • (Boolean)


17
18
19
# File 'lib/CM/resource/BOSH.rb', line 17

def initialized?(options = {})
  true
end

#normalize(reload) ⇒ Object


Plugin interface



9
10
11
12
# File 'lib/CM/resource/BOSH.rb', line 9

def normalize(reload)
  super
  yield if block_given?
end

#operation_deployObject


Operations



27
28
29
30
31
# File 'lib/CM/resource/BOSH.rb', line 27

def operation_deploy
  super do
    data = {}
  end
end

#operation_destroyObject




35
36
37
38
39
# File 'lib/CM/resource/BOSH.rb', line 35

def operation_destroy
  super do
    data = {}
  end
end