Class: CfFactory::CfInternetGateway

Inherits:
Object
  • Object
show all
Includes:
CfBase
Defined in:
lib/cf_factory/vpc/cf_internet_gateway.rb

Instance Method Summary collapse

Methods included from CfBase

#generate_ref, #get_deletion_policy, #get_name, #get_update_policy, #hash_to_string, #retrieve_attribute, #set_meta_data, #set_quotes, #set_tags

Constructor Details

#initialize(name, vpn) ⇒ CfInternetGateway

Returns a new instance of CfInternetGateway.



8
9
10
11
# File 'lib/cf_factory/vpc/cf_internet_gateway.rb', line 8

def initialize(name, vpn)
  @name = name
  @vpn = vpn
end

Instance Method Details

#generateObject



25
26
27
28
29
# File 'lib/cf_factory/vpc/cf_internet_gateway.rb', line 25

def generate
  result = super
  result += CfAttachGateway.new("Attach#{@name}", @vpn, self).generate
  result
end

#get_cf_attributesObject



17
18
19
# File 'lib/cf_factory/vpc/cf_internet_gateway.rb', line 17

def get_cf_attributes
  {}
end

#get_cf_propertiesObject



21
22
23
# File 'lib/cf_factory/vpc/cf_internet_gateway.rb', line 21

def get_cf_properties
  {}
end

#get_cf_typeObject



13
14
15
# File 'lib/cf_factory/vpc/cf_internet_gateway.rb', line 13

def get_cf_type
  "AWS::EC2::InternetGateway"
end