Class: OvirtSDK4::AffinityLabelHostsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(host, opts = {}) ⇒ Host
Add a label to a host.
-
#host_service(id) ⇒ AffinityLabelHostService
A link to the specific label-host assignment to allow label removal.
-
#list(opts = {}) ⇒ Array<Host>
List all hosts with the label.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(host, opts = {}) ⇒ Host
Add a label to a host.
2025 2026 2027 |
# File 'lib/ovirtsdk4/services.rb', line 2025 def add(host, opts = {}) internal_add(host, Host, ADD, opts) end |
#host_service(id) ⇒ AffinityLabelHostService
A link to the specific label-host assignment to allow label removal.
2068 2069 2070 |
# File 'lib/ovirtsdk4/services.rb', line 2068 def host_service(id) AffinityLabelHostService.new(self, id) end |
#list(opts = {}) ⇒ Array<Host>
List all hosts with the label.
The order of the returned hosts isn’t guaranteed.
2056 2057 2058 |
# File 'lib/ovirtsdk4/services.rb', line 2056 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 |
# File 'lib/ovirtsdk4/services.rb', line 2079 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return host_service(path) end return host_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |