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/hp/models/network/port.rb

51 lines
992 B
Ruby
Raw Normal View History

require 'fog/core/model'
module Fog
module HP
class Network
class Port < Fog::Model
identity :id
attribute :name
attribute :network_id
attribute :tenant_id
attribute :fixed_ips
attribute :mac_address
attribute :status
attribute :admin_state_up
attribute :device_id
attribute :device_owner
attribute :security_groups
def destroy
requires :id
service.delete_port(id)
true
end
def save
requires :network_id
identity ? update : create
end
private
def create
requires :network_id
merge_attributes(service.create_port(network_id, attributes).body['port'])
true
end
def update
requires :id, :network_id
merge_attributes(service.update_port(id, attributes).body['port'])
true
end
end
end
end
end