fog/fog-proxmox

View on GitHub
lib/fog/proxmox/network/models/network.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true
# Copyright 2018 Tristan Robert

# This file is part of Fog::Proxmox.

# Fog::Proxmox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# Copyright 2018 Tristan Robert

# This file is part of Fog::Proxmox.

# Fog::Proxmox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# Fog::Proxmox is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.

# frozen_string_literal: true

module Fog
  module Proxmox
    class Network
      # class Network model
      class Network < Fog::Model
        identity  :iface
        attribute :node_id
        attribute :comments
        attribute :active
        attribute :autostart
        attribute :type
        attribute :gateway
        attribute :priority
        attribute :exists
        attribute :method
        attribute :method6
        attribute :netmask
        attribute :address
        attribute :families
        attribute :bridge_stp
        attribute :bridge_fd
        attribute :bridge_ports

        TYPES = %w[bridge bond eth alias vlan OVSBridge OVSBond OVSPort OVSIntPort any_bridge].freeze

        def save(options = {})
          requires :node_id
          path_params = { node: node_id }
          body_params = options.merge(attributes.reject { |attribute| [:node_id].include? attribute })
          service.create_network(path_params, body_params)
        end

        def update(options = {})
          requires :node_id, :iface, :type
          path_params = { node: node_id, iface: iface }
          body_params = options.merge(type: type)
          service.update_network(path_params, body_params)
        end

        def destroy
          requires :node_id, :iface
          path_params = { node: node_id, iface: iface }
          service.delete_network(path_params)
        end
      end
    end
  end
end