Class: OvirtSDK4::QuotasService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(quota, opts = {}) ⇒ Quota
Creates a new quota.
-
#list(opts = {}) ⇒ Array<Quota>
Lists quotas of a data center.
-
#quota_service(id) ⇒ QuotaService
Locates the
quotaservice. -
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(quota, opts = {}) ⇒ Quota
Creates a new quota.
An example of creating a new quota:
POST /ovirt-engine/api/datacenters/123/quotas
<quota>
<name>myquota</name>
<description>My new quota for virtual machines</description>
</quota>
18662 18663 18664 |
# File 'lib/ovirtsdk4/services.rb', line 18662 def add(quota, opts = {}) internal_add(quota, Quota, ADD, opts) end |
#list(opts = {}) ⇒ Array<Quota>
Lists quotas of a data center.
The order of the returned list of quotas isn’t guaranteed.
18696 18697 18698 |
# File 'lib/ovirtsdk4/services.rb', line 18696 def list(opts = {}) internal_get(LIST, opts) end |
#quota_service(id) ⇒ QuotaService
Locates the quota service.
18707 18708 18709 |
# File 'lib/ovirtsdk4/services.rb', line 18707 def quota_service(id) QuotaService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 |
# File 'lib/ovirtsdk4/services.rb', line 18718 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return quota_service(path) end return quota_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |