Sha256: ad3bc9182ce7e6fcbe1eef0d5b9f5d9d2c1f7afb2757af2fb131d4236ad84560
Contents?: true
Size: 996 Bytes
Versions: 20
Compression:
Stored size: 996 Bytes
Contents
require 'fog/openstack/models/model' module Fog module OpenStack class Identity class V3 class Endpoint < Fog::OpenStack::Model identity :id attribute :description attribute :interface attribute :service_id attribute :name attribute :region attribute :url attribute :links def to_s name end def destroy requires :id service.delete_endpoint(id) true end def update(attr = nil) requires :id, :name merge_attributes( service.update_endpoint(id, attr || attributes).body['endpoint'] ) self end def create requires :name merge_attributes( service.create_endpoint(attributes).body['endpoint'] ) self end end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems