1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
require 'fog/openstack/models/model'
module Fog
module OpenStack
class NFV
class Vnfd < Fog::OpenStack::Model
identity :id
attribute :service_types
attribute :description
attribute :tenant_id
attribute :mgmt_driver
attribute :infra_driver
attribute :name
attribute :vnf_attributes
# Attributes for create
attribute :vnfd
attribute :auth
def create(options = {})
merge_attributes(service.create_vnfd(default_options.merge(options)).body['vnfd'])
self
end
def update(_options = {})
raise Fog::OpenStack::Errors::InterfaceNotImplemented, "Method 'update' is not supported"
end
def save(options = {})
identity ? update(options) : create(options)
end
def destroy
requires :id
service.delete_vnfd(id)
true
end
def default_options
{
:vnfd => vnfd,
:auth => auth
}
end
def vnf_attributes
attributes['attributes']
end
end
end
end
end
|