1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/xenserver/models/compute/vlan.rb
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

78 lines
2.4 KiB
Ruby

require 'fog/core/model'
module Fog
module Compute
class XenServer
class VLAN < Fog::Model
# API Reference here:
# @see http://docs.vmd.citrix.com/XenServer/6.2.0/1.0/en_gb/api/?c=VLAN
identity :reference
attribute :uuid
attribute :tag, :type => :integer
attribute :other_config
attribute :__untagged_pif, :aliases => :untagged_PIF
attribute :__tagged_pif, :aliases => :tagged_PIF
# @return [Fog::Compute::XenServer::PIF] interface on which traffic is tagged
#
# @see http://docs.vmd.citrix.com/XenServer/6.1.0/1.0/en_gb/api/?c=VLAN
#
def untagged_pif
service.pifs.get __untagged_pif
end
# @return [Fog::Compute::XenServer::PIF] interface on which traffic is untagged
#
# @see http://docs.vmd.citrix.com/XenServer/6.1.0/1.0/en_gb/api/?c=VLAN
#
def tagged_pif
service.pifs.get __tagged_pif
end
# Creates a new VLAN.
#
# service = Fog::Compute[:xenserver]
#
# # create a network 'foo-net'
# net = service.networks.create :name => 'foo-net'
#
# # get the eth0 physical interface where the
# # VLAN subinterface will be added
# pif = service.pifs.find { |p| p.device == 'eth0' and p.physical }
#
# Fog::Compute[:xenserver].vlans.create :tag => 123,
# :network => net,
# :pif => pif
def save
requires :tag
pif = attributes[:pif]
net = attributes[:network]
unless pif and net
raise Fog::Error.new 'save requires :pif and :network attributes'
end
ref = service.create_vlan attributes[:pif].reference,
tag,
attributes[:network].reference
data = service.get_record ref, 'VLAN'
merge_attributes data
true
end
# Destroys a VLAN.
#
# service = Fog::Compute[:xenserver]
#
# # Find VLAN 123 and destroy it
# (service.vlans.find { |v| v.tag == 123 }).destroy
#
def destroy
requires :reference
service.destroy_vlan reference
true
end
end
end
end
end