Method: Megam::Assembly#initialize

Defined in:
lib/megam/core/assembly.rb

#initialize(email = nil, api_key = nil) ⇒ Assembly

Returns a new instance of Assembly.



19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/megam/core/assembly.rb', line 19

def initialize(email=nil, api_key=nil)
  @id = nil
  @name = nil
  @tosca_type = nil
  @components = []
  @requirements = []
  @policies=[]
  @inputs = []
  @operations = []
  @outputs = []
  @status = nil
  @created_at = nil
  super(email, api_key)
end