Class: OvirtSDK4::GlusterHookService
- Inherits:
-
Service
- Object
- Service
- OvirtSDK4::GlusterHookService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary (collapse)
-
- (Object) disable(opts = {})
Resolves status conflict of hook among servers in cluster by disabling Gluster hook in all servers of the cluster.
-
- (Object) enable(opts = {})
Resolves status conflict of hook among servers in cluster by disabling Gluster hook in all servers of the cluster.
-
- (GlusterHook) get(opts = {})
Returns the representation of the object managed by this service.
-
- (Object) remove(opts = {})
Removes the this Gluster hook from all servers in cluster and deletes it from the database.
-
- (Object) resolve(opts = {})
Resolves missing hook conflict depending on the resolution type.
-
- (Service) service(path)
Locates the service corresponding to the given path.
-
- (String) to_s
Returns an string representation of this service.
Instance Method Details
- (Object) disable(opts = {})
Resolves status conflict of hook among servers in cluster by disabling Gluster hook in all servers of the
cluster. This updates the hook status to DISABLED
in database.
8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 |
# File 'lib/ovirtsdk4/services.rb', line 8641 def disable(opts = {}) action = Action.new(opts) writer = XmlWriter.new(nil, true) ActionWriter.write_one(action, writer) body = writer.string writer.close request = Request.new({ :method => :POST, :path => "#{@path}/disable", :body => body, }) response = @connection.send(request) case response.code when 200 action = check_action(response) else check_fault(response) end end |
- (Object) enable(opts = {})
Resolves status conflict of hook among servers in cluster by disabling Gluster hook in all servers of the
cluster. This updates the hook status to DISABLED
in database.
8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 |
# File 'lib/ovirtsdk4/services.rb', line 8665 def enable(opts = {}) action = Action.new(opts) writer = XmlWriter.new(nil, true) ActionWriter.write_one(action, writer) body = writer.string writer.close request = Request.new({ :method => :POST, :path => "#{@path}/enable", :body => body, }) response = @connection.send(request) case response.code when 200 action = check_action(response) else check_fault(response) end end |
- (GlusterHook) get(opts = {})
Returns the representation of the object managed by this service.
8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 |
# File 'lib/ovirtsdk4/services.rb', line 8692 def get(opts = {}) query = {} request = Request.new(:method => :GET, :path => @path, :query => query) response = @connection.send(request) case response.code when 200 begin reader = XmlReader.new(response.body) return GlusterHookReader.read_one(reader) ensure reader.close end else check_fault(response) end end |
- (Object) remove(opts = {})
Removes the this Gluster hook from all servers in cluster and deletes it from the database.
8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 |
# File 'lib/ovirtsdk4/services.rb', line 8716 def remove(opts = {}) query = {} value = opts[:async] unless value.nil? value = Writer.render_boolean(value) query['async'] = value end request = Request.new(:method => :DELETE, :path => @path, :query => query) response = @connection.send(request) unless response.code == 200 check_fault(response) end end |
- (Object) resolve(opts = {})
Resolves missing hook conflict depending on the resolution type.
For ADD
resolves by copying hook stored in engine database to all servers where the hook is missing. The
engine maintains a list of all servers where hook is missing.
For COPY
resolves conflict in hook content by copying hook stored in engine database to all servers where
the hook is missing. The engine maintains a list of all servers where the content is conflicting. If a host
id is passed as parameter, the hook content from the server is used as the master to copy to other servers
in cluster.
8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 |
# File 'lib/ovirtsdk4/services.rb', line 8741 def resolve(opts = {}) action = Action.new(opts) writer = XmlWriter.new(nil, true) ActionWriter.write_one(action, writer) body = writer.string writer.close request = Request.new({ :method => :POST, :path => "#{@path}/resolve", :body => body, }) response = @connection.send(request) case response.code when 200 action = check_action(response) else check_fault(response) end end |
- (Service) service(path)
Locates the service corresponding to the given path.
8768 8769 8770 8771 8772 8773 |
# File 'lib/ovirtsdk4/services.rb', line 8768 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |
- (String) to_s
Returns an string representation of this service.
8780 8781 8782 |
# File 'lib/ovirtsdk4/services.rb', line 8780 def to_s return "#<#{GlusterHookService}:#{@path}>" end |