class VagrantPlugins::Openstack::Domain::Item
Attributes
Public Class Methods
Source
# File lib/vagrant-openstack-provider/client/domain.rb, line 9 def initialize(id, name) @id = id @name = name end
Public Instance Methods
Source
# File lib/vagrant-openstack-provider/client/domain.rb, line 14 def ==(other) other.class == self.class && other.state == state end
Source
# File lib/vagrant-openstack-provider/client/domain.rb, line 18 def state [@id, @name] end