Sha256: 4094bf6116e1ea055576600bc9aee2ae969f531fc77c549bc03772dcbad11826
Contents?: true
Size: 1.2 KB
Versions: 39
Compression:
Stored size: 1.2 KB
Contents
require 'fog/openstack/models/model' module Fog module Baremetal class OpenStack class Port < Fog::OpenStack::Model identity :uuid attribute :address attribute :uuid # detailed attribute :created_at attribute :updated_at attribute :extra attribute :node_uuid def create requires :address, :node_uuid merge_attributes(service.create_port(attributes).body) self end def update(patch = nil) requires :uuid, :address, :node_uuid if patch merge_attributes(service.patch_port(uuid, patch).body) else # TODO: implement update_node method using PUT method and self.attributes # once it is supported by Ironic raise ArgumentError, 'You need to provide patch attribute. Ironic does not support update by hash yet, only by jsonpatch.' end self end def destroy requires :uuid service.delete_port(uuid) true end def metadata requires :uuid service.get_port(uuid).headers end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems