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>
19909 19910 19911 |
# File 'lib/ovirtsdk4/services.rb', line 19909 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.
19943 19944 19945 |
# File 'lib/ovirtsdk4/services.rb', line 19943 def list(opts = {}) internal_get(LIST, opts) end |
#quota_service(id) ⇒ QuotaService
Locates the quota
service.
19954 19955 19956 |
# File 'lib/ovirtsdk4/services.rb', line 19954 def quota_service(id) QuotaService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 |
# File 'lib/ovirtsdk4/services.rb', line 19965 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 |