Class: CfCloudFormationFile

Inherits:
Object
  • Object
show all
Includes:
CfInner
Defined in:
lib/cf_factory/cloudformation/cf_cloudformation_file.rb

Instance Method Summary collapse

Methods included from CfInner

#generate, #generate_name, #set_quotes

Constructor Details

#initialize(name, content, group, owner, mode, options = {}) ⇒ CfCloudFormationFile

Returns a new instance of CfCloudFormationFile.



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/cf_factory/cloudformation/cf_cloudformation_file.rb', line 12

def initialize(name, content, group, owner, mode, options = {})
  @name = name
  @content = content
  @group = group
  @owner = owner
  @mode = mode
  @source = options[:source]
    #
  @additional_indent = 6
  #TODO: authentication + encoding missing
end

Instance Method Details

#additional_indentObject



24
25
26
# File 'lib/cf_factory/cloudformation/cf_cloudformation_file.rb', line 24

def additional_indent
  @additional_indent += 2
end

#get_cf_attributesObject



28
29
30
31
32
33
34
35
36
# File 'lib/cf_factory/cloudformation/cf_cloudformation_file.rb', line 28

def get_cf_attributes
  result = {} 
  result["content"] = @content
  result["group"] = @group
  result["owner"] = @owner      
  result["mode"] = @mode      
  result["source"] = @source unless @source.nil?  
  result
end

#get_nameObject



8
9
10
# File 'lib/cf_factory/cloudformation/cf_cloudformation_file.rb', line 8

def get_name
  @name
end