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
quota
service. -
#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>
20045 20046 20047 |
# File 'lib/ovirtsdk4/services.rb', line 20045 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.
20079 20080 20081 |
# File 'lib/ovirtsdk4/services.rb', line 20079 def list(opts = {}) internal_get(LIST, opts) end |
#quota_service(id) ⇒ QuotaService
Locates the quota
service.
20090 20091 20092 |
# File 'lib/ovirtsdk4/services.rb', line 20090 def quota_service(id) QuotaService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 |
# File 'lib/ovirtsdk4/services.rb', line 20101 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 |