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/vcloudng/models/compute/vm_network.rb

31 lines
No EOL
691 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class Vcloudng
class VmNetwork < Fog::Model
identity :id
attribute :type
attribute :href
attribute :info
attribute :primary_network_connection_index
attribute :network
attribute :needs_customization
attribute :network_connection_index
attribute :is_connected
attribute :mac_address
attribute :ip_address_allocation_mode
def save
response = service.put_vm_network(id, attributes)
service.process_task(response.body)
end
end
end
end
end