ovirt-engine-sdk 4.2.0.beta1 → 4.2.0.beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.adoc +7 -0
- data/ext/ovirtsdk4c/ov_http_client.c +12 -3
- data/ext/ovirtsdk4c/ov_http_request.c +14 -0
- data/ext/ovirtsdk4c/ov_http_response.c +14 -0
- data/ext/ovirtsdk4c/ov_http_transfer.c +11 -0
- data/ext/ovirtsdk4c/ov_module.h +2 -2
- data/lib/ovirtsdk4/connection.rb +24 -0
- data/lib/ovirtsdk4/service.rb +36 -0
- data/lib/ovirtsdk4/services.rb +0 -2385
- data/lib/ovirtsdk4/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 677e7cb20143c1d58c68ccb70b53653e27a3bfd5
|
4
|
+
data.tar.gz: c268a9c965baeb53c39c8c286beadfb40014c655
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65aa1dfb36b4795a1ccea3e7b1e34e4b4e370adaee9dfad289ac73cb89911506b8a4c1e6c0296d4370feadc2060612323cfcdf961562c17f48efddd5f5b40732
|
7
|
+
data.tar.gz: 179b6e78d351c0627240af8df4279abe0a9825c68ffa64c3771be42751a92825b3a12d164a2b4b5b62a5604e24d71fbb246f183c1f1f03458fb53f31cf471115
|
data/CHANGES.adoc
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
|
3
3
|
This document describes the relevant changes between releases of the SDK.
|
4
4
|
|
5
|
+
== 4.2.0-beta2 / Nov 16 2017
|
6
|
+
|
7
|
+
Bug fixes:
|
8
|
+
|
9
|
+
* Don't include sensible data in `inspect`
|
10
|
+
https://bugzilla.redhat.com/1513620[#1513620].
|
11
|
+
|
5
12
|
== 4.2.0-beta1 / Nov 15 2017
|
6
13
|
|
7
14
|
Update to model 4.2.25:
|
@@ -1027,6 +1027,13 @@ static VALUE ov_http_client_wait(VALUE self, VALUE request) {
|
|
1027
1027
|
return Qnil;
|
1028
1028
|
}
|
1029
1029
|
|
1030
|
+
static VALUE ov_http_client_inspect(VALUE self) {
|
1031
|
+
ov_http_client_object* ptr;
|
1032
|
+
|
1033
|
+
ov_http_client_ptr(self, ptr);
|
1034
|
+
return rb_sprintf("#<%"PRIsVALUE":%p>", ov_http_client_class, ptr);
|
1035
|
+
}
|
1036
|
+
|
1030
1037
|
void ov_http_client_define(void) {
|
1031
1038
|
CURLcode code;
|
1032
1039
|
|
@@ -1042,9 +1049,11 @@ void ov_http_client_define(void) {
|
|
1042
1049
|
rb_define_method(ov_http_client_class, "initialize", ov_http_client_initialize, -1);
|
1043
1050
|
|
1044
1051
|
/* Define the methods: */
|
1045
|
-
rb_define_method(ov_http_client_class, "close",
|
1046
|
-
rb_define_method(ov_http_client_class, "
|
1047
|
-
rb_define_method(ov_http_client_class, "
|
1052
|
+
rb_define_method(ov_http_client_class, "close", ov_http_client_close, 0);
|
1053
|
+
rb_define_method(ov_http_client_class, "inspect", ov_http_client_inspect, 0);
|
1054
|
+
rb_define_method(ov_http_client_class, "send", ov_http_client_send, 1);
|
1055
|
+
rb_define_method(ov_http_client_class, "to_s", ov_http_client_inspect, 0);
|
1056
|
+
rb_define_method(ov_http_client_class, "wait", ov_http_client_wait, 1);
|
1048
1057
|
|
1049
1058
|
/* Define the symbols: */
|
1050
1059
|
CA_FILE_SYMBOL = ID2SYM(rb_intern("ca_file"));
|
@@ -300,6 +300,18 @@ static VALUE ov_http_request_set_connect_timeout(VALUE self, VALUE value) {
|
|
300
300
|
return Qnil;
|
301
301
|
}
|
302
302
|
|
303
|
+
static VALUE ov_http_request_inspect(VALUE self) {
|
304
|
+
ov_http_request_object* ptr;
|
305
|
+
|
306
|
+
ov_http_request_ptr(self, ptr);
|
307
|
+
return rb_sprintf(
|
308
|
+
"#<%"PRIsVALUE":%"PRIsVALUE" %"PRIsVALUE">",
|
309
|
+
ov_http_request_class,
|
310
|
+
ptr->method,
|
311
|
+
ptr->url
|
312
|
+
);
|
313
|
+
}
|
314
|
+
|
303
315
|
static VALUE ov_http_request_initialize(int argc, VALUE* argv, VALUE self) {
|
304
316
|
VALUE opts;
|
305
317
|
|
@@ -361,6 +373,8 @@ void ov_http_request_define(void) {
|
|
361
373
|
rb_define_method(ov_http_request_class, "timeout=", ov_http_request_set_timeout, 1);
|
362
374
|
rb_define_method(ov_http_request_class, "connect_timeout", ov_http_request_get_connect_timeout, 0);
|
363
375
|
rb_define_method(ov_http_request_class, "connect_timeout=", ov_http_request_set_connect_timeout, 1);
|
376
|
+
rb_define_method(ov_http_request_class, "inspect", ov_http_request_inspect, 0);
|
377
|
+
rb_define_method(ov_http_request_class, "to_s", ov_http_request_inspect, 0);
|
364
378
|
|
365
379
|
/* Define the symbols for the attributes: */
|
366
380
|
URL_SYMBOL = ID2SYM(rb_intern("url"));
|
@@ -146,6 +146,18 @@ static VALUE ov_http_response_set_message(VALUE self, VALUE value) {
|
|
146
146
|
return Qnil;
|
147
147
|
}
|
148
148
|
|
149
|
+
static VALUE ov_http_response_inspect(VALUE self) {
|
150
|
+
ov_http_response_object* ptr;
|
151
|
+
|
152
|
+
ov_http_response_ptr(self, ptr);
|
153
|
+
return rb_sprintf(
|
154
|
+
"#<%"PRIsVALUE":%"PRIsVALUE" %"PRIsVALUE">",
|
155
|
+
ov_http_response_class,
|
156
|
+
ptr->code,
|
157
|
+
ptr->message
|
158
|
+
);
|
159
|
+
}
|
160
|
+
|
149
161
|
static VALUE ov_http_response_initialize(int argc, VALUE* argv, VALUE self) {
|
150
162
|
VALUE opts;
|
151
163
|
|
@@ -187,6 +199,8 @@ void ov_http_response_define(void) {
|
|
187
199
|
rb_define_method(ov_http_response_class, "headers=", ov_http_response_set_headers, 1);
|
188
200
|
rb_define_method(ov_http_response_class, "message", ov_http_response_get_message, 0);
|
189
201
|
rb_define_method(ov_http_response_class, "message=", ov_http_response_set_message, 1);
|
202
|
+
rb_define_method(ov_http_response_class, "inspect", ov_http_response_inspect, 0);
|
203
|
+
rb_define_method(ov_http_response_class, "to_s", ov_http_response_inspect, 0);
|
190
204
|
|
191
205
|
/* Define the symbols: */
|
192
206
|
BODY_SYMBOL = ID2SYM(rb_intern("body"));
|
@@ -71,10 +71,21 @@ static VALUE ov_http_transfer_alloc(VALUE klass) {
|
|
71
71
|
return TypedData_Wrap_Struct(klass, &ov_http_transfer_type, ptr);
|
72
72
|
}
|
73
73
|
|
74
|
+
static VALUE ov_http_transfer_inspect(VALUE self) {
|
75
|
+
ov_http_transfer_object* ptr;
|
76
|
+
|
77
|
+
ov_http_transfer_ptr(self, ptr);
|
78
|
+
return rb_sprintf("#<%"PRIsVALUE":%p>", ov_http_transfer_class, ptr);
|
79
|
+
}
|
80
|
+
|
74
81
|
void ov_http_transfer_define(void) {
|
75
82
|
/* Define the class: */
|
76
83
|
ov_http_transfer_class = rb_define_class_under(ov_module, "HttpTransfer", rb_cData);
|
77
84
|
|
78
85
|
/* Define the constructor: */
|
79
86
|
rb_define_alloc_func(ov_http_transfer_class, ov_http_transfer_alloc);
|
87
|
+
|
88
|
+
/* Define the methods: */
|
89
|
+
rb_define_method(ov_http_transfer_class, "inspect", ov_http_transfer_inspect, 0);
|
90
|
+
rb_define_method(ov_http_transfer_class, "to_s", ov_http_transfer_inspect, 0);
|
80
91
|
}
|
data/ext/ovirtsdk4c/ov_module.h
CHANGED
@@ -17,10 +17,10 @@ limitations under the License.
|
|
17
17
|
#ifndef __OV_MODULE_H__
|
18
18
|
#define __OV_MODULE_H__
|
19
19
|
|
20
|
-
|
20
|
+
/* Module: */
|
21
21
|
extern VALUE ov_module;
|
22
22
|
|
23
|
-
|
23
|
+
/* Initialization function: */
|
24
24
|
extern void ov_module_define(void);
|
25
25
|
|
26
26
|
#endif
|
data/lib/ovirtsdk4/connection.rb
CHANGED
@@ -387,6 +387,30 @@ module OvirtSDK4
|
|
387
387
|
raise error
|
388
388
|
end
|
389
389
|
|
390
|
+
#
|
391
|
+
# Returns a string representation of the connection.
|
392
|
+
#
|
393
|
+
# @return [String] The string representation.
|
394
|
+
#
|
395
|
+
def inspect
|
396
|
+
"#<#{self.class.name}:#{@url}>"
|
397
|
+
end
|
398
|
+
|
399
|
+
#
|
400
|
+
# Returns a string representation of the connection.
|
401
|
+
#
|
402
|
+
# @return [String] The string representation.
|
403
|
+
#
|
404
|
+
def to_s
|
405
|
+
inspect
|
406
|
+
end
|
407
|
+
|
408
|
+
#
|
409
|
+
# Returns a string representation of the connection.
|
410
|
+
#
|
411
|
+
# @return [String] The string representation.
|
412
|
+
#
|
413
|
+
|
390
414
|
private
|
391
415
|
|
392
416
|
#
|
data/lib/ovirtsdk4/service.rb
CHANGED
@@ -45,6 +45,24 @@ module OvirtSDK4
|
|
45
45
|
raise response if response.is_a?(Exception)
|
46
46
|
@block.call(response)
|
47
47
|
end
|
48
|
+
|
49
|
+
#
|
50
|
+
# Returns a string representation of the future.
|
51
|
+
#
|
52
|
+
# @return [String] The string representation.
|
53
|
+
#
|
54
|
+
def inspect
|
55
|
+
"#<#{self.class.name}:#{@request.method} #{@request.url}>"
|
56
|
+
end
|
57
|
+
|
58
|
+
#
|
59
|
+
# Returns a string representation of the future.
|
60
|
+
#
|
61
|
+
# @return [String] The string representation.
|
62
|
+
#
|
63
|
+
def to_s
|
64
|
+
inspect
|
65
|
+
end
|
48
66
|
end
|
49
67
|
|
50
68
|
#
|
@@ -118,6 +136,24 @@ module OvirtSDK4
|
|
118
136
|
@parent.connection
|
119
137
|
end
|
120
138
|
|
139
|
+
#
|
140
|
+
# Returns a string representation of the service.
|
141
|
+
#
|
142
|
+
# @return [String] The string representation.
|
143
|
+
#
|
144
|
+
def inspect
|
145
|
+
"#<#{self.class.name}:#{absolute_path}>"
|
146
|
+
end
|
147
|
+
|
148
|
+
#
|
149
|
+
# Returns a string representation of the service.
|
150
|
+
#
|
151
|
+
# @return [String] The string representation.
|
152
|
+
#
|
153
|
+
def to_s
|
154
|
+
inspect
|
155
|
+
end
|
156
|
+
|
121
157
|
protected
|
122
158
|
|
123
159
|
#
|
data/lib/ovirtsdk4/services.rb
CHANGED
@@ -946,15 +946,6 @@ module OvirtSDK4
|
|
946
946
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
947
947
|
end
|
948
948
|
|
949
|
-
#
|
950
|
-
# Returns an string representation of this service.
|
951
|
-
#
|
952
|
-
# @return [String]
|
953
|
-
#
|
954
|
-
def to_s
|
955
|
-
"#<#{AffinityGroupService}:#{absolute_path}>"
|
956
|
-
end
|
957
|
-
|
958
949
|
end
|
959
950
|
|
960
951
|
class AffinityGroupVmService < Service
|
@@ -998,15 +989,6 @@ module OvirtSDK4
|
|
998
989
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
999
990
|
end
|
1000
991
|
|
1001
|
-
#
|
1002
|
-
# Returns an string representation of this service.
|
1003
|
-
#
|
1004
|
-
# @return [String]
|
1005
|
-
#
|
1006
|
-
def to_s
|
1007
|
-
"#<#{AffinityGroupVmService}:#{absolute_path}>"
|
1008
|
-
end
|
1009
|
-
|
1010
992
|
end
|
1011
993
|
|
1012
994
|
class AffinityGroupVmsService < Service
|
@@ -1116,15 +1098,6 @@ module OvirtSDK4
|
|
1116
1098
|
return vm_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1117
1099
|
end
|
1118
1100
|
|
1119
|
-
#
|
1120
|
-
# Returns an string representation of this service.
|
1121
|
-
#
|
1122
|
-
# @return [String]
|
1123
|
-
#
|
1124
|
-
def to_s
|
1125
|
-
"#<#{AffinityGroupVmsService}:#{absolute_path}>"
|
1126
|
-
end
|
1127
|
-
|
1128
1101
|
end
|
1129
1102
|
|
1130
1103
|
class AffinityGroupsService < Service
|
@@ -1242,15 +1215,6 @@ module OvirtSDK4
|
|
1242
1215
|
return group_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1243
1216
|
end
|
1244
1217
|
|
1245
|
-
#
|
1246
|
-
# Returns an string representation of this service.
|
1247
|
-
#
|
1248
|
-
# @return [String]
|
1249
|
-
#
|
1250
|
-
def to_s
|
1251
|
-
"#<#{AffinityGroupsService}:#{absolute_path}>"
|
1252
|
-
end
|
1253
|
-
|
1254
1218
|
end
|
1255
1219
|
|
1256
1220
|
class AffinityLabelService < Service
|
@@ -1379,15 +1343,6 @@ module OvirtSDK4
|
|
1379
1343
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
1380
1344
|
end
|
1381
1345
|
|
1382
|
-
#
|
1383
|
-
# Returns an string representation of this service.
|
1384
|
-
#
|
1385
|
-
# @return [String]
|
1386
|
-
#
|
1387
|
-
def to_s
|
1388
|
-
"#<#{AffinityLabelService}:#{absolute_path}>"
|
1389
|
-
end
|
1390
|
-
|
1391
1346
|
end
|
1392
1347
|
|
1393
1348
|
class AffinityLabelHostService < Service
|
@@ -1458,15 +1413,6 @@ module OvirtSDK4
|
|
1458
1413
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
1459
1414
|
end
|
1460
1415
|
|
1461
|
-
#
|
1462
|
-
# Returns an string representation of this service.
|
1463
|
-
#
|
1464
|
-
# @return [String]
|
1465
|
-
#
|
1466
|
-
def to_s
|
1467
|
-
"#<#{AffinityLabelHostService}:#{absolute_path}>"
|
1468
|
-
end
|
1469
|
-
|
1470
1416
|
end
|
1471
1417
|
|
1472
1418
|
class AffinityLabelHostsService < Service
|
@@ -1559,15 +1505,6 @@ module OvirtSDK4
|
|
1559
1505
|
return host_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1560
1506
|
end
|
1561
1507
|
|
1562
|
-
#
|
1563
|
-
# Returns an string representation of this service.
|
1564
|
-
#
|
1565
|
-
# @return [String]
|
1566
|
-
#
|
1567
|
-
def to_s
|
1568
|
-
"#<#{AffinityLabelHostsService}:#{absolute_path}>"
|
1569
|
-
end
|
1570
|
-
|
1571
1508
|
end
|
1572
1509
|
|
1573
1510
|
class AffinityLabelVmService < Service
|
@@ -1638,15 +1575,6 @@ module OvirtSDK4
|
|
1638
1575
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
1639
1576
|
end
|
1640
1577
|
|
1641
|
-
#
|
1642
|
-
# Returns an string representation of this service.
|
1643
|
-
#
|
1644
|
-
# @return [String]
|
1645
|
-
#
|
1646
|
-
def to_s
|
1647
|
-
"#<#{AffinityLabelVmService}:#{absolute_path}>"
|
1648
|
-
end
|
1649
|
-
|
1650
1578
|
end
|
1651
1579
|
|
1652
1580
|
class AffinityLabelVmsService < Service
|
@@ -1739,15 +1667,6 @@ module OvirtSDK4
|
|
1739
1667
|
return vm_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1740
1668
|
end
|
1741
1669
|
|
1742
|
-
#
|
1743
|
-
# Returns an string representation of this service.
|
1744
|
-
#
|
1745
|
-
# @return [String]
|
1746
|
-
#
|
1747
|
-
def to_s
|
1748
|
-
"#<#{AffinityLabelVmsService}:#{absolute_path}>"
|
1749
|
-
end
|
1750
|
-
|
1751
1670
|
end
|
1752
1671
|
|
1753
1672
|
class AffinityLabelsService < Service
|
@@ -1843,15 +1762,6 @@ module OvirtSDK4
|
|
1843
1762
|
return label_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1844
1763
|
end
|
1845
1764
|
|
1846
|
-
#
|
1847
|
-
# Returns an string representation of this service.
|
1848
|
-
#
|
1849
|
-
# @return [String]
|
1850
|
-
#
|
1851
|
-
def to_s
|
1852
|
-
"#<#{AffinityLabelsService}:#{absolute_path}>"
|
1853
|
-
end
|
1854
|
-
|
1855
1765
|
end
|
1856
1766
|
|
1857
1767
|
class AreaService < Service
|
@@ -1870,15 +1780,6 @@ module OvirtSDK4
|
|
1870
1780
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
1871
1781
|
end
|
1872
1782
|
|
1873
|
-
#
|
1874
|
-
# Returns an string representation of this service.
|
1875
|
-
#
|
1876
|
-
# @return [String]
|
1877
|
-
#
|
1878
|
-
def to_s
|
1879
|
-
"#<#{AreaService}:#{absolute_path}>"
|
1880
|
-
end
|
1881
|
-
|
1882
1783
|
end
|
1883
1784
|
|
1884
1785
|
class AssignedAffinityLabelService < Service
|
@@ -1949,15 +1850,6 @@ module OvirtSDK4
|
|
1949
1850
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
1950
1851
|
end
|
1951
1852
|
|
1952
|
-
#
|
1953
|
-
# Returns an string representation of this service.
|
1954
|
-
#
|
1955
|
-
# @return [String]
|
1956
|
-
#
|
1957
|
-
def to_s
|
1958
|
-
"#<#{AssignedAffinityLabelService}:#{absolute_path}>"
|
1959
|
-
end
|
1960
|
-
|
1961
1853
|
end
|
1962
1854
|
|
1963
1855
|
class AssignedAffinityLabelsService < Service
|
@@ -2050,15 +1942,6 @@ module OvirtSDK4
|
|
2050
1942
|
return label_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2051
1943
|
end
|
2052
1944
|
|
2053
|
-
#
|
2054
|
-
# Returns an string representation of this service.
|
2055
|
-
#
|
2056
|
-
# @return [String]
|
2057
|
-
#
|
2058
|
-
def to_s
|
2059
|
-
"#<#{AssignedAffinityLabelsService}:#{absolute_path}>"
|
2060
|
-
end
|
2061
|
-
|
2062
1945
|
end
|
2063
1946
|
|
2064
1947
|
class AssignedCpuProfileService < Service
|
@@ -2131,15 +2014,6 @@ module OvirtSDK4
|
|
2131
2014
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
2132
2015
|
end
|
2133
2016
|
|
2134
|
-
#
|
2135
|
-
# Returns an string representation of this service.
|
2136
|
-
#
|
2137
|
-
# @return [String]
|
2138
|
-
#
|
2139
|
-
def to_s
|
2140
|
-
"#<#{AssignedCpuProfileService}:#{absolute_path}>"
|
2141
|
-
end
|
2142
|
-
|
2143
2017
|
end
|
2144
2018
|
|
2145
2019
|
class AssignedCpuProfilesService < Service
|
@@ -2234,15 +2108,6 @@ module OvirtSDK4
|
|
2234
2108
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2235
2109
|
end
|
2236
2110
|
|
2237
|
-
#
|
2238
|
-
# Returns an string representation of this service.
|
2239
|
-
#
|
2240
|
-
# @return [String]
|
2241
|
-
#
|
2242
|
-
def to_s
|
2243
|
-
"#<#{AssignedCpuProfilesService}:#{absolute_path}>"
|
2244
|
-
end
|
2245
|
-
|
2246
2111
|
end
|
2247
2112
|
|
2248
2113
|
class AssignedDiskProfileService < Service
|
@@ -2315,15 +2180,6 @@ module OvirtSDK4
|
|
2315
2180
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
2316
2181
|
end
|
2317
2182
|
|
2318
|
-
#
|
2319
|
-
# Returns an string representation of this service.
|
2320
|
-
#
|
2321
|
-
# @return [String]
|
2322
|
-
#
|
2323
|
-
def to_s
|
2324
|
-
"#<#{AssignedDiskProfileService}:#{absolute_path}>"
|
2325
|
-
end
|
2326
|
-
|
2327
2183
|
end
|
2328
2184
|
|
2329
2185
|
class AssignedDiskProfilesService < Service
|
@@ -2418,15 +2274,6 @@ module OvirtSDK4
|
|
2418
2274
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2419
2275
|
end
|
2420
2276
|
|
2421
|
-
#
|
2422
|
-
# Returns an string representation of this service.
|
2423
|
-
#
|
2424
|
-
# @return [String]
|
2425
|
-
#
|
2426
|
-
def to_s
|
2427
|
-
"#<#{AssignedDiskProfilesService}:#{absolute_path}>"
|
2428
|
-
end
|
2429
|
-
|
2430
2277
|
end
|
2431
2278
|
|
2432
2279
|
class AssignedPermissionsService < Service
|
@@ -2841,15 +2688,6 @@ module OvirtSDK4
|
|
2841
2688
|
return permission_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2842
2689
|
end
|
2843
2690
|
|
2844
|
-
#
|
2845
|
-
# Returns an string representation of this service.
|
2846
|
-
#
|
2847
|
-
# @return [String]
|
2848
|
-
#
|
2849
|
-
def to_s
|
2850
|
-
"#<#{AssignedPermissionsService}:#{absolute_path}>"
|
2851
|
-
end
|
2852
|
-
|
2853
2691
|
end
|
2854
2692
|
|
2855
2693
|
class AssignedRolesService < Service
|
@@ -2917,15 +2755,6 @@ module OvirtSDK4
|
|
2917
2755
|
return role_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2918
2756
|
end
|
2919
2757
|
|
2920
|
-
#
|
2921
|
-
# Returns an string representation of this service.
|
2922
|
-
#
|
2923
|
-
# @return [String]
|
2924
|
-
#
|
2925
|
-
def to_s
|
2926
|
-
"#<#{AssignedRolesService}:#{absolute_path}>"
|
2927
|
-
end
|
2928
|
-
|
2929
2758
|
end
|
2930
2759
|
|
2931
2760
|
class AssignedTagService < Service
|
@@ -3020,15 +2849,6 @@ module OvirtSDK4
|
|
3020
2849
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
3021
2850
|
end
|
3022
2851
|
|
3023
|
-
#
|
3024
|
-
# Returns an string representation of this service.
|
3025
|
-
#
|
3026
|
-
# @return [String]
|
3027
|
-
#
|
3028
|
-
def to_s
|
3029
|
-
"#<#{AssignedTagService}:#{absolute_path}>"
|
3030
|
-
end
|
3031
|
-
|
3032
2852
|
end
|
3033
2853
|
|
3034
2854
|
class AssignedTagsService < Service
|
@@ -3155,15 +2975,6 @@ module OvirtSDK4
|
|
3155
2975
|
return tag_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
3156
2976
|
end
|
3157
2977
|
|
3158
|
-
#
|
3159
|
-
# Returns an string representation of this service.
|
3160
|
-
#
|
3161
|
-
# @return [String]
|
3162
|
-
#
|
3163
|
-
def to_s
|
3164
|
-
"#<#{AssignedTagsService}:#{absolute_path}>"
|
3165
|
-
end
|
3166
|
-
|
3167
2978
|
end
|
3168
2979
|
|
3169
2980
|
class AssignedVnicProfileService < Service
|
@@ -3251,15 +3062,6 @@ module OvirtSDK4
|
|
3251
3062
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
3252
3063
|
end
|
3253
3064
|
|
3254
|
-
#
|
3255
|
-
# Returns an string representation of this service.
|
3256
|
-
#
|
3257
|
-
# @return [String]
|
3258
|
-
#
|
3259
|
-
def to_s
|
3260
|
-
"#<#{AssignedVnicProfileService}:#{absolute_path}>"
|
3261
|
-
end
|
3262
|
-
|
3263
3065
|
end
|
3264
3066
|
|
3265
3067
|
class AssignedVnicProfilesService < Service
|
@@ -3354,15 +3156,6 @@ module OvirtSDK4
|
|
3354
3156
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
3355
3157
|
end
|
3356
3158
|
|
3357
|
-
#
|
3358
|
-
# Returns an string representation of this service.
|
3359
|
-
#
|
3360
|
-
# @return [String]
|
3361
|
-
#
|
3362
|
-
def to_s
|
3363
|
-
"#<#{AssignedVnicProfilesService}:#{absolute_path}>"
|
3364
|
-
end
|
3365
|
-
|
3366
3159
|
end
|
3367
3160
|
|
3368
3161
|
class AttachedStorageDomainService < Service
|
@@ -3555,15 +3348,6 @@ module OvirtSDK4
|
|
3555
3348
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
3556
3349
|
end
|
3557
3350
|
|
3558
|
-
#
|
3559
|
-
# Returns an string representation of this service.
|
3560
|
-
#
|
3561
|
-
# @return [String]
|
3562
|
-
#
|
3563
|
-
def to_s
|
3564
|
-
"#<#{AttachedStorageDomainService}:#{absolute_path}>"
|
3565
|
-
end
|
3566
|
-
|
3567
3351
|
end
|
3568
3352
|
|
3569
3353
|
class AttachedStorageDomainDisksService < Service
|
@@ -3699,15 +3483,6 @@ module OvirtSDK4
|
|
3699
3483
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
3700
3484
|
end
|
3701
3485
|
|
3702
|
-
#
|
3703
|
-
# Returns an string representation of this service.
|
3704
|
-
#
|
3705
|
-
# @return [String]
|
3706
|
-
#
|
3707
|
-
def to_s
|
3708
|
-
"#<#{AttachedStorageDomainDisksService}:#{absolute_path}>"
|
3709
|
-
end
|
3710
|
-
|
3711
3486
|
end
|
3712
3487
|
|
3713
3488
|
class AttachedStorageDomainsService < Service
|
@@ -3802,15 +3577,6 @@ module OvirtSDK4
|
|
3802
3577
|
return storage_domain_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
3803
3578
|
end
|
3804
3579
|
|
3805
|
-
#
|
3806
|
-
# Returns an string representation of this service.
|
3807
|
-
#
|
3808
|
-
# @return [String]
|
3809
|
-
#
|
3810
|
-
def to_s
|
3811
|
-
"#<#{AttachedStorageDomainsService}:#{absolute_path}>"
|
3812
|
-
end
|
3813
|
-
|
3814
3580
|
end
|
3815
3581
|
|
3816
3582
|
class BalanceService < Service
|
@@ -3886,15 +3652,6 @@ module OvirtSDK4
|
|
3886
3652
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
3887
3653
|
end
|
3888
3654
|
|
3889
|
-
#
|
3890
|
-
# Returns an string representation of this service.
|
3891
|
-
#
|
3892
|
-
# @return [String]
|
3893
|
-
#
|
3894
|
-
def to_s
|
3895
|
-
"#<#{BalanceService}:#{absolute_path}>"
|
3896
|
-
end
|
3897
|
-
|
3898
3655
|
end
|
3899
3656
|
|
3900
3657
|
class BalancesService < Service
|
@@ -3992,15 +3749,6 @@ module OvirtSDK4
|
|
3992
3749
|
return balance_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
3993
3750
|
end
|
3994
3751
|
|
3995
|
-
#
|
3996
|
-
# Returns an string representation of this service.
|
3997
|
-
#
|
3998
|
-
# @return [String]
|
3999
|
-
#
|
4000
|
-
def to_s
|
4001
|
-
"#<#{BalancesService}:#{absolute_path}>"
|
4002
|
-
end
|
4003
|
-
|
4004
3752
|
end
|
4005
3753
|
|
4006
3754
|
class BookmarkService < Service
|
@@ -4141,15 +3889,6 @@ module OvirtSDK4
|
|
4141
3889
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4142
3890
|
end
|
4143
3891
|
|
4144
|
-
#
|
4145
|
-
# Returns an string representation of this service.
|
4146
|
-
#
|
4147
|
-
# @return [String]
|
4148
|
-
#
|
4149
|
-
def to_s
|
4150
|
-
"#<#{BookmarkService}:#{absolute_path}>"
|
4151
|
-
end
|
4152
|
-
|
4153
3892
|
end
|
4154
3893
|
|
4155
3894
|
class BookmarksService < Service
|
@@ -4280,15 +4019,6 @@ module OvirtSDK4
|
|
4280
4019
|
return bookmark_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
4281
4020
|
end
|
4282
4021
|
|
4283
|
-
#
|
4284
|
-
# Returns an string representation of this service.
|
4285
|
-
#
|
4286
|
-
# @return [String]
|
4287
|
-
#
|
4288
|
-
def to_s
|
4289
|
-
"#<#{BookmarksService}:#{absolute_path}>"
|
4290
|
-
end
|
4291
|
-
|
4292
4022
|
end
|
4293
4023
|
|
4294
4024
|
class ClusterService < Service
|
@@ -4657,15 +4387,6 @@ module OvirtSDK4
|
|
4657
4387
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4658
4388
|
end
|
4659
4389
|
|
4660
|
-
#
|
4661
|
-
# Returns an string representation of this service.
|
4662
|
-
#
|
4663
|
-
# @return [String]
|
4664
|
-
#
|
4665
|
-
def to_s
|
4666
|
-
"#<#{ClusterService}:#{absolute_path}>"
|
4667
|
-
end
|
4668
|
-
|
4669
4390
|
end
|
4670
4391
|
|
4671
4392
|
class ClusterEnabledFeatureService < Service
|
@@ -4759,15 +4480,6 @@ module OvirtSDK4
|
|
4759
4480
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4760
4481
|
end
|
4761
4482
|
|
4762
|
-
#
|
4763
|
-
# Returns an string representation of this service.
|
4764
|
-
#
|
4765
|
-
# @return [String]
|
4766
|
-
#
|
4767
|
-
def to_s
|
4768
|
-
"#<#{ClusterEnabledFeatureService}:#{absolute_path}>"
|
4769
|
-
end
|
4770
|
-
|
4771
4483
|
end
|
4772
4484
|
|
4773
4485
|
class ClusterEnabledFeaturesService < Service
|
@@ -4891,15 +4603,6 @@ module OvirtSDK4
|
|
4891
4603
|
return feature_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
4892
4604
|
end
|
4893
4605
|
|
4894
|
-
#
|
4895
|
-
# Returns an string representation of this service.
|
4896
|
-
#
|
4897
|
-
# @return [String]
|
4898
|
-
#
|
4899
|
-
def to_s
|
4900
|
-
"#<#{ClusterEnabledFeaturesService}:#{absolute_path}>"
|
4901
|
-
end
|
4902
|
-
|
4903
4606
|
end
|
4904
4607
|
|
4905
4608
|
class ClusterExternalProvidersService < Service
|
@@ -4949,15 +4652,6 @@ module OvirtSDK4
|
|
4949
4652
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4950
4653
|
end
|
4951
4654
|
|
4952
|
-
#
|
4953
|
-
# Returns an string representation of this service.
|
4954
|
-
#
|
4955
|
-
# @return [String]
|
4956
|
-
#
|
4957
|
-
def to_s
|
4958
|
-
"#<#{ClusterExternalProvidersService}:#{absolute_path}>"
|
4959
|
-
end
|
4960
|
-
|
4961
4655
|
end
|
4962
4656
|
|
4963
4657
|
class ClusterFeatureService < Service
|
@@ -5021,15 +4715,6 @@ module OvirtSDK4
|
|
5021
4715
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
5022
4716
|
end
|
5023
4717
|
|
5024
|
-
#
|
5025
|
-
# Returns an string representation of this service.
|
5026
|
-
#
|
5027
|
-
# @return [String]
|
5028
|
-
#
|
5029
|
-
def to_s
|
5030
|
-
"#<#{ClusterFeatureService}:#{absolute_path}>"
|
5031
|
-
end
|
5032
|
-
|
5033
4718
|
end
|
5034
4719
|
|
5035
4720
|
class ClusterFeaturesService < Service
|
@@ -5109,15 +4794,6 @@ module OvirtSDK4
|
|
5109
4794
|
return feature_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
5110
4795
|
end
|
5111
4796
|
|
5112
|
-
#
|
5113
|
-
# Returns an string representation of this service.
|
5114
|
-
#
|
5115
|
-
# @return [String]
|
5116
|
-
#
|
5117
|
-
def to_s
|
5118
|
-
"#<#{ClusterFeaturesService}:#{absolute_path}>"
|
5119
|
-
end
|
5120
|
-
|
5121
4797
|
end
|
5122
4798
|
|
5123
4799
|
class ClusterLevelService < Service
|
@@ -5211,15 +4887,6 @@ module OvirtSDK4
|
|
5211
4887
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
5212
4888
|
end
|
5213
4889
|
|
5214
|
-
#
|
5215
|
-
# Returns an string representation of this service.
|
5216
|
-
#
|
5217
|
-
# @return [String]
|
5218
|
-
#
|
5219
|
-
def to_s
|
5220
|
-
"#<#{ClusterLevelService}:#{absolute_path}>"
|
5221
|
-
end
|
5222
|
-
|
5223
4890
|
end
|
5224
4891
|
|
5225
4892
|
class ClusterLevelsService < Service
|
@@ -5301,15 +4968,6 @@ module OvirtSDK4
|
|
5301
4968
|
return level_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
5302
4969
|
end
|
5303
4970
|
|
5304
|
-
#
|
5305
|
-
# Returns an string representation of this service.
|
5306
|
-
#
|
5307
|
-
# @return [String]
|
5308
|
-
#
|
5309
|
-
def to_s
|
5310
|
-
"#<#{ClusterLevelsService}:#{absolute_path}>"
|
5311
|
-
end
|
5312
|
-
|
5313
4971
|
end
|
5314
4972
|
|
5315
4973
|
class ClusterNetworkService < Service
|
@@ -5406,15 +5064,6 @@ module OvirtSDK4
|
|
5406
5064
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
5407
5065
|
end
|
5408
5066
|
|
5409
|
-
#
|
5410
|
-
# Returns an string representation of this service.
|
5411
|
-
#
|
5412
|
-
# @return [String]
|
5413
|
-
#
|
5414
|
-
def to_s
|
5415
|
-
"#<#{ClusterNetworkService}:#{absolute_path}>"
|
5416
|
-
end
|
5417
|
-
|
5418
5067
|
end
|
5419
5068
|
|
5420
5069
|
class ClusterNetworksService < Service
|
@@ -5523,15 +5172,6 @@ module OvirtSDK4
|
|
5523
5172
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
5524
5173
|
end
|
5525
5174
|
|
5526
|
-
#
|
5527
|
-
# Returns an string representation of this service.
|
5528
|
-
#
|
5529
|
-
# @return [String]
|
5530
|
-
#
|
5531
|
-
def to_s
|
5532
|
-
"#<#{ClusterNetworksService}:#{absolute_path}>"
|
5533
|
-
end
|
5534
|
-
|
5535
5175
|
end
|
5536
5176
|
|
5537
5177
|
class ClustersService < Service
|
@@ -5683,15 +5323,6 @@ module OvirtSDK4
|
|
5683
5323
|
return cluster_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
5684
5324
|
end
|
5685
5325
|
|
5686
|
-
#
|
5687
|
-
# Returns an string representation of this service.
|
5688
|
-
#
|
5689
|
-
# @return [String]
|
5690
|
-
#
|
5691
|
-
def to_s
|
5692
|
-
"#<#{ClustersService}:#{absolute_path}>"
|
5693
|
-
end
|
5694
|
-
|
5695
5326
|
end
|
5696
5327
|
|
5697
5328
|
class CopyableService < Service
|
@@ -5736,15 +5367,6 @@ module OvirtSDK4
|
|
5736
5367
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
5737
5368
|
end
|
5738
5369
|
|
5739
|
-
#
|
5740
|
-
# Returns an string representation of this service.
|
5741
|
-
#
|
5742
|
-
# @return [String]
|
5743
|
-
#
|
5744
|
-
def to_s
|
5745
|
-
"#<#{CopyableService}:#{absolute_path}>"
|
5746
|
-
end
|
5747
|
-
|
5748
5370
|
end
|
5749
5371
|
|
5750
5372
|
class CpuProfileService < Service
|
@@ -5861,15 +5483,6 @@ module OvirtSDK4
|
|
5861
5483
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
5862
5484
|
end
|
5863
5485
|
|
5864
|
-
#
|
5865
|
-
# Returns an string representation of this service.
|
5866
|
-
#
|
5867
|
-
# @return [String]
|
5868
|
-
#
|
5869
|
-
def to_s
|
5870
|
-
"#<#{CpuProfileService}:#{absolute_path}>"
|
5871
|
-
end
|
5872
|
-
|
5873
5486
|
end
|
5874
5487
|
|
5875
5488
|
class CpuProfilesService < Service
|
@@ -5964,15 +5577,6 @@ module OvirtSDK4
|
|
5964
5577
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
5965
5578
|
end
|
5966
5579
|
|
5967
|
-
#
|
5968
|
-
# Returns an string representation of this service.
|
5969
|
-
#
|
5970
|
-
# @return [String]
|
5971
|
-
#
|
5972
|
-
def to_s
|
5973
|
-
"#<#{CpuProfilesService}:#{absolute_path}>"
|
5974
|
-
end
|
5975
|
-
|
5976
5580
|
end
|
5977
5581
|
|
5978
5582
|
class DataCenterService < Service
|
@@ -6278,15 +5882,6 @@ module OvirtSDK4
|
|
6278
5882
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
6279
5883
|
end
|
6280
5884
|
|
6281
|
-
#
|
6282
|
-
# Returns an string representation of this service.
|
6283
|
-
#
|
6284
|
-
# @return [String]
|
6285
|
-
#
|
6286
|
-
def to_s
|
6287
|
-
"#<#{DataCenterService}:#{absolute_path}>"
|
6288
|
-
end
|
6289
|
-
|
6290
5885
|
end
|
6291
5886
|
|
6292
5887
|
class DataCenterNetworkService < Service
|
@@ -6383,15 +5978,6 @@ module OvirtSDK4
|
|
6383
5978
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
6384
5979
|
end
|
6385
5980
|
|
6386
|
-
#
|
6387
|
-
# Returns an string representation of this service.
|
6388
|
-
#
|
6389
|
-
# @return [String]
|
6390
|
-
#
|
6391
|
-
def to_s
|
6392
|
-
"#<#{DataCenterNetworkService}:#{absolute_path}>"
|
6393
|
-
end
|
6394
|
-
|
6395
5981
|
end
|
6396
5982
|
|
6397
5983
|
class DataCenterNetworksService < Service
|
@@ -6502,15 +6088,6 @@ module OvirtSDK4
|
|
6502
6088
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
6503
6089
|
end
|
6504
6090
|
|
6505
|
-
#
|
6506
|
-
# Returns an string representation of this service.
|
6507
|
-
#
|
6508
|
-
# @return [String]
|
6509
|
-
#
|
6510
|
-
def to_s
|
6511
|
-
"#<#{DataCenterNetworksService}:#{absolute_path}>"
|
6512
|
-
end
|
6513
|
-
|
6514
6091
|
end
|
6515
6092
|
|
6516
6093
|
class DataCentersService < Service
|
@@ -6691,15 +6268,6 @@ module OvirtSDK4
|
|
6691
6268
|
return data_center_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
6692
6269
|
end
|
6693
6270
|
|
6694
|
-
#
|
6695
|
-
# Returns an string representation of this service.
|
6696
|
-
#
|
6697
|
-
# @return [String]
|
6698
|
-
#
|
6699
|
-
def to_s
|
6700
|
-
"#<#{DataCentersService}:#{absolute_path}>"
|
6701
|
-
end
|
6702
|
-
|
6703
6271
|
end
|
6704
6272
|
|
6705
6273
|
class DiskAttachmentService < Service
|
@@ -6842,15 +6410,6 @@ module OvirtSDK4
|
|
6842
6410
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
6843
6411
|
end
|
6844
6412
|
|
6845
|
-
#
|
6846
|
-
# Returns an string representation of this service.
|
6847
|
-
#
|
6848
|
-
# @return [String]
|
6849
|
-
#
|
6850
|
-
def to_s
|
6851
|
-
"#<#{DiskAttachmentService}:#{absolute_path}>"
|
6852
|
-
end
|
6853
|
-
|
6854
6413
|
end
|
6855
6414
|
|
6856
6415
|
class DiskAttachmentsService < Service
|
@@ -7039,15 +6598,6 @@ module OvirtSDK4
|
|
7039
6598
|
return attachment_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
7040
6599
|
end
|
7041
6600
|
|
7042
|
-
#
|
7043
|
-
# Returns an string representation of this service.
|
7044
|
-
#
|
7045
|
-
# @return [String]
|
7046
|
-
#
|
7047
|
-
def to_s
|
7048
|
-
"#<#{DiskAttachmentsService}:#{absolute_path}>"
|
7049
|
-
end
|
7050
|
-
|
7051
6601
|
end
|
7052
6602
|
|
7053
6603
|
class DiskProfileService < Service
|
@@ -7164,15 +6714,6 @@ module OvirtSDK4
|
|
7164
6714
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
7165
6715
|
end
|
7166
6716
|
|
7167
|
-
#
|
7168
|
-
# Returns an string representation of this service.
|
7169
|
-
#
|
7170
|
-
# @return [String]
|
7171
|
-
#
|
7172
|
-
def to_s
|
7173
|
-
"#<#{DiskProfileService}:#{absolute_path}>"
|
7174
|
-
end
|
7175
|
-
|
7176
6717
|
end
|
7177
6718
|
|
7178
6719
|
class DiskProfilesService < Service
|
@@ -7267,15 +6808,6 @@ module OvirtSDK4
|
|
7267
6808
|
return disk_profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
7268
6809
|
end
|
7269
6810
|
|
7270
|
-
#
|
7271
|
-
# Returns an string representation of this service.
|
7272
|
-
#
|
7273
|
-
# @return [String]
|
7274
|
-
#
|
7275
|
-
def to_s
|
7276
|
-
"#<#{DiskProfilesService}:#{absolute_path}>"
|
7277
|
-
end
|
7278
|
-
|
7279
6811
|
end
|
7280
6812
|
|
7281
6813
|
class DiskSnapshotService < Service
|
@@ -7348,15 +6880,6 @@ module OvirtSDK4
|
|
7348
6880
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
7349
6881
|
end
|
7350
6882
|
|
7351
|
-
#
|
7352
|
-
# Returns an string representation of this service.
|
7353
|
-
#
|
7354
|
-
# @return [String]
|
7355
|
-
#
|
7356
|
-
def to_s
|
7357
|
-
"#<#{DiskSnapshotService}:#{absolute_path}>"
|
7358
|
-
end
|
7359
|
-
|
7360
6883
|
end
|
7361
6884
|
|
7362
6885
|
class DiskSnapshotsService < Service
|
@@ -7424,15 +6947,6 @@ module OvirtSDK4
|
|
7424
6947
|
return snapshot_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
7425
6948
|
end
|
7426
6949
|
|
7427
|
-
#
|
7428
|
-
# Returns an string representation of this service.
|
7429
|
-
#
|
7430
|
-
# @return [String]
|
7431
|
-
#
|
7432
|
-
def to_s
|
7433
|
-
"#<#{DiskSnapshotsService}:#{absolute_path}>"
|
7434
|
-
end
|
7435
|
-
|
7436
6950
|
end
|
7437
6951
|
|
7438
6952
|
class DisksService < Service
|
@@ -7769,15 +7283,6 @@ module OvirtSDK4
|
|
7769
7283
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
7770
7284
|
end
|
7771
7285
|
|
7772
|
-
#
|
7773
|
-
# Returns an string representation of this service.
|
7774
|
-
#
|
7775
|
-
# @return [String]
|
7776
|
-
#
|
7777
|
-
def to_s
|
7778
|
-
"#<#{DisksService}:#{absolute_path}>"
|
7779
|
-
end
|
7780
|
-
|
7781
7286
|
end
|
7782
7287
|
|
7783
7288
|
class DomainService < Service
|
@@ -7874,15 +7379,6 @@ module OvirtSDK4
|
|
7874
7379
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
7875
7380
|
end
|
7876
7381
|
|
7877
|
-
#
|
7878
|
-
# Returns an string representation of this service.
|
7879
|
-
#
|
7880
|
-
# @return [String]
|
7881
|
-
#
|
7882
|
-
def to_s
|
7883
|
-
"#<#{DomainService}:#{absolute_path}>"
|
7884
|
-
end
|
7885
|
-
|
7886
7382
|
end
|
7887
7383
|
|
7888
7384
|
class DomainGroupService < Service
|
@@ -7930,15 +7426,6 @@ module OvirtSDK4
|
|
7930
7426
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
7931
7427
|
end
|
7932
7428
|
|
7933
|
-
#
|
7934
|
-
# Returns an string representation of this service.
|
7935
|
-
#
|
7936
|
-
# @return [String]
|
7937
|
-
#
|
7938
|
-
def to_s
|
7939
|
-
"#<#{DomainGroupService}:#{absolute_path}>"
|
7940
|
-
end
|
7941
|
-
|
7942
7429
|
end
|
7943
7430
|
|
7944
7431
|
class DomainGroupsService < Service
|
@@ -8014,15 +7501,6 @@ module OvirtSDK4
|
|
8014
7501
|
return group_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8015
7502
|
end
|
8016
7503
|
|
8017
|
-
#
|
8018
|
-
# Returns an string representation of this service.
|
8019
|
-
#
|
8020
|
-
# @return [String]
|
8021
|
-
#
|
8022
|
-
def to_s
|
8023
|
-
"#<#{DomainGroupsService}:#{absolute_path}>"
|
8024
|
-
end
|
8025
|
-
|
8026
7504
|
end
|
8027
7505
|
|
8028
7506
|
class DomainUserService < Service
|
@@ -8092,15 +7570,6 @@ module OvirtSDK4
|
|
8092
7570
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8093
7571
|
end
|
8094
7572
|
|
8095
|
-
#
|
8096
|
-
# Returns an string representation of this service.
|
8097
|
-
#
|
8098
|
-
# @return [String]
|
8099
|
-
#
|
8100
|
-
def to_s
|
8101
|
-
"#<#{DomainUserService}:#{absolute_path}>"
|
8102
|
-
end
|
8103
|
-
|
8104
7573
|
end
|
8105
7574
|
|
8106
7575
|
class DomainUsersService < Service
|
@@ -8200,15 +7669,6 @@ module OvirtSDK4
|
|
8200
7669
|
return user_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8201
7670
|
end
|
8202
7671
|
|
8203
|
-
#
|
8204
|
-
# Returns an string representation of this service.
|
8205
|
-
#
|
8206
|
-
# @return [String]
|
8207
|
-
#
|
8208
|
-
def to_s
|
8209
|
-
"#<#{DomainUsersService}:#{absolute_path}>"
|
8210
|
-
end
|
8211
|
-
|
8212
7672
|
end
|
8213
7673
|
|
8214
7674
|
class DomainsService < Service
|
@@ -8297,15 +7757,6 @@ module OvirtSDK4
|
|
8297
7757
|
return domain_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8298
7758
|
end
|
8299
7759
|
|
8300
|
-
#
|
8301
|
-
# Returns an string representation of this service.
|
8302
|
-
#
|
8303
|
-
# @return [String]
|
8304
|
-
#
|
8305
|
-
def to_s
|
8306
|
-
"#<#{DomainsService}:#{absolute_path}>"
|
8307
|
-
end
|
8308
|
-
|
8309
7760
|
end
|
8310
7761
|
|
8311
7762
|
class EventService < Service
|
@@ -8413,15 +7864,6 @@ module OvirtSDK4
|
|
8413
7864
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8414
7865
|
end
|
8415
7866
|
|
8416
|
-
#
|
8417
|
-
# Returns an string representation of this service.
|
8418
|
-
#
|
8419
|
-
# @return [String]
|
8420
|
-
#
|
8421
|
-
def to_s
|
8422
|
-
"#<#{EventService}:#{absolute_path}>"
|
8423
|
-
end
|
8424
|
-
|
8425
7867
|
end
|
8426
7868
|
|
8427
7869
|
class EventsService < Service
|
@@ -8706,15 +8148,6 @@ module OvirtSDK4
|
|
8706
8148
|
return event_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8707
8149
|
end
|
8708
8150
|
|
8709
|
-
#
|
8710
|
-
# Returns an string representation of this service.
|
8711
|
-
#
|
8712
|
-
# @return [String]
|
8713
|
-
#
|
8714
|
-
def to_s
|
8715
|
-
"#<#{EventsService}:#{absolute_path}>"
|
8716
|
-
end
|
8717
|
-
|
8718
8151
|
end
|
8719
8152
|
|
8720
8153
|
class ExternalComputeResourceService < Service
|
@@ -8781,15 +8214,6 @@ module OvirtSDK4
|
|
8781
8214
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8782
8215
|
end
|
8783
8216
|
|
8784
|
-
#
|
8785
|
-
# Returns an string representation of this service.
|
8786
|
-
#
|
8787
|
-
# @return [String]
|
8788
|
-
#
|
8789
|
-
def to_s
|
8790
|
-
"#<#{ExternalComputeResourceService}:#{absolute_path}>"
|
8791
|
-
end
|
8792
|
-
|
8793
8217
|
end
|
8794
8218
|
|
8795
8219
|
class ExternalComputeResourcesService < Service
|
@@ -8879,15 +8303,6 @@ module OvirtSDK4
|
|
8879
8303
|
return resource_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8880
8304
|
end
|
8881
8305
|
|
8882
|
-
#
|
8883
|
-
# Returns an string representation of this service.
|
8884
|
-
#
|
8885
|
-
# @return [String]
|
8886
|
-
#
|
8887
|
-
def to_s
|
8888
|
-
"#<#{ExternalComputeResourcesService}:#{absolute_path}>"
|
8889
|
-
end
|
8890
|
-
|
8891
8306
|
end
|
8892
8307
|
|
8893
8308
|
class ExternalDiscoveredHostService < Service
|
@@ -8958,15 +8373,6 @@ module OvirtSDK4
|
|
8958
8373
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8959
8374
|
end
|
8960
8375
|
|
8961
|
-
#
|
8962
|
-
# Returns an string representation of this service.
|
8963
|
-
#
|
8964
|
-
# @return [String]
|
8965
|
-
#
|
8966
|
-
def to_s
|
8967
|
-
"#<#{ExternalDiscoveredHostService}:#{absolute_path}>"
|
8968
|
-
end
|
8969
|
-
|
8970
8376
|
end
|
8971
8377
|
|
8972
8378
|
class ExternalDiscoveredHostsService < Service
|
@@ -9066,15 +8472,6 @@ module OvirtSDK4
|
|
9066
8472
|
return host_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9067
8473
|
end
|
9068
8474
|
|
9069
|
-
#
|
9070
|
-
# Returns an string representation of this service.
|
9071
|
-
#
|
9072
|
-
# @return [String]
|
9073
|
-
#
|
9074
|
-
def to_s
|
9075
|
-
"#<#{ExternalDiscoveredHostsService}:#{absolute_path}>"
|
9076
|
-
end
|
9077
|
-
|
9078
8475
|
end
|
9079
8476
|
|
9080
8477
|
class ExternalHostService < Service
|
@@ -9122,15 +8519,6 @@ module OvirtSDK4
|
|
9122
8519
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
9123
8520
|
end
|
9124
8521
|
|
9125
|
-
#
|
9126
|
-
# Returns an string representation of this service.
|
9127
|
-
#
|
9128
|
-
# @return [String]
|
9129
|
-
#
|
9130
|
-
def to_s
|
9131
|
-
"#<#{ExternalHostService}:#{absolute_path}>"
|
9132
|
-
end
|
9133
|
-
|
9134
8522
|
end
|
9135
8523
|
|
9136
8524
|
class ExternalHostGroupService < Service
|
@@ -9198,15 +8586,6 @@ module OvirtSDK4
|
|
9198
8586
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
9199
8587
|
end
|
9200
8588
|
|
9201
|
-
#
|
9202
|
-
# Returns an string representation of this service.
|
9203
|
-
#
|
9204
|
-
# @return [String]
|
9205
|
-
#
|
9206
|
-
def to_s
|
9207
|
-
"#<#{ExternalHostGroupService}:#{absolute_path}>"
|
9208
|
-
end
|
9209
|
-
|
9210
8589
|
end
|
9211
8590
|
|
9212
8591
|
class ExternalHostGroupsService < Service
|
@@ -9300,15 +8679,6 @@ module OvirtSDK4
|
|
9300
8679
|
return group_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9301
8680
|
end
|
9302
8681
|
|
9303
|
-
#
|
9304
|
-
# Returns an string representation of this service.
|
9305
|
-
#
|
9306
|
-
# @return [String]
|
9307
|
-
#
|
9308
|
-
def to_s
|
9309
|
-
"#<#{ExternalHostGroupsService}:#{absolute_path}>"
|
9310
|
-
end
|
9311
|
-
|
9312
8682
|
end
|
9313
8683
|
|
9314
8684
|
class ExternalHostProvidersService < Service
|
@@ -9403,15 +8773,6 @@ module OvirtSDK4
|
|
9403
8773
|
return provider_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9404
8774
|
end
|
9405
8775
|
|
9406
|
-
#
|
9407
|
-
# Returns an string representation of this service.
|
9408
|
-
#
|
9409
|
-
# @return [String]
|
9410
|
-
#
|
9411
|
-
def to_s
|
9412
|
-
"#<#{ExternalHostProvidersService}:#{absolute_path}>"
|
9413
|
-
end
|
9414
|
-
|
9415
8776
|
end
|
9416
8777
|
|
9417
8778
|
class ExternalHostsService < Service
|
@@ -9479,15 +8840,6 @@ module OvirtSDK4
|
|
9479
8840
|
return host_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9480
8841
|
end
|
9481
8842
|
|
9482
|
-
#
|
9483
|
-
# Returns an string representation of this service.
|
9484
|
-
#
|
9485
|
-
# @return [String]
|
9486
|
-
#
|
9487
|
-
def to_s
|
9488
|
-
"#<#{ExternalHostsService}:#{absolute_path}>"
|
9489
|
-
end
|
9490
|
-
|
9491
8843
|
end
|
9492
8844
|
|
9493
8845
|
class ExternalNetworkProviderConfigurationService < Service
|
@@ -9535,15 +8887,6 @@ module OvirtSDK4
|
|
9535
8887
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
9536
8888
|
end
|
9537
8889
|
|
9538
|
-
#
|
9539
|
-
# Returns an string representation of this service.
|
9540
|
-
#
|
9541
|
-
# @return [String]
|
9542
|
-
#
|
9543
|
-
def to_s
|
9544
|
-
"#<#{ExternalNetworkProviderConfigurationService}:#{absolute_path}>"
|
9545
|
-
end
|
9546
|
-
|
9547
8890
|
end
|
9548
8891
|
|
9549
8892
|
class ExternalNetworkProviderConfigurationsService < Service
|
@@ -9608,15 +8951,6 @@ module OvirtSDK4
|
|
9608
8951
|
return configuration_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9609
8952
|
end
|
9610
8953
|
|
9611
|
-
#
|
9612
|
-
# Returns an string representation of this service.
|
9613
|
-
#
|
9614
|
-
# @return [String]
|
9615
|
-
#
|
9616
|
-
def to_s
|
9617
|
-
"#<#{ExternalNetworkProviderConfigurationsService}:#{absolute_path}>"
|
9618
|
-
end
|
9619
|
-
|
9620
8954
|
end
|
9621
8955
|
|
9622
8956
|
class ExternalProviderService < Service
|
@@ -9708,15 +9042,6 @@ module OvirtSDK4
|
|
9708
9042
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
9709
9043
|
end
|
9710
9044
|
|
9711
|
-
#
|
9712
|
-
# Returns an string representation of this service.
|
9713
|
-
#
|
9714
|
-
# @return [String]
|
9715
|
-
#
|
9716
|
-
def to_s
|
9717
|
-
"#<#{ExternalProviderService}:#{absolute_path}>"
|
9718
|
-
end
|
9719
|
-
|
9720
9045
|
end
|
9721
9046
|
|
9722
9047
|
class ExternalProviderCertificateService < Service
|
@@ -9780,15 +9105,6 @@ module OvirtSDK4
|
|
9780
9105
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
9781
9106
|
end
|
9782
9107
|
|
9783
|
-
#
|
9784
|
-
# Returns an string representation of this service.
|
9785
|
-
#
|
9786
|
-
# @return [String]
|
9787
|
-
#
|
9788
|
-
def to_s
|
9789
|
-
"#<#{ExternalProviderCertificateService}:#{absolute_path}>"
|
9790
|
-
end
|
9791
|
-
|
9792
9108
|
end
|
9793
9109
|
|
9794
9110
|
class ExternalProviderCertificatesService < Service
|
@@ -9873,15 +9189,6 @@ module OvirtSDK4
|
|
9873
9189
|
return certificate_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9874
9190
|
end
|
9875
9191
|
|
9876
|
-
#
|
9877
|
-
# Returns an string representation of this service.
|
9878
|
-
#
|
9879
|
-
# @return [String]
|
9880
|
-
#
|
9881
|
-
def to_s
|
9882
|
-
"#<#{ExternalProviderCertificatesService}:#{absolute_path}>"
|
9883
|
-
end
|
9884
|
-
|
9885
9192
|
end
|
9886
9193
|
|
9887
9194
|
class ExternalVmImportsService < Service
|
@@ -9954,15 +9261,6 @@ module OvirtSDK4
|
|
9954
9261
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
9955
9262
|
end
|
9956
9263
|
|
9957
|
-
#
|
9958
|
-
# Returns an string representation of this service.
|
9959
|
-
#
|
9960
|
-
# @return [String]
|
9961
|
-
#
|
9962
|
-
def to_s
|
9963
|
-
"#<#{ExternalVmImportsService}:#{absolute_path}>"
|
9964
|
-
end
|
9965
|
-
|
9966
9264
|
end
|
9967
9265
|
|
9968
9266
|
class FenceAgentService < Service
|
@@ -10089,15 +9387,6 @@ module OvirtSDK4
|
|
10089
9387
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
10090
9388
|
end
|
10091
9389
|
|
10092
|
-
#
|
10093
|
-
# Returns an string representation of this service.
|
10094
|
-
#
|
10095
|
-
# @return [String]
|
10096
|
-
#
|
10097
|
-
def to_s
|
10098
|
-
"#<#{FenceAgentService}:#{absolute_path}>"
|
10099
|
-
end
|
10100
|
-
|
10101
9390
|
end
|
10102
9391
|
|
10103
9392
|
class FenceAgentsService < Service
|
@@ -10215,15 +9504,6 @@ module OvirtSDK4
|
|
10215
9504
|
return agent_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10216
9505
|
end
|
10217
9506
|
|
10218
|
-
#
|
10219
|
-
# Returns an string representation of this service.
|
10220
|
-
#
|
10221
|
-
# @return [String]
|
10222
|
-
#
|
10223
|
-
def to_s
|
10224
|
-
"#<#{FenceAgentsService}:#{absolute_path}>"
|
10225
|
-
end
|
10226
|
-
|
10227
9507
|
end
|
10228
9508
|
|
10229
9509
|
class FileService < Service
|
@@ -10271,15 +9551,6 @@ module OvirtSDK4
|
|
10271
9551
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
10272
9552
|
end
|
10273
9553
|
|
10274
|
-
#
|
10275
|
-
# Returns an string representation of this service.
|
10276
|
-
#
|
10277
|
-
# @return [String]
|
10278
|
-
#
|
10279
|
-
def to_s
|
10280
|
-
"#<#{FileService}:#{absolute_path}>"
|
10281
|
-
end
|
10282
|
-
|
10283
9554
|
end
|
10284
9555
|
|
10285
9556
|
class FilesService < Service
|
@@ -10373,15 +9644,6 @@ module OvirtSDK4
|
|
10373
9644
|
return file_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10374
9645
|
end
|
10375
9646
|
|
10376
|
-
#
|
10377
|
-
# Returns an string representation of this service.
|
10378
|
-
#
|
10379
|
-
# @return [String]
|
10380
|
-
#
|
10381
|
-
def to_s
|
10382
|
-
"#<#{FilesService}:#{absolute_path}>"
|
10383
|
-
end
|
10384
|
-
|
10385
9647
|
end
|
10386
9648
|
|
10387
9649
|
class FilterService < Service
|
@@ -10457,15 +9719,6 @@ module OvirtSDK4
|
|
10457
9719
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
10458
9720
|
end
|
10459
9721
|
|
10460
|
-
#
|
10461
|
-
# Returns an string representation of this service.
|
10462
|
-
#
|
10463
|
-
# @return [String]
|
10464
|
-
#
|
10465
|
-
def to_s
|
10466
|
-
"#<#{FilterService}:#{absolute_path}>"
|
10467
|
-
end
|
10468
|
-
|
10469
9722
|
end
|
10470
9723
|
|
10471
9724
|
class FiltersService < Service
|
@@ -10563,15 +9816,6 @@ module OvirtSDK4
|
|
10563
9816
|
return filter_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10564
9817
|
end
|
10565
9818
|
|
10566
|
-
#
|
10567
|
-
# Returns an string representation of this service.
|
10568
|
-
#
|
10569
|
-
# @return [String]
|
10570
|
-
#
|
10571
|
-
def to_s
|
10572
|
-
"#<#{FiltersService}:#{absolute_path}>"
|
10573
|
-
end
|
10574
|
-
|
10575
9819
|
end
|
10576
9820
|
|
10577
9821
|
class FollowService < Service
|
@@ -10590,15 +9834,6 @@ module OvirtSDK4
|
|
10590
9834
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
10591
9835
|
end
|
10592
9836
|
|
10593
|
-
#
|
10594
|
-
# Returns an string representation of this service.
|
10595
|
-
#
|
10596
|
-
# @return [String]
|
10597
|
-
#
|
10598
|
-
def to_s
|
10599
|
-
"#<#{FollowService}:#{absolute_path}>"
|
10600
|
-
end
|
10601
|
-
|
10602
9837
|
end
|
10603
9838
|
|
10604
9839
|
class GlusterBricksService < Service
|
@@ -10962,15 +10197,6 @@ module OvirtSDK4
|
|
10962
10197
|
return brick_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10963
10198
|
end
|
10964
10199
|
|
10965
|
-
#
|
10966
|
-
# Returns an string representation of this service.
|
10967
|
-
#
|
10968
|
-
# @return [String]
|
10969
|
-
#
|
10970
|
-
def to_s
|
10971
|
-
"#<#{GlusterBricksService}:#{absolute_path}>"
|
10972
|
-
end
|
10973
|
-
|
10974
10200
|
end
|
10975
10201
|
|
10976
10202
|
class GlusterHookService < Service
|
@@ -11137,15 +10363,6 @@ module OvirtSDK4
|
|
11137
10363
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
11138
10364
|
end
|
11139
10365
|
|
11140
|
-
#
|
11141
|
-
# Returns an string representation of this service.
|
11142
|
-
#
|
11143
|
-
# @return [String]
|
11144
|
-
#
|
11145
|
-
def to_s
|
11146
|
-
"#<#{GlusterHookService}:#{absolute_path}>"
|
11147
|
-
end
|
11148
|
-
|
11149
10366
|
end
|
11150
10367
|
|
11151
10368
|
class GlusterHooksService < Service
|
@@ -11213,15 +10430,6 @@ module OvirtSDK4
|
|
11213
10430
|
return hook_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
11214
10431
|
end
|
11215
10432
|
|
11216
|
-
#
|
11217
|
-
# Returns an string representation of this service.
|
11218
|
-
#
|
11219
|
-
# @return [String]
|
11220
|
-
#
|
11221
|
-
def to_s
|
11222
|
-
"#<#{GlusterHooksService}:#{absolute_path}>"
|
11223
|
-
end
|
11224
|
-
|
11225
10433
|
end
|
11226
10434
|
|
11227
10435
|
class GlusterVolumesService < Service
|
@@ -11368,15 +10576,6 @@ module OvirtSDK4
|
|
11368
10576
|
return volume_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
11369
10577
|
end
|
11370
10578
|
|
11371
|
-
#
|
11372
|
-
# Returns an string representation of this service.
|
11373
|
-
#
|
11374
|
-
# @return [String]
|
11375
|
-
#
|
11376
|
-
def to_s
|
11377
|
-
"#<#{GlusterVolumesService}:#{absolute_path}>"
|
11378
|
-
end
|
11379
|
-
|
11380
10579
|
end
|
11381
10580
|
|
11382
10581
|
class GroupService < Service
|
@@ -11523,15 +10722,6 @@ module OvirtSDK4
|
|
11523
10722
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
11524
10723
|
end
|
11525
10724
|
|
11526
|
-
#
|
11527
|
-
# Returns an string representation of this service.
|
11528
|
-
#
|
11529
|
-
# @return [String]
|
11530
|
-
#
|
11531
|
-
def to_s
|
11532
|
-
"#<#{GroupService}:#{absolute_path}>"
|
11533
|
-
end
|
11534
|
-
|
11535
10725
|
end
|
11536
10726
|
|
11537
10727
|
class GroupsService < Service
|
@@ -11680,15 +10870,6 @@ module OvirtSDK4
|
|
11680
10870
|
return group_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
11681
10871
|
end
|
11682
10872
|
|
11683
|
-
#
|
11684
|
-
# Returns an string representation of this service.
|
11685
|
-
#
|
11686
|
-
# @return [String]
|
11687
|
-
#
|
11688
|
-
def to_s
|
11689
|
-
"#<#{GroupsService}:#{absolute_path}>"
|
11690
|
-
end
|
11691
|
-
|
11692
10873
|
end
|
11693
10874
|
|
11694
10875
|
class HostDeviceService < Service
|
@@ -11755,15 +10936,6 @@ module OvirtSDK4
|
|
11755
10936
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
11756
10937
|
end
|
11757
10938
|
|
11758
|
-
#
|
11759
|
-
# Returns an string representation of this service.
|
11760
|
-
#
|
11761
|
-
# @return [String]
|
11762
|
-
#
|
11763
|
-
def to_s
|
11764
|
-
"#<#{HostDeviceService}:#{absolute_path}>"
|
11765
|
-
end
|
11766
|
-
|
11767
10939
|
end
|
11768
10940
|
|
11769
10941
|
class HostDevicesService < Service
|
@@ -11831,15 +11003,6 @@ module OvirtSDK4
|
|
11831
11003
|
return device_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
11832
11004
|
end
|
11833
11005
|
|
11834
|
-
#
|
11835
|
-
# Returns an string representation of this service.
|
11836
|
-
#
|
11837
|
-
# @return [String]
|
11838
|
-
#
|
11839
|
-
def to_s
|
11840
|
-
"#<#{HostDevicesService}:#{absolute_path}>"
|
11841
|
-
end
|
11842
|
-
|
11843
11006
|
end
|
11844
11007
|
|
11845
11008
|
class HostHookService < Service
|
@@ -11887,15 +11050,6 @@ module OvirtSDK4
|
|
11887
11050
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
11888
11051
|
end
|
11889
11052
|
|
11890
|
-
#
|
11891
|
-
# Returns an string representation of this service.
|
11892
|
-
#
|
11893
|
-
# @return [String]
|
11894
|
-
#
|
11895
|
-
def to_s
|
11896
|
-
"#<#{HostHookService}:#{absolute_path}>"
|
11897
|
-
end
|
11898
|
-
|
11899
11053
|
end
|
11900
11054
|
|
11901
11055
|
class HostHooksService < Service
|
@@ -11963,15 +11117,6 @@ module OvirtSDK4
|
|
11963
11117
|
return hook_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
11964
11118
|
end
|
11965
11119
|
|
11966
|
-
#
|
11967
|
-
# Returns an string representation of this service.
|
11968
|
-
#
|
11969
|
-
# @return [String]
|
11970
|
-
#
|
11971
|
-
def to_s
|
11972
|
-
"#<#{HostHooksService}:#{absolute_path}>"
|
11973
|
-
end
|
11974
|
-
|
11975
11120
|
end
|
11976
11121
|
|
11977
11122
|
class HostNicsService < Service
|
@@ -12039,15 +11184,6 @@ module OvirtSDK4
|
|
12039
11184
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12040
11185
|
end
|
12041
11186
|
|
12042
|
-
#
|
12043
|
-
# Returns an string representation of this service.
|
12044
|
-
#
|
12045
|
-
# @return [String]
|
12046
|
-
#
|
12047
|
-
def to_s
|
12048
|
-
"#<#{HostNicsService}:#{absolute_path}>"
|
12049
|
-
end
|
12050
|
-
|
12051
11187
|
end
|
12052
11188
|
|
12053
11189
|
class HostNumaNodesService < Service
|
@@ -12115,15 +11251,6 @@ module OvirtSDK4
|
|
12115
11251
|
return node_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12116
11252
|
end
|
12117
11253
|
|
12118
|
-
#
|
12119
|
-
# Returns an string representation of this service.
|
12120
|
-
#
|
12121
|
-
# @return [String]
|
12122
|
-
#
|
12123
|
-
def to_s
|
12124
|
-
"#<#{HostNumaNodesService}:#{absolute_path}>"
|
12125
|
-
end
|
12126
|
-
|
12127
11254
|
end
|
12128
11255
|
|
12129
11256
|
class HostStorageService < Service
|
@@ -12256,15 +11383,6 @@ module OvirtSDK4
|
|
12256
11383
|
return storage_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12257
11384
|
end
|
12258
11385
|
|
12259
|
-
#
|
12260
|
-
# Returns an string representation of this service.
|
12261
|
-
#
|
12262
|
-
# @return [String]
|
12263
|
-
#
|
12264
|
-
def to_s
|
12265
|
-
"#<#{HostStorageService}:#{absolute_path}>"
|
12266
|
-
end
|
12267
|
-
|
12268
11386
|
end
|
12269
11387
|
|
12270
11388
|
class HostsService < Service
|
@@ -12558,15 +11676,6 @@ module OvirtSDK4
|
|
12558
11676
|
return host_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12559
11677
|
end
|
12560
11678
|
|
12561
|
-
#
|
12562
|
-
# Returns an string representation of this service.
|
12563
|
-
#
|
12564
|
-
# @return [String]
|
12565
|
-
#
|
12566
|
-
def to_s
|
12567
|
-
"#<#{HostsService}:#{absolute_path}>"
|
12568
|
-
end
|
12569
|
-
|
12570
11679
|
end
|
12571
11680
|
|
12572
11681
|
class IconService < Service
|
@@ -12629,15 +11738,6 @@ module OvirtSDK4
|
|
12629
11738
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
12630
11739
|
end
|
12631
11740
|
|
12632
|
-
#
|
12633
|
-
# Returns an string representation of this service.
|
12634
|
-
#
|
12635
|
-
# @return [String]
|
12636
|
-
#
|
12637
|
-
def to_s
|
12638
|
-
"#<#{IconService}:#{absolute_path}>"
|
12639
|
-
end
|
12640
|
-
|
12641
11741
|
end
|
12642
11742
|
|
12643
11743
|
class IconsService < Service
|
@@ -12723,15 +11823,6 @@ module OvirtSDK4
|
|
12723
11823
|
return icon_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12724
11824
|
end
|
12725
11825
|
|
12726
|
-
#
|
12727
|
-
# Returns an string representation of this service.
|
12728
|
-
#
|
12729
|
-
# @return [String]
|
12730
|
-
#
|
12731
|
-
def to_s
|
12732
|
-
"#<#{IconsService}:#{absolute_path}>"
|
12733
|
-
end
|
12734
|
-
|
12735
11826
|
end
|
12736
11827
|
|
12737
11828
|
class ImageService < Service
|
@@ -12836,15 +11927,6 @@ module OvirtSDK4
|
|
12836
11927
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
12837
11928
|
end
|
12838
11929
|
|
12839
|
-
#
|
12840
|
-
# Returns an string representation of this service.
|
12841
|
-
#
|
12842
|
-
# @return [String]
|
12843
|
-
#
|
12844
|
-
def to_s
|
12845
|
-
"#<#{ImageService}:#{absolute_path}>"
|
12846
|
-
end
|
12847
|
-
|
12848
11930
|
end
|
12849
11931
|
|
12850
11932
|
class ImageTransferService < Service
|
@@ -13001,15 +12083,6 @@ module OvirtSDK4
|
|
13001
12083
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13002
12084
|
end
|
13003
12085
|
|
13004
|
-
#
|
13005
|
-
# Returns an string representation of this service.
|
13006
|
-
#
|
13007
|
-
# @return [String]
|
13008
|
-
#
|
13009
|
-
def to_s
|
13010
|
-
"#<#{ImageTransferService}:#{absolute_path}>"
|
13011
|
-
end
|
13012
|
-
|
13013
12086
|
end
|
13014
12087
|
|
13015
12088
|
class ImageTransfersService < Service
|
@@ -13188,15 +12261,6 @@ module OvirtSDK4
|
|
13188
12261
|
return image_transfer_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
13189
12262
|
end
|
13190
12263
|
|
13191
|
-
#
|
13192
|
-
# Returns an string representation of this service.
|
13193
|
-
#
|
13194
|
-
# @return [String]
|
13195
|
-
#
|
13196
|
-
def to_s
|
13197
|
-
"#<#{ImageTransfersService}:#{absolute_path}>"
|
13198
|
-
end
|
13199
|
-
|
13200
12264
|
end
|
13201
12265
|
|
13202
12266
|
class ImagesService < Service
|
@@ -13264,15 +12328,6 @@ module OvirtSDK4
|
|
13264
12328
|
return image_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
13265
12329
|
end
|
13266
12330
|
|
13267
|
-
#
|
13268
|
-
# Returns an string representation of this service.
|
13269
|
-
#
|
13270
|
-
# @return [String]
|
13271
|
-
#
|
13272
|
-
def to_s
|
13273
|
-
"#<#{ImagesService}:#{absolute_path}>"
|
13274
|
-
end
|
13275
|
-
|
13276
12331
|
end
|
13277
12332
|
|
13278
12333
|
class InstanceTypeService < Service
|
@@ -13461,15 +12516,6 @@ module OvirtSDK4
|
|
13461
12516
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13462
12517
|
end
|
13463
12518
|
|
13464
|
-
#
|
13465
|
-
# Returns an string representation of this service.
|
13466
|
-
#
|
13467
|
-
# @return [String]
|
13468
|
-
#
|
13469
|
-
def to_s
|
13470
|
-
"#<#{InstanceTypeService}:#{absolute_path}>"
|
13471
|
-
end
|
13472
|
-
|
13473
12519
|
end
|
13474
12520
|
|
13475
12521
|
class InstanceTypeGraphicsConsoleService < Service
|
@@ -13542,15 +12588,6 @@ module OvirtSDK4
|
|
13542
12588
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13543
12589
|
end
|
13544
12590
|
|
13545
|
-
#
|
13546
|
-
# Returns an string representation of this service.
|
13547
|
-
#
|
13548
|
-
# @return [String]
|
13549
|
-
#
|
13550
|
-
def to_s
|
13551
|
-
"#<#{InstanceTypeGraphicsConsoleService}:#{absolute_path}>"
|
13552
|
-
end
|
13553
|
-
|
13554
12591
|
end
|
13555
12592
|
|
13556
12593
|
class InstanceTypeGraphicsConsolesService < Service
|
@@ -13645,15 +12682,6 @@ module OvirtSDK4
|
|
13645
12682
|
return console_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
13646
12683
|
end
|
13647
12684
|
|
13648
|
-
#
|
13649
|
-
# Returns an string representation of this service.
|
13650
|
-
#
|
13651
|
-
# @return [String]
|
13652
|
-
#
|
13653
|
-
def to_s
|
13654
|
-
"#<#{InstanceTypeGraphicsConsolesService}:#{absolute_path}>"
|
13655
|
-
end
|
13656
|
-
|
13657
12685
|
end
|
13658
12686
|
|
13659
12687
|
class InstanceTypeNicService < Service
|
@@ -13755,15 +12783,6 @@ module OvirtSDK4
|
|
13755
12783
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13756
12784
|
end
|
13757
12785
|
|
13758
|
-
#
|
13759
|
-
# Returns an string representation of this service.
|
13760
|
-
#
|
13761
|
-
# @return [String]
|
13762
|
-
#
|
13763
|
-
def to_s
|
13764
|
-
"#<#{InstanceTypeNicService}:#{absolute_path}>"
|
13765
|
-
end
|
13766
|
-
|
13767
12786
|
end
|
13768
12787
|
|
13769
12788
|
class InstanceTypeNicsService < Service
|
@@ -13861,15 +12880,6 @@ module OvirtSDK4
|
|
13861
12880
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
13862
12881
|
end
|
13863
12882
|
|
13864
|
-
#
|
13865
|
-
# Returns an string representation of this service.
|
13866
|
-
#
|
13867
|
-
# @return [String]
|
13868
|
-
#
|
13869
|
-
def to_s
|
13870
|
-
"#<#{InstanceTypeNicsService}:#{absolute_path}>"
|
13871
|
-
end
|
13872
|
-
|
13873
12883
|
end
|
13874
12884
|
|
13875
12885
|
class InstanceTypeWatchdogService < Service
|
@@ -13971,15 +12981,6 @@ module OvirtSDK4
|
|
13971
12981
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13972
12982
|
end
|
13973
12983
|
|
13974
|
-
#
|
13975
|
-
# Returns an string representation of this service.
|
13976
|
-
#
|
13977
|
-
# @return [String]
|
13978
|
-
#
|
13979
|
-
def to_s
|
13980
|
-
"#<#{InstanceTypeWatchdogService}:#{absolute_path}>"
|
13981
|
-
end
|
13982
|
-
|
13983
12984
|
end
|
13984
12985
|
|
13985
12986
|
class InstanceTypeWatchdogsService < Service
|
@@ -14078,15 +13079,6 @@ module OvirtSDK4
|
|
14078
13079
|
return watchdog_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
14079
13080
|
end
|
14080
13081
|
|
14081
|
-
#
|
14082
|
-
# Returns an string representation of this service.
|
14083
|
-
#
|
14084
|
-
# @return [String]
|
14085
|
-
#
|
14086
|
-
def to_s
|
14087
|
-
"#<#{InstanceTypeWatchdogsService}:#{absolute_path}>"
|
14088
|
-
end
|
14089
|
-
|
14090
13082
|
end
|
14091
13083
|
|
14092
13084
|
class InstanceTypesService < Service
|
@@ -14274,15 +13266,6 @@ module OvirtSDK4
|
|
14274
13266
|
return instance_type_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
14275
13267
|
end
|
14276
13268
|
|
14277
|
-
#
|
14278
|
-
# Returns an string representation of this service.
|
14279
|
-
#
|
14280
|
-
# @return [String]
|
14281
|
-
#
|
14282
|
-
def to_s
|
14283
|
-
"#<#{InstanceTypesService}:#{absolute_path}>"
|
14284
|
-
end
|
14285
|
-
|
14286
13269
|
end
|
14287
13270
|
|
14288
13271
|
class IscsiBondService < Service
|
@@ -14439,15 +13422,6 @@ module OvirtSDK4
|
|
14439
13422
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
14440
13423
|
end
|
14441
13424
|
|
14442
|
-
#
|
14443
|
-
# Returns an string representation of this service.
|
14444
|
-
#
|
14445
|
-
# @return [String]
|
14446
|
-
#
|
14447
|
-
def to_s
|
14448
|
-
"#<#{IscsiBondService}:#{absolute_path}>"
|
14449
|
-
end
|
14450
|
-
|
14451
13425
|
end
|
14452
13426
|
|
14453
13427
|
class IscsiBondsService < Service
|
@@ -14566,15 +13540,6 @@ module OvirtSDK4
|
|
14566
13540
|
return iscsi_bond_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
14567
13541
|
end
|
14568
13542
|
|
14569
|
-
#
|
14570
|
-
# Returns an string representation of this service.
|
14571
|
-
#
|
14572
|
-
# @return [String]
|
14573
|
-
#
|
14574
|
-
def to_s
|
14575
|
-
"#<#{IscsiBondsService}:#{absolute_path}>"
|
14576
|
-
end
|
14577
|
-
|
14578
13543
|
end
|
14579
13544
|
|
14580
13545
|
class JobService < Service
|
@@ -14756,15 +13721,6 @@ module OvirtSDK4
|
|
14756
13721
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
14757
13722
|
end
|
14758
13723
|
|
14759
|
-
#
|
14760
|
-
# Returns an string representation of this service.
|
14761
|
-
#
|
14762
|
-
# @return [String]
|
14763
|
-
#
|
14764
|
-
def to_s
|
14765
|
-
"#<#{JobService}:#{absolute_path}>"
|
14766
|
-
end
|
14767
|
-
|
14768
13724
|
end
|
14769
13725
|
|
14770
13726
|
class JobsService < Service
|
@@ -14925,15 +13881,6 @@ module OvirtSDK4
|
|
14925
13881
|
return job_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
14926
13882
|
end
|
14927
13883
|
|
14928
|
-
#
|
14929
|
-
# Returns an string representation of this service.
|
14930
|
-
#
|
14931
|
-
# @return [String]
|
14932
|
-
#
|
14933
|
-
def to_s
|
14934
|
-
"#<#{JobsService}:#{absolute_path}>"
|
14935
|
-
end
|
14936
|
-
|
14937
13884
|
end
|
14938
13885
|
|
14939
13886
|
class KatelloErrataService < Service
|
@@ -15031,15 +13978,6 @@ module OvirtSDK4
|
|
15031
13978
|
return katello_erratum_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
15032
13979
|
end
|
15033
13980
|
|
15034
|
-
#
|
15035
|
-
# Returns an string representation of this service.
|
15036
|
-
#
|
15037
|
-
# @return [String]
|
15038
|
-
#
|
15039
|
-
def to_s
|
15040
|
-
"#<#{KatelloErrataService}:#{absolute_path}>"
|
15041
|
-
end
|
15042
|
-
|
15043
13981
|
end
|
15044
13982
|
|
15045
13983
|
class KatelloErratumService < Service
|
@@ -15113,15 +14051,6 @@ module OvirtSDK4
|
|
15113
14051
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15114
14052
|
end
|
15115
14053
|
|
15116
|
-
#
|
15117
|
-
# Returns an string representation of this service.
|
15118
|
-
#
|
15119
|
-
# @return [String]
|
15120
|
-
#
|
15121
|
-
def to_s
|
15122
|
-
"#<#{KatelloErratumService}:#{absolute_path}>"
|
15123
|
-
end
|
15124
|
-
|
15125
14054
|
end
|
15126
14055
|
|
15127
14056
|
class LinkLayerDiscoveryProtocolService < Service
|
@@ -15169,15 +14098,6 @@ module OvirtSDK4
|
|
15169
14098
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15170
14099
|
end
|
15171
14100
|
|
15172
|
-
#
|
15173
|
-
# Returns an string representation of this service.
|
15174
|
-
#
|
15175
|
-
# @return [String]
|
15176
|
-
#
|
15177
|
-
def to_s
|
15178
|
-
"#<#{LinkLayerDiscoveryProtocolService}:#{absolute_path}>"
|
15179
|
-
end
|
15180
|
-
|
15181
14101
|
end
|
15182
14102
|
|
15183
14103
|
class MacPoolService < Service
|
@@ -15316,15 +14236,6 @@ module OvirtSDK4
|
|
15316
14236
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15317
14237
|
end
|
15318
14238
|
|
15319
|
-
#
|
15320
|
-
# Returns an string representation of this service.
|
15321
|
-
#
|
15322
|
-
# @return [String]
|
15323
|
-
#
|
15324
|
-
def to_s
|
15325
|
-
"#<#{MacPoolService}:#{absolute_path}>"
|
15326
|
-
end
|
15327
|
-
|
15328
14239
|
end
|
15329
14240
|
|
15330
14241
|
class MacPoolsService < Service
|
@@ -15446,15 +14357,6 @@ module OvirtSDK4
|
|
15446
14357
|
return mac_pool_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
15447
14358
|
end
|
15448
14359
|
|
15449
|
-
#
|
15450
|
-
# Returns an string representation of this service.
|
15451
|
-
#
|
15452
|
-
# @return [String]
|
15453
|
-
#
|
15454
|
-
def to_s
|
15455
|
-
"#<#{MacPoolsService}:#{absolute_path}>"
|
15456
|
-
end
|
15457
|
-
|
15458
14360
|
end
|
15459
14361
|
|
15460
14362
|
class MeasurableService < Service
|
@@ -15488,15 +14390,6 @@ module OvirtSDK4
|
|
15488
14390
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15489
14391
|
end
|
15490
14392
|
|
15491
|
-
#
|
15492
|
-
# Returns an string representation of this service.
|
15493
|
-
#
|
15494
|
-
# @return [String]
|
15495
|
-
#
|
15496
|
-
def to_s
|
15497
|
-
"#<#{MeasurableService}:#{absolute_path}>"
|
15498
|
-
end
|
15499
|
-
|
15500
14393
|
end
|
15501
14394
|
|
15502
14395
|
class MoveableService < Service
|
@@ -15541,15 +14434,6 @@ module OvirtSDK4
|
|
15541
14434
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15542
14435
|
end
|
15543
14436
|
|
15544
|
-
#
|
15545
|
-
# Returns an string representation of this service.
|
15546
|
-
#
|
15547
|
-
# @return [String]
|
15548
|
-
#
|
15549
|
-
def to_s
|
15550
|
-
"#<#{MoveableService}:#{absolute_path}>"
|
15551
|
-
end
|
15552
|
-
|
15553
14437
|
end
|
15554
14438
|
|
15555
14439
|
class NetworkService < Service
|
@@ -15778,15 +14662,6 @@ module OvirtSDK4
|
|
15778
14662
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15779
14663
|
end
|
15780
14664
|
|
15781
|
-
#
|
15782
|
-
# Returns an string representation of this service.
|
15783
|
-
#
|
15784
|
-
# @return [String]
|
15785
|
-
#
|
15786
|
-
def to_s
|
15787
|
-
"#<#{NetworkService}:#{absolute_path}>"
|
15788
|
-
end
|
15789
|
-
|
15790
14665
|
end
|
15791
14666
|
|
15792
14667
|
class NetworkAttachmentService < Service
|
@@ -15888,15 +14763,6 @@ module OvirtSDK4
|
|
15888
14763
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15889
14764
|
end
|
15890
14765
|
|
15891
|
-
#
|
15892
|
-
# Returns an string representation of this service.
|
15893
|
-
#
|
15894
|
-
# @return [String]
|
15895
|
-
#
|
15896
|
-
def to_s
|
15897
|
-
"#<#{NetworkAttachmentService}:#{absolute_path}>"
|
15898
|
-
end
|
15899
|
-
|
15900
14766
|
end
|
15901
14767
|
|
15902
14768
|
class NetworkAttachmentsService < Service
|
@@ -15991,15 +14857,6 @@ module OvirtSDK4
|
|
15991
14857
|
return attachment_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
15992
14858
|
end
|
15993
14859
|
|
15994
|
-
#
|
15995
|
-
# Returns an string representation of this service.
|
15996
|
-
#
|
15997
|
-
# @return [String]
|
15998
|
-
#
|
15999
|
-
def to_s
|
16000
|
-
"#<#{NetworkAttachmentsService}:#{absolute_path}>"
|
16001
|
-
end
|
16002
|
-
|
16003
14860
|
end
|
16004
14861
|
|
16005
14862
|
class NetworkFilterService < Service
|
@@ -16047,15 +14904,6 @@ module OvirtSDK4
|
|
16047
14904
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16048
14905
|
end
|
16049
14906
|
|
16050
|
-
#
|
16051
|
-
# Returns an string representation of this service.
|
16052
|
-
#
|
16053
|
-
# @return [String]
|
16054
|
-
#
|
16055
|
-
def to_s
|
16056
|
-
"#<#{NetworkFilterService}:#{absolute_path}>"
|
16057
|
-
end
|
16058
|
-
|
16059
14907
|
end
|
16060
14908
|
|
16061
14909
|
class NetworkFiltersService < Service
|
@@ -16120,15 +14968,6 @@ module OvirtSDK4
|
|
16120
14968
|
return network_filter_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
16121
14969
|
end
|
16122
14970
|
|
16123
|
-
#
|
16124
|
-
# Returns an string representation of this service.
|
16125
|
-
#
|
16126
|
-
# @return [String]
|
16127
|
-
#
|
16128
|
-
def to_s
|
16129
|
-
"#<#{NetworkFiltersService}:#{absolute_path}>"
|
16130
|
-
end
|
16131
|
-
|
16132
14971
|
end
|
16133
14972
|
|
16134
14973
|
class NetworkLabelService < Service
|
@@ -16208,15 +15047,6 @@ module OvirtSDK4
|
|
16208
15047
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16209
15048
|
end
|
16210
15049
|
|
16211
|
-
#
|
16212
|
-
# Returns an string representation of this service.
|
16213
|
-
#
|
16214
|
-
# @return [String]
|
16215
|
-
#
|
16216
|
-
def to_s
|
16217
|
-
"#<#{NetworkLabelService}:#{absolute_path}>"
|
16218
|
-
end
|
16219
|
-
|
16220
15050
|
end
|
16221
15051
|
|
16222
15052
|
class NetworkLabelsService < Service
|
@@ -16328,15 +15158,6 @@ module OvirtSDK4
|
|
16328
15158
|
return label_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
16329
15159
|
end
|
16330
15160
|
|
16331
|
-
#
|
16332
|
-
# Returns an string representation of this service.
|
16333
|
-
#
|
16334
|
-
# @return [String]
|
16335
|
-
#
|
16336
|
-
def to_s
|
16337
|
-
"#<#{NetworkLabelsService}:#{absolute_path}>"
|
16338
|
-
end
|
16339
|
-
|
16340
15161
|
end
|
16341
15162
|
|
16342
15163
|
class NetworksService < Service
|
@@ -16522,15 +15343,6 @@ module OvirtSDK4
|
|
16522
15343
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
16523
15344
|
end
|
16524
15345
|
|
16525
|
-
#
|
16526
|
-
# Returns an string representation of this service.
|
16527
|
-
#
|
16528
|
-
# @return [String]
|
16529
|
-
#
|
16530
|
-
def to_s
|
16531
|
-
"#<#{NetworksService}:#{absolute_path}>"
|
16532
|
-
end
|
16533
|
-
|
16534
15346
|
end
|
16535
15347
|
|
16536
15348
|
class NicNetworkFilterParameterService < Service
|
@@ -16653,15 +15465,6 @@ module OvirtSDK4
|
|
16653
15465
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16654
15466
|
end
|
16655
15467
|
|
16656
|
-
#
|
16657
|
-
# Returns an string representation of this service.
|
16658
|
-
#
|
16659
|
-
# @return [String]
|
16660
|
-
#
|
16661
|
-
def to_s
|
16662
|
-
"#<#{NicNetworkFilterParameterService}:#{absolute_path}>"
|
16663
|
-
end
|
16664
|
-
|
16665
15468
|
end
|
16666
15469
|
|
16667
15470
|
class NicNetworkFilterParametersService < Service
|
@@ -16771,15 +15574,6 @@ module OvirtSDK4
|
|
16771
15574
|
return parameter_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
16772
15575
|
end
|
16773
15576
|
|
16774
|
-
#
|
16775
|
-
# Returns an string representation of this service.
|
16776
|
-
#
|
16777
|
-
# @return [String]
|
16778
|
-
#
|
16779
|
-
def to_s
|
16780
|
-
"#<#{NicNetworkFilterParametersService}:#{absolute_path}>"
|
16781
|
-
end
|
16782
|
-
|
16783
15577
|
end
|
16784
15578
|
|
16785
15579
|
class OpenstackImageService < Service
|
@@ -16891,15 +15685,6 @@ module OvirtSDK4
|
|
16891
15685
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16892
15686
|
end
|
16893
15687
|
|
16894
|
-
#
|
16895
|
-
# Returns an string representation of this service.
|
16896
|
-
#
|
16897
|
-
# @return [String]
|
16898
|
-
#
|
16899
|
-
def to_s
|
16900
|
-
"#<#{OpenstackImageService}:#{absolute_path}>"
|
16901
|
-
end
|
16902
|
-
|
16903
15688
|
end
|
16904
15689
|
|
16905
15690
|
class OpenstackImageProviderService < ExternalProviderService
|
@@ -17089,15 +15874,6 @@ module OvirtSDK4
|
|
17089
15874
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
17090
15875
|
end
|
17091
15876
|
|
17092
|
-
#
|
17093
|
-
# Returns an string representation of this service.
|
17094
|
-
#
|
17095
|
-
# @return [String]
|
17096
|
-
#
|
17097
|
-
def to_s
|
17098
|
-
"#<#{OpenstackImageProviderService}:#{absolute_path}>"
|
17099
|
-
end
|
17100
|
-
|
17101
15877
|
end
|
17102
15878
|
|
17103
15879
|
class OpenstackImageProvidersService < Service
|
@@ -17192,15 +15968,6 @@ module OvirtSDK4
|
|
17192
15968
|
return provider_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17193
15969
|
end
|
17194
15970
|
|
17195
|
-
#
|
17196
|
-
# Returns an string representation of this service.
|
17197
|
-
#
|
17198
|
-
# @return [String]
|
17199
|
-
#
|
17200
|
-
def to_s
|
17201
|
-
"#<#{OpenstackImageProvidersService}:#{absolute_path}>"
|
17202
|
-
end
|
17203
|
-
|
17204
15971
|
end
|
17205
15972
|
|
17206
15973
|
class OpenstackImagesService < Service
|
@@ -17268,15 +16035,6 @@ module OvirtSDK4
|
|
17268
16035
|
return image_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17269
16036
|
end
|
17270
16037
|
|
17271
|
-
#
|
17272
|
-
# Returns an string representation of this service.
|
17273
|
-
#
|
17274
|
-
# @return [String]
|
17275
|
-
#
|
17276
|
-
def to_s
|
17277
|
-
"#<#{OpenstackImagesService}:#{absolute_path}>"
|
17278
|
-
end
|
17279
|
-
|
17280
16038
|
end
|
17281
16039
|
|
17282
16040
|
class OpenstackNetworkService < Service
|
@@ -17372,15 +16130,6 @@ module OvirtSDK4
|
|
17372
16130
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
17373
16131
|
end
|
17374
16132
|
|
17375
|
-
#
|
17376
|
-
# Returns an string representation of this service.
|
17377
|
-
#
|
17378
|
-
# @return [String]
|
17379
|
-
#
|
17380
|
-
def to_s
|
17381
|
-
"#<#{OpenstackNetworkService}:#{absolute_path}>"
|
17382
|
-
end
|
17383
|
-
|
17384
16133
|
end
|
17385
16134
|
|
17386
16135
|
class OpenstackNetworkProviderService < ExternalProviderService
|
@@ -17605,15 +16354,6 @@ module OvirtSDK4
|
|
17605
16354
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
17606
16355
|
end
|
17607
16356
|
|
17608
|
-
#
|
17609
|
-
# Returns an string representation of this service.
|
17610
|
-
#
|
17611
|
-
# @return [String]
|
17612
|
-
#
|
17613
|
-
def to_s
|
17614
|
-
"#<#{OpenstackNetworkProviderService}:#{absolute_path}>"
|
17615
|
-
end
|
17616
|
-
|
17617
16357
|
end
|
17618
16358
|
|
17619
16359
|
class OpenstackNetworkProvidersService < Service
|
@@ -17709,15 +16449,6 @@ module OvirtSDK4
|
|
17709
16449
|
return provider_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17710
16450
|
end
|
17711
16451
|
|
17712
|
-
#
|
17713
|
-
# Returns an string representation of this service.
|
17714
|
-
#
|
17715
|
-
# @return [String]
|
17716
|
-
#
|
17717
|
-
def to_s
|
17718
|
-
"#<#{OpenstackNetworkProvidersService}:#{absolute_path}>"
|
17719
|
-
end
|
17720
|
-
|
17721
16452
|
end
|
17722
16453
|
|
17723
16454
|
class OpenstackNetworksService < Service
|
@@ -17785,15 +16516,6 @@ module OvirtSDK4
|
|
17785
16516
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17786
16517
|
end
|
17787
16518
|
|
17788
|
-
#
|
17789
|
-
# Returns an string representation of this service.
|
17790
|
-
#
|
17791
|
-
# @return [String]
|
17792
|
-
#
|
17793
|
-
def to_s
|
17794
|
-
"#<#{OpenstackNetworksService}:#{absolute_path}>"
|
17795
|
-
end
|
17796
|
-
|
17797
16519
|
end
|
17798
16520
|
|
17799
16521
|
class OpenstackSubnetService < Service
|
@@ -17866,15 +16588,6 @@ module OvirtSDK4
|
|
17866
16588
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
17867
16589
|
end
|
17868
16590
|
|
17869
|
-
#
|
17870
|
-
# Returns an string representation of this service.
|
17871
|
-
#
|
17872
|
-
# @return [String]
|
17873
|
-
#
|
17874
|
-
def to_s
|
17875
|
-
"#<#{OpenstackSubnetService}:#{absolute_path}>"
|
17876
|
-
end
|
17877
|
-
|
17878
16591
|
end
|
17879
16592
|
|
17880
16593
|
class OpenstackSubnetsService < Service
|
@@ -17969,15 +16682,6 @@ module OvirtSDK4
|
|
17969
16682
|
return subnet_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17970
16683
|
end
|
17971
16684
|
|
17972
|
-
#
|
17973
|
-
# Returns an string representation of this service.
|
17974
|
-
#
|
17975
|
-
# @return [String]
|
17976
|
-
#
|
17977
|
-
def to_s
|
17978
|
-
"#<#{OpenstackSubnetsService}:#{absolute_path}>"
|
17979
|
-
end
|
17980
|
-
|
17981
16685
|
end
|
17982
16686
|
|
17983
16687
|
class OpenstackVolumeAuthenticationKeyService < Service
|
@@ -18076,15 +16780,6 @@ module OvirtSDK4
|
|
18076
16780
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18077
16781
|
end
|
18078
16782
|
|
18079
|
-
#
|
18080
|
-
# Returns an string representation of this service.
|
18081
|
-
#
|
18082
|
-
# @return [String]
|
18083
|
-
#
|
18084
|
-
def to_s
|
18085
|
-
"#<#{OpenstackVolumeAuthenticationKeyService}:#{absolute_path}>"
|
18086
|
-
end
|
18087
|
-
|
18088
16783
|
end
|
18089
16784
|
|
18090
16785
|
class OpenstackVolumeAuthenticationKeysService < Service
|
@@ -18179,15 +16874,6 @@ module OvirtSDK4
|
|
18179
16874
|
return key_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
18180
16875
|
end
|
18181
16876
|
|
18182
|
-
#
|
18183
|
-
# Returns an string representation of this service.
|
18184
|
-
#
|
18185
|
-
# @return [String]
|
18186
|
-
#
|
18187
|
-
def to_s
|
18188
|
-
"#<#{OpenstackVolumeAuthenticationKeysService}:#{absolute_path}>"
|
18189
|
-
end
|
18190
|
-
|
18191
16877
|
end
|
18192
16878
|
|
18193
16879
|
class OpenstackVolumeProviderService < ExternalProviderService
|
@@ -18397,15 +17083,6 @@ module OvirtSDK4
|
|
18397
17083
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18398
17084
|
end
|
18399
17085
|
|
18400
|
-
#
|
18401
|
-
# Returns an string representation of this service.
|
18402
|
-
#
|
18403
|
-
# @return [String]
|
18404
|
-
#
|
18405
|
-
def to_s
|
18406
|
-
"#<#{OpenstackVolumeProviderService}:#{absolute_path}>"
|
18407
|
-
end
|
18408
|
-
|
18409
17086
|
end
|
18410
17087
|
|
18411
17088
|
class OpenstackVolumeProvidersService < Service
|
@@ -18524,15 +17201,6 @@ module OvirtSDK4
|
|
18524
17201
|
return provider_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
18525
17202
|
end
|
18526
17203
|
|
18527
|
-
#
|
18528
|
-
# Returns an string representation of this service.
|
18529
|
-
#
|
18530
|
-
# @return [String]
|
18531
|
-
#
|
18532
|
-
def to_s
|
18533
|
-
"#<#{OpenstackVolumeProvidersService}:#{absolute_path}>"
|
18534
|
-
end
|
18535
|
-
|
18536
17204
|
end
|
18537
17205
|
|
18538
17206
|
class OpenstackVolumeTypeService < Service
|
@@ -18580,15 +17248,6 @@ module OvirtSDK4
|
|
18580
17248
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18581
17249
|
end
|
18582
17250
|
|
18583
|
-
#
|
18584
|
-
# Returns an string representation of this service.
|
18585
|
-
#
|
18586
|
-
# @return [String]
|
18587
|
-
#
|
18588
|
-
def to_s
|
18589
|
-
"#<#{OpenstackVolumeTypeService}:#{absolute_path}>"
|
18590
|
-
end
|
18591
|
-
|
18592
17251
|
end
|
18593
17252
|
|
18594
17253
|
class OpenstackVolumeTypesService < Service
|
@@ -18656,15 +17315,6 @@ module OvirtSDK4
|
|
18656
17315
|
return type_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
18657
17316
|
end
|
18658
17317
|
|
18659
|
-
#
|
18660
|
-
# Returns an string representation of this service.
|
18661
|
-
#
|
18662
|
-
# @return [String]
|
18663
|
-
#
|
18664
|
-
def to_s
|
18665
|
-
"#<#{OpenstackVolumeTypesService}:#{absolute_path}>"
|
18666
|
-
end
|
18667
|
-
|
18668
17318
|
end
|
18669
17319
|
|
18670
17320
|
class OperatingSystemService < Service
|
@@ -18712,15 +17362,6 @@ module OvirtSDK4
|
|
18712
17362
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18713
17363
|
end
|
18714
17364
|
|
18715
|
-
#
|
18716
|
-
# Returns an string representation of this service.
|
18717
|
-
#
|
18718
|
-
# @return [String]
|
18719
|
-
#
|
18720
|
-
def to_s
|
18721
|
-
"#<#{OperatingSystemService}:#{absolute_path}>"
|
18722
|
-
end
|
18723
|
-
|
18724
17365
|
end
|
18725
17366
|
|
18726
17367
|
class OperatingSystemsService < Service
|
@@ -18788,15 +17429,6 @@ module OvirtSDK4
|
|
18788
17429
|
return operating_system_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
18789
17430
|
end
|
18790
17431
|
|
18791
|
-
#
|
18792
|
-
# Returns an string representation of this service.
|
18793
|
-
#
|
18794
|
-
# @return [String]
|
18795
|
-
#
|
18796
|
-
def to_s
|
18797
|
-
"#<#{OperatingSystemsService}:#{absolute_path}>"
|
18798
|
-
end
|
18799
|
-
|
18800
17432
|
end
|
18801
17433
|
|
18802
17434
|
class PermissionService < Service
|
@@ -18869,15 +17501,6 @@ module OvirtSDK4
|
|
18869
17501
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18870
17502
|
end
|
18871
17503
|
|
18872
|
-
#
|
18873
|
-
# Returns an string representation of this service.
|
18874
|
-
#
|
18875
|
-
# @return [String]
|
18876
|
-
#
|
18877
|
-
def to_s
|
18878
|
-
"#<#{PermissionService}:#{absolute_path}>"
|
18879
|
-
end
|
18880
|
-
|
18881
17504
|
end
|
18882
17505
|
|
18883
17506
|
class PermitService < Service
|
@@ -18972,15 +17595,6 @@ module OvirtSDK4
|
|
18972
17595
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18973
17596
|
end
|
18974
17597
|
|
18975
|
-
#
|
18976
|
-
# Returns an string representation of this service.
|
18977
|
-
#
|
18978
|
-
# @return [String]
|
18979
|
-
#
|
18980
|
-
def to_s
|
18981
|
-
"#<#{PermitService}:#{absolute_path}>"
|
18982
|
-
end
|
18983
|
-
|
18984
17598
|
end
|
18985
17599
|
|
18986
17600
|
class PermitsService < Service
|
@@ -19112,15 +17726,6 @@ module OvirtSDK4
|
|
19112
17726
|
return permit_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
19113
17727
|
end
|
19114
17728
|
|
19115
|
-
#
|
19116
|
-
# Returns an string representation of this service.
|
19117
|
-
#
|
19118
|
-
# @return [String]
|
19119
|
-
#
|
19120
|
-
def to_s
|
19121
|
-
"#<#{PermitsService}:#{absolute_path}>"
|
19122
|
-
end
|
19123
|
-
|
19124
17729
|
end
|
19125
17730
|
|
19126
17731
|
class QosService < Service
|
@@ -19274,15 +17879,6 @@ module OvirtSDK4
|
|
19274
17879
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
19275
17880
|
end
|
19276
17881
|
|
19277
|
-
#
|
19278
|
-
# Returns an string representation of this service.
|
19279
|
-
#
|
19280
|
-
# @return [String]
|
19281
|
-
#
|
19282
|
-
def to_s
|
19283
|
-
"#<#{QosService}:#{absolute_path}>"
|
19284
|
-
end
|
19285
|
-
|
19286
17882
|
end
|
19287
17883
|
|
19288
17884
|
class QossService < Service
|
@@ -19411,15 +18007,6 @@ module OvirtSDK4
|
|
19411
18007
|
return qos_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
19412
18008
|
end
|
19413
18009
|
|
19414
|
-
#
|
19415
|
-
# Returns an string representation of this service.
|
19416
|
-
#
|
19417
|
-
# @return [String]
|
19418
|
-
#
|
19419
|
-
def to_s
|
19420
|
-
"#<#{QossService}:#{absolute_path}>"
|
19421
|
-
end
|
19422
|
-
|
19423
18010
|
end
|
19424
18011
|
|
19425
18012
|
class QuotaService < Service
|
@@ -19612,15 +18199,6 @@ module OvirtSDK4
|
|
19612
18199
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
19613
18200
|
end
|
19614
18201
|
|
19615
|
-
#
|
19616
|
-
# Returns an string representation of this service.
|
19617
|
-
#
|
19618
|
-
# @return [String]
|
19619
|
-
#
|
19620
|
-
def to_s
|
19621
|
-
"#<#{QuotaService}:#{absolute_path}>"
|
19622
|
-
end
|
19623
|
-
|
19624
18202
|
end
|
19625
18203
|
|
19626
18204
|
class QuotaClusterLimitService < Service
|
@@ -19693,15 +18271,6 @@ module OvirtSDK4
|
|
19693
18271
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
19694
18272
|
end
|
19695
18273
|
|
19696
|
-
#
|
19697
|
-
# Returns an string representation of this service.
|
19698
|
-
#
|
19699
|
-
# @return [String]
|
19700
|
-
#
|
19701
|
-
def to_s
|
19702
|
-
"#<#{QuotaClusterLimitService}:#{absolute_path}>"
|
19703
|
-
end
|
19704
|
-
|
19705
18274
|
end
|
19706
18275
|
|
19707
18276
|
class QuotaClusterLimitsService < Service
|
@@ -19796,15 +18365,6 @@ module OvirtSDK4
|
|
19796
18365
|
return limit_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
19797
18366
|
end
|
19798
18367
|
|
19799
|
-
#
|
19800
|
-
# Returns an string representation of this service.
|
19801
|
-
#
|
19802
|
-
# @return [String]
|
19803
|
-
#
|
19804
|
-
def to_s
|
19805
|
-
"#<#{QuotaClusterLimitsService}:#{absolute_path}>"
|
19806
|
-
end
|
19807
|
-
|
19808
18368
|
end
|
19809
18369
|
|
19810
18370
|
class QuotaStorageLimitService < Service
|
@@ -19877,15 +18437,6 @@ module OvirtSDK4
|
|
19877
18437
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
19878
18438
|
end
|
19879
18439
|
|
19880
|
-
#
|
19881
|
-
# Returns an string representation of this service.
|
19882
|
-
#
|
19883
|
-
# @return [String]
|
19884
|
-
#
|
19885
|
-
def to_s
|
19886
|
-
"#<#{QuotaStorageLimitService}:#{absolute_path}>"
|
19887
|
-
end
|
19888
|
-
|
19889
18440
|
end
|
19890
18441
|
|
19891
18442
|
class QuotaStorageLimitsService < Service
|
@@ -20013,15 +18564,6 @@ module OvirtSDK4
|
|
20013
18564
|
return limit_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
20014
18565
|
end
|
20015
18566
|
|
20016
|
-
#
|
20017
|
-
# Returns an string representation of this service.
|
20018
|
-
#
|
20019
|
-
# @return [String]
|
20020
|
-
#
|
20021
|
-
def to_s
|
20022
|
-
"#<#{QuotaStorageLimitsService}:#{absolute_path}>"
|
20023
|
-
end
|
20024
|
-
|
20025
18567
|
end
|
20026
18568
|
|
20027
18569
|
class QuotasService < Service
|
@@ -20131,15 +18673,6 @@ module OvirtSDK4
|
|
20131
18673
|
return quota_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
20132
18674
|
end
|
20133
18675
|
|
20134
|
-
#
|
20135
|
-
# Returns an string representation of this service.
|
20136
|
-
#
|
20137
|
-
# @return [String]
|
20138
|
-
#
|
20139
|
-
def to_s
|
20140
|
-
"#<#{QuotasService}:#{absolute_path}>"
|
20141
|
-
end
|
20142
|
-
|
20143
18676
|
end
|
20144
18677
|
|
20145
18678
|
class RoleService < Service
|
@@ -20301,15 +18834,6 @@ module OvirtSDK4
|
|
20301
18834
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
20302
18835
|
end
|
20303
18836
|
|
20304
|
-
#
|
20305
|
-
# Returns an string representation of this service.
|
20306
|
-
#
|
20307
|
-
# @return [String]
|
20308
|
-
#
|
20309
|
-
def to_s
|
20310
|
-
"#<#{RoleService}:#{absolute_path}>"
|
20311
|
-
end
|
20312
|
-
|
20313
18837
|
end
|
20314
18838
|
|
20315
18839
|
class RolesService < Service
|
@@ -20448,15 +18972,6 @@ module OvirtSDK4
|
|
20448
18972
|
return role_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
20449
18973
|
end
|
20450
18974
|
|
20451
|
-
#
|
20452
|
-
# Returns an string representation of this service.
|
20453
|
-
#
|
20454
|
-
# @return [String]
|
20455
|
-
#
|
20456
|
-
def to_s
|
20457
|
-
"#<#{RolesService}:#{absolute_path}>"
|
20458
|
-
end
|
20459
|
-
|
20460
18975
|
end
|
20461
18976
|
|
20462
18977
|
class SchedulingPoliciesService < Service
|
@@ -20554,15 +19069,6 @@ module OvirtSDK4
|
|
20554
19069
|
return policy_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
20555
19070
|
end
|
20556
19071
|
|
20557
|
-
#
|
20558
|
-
# Returns an string representation of this service.
|
20559
|
-
#
|
20560
|
-
# @return [String]
|
20561
|
-
#
|
20562
|
-
def to_s
|
20563
|
-
"#<#{SchedulingPoliciesService}:#{absolute_path}>"
|
20564
|
-
end
|
20565
|
-
|
20566
19072
|
end
|
20567
19073
|
|
20568
19074
|
class SchedulingPolicyService < Service
|
@@ -20712,15 +19218,6 @@ module OvirtSDK4
|
|
20712
19218
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
20713
19219
|
end
|
20714
19220
|
|
20715
|
-
#
|
20716
|
-
# Returns an string representation of this service.
|
20717
|
-
#
|
20718
|
-
# @return [String]
|
20719
|
-
#
|
20720
|
-
def to_s
|
20721
|
-
"#<#{SchedulingPolicyService}:#{absolute_path}>"
|
20722
|
-
end
|
20723
|
-
|
20724
19221
|
end
|
20725
19222
|
|
20726
19223
|
class SchedulingPolicyUnitService < Service
|
@@ -20796,15 +19293,6 @@ module OvirtSDK4
|
|
20796
19293
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
20797
19294
|
end
|
20798
19295
|
|
20799
|
-
#
|
20800
|
-
# Returns an string representation of this service.
|
20801
|
-
#
|
20802
|
-
# @return [String]
|
20803
|
-
#
|
20804
|
-
def to_s
|
20805
|
-
"#<#{SchedulingPolicyUnitService}:#{absolute_path}>"
|
20806
|
-
end
|
20807
|
-
|
20808
19296
|
end
|
20809
19297
|
|
20810
19298
|
class SchedulingPolicyUnitsService < Service
|
@@ -20875,15 +19363,6 @@ module OvirtSDK4
|
|
20875
19363
|
return unit_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
20876
19364
|
end
|
20877
19365
|
|
20878
|
-
#
|
20879
|
-
# Returns an string representation of this service.
|
20880
|
-
#
|
20881
|
-
# @return [String]
|
20882
|
-
#
|
20883
|
-
def to_s
|
20884
|
-
"#<#{SchedulingPolicyUnitsService}:#{absolute_path}>"
|
20885
|
-
end
|
20886
|
-
|
20887
19366
|
end
|
20888
19367
|
|
20889
19368
|
class SnapshotService < Service
|
@@ -21059,15 +19538,6 @@ module OvirtSDK4
|
|
21059
19538
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
21060
19539
|
end
|
21061
19540
|
|
21062
|
-
#
|
21063
|
-
# Returns an string representation of this service.
|
21064
|
-
#
|
21065
|
-
# @return [String]
|
21066
|
-
#
|
21067
|
-
def to_s
|
21068
|
-
"#<#{SnapshotService}:#{absolute_path}>"
|
21069
|
-
end
|
21070
|
-
|
21071
19541
|
end
|
21072
19542
|
|
21073
19543
|
class SnapshotCdromService < Service
|
@@ -21115,15 +19585,6 @@ module OvirtSDK4
|
|
21115
19585
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
21116
19586
|
end
|
21117
19587
|
|
21118
|
-
#
|
21119
|
-
# Returns an string representation of this service.
|
21120
|
-
#
|
21121
|
-
# @return [String]
|
21122
|
-
#
|
21123
|
-
def to_s
|
21124
|
-
"#<#{SnapshotCdromService}:#{absolute_path}>"
|
21125
|
-
end
|
21126
|
-
|
21127
19588
|
end
|
21128
19589
|
|
21129
19590
|
class SnapshotCdromsService < Service
|
@@ -21191,15 +19652,6 @@ module OvirtSDK4
|
|
21191
19652
|
return cdrom_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
21192
19653
|
end
|
21193
19654
|
|
21194
|
-
#
|
21195
|
-
# Returns an string representation of this service.
|
21196
|
-
#
|
21197
|
-
# @return [String]
|
21198
|
-
#
|
21199
|
-
def to_s
|
21200
|
-
"#<#{SnapshotCdromsService}:#{absolute_path}>"
|
21201
|
-
end
|
21202
|
-
|
21203
19655
|
end
|
21204
19656
|
|
21205
19657
|
class SnapshotDiskService < Service
|
@@ -21247,15 +19699,6 @@ module OvirtSDK4
|
|
21247
19699
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
21248
19700
|
end
|
21249
19701
|
|
21250
|
-
#
|
21251
|
-
# Returns an string representation of this service.
|
21252
|
-
#
|
21253
|
-
# @return [String]
|
21254
|
-
#
|
21255
|
-
def to_s
|
21256
|
-
"#<#{SnapshotDiskService}:#{absolute_path}>"
|
21257
|
-
end
|
21258
|
-
|
21259
19702
|
end
|
21260
19703
|
|
21261
19704
|
class SnapshotDisksService < Service
|
@@ -21323,15 +19766,6 @@ module OvirtSDK4
|
|
21323
19766
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
21324
19767
|
end
|
21325
19768
|
|
21326
|
-
#
|
21327
|
-
# Returns an string representation of this service.
|
21328
|
-
#
|
21329
|
-
# @return [String]
|
21330
|
-
#
|
21331
|
-
def to_s
|
21332
|
-
"#<#{SnapshotDisksService}:#{absolute_path}>"
|
21333
|
-
end
|
21334
|
-
|
21335
19769
|
end
|
21336
19770
|
|
21337
19771
|
class SnapshotNicService < Service
|
@@ -21379,15 +19813,6 @@ module OvirtSDK4
|
|
21379
19813
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
21380
19814
|
end
|
21381
19815
|
|
21382
|
-
#
|
21383
|
-
# Returns an string representation of this service.
|
21384
|
-
#
|
21385
|
-
# @return [String]
|
21386
|
-
#
|
21387
|
-
def to_s
|
21388
|
-
"#<#{SnapshotNicService}:#{absolute_path}>"
|
21389
|
-
end
|
21390
|
-
|
21391
19816
|
end
|
21392
19817
|
|
21393
19818
|
class SnapshotNicsService < Service
|
@@ -21455,15 +19880,6 @@ module OvirtSDK4
|
|
21455
19880
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
21456
19881
|
end
|
21457
19882
|
|
21458
|
-
#
|
21459
|
-
# Returns an string representation of this service.
|
21460
|
-
#
|
21461
|
-
# @return [String]
|
21462
|
-
#
|
21463
|
-
def to_s
|
21464
|
-
"#<#{SnapshotNicsService}:#{absolute_path}>"
|
21465
|
-
end
|
21466
|
-
|
21467
19883
|
end
|
21468
19884
|
|
21469
19885
|
class SnapshotsService < Service
|
@@ -21628,15 +20044,6 @@ module OvirtSDK4
|
|
21628
20044
|
return snapshot_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
21629
20045
|
end
|
21630
20046
|
|
21631
|
-
#
|
21632
|
-
# Returns an string representation of this service.
|
21633
|
-
#
|
21634
|
-
# @return [String]
|
21635
|
-
#
|
21636
|
-
def to_s
|
21637
|
-
"#<#{SnapshotsService}:#{absolute_path}>"
|
21638
|
-
end
|
21639
|
-
|
21640
20047
|
end
|
21641
20048
|
|
21642
20049
|
class SshPublicKeyService < Service
|
@@ -21738,15 +20145,6 @@ module OvirtSDK4
|
|
21738
20145
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
21739
20146
|
end
|
21740
20147
|
|
21741
|
-
#
|
21742
|
-
# Returns an string representation of this service.
|
21743
|
-
#
|
21744
|
-
# @return [String]
|
21745
|
-
#
|
21746
|
-
def to_s
|
21747
|
-
"#<#{SshPublicKeyService}:#{absolute_path}>"
|
21748
|
-
end
|
21749
|
-
|
21750
20148
|
end
|
21751
20149
|
|
21752
20150
|
class SshPublicKeysService < Service
|
@@ -21880,15 +20278,6 @@ module OvirtSDK4
|
|
21880
20278
|
return key_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
21881
20279
|
end
|
21882
20280
|
|
21883
|
-
#
|
21884
|
-
# Returns an string representation of this service.
|
21885
|
-
#
|
21886
|
-
# @return [String]
|
21887
|
-
#
|
21888
|
-
def to_s
|
21889
|
-
"#<#{SshPublicKeysService}:#{absolute_path}>"
|
21890
|
-
end
|
21891
|
-
|
21892
20281
|
end
|
21893
20282
|
|
21894
20283
|
class StatisticService < Service
|
@@ -21936,15 +20325,6 @@ module OvirtSDK4
|
|
21936
20325
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
21937
20326
|
end
|
21938
20327
|
|
21939
|
-
#
|
21940
|
-
# Returns an string representation of this service.
|
21941
|
-
#
|
21942
|
-
# @return [String]
|
21943
|
-
#
|
21944
|
-
def to_s
|
21945
|
-
"#<#{StatisticService}:#{absolute_path}>"
|
21946
|
-
end
|
21947
|
-
|
21948
20328
|
end
|
21949
20329
|
|
21950
20330
|
class StatisticsService < Service
|
@@ -22068,15 +20448,6 @@ module OvirtSDK4
|
|
22068
20448
|
return statistic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
22069
20449
|
end
|
22070
20450
|
|
22071
|
-
#
|
22072
|
-
# Returns an string representation of this service.
|
22073
|
-
#
|
22074
|
-
# @return [String]
|
22075
|
-
#
|
22076
|
-
def to_s
|
22077
|
-
"#<#{StatisticsService}:#{absolute_path}>"
|
22078
|
-
end
|
22079
|
-
|
22080
20451
|
end
|
22081
20452
|
|
22082
20453
|
class StepService < MeasurableService
|
@@ -22215,15 +20586,6 @@ module OvirtSDK4
|
|
22215
20586
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
22216
20587
|
end
|
22217
20588
|
|
22218
|
-
#
|
22219
|
-
# Returns an string representation of this service.
|
22220
|
-
#
|
22221
|
-
# @return [String]
|
22222
|
-
#
|
22223
|
-
def to_s
|
22224
|
-
"#<#{StepService}:#{absolute_path}>"
|
22225
|
-
end
|
22226
|
-
|
22227
20589
|
end
|
22228
20590
|
|
22229
20591
|
class StepsService < Service
|
@@ -22384,15 +20746,6 @@ module OvirtSDK4
|
|
22384
20746
|
return step_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
22385
20747
|
end
|
22386
20748
|
|
22387
|
-
#
|
22388
|
-
# Returns an string representation of this service.
|
22389
|
-
#
|
22390
|
-
# @return [String]
|
22391
|
-
#
|
22392
|
-
def to_s
|
22393
|
-
"#<#{StepsService}:#{absolute_path}>"
|
22394
|
-
end
|
22395
|
-
|
22396
20749
|
end
|
22397
20750
|
|
22398
20751
|
class StorageService < Service
|
@@ -22491,15 +20844,6 @@ module OvirtSDK4
|
|
22491
20844
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
22492
20845
|
end
|
22493
20846
|
|
22494
|
-
#
|
22495
|
-
# Returns an string representation of this service.
|
22496
|
-
#
|
22497
|
-
# @return [String]
|
22498
|
-
#
|
22499
|
-
def to_s
|
22500
|
-
"#<#{StorageService}:#{absolute_path}>"
|
22501
|
-
end
|
22502
|
-
|
22503
20847
|
end
|
22504
20848
|
|
22505
20849
|
class StorageDomainService < Service
|
@@ -22984,15 +21328,6 @@ module OvirtSDK4
|
|
22984
21328
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
22985
21329
|
end
|
22986
21330
|
|
22987
|
-
#
|
22988
|
-
# Returns an string representation of this service.
|
22989
|
-
#
|
22990
|
-
# @return [String]
|
22991
|
-
#
|
22992
|
-
def to_s
|
22993
|
-
"#<#{StorageDomainService}:#{absolute_path}>"
|
22994
|
-
end
|
22995
|
-
|
22996
21331
|
end
|
22997
21332
|
|
22998
21333
|
class StorageDomainContentDiskService < Service
|
@@ -23043,15 +21378,6 @@ module OvirtSDK4
|
|
23043
21378
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
23044
21379
|
end
|
23045
21380
|
|
23046
|
-
#
|
23047
|
-
# Returns an string representation of this service.
|
23048
|
-
#
|
23049
|
-
# @return [String]
|
23050
|
-
#
|
23051
|
-
def to_s
|
23052
|
-
"#<#{StorageDomainContentDiskService}:#{absolute_path}>"
|
23053
|
-
end
|
23054
|
-
|
23055
21381
|
end
|
23056
21382
|
|
23057
21383
|
class StorageDomainContentDisksService < Service
|
@@ -23128,15 +21454,6 @@ module OvirtSDK4
|
|
23128
21454
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
23129
21455
|
end
|
23130
21456
|
|
23131
|
-
#
|
23132
|
-
# Returns an string representation of this service.
|
23133
|
-
#
|
23134
|
-
# @return [String]
|
23135
|
-
#
|
23136
|
-
def to_s
|
23137
|
-
"#<#{StorageDomainContentDisksService}:#{absolute_path}>"
|
23138
|
-
end
|
23139
|
-
|
23140
21457
|
end
|
23141
21458
|
|
23142
21459
|
class StorageDomainDiskService < MeasurableService
|
@@ -23397,15 +21714,6 @@ module OvirtSDK4
|
|
23397
21714
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
23398
21715
|
end
|
23399
21716
|
|
23400
|
-
#
|
23401
|
-
# Returns an string representation of this service.
|
23402
|
-
#
|
23403
|
-
# @return [String]
|
23404
|
-
#
|
23405
|
-
def to_s
|
23406
|
-
"#<#{StorageDomainDiskService}:#{absolute_path}>"
|
23407
|
-
end
|
23408
|
-
|
23409
21717
|
end
|
23410
21718
|
|
23411
21719
|
class StorageDomainDisksService < Service
|
@@ -23558,15 +21866,6 @@ module OvirtSDK4
|
|
23558
21866
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
23559
21867
|
end
|
23560
21868
|
|
23561
|
-
#
|
23562
|
-
# Returns an string representation of this service.
|
23563
|
-
#
|
23564
|
-
# @return [String]
|
23565
|
-
#
|
23566
|
-
def to_s
|
23567
|
-
"#<#{StorageDomainDisksService}:#{absolute_path}>"
|
23568
|
-
end
|
23569
|
-
|
23570
21869
|
end
|
23571
21870
|
|
23572
21871
|
class StorageDomainServerConnectionService < Service
|
@@ -23639,15 +21938,6 @@ module OvirtSDK4
|
|
23639
21938
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
23640
21939
|
end
|
23641
21940
|
|
23642
|
-
#
|
23643
|
-
# Returns an string representation of this service.
|
23644
|
-
#
|
23645
|
-
# @return [String]
|
23646
|
-
#
|
23647
|
-
def to_s
|
23648
|
-
"#<#{StorageDomainServerConnectionService}:#{absolute_path}>"
|
23649
|
-
end
|
23650
|
-
|
23651
21941
|
end
|
23652
21942
|
|
23653
21943
|
class StorageDomainServerConnectionsService < Service
|
@@ -23742,15 +22032,6 @@ module OvirtSDK4
|
|
23742
22032
|
return connection_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
23743
22033
|
end
|
23744
22034
|
|
23745
|
-
#
|
23746
|
-
# Returns an string representation of this service.
|
23747
|
-
#
|
23748
|
-
# @return [String]
|
23749
|
-
#
|
23750
|
-
def to_s
|
23751
|
-
"#<#{StorageDomainServerConnectionsService}:#{absolute_path}>"
|
23752
|
-
end
|
23753
|
-
|
23754
22035
|
end
|
23755
22036
|
|
23756
22037
|
class StorageDomainTemplateService < Service
|
@@ -23963,15 +22244,6 @@ module OvirtSDK4
|
|
23963
22244
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
23964
22245
|
end
|
23965
22246
|
|
23966
|
-
#
|
23967
|
-
# Returns an string representation of this service.
|
23968
|
-
#
|
23969
|
-
# @return [String]
|
23970
|
-
#
|
23971
|
-
def to_s
|
23972
|
-
"#<#{StorageDomainTemplateService}:#{absolute_path}>"
|
23973
|
-
end
|
23974
|
-
|
23975
22247
|
end
|
23976
22248
|
|
23977
22249
|
class StorageDomainTemplatesService < Service
|
@@ -24051,15 +22323,6 @@ module OvirtSDK4
|
|
24051
22323
|
return template_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24052
22324
|
end
|
24053
22325
|
|
24054
|
-
#
|
24055
|
-
# Returns an string representation of this service.
|
24056
|
-
#
|
24057
|
-
# @return [String]
|
24058
|
-
#
|
24059
|
-
def to_s
|
24060
|
-
"#<#{StorageDomainTemplatesService}:#{absolute_path}>"
|
24061
|
-
end
|
24062
|
-
|
24063
22326
|
end
|
24064
22327
|
|
24065
22328
|
class StorageDomainVmService < Service
|
@@ -24345,15 +22608,6 @@ module OvirtSDK4
|
|
24345
22608
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
24346
22609
|
end
|
24347
22610
|
|
24348
|
-
#
|
24349
|
-
# Returns an string representation of this service.
|
24350
|
-
#
|
24351
|
-
# @return [String]
|
24352
|
-
#
|
24353
|
-
def to_s
|
24354
|
-
"#<#{StorageDomainVmService}:#{absolute_path}>"
|
24355
|
-
end
|
24356
|
-
|
24357
22611
|
end
|
24358
22612
|
|
24359
22613
|
class StorageDomainVmDiskAttachmentService < Service
|
@@ -24401,15 +22655,6 @@ module OvirtSDK4
|
|
24401
22655
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
24402
22656
|
end
|
24403
22657
|
|
24404
|
-
#
|
24405
|
-
# Returns an string representation of this service.
|
24406
|
-
#
|
24407
|
-
# @return [String]
|
24408
|
-
#
|
24409
|
-
def to_s
|
24410
|
-
"#<#{StorageDomainVmDiskAttachmentService}:#{absolute_path}>"
|
24411
|
-
end
|
24412
|
-
|
24413
22658
|
end
|
24414
22659
|
|
24415
22660
|
class StorageDomainVmDiskAttachmentsService < Service
|
@@ -24474,15 +22719,6 @@ module OvirtSDK4
|
|
24474
22719
|
return attachment_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24475
22720
|
end
|
24476
22721
|
|
24477
|
-
#
|
24478
|
-
# Returns an string representation of this service.
|
24479
|
-
#
|
24480
|
-
# @return [String]
|
24481
|
-
#
|
24482
|
-
def to_s
|
24483
|
-
"#<#{StorageDomainVmDiskAttachmentsService}:#{absolute_path}>"
|
24484
|
-
end
|
24485
|
-
|
24486
22722
|
end
|
24487
22723
|
|
24488
22724
|
class StorageDomainVmsService < Service
|
@@ -24564,15 +22800,6 @@ module OvirtSDK4
|
|
24564
22800
|
return vm_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24565
22801
|
end
|
24566
22802
|
|
24567
|
-
#
|
24568
|
-
# Returns an string representation of this service.
|
24569
|
-
#
|
24570
|
-
# @return [String]
|
24571
|
-
#
|
24572
|
-
def to_s
|
24573
|
-
"#<#{StorageDomainVmsService}:#{absolute_path}>"
|
24574
|
-
end
|
24575
|
-
|
24576
22803
|
end
|
24577
22804
|
|
24578
22805
|
class StorageDomainsService < Service
|
@@ -24884,15 +23111,6 @@ module OvirtSDK4
|
|
24884
23111
|
return storage_domain_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24885
23112
|
end
|
24886
23113
|
|
24887
|
-
#
|
24888
|
-
# Returns an string representation of this service.
|
24889
|
-
#
|
24890
|
-
# @return [String]
|
24891
|
-
#
|
24892
|
-
def to_s
|
24893
|
-
"#<#{StorageDomainsService}:#{absolute_path}>"
|
24894
|
-
end
|
24895
|
-
|
24896
23114
|
end
|
24897
23115
|
|
24898
23116
|
class StorageServerConnectionService < Service
|
@@ -25173,15 +23391,6 @@ module OvirtSDK4
|
|
25173
23391
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
25174
23392
|
end
|
25175
23393
|
|
25176
|
-
#
|
25177
|
-
# Returns an string representation of this service.
|
25178
|
-
#
|
25179
|
-
# @return [String]
|
25180
|
-
#
|
25181
|
-
def to_s
|
25182
|
-
"#<#{StorageServerConnectionService}:#{absolute_path}>"
|
25183
|
-
end
|
25184
|
-
|
25185
23394
|
end
|
25186
23395
|
|
25187
23396
|
class StorageServerConnectionExtensionService < Service
|
@@ -25301,15 +23510,6 @@ module OvirtSDK4
|
|
25301
23510
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
25302
23511
|
end
|
25303
23512
|
|
25304
|
-
#
|
25305
|
-
# Returns an string representation of this service.
|
25306
|
-
#
|
25307
|
-
# @return [String]
|
25308
|
-
#
|
25309
|
-
def to_s
|
25310
|
-
"#<#{StorageServerConnectionExtensionService}:#{absolute_path}>"
|
25311
|
-
end
|
25312
|
-
|
25313
23513
|
end
|
25314
23514
|
|
25315
23515
|
class StorageServerConnectionExtensionsService < Service
|
@@ -25424,15 +23624,6 @@ module OvirtSDK4
|
|
25424
23624
|
return storage_connection_extension_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
25425
23625
|
end
|
25426
23626
|
|
25427
|
-
#
|
25428
|
-
# Returns an string representation of this service.
|
25429
|
-
#
|
25430
|
-
# @return [String]
|
25431
|
-
#
|
25432
|
-
def to_s
|
25433
|
-
"#<#{StorageServerConnectionExtensionsService}:#{absolute_path}>"
|
25434
|
-
end
|
25435
|
-
|
25436
23627
|
end
|
25437
23628
|
|
25438
23629
|
class StorageServerConnectionsService < Service
|
@@ -25657,15 +23848,6 @@ module OvirtSDK4
|
|
25657
23848
|
return storage_connection_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
25658
23849
|
end
|
25659
23850
|
|
25660
|
-
#
|
25661
|
-
# Returns an string representation of this service.
|
25662
|
-
#
|
25663
|
-
# @return [String]
|
25664
|
-
#
|
25665
|
-
def to_s
|
25666
|
-
"#<#{StorageServerConnectionsService}:#{absolute_path}>"
|
25667
|
-
end
|
25668
|
-
|
25669
23851
|
end
|
25670
23852
|
|
25671
23853
|
class SystemService < Service
|
@@ -26403,15 +24585,6 @@ module OvirtSDK4
|
|
26403
24585
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
26404
24586
|
end
|
26405
24587
|
|
26406
|
-
#
|
26407
|
-
# Returns an string representation of this service.
|
26408
|
-
#
|
26409
|
-
# @return [String]
|
26410
|
-
#
|
26411
|
-
def to_s
|
26412
|
-
"#<#{SystemService}:#{absolute_path}>"
|
26413
|
-
end
|
26414
|
-
|
26415
24588
|
end
|
26416
24589
|
|
26417
24590
|
class SystemOptionService < Service
|
@@ -26530,15 +24703,6 @@ module OvirtSDK4
|
|
26530
24703
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
26531
24704
|
end
|
26532
24705
|
|
26533
|
-
#
|
26534
|
-
# Returns an string representation of this service.
|
26535
|
-
#
|
26536
|
-
# @return [String]
|
26537
|
-
#
|
26538
|
-
def to_s
|
26539
|
-
"#<#{SystemOptionService}:#{absolute_path}>"
|
26540
|
-
end
|
26541
|
-
|
26542
24706
|
end
|
26543
24707
|
|
26544
24708
|
class SystemOptionsService < Service
|
@@ -26572,15 +24736,6 @@ module OvirtSDK4
|
|
26572
24736
|
return option_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
26573
24737
|
end
|
26574
24738
|
|
26575
|
-
#
|
26576
|
-
# Returns an string representation of this service.
|
26577
|
-
#
|
26578
|
-
# @return [String]
|
26579
|
-
#
|
26580
|
-
def to_s
|
26581
|
-
"#<#{SystemOptionsService}:#{absolute_path}>"
|
26582
|
-
end
|
26583
|
-
|
26584
24739
|
end
|
26585
24740
|
|
26586
24741
|
class SystemPermissionsService < AssignedPermissionsService
|
@@ -26995,15 +25150,6 @@ module OvirtSDK4
|
|
26995
25150
|
return permission_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
26996
25151
|
end
|
26997
25152
|
|
26998
|
-
#
|
26999
|
-
# Returns an string representation of this service.
|
27000
|
-
#
|
27001
|
-
# @return [String]
|
27002
|
-
#
|
27003
|
-
def to_s
|
27004
|
-
"#<#{SystemPermissionsService}:#{absolute_path}>"
|
27005
|
-
end
|
27006
|
-
|
27007
25153
|
end
|
27008
25154
|
|
27009
25155
|
class TagService < Service
|
@@ -27152,15 +25298,6 @@ module OvirtSDK4
|
|
27152
25298
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
27153
25299
|
end
|
27154
25300
|
|
27155
|
-
#
|
27156
|
-
# Returns an string representation of this service.
|
27157
|
-
#
|
27158
|
-
# @return [String]
|
27159
|
-
#
|
27160
|
-
def to_s
|
27161
|
-
"#<#{TagService}:#{absolute_path}>"
|
27162
|
-
end
|
27163
|
-
|
27164
25301
|
end
|
27165
25302
|
|
27166
25303
|
class TagsService < Service
|
@@ -27318,15 +25455,6 @@ module OvirtSDK4
|
|
27318
25455
|
return tag_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
27319
25456
|
end
|
27320
25457
|
|
27321
|
-
#
|
27322
|
-
# Returns an string representation of this service.
|
27323
|
-
#
|
27324
|
-
# @return [String]
|
27325
|
-
#
|
27326
|
-
def to_s
|
27327
|
-
"#<#{TagsService}:#{absolute_path}>"
|
27328
|
-
end
|
27329
|
-
|
27330
25458
|
end
|
27331
25459
|
|
27332
25460
|
class TemplateService < Service
|
@@ -27622,15 +25750,6 @@ module OvirtSDK4
|
|
27622
25750
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
27623
25751
|
end
|
27624
25752
|
|
27625
|
-
#
|
27626
|
-
# Returns an string representation of this service.
|
27627
|
-
#
|
27628
|
-
# @return [String]
|
27629
|
-
#
|
27630
|
-
def to_s
|
27631
|
-
"#<#{TemplateService}:#{absolute_path}>"
|
27632
|
-
end
|
27633
|
-
|
27634
25753
|
end
|
27635
25754
|
|
27636
25755
|
class TemplateCdromService < Service
|
@@ -27685,15 +25804,6 @@ module OvirtSDK4
|
|
27685
25804
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
27686
25805
|
end
|
27687
25806
|
|
27688
|
-
#
|
27689
|
-
# Returns an string representation of this service.
|
27690
|
-
#
|
27691
|
-
# @return [String]
|
27692
|
-
#
|
27693
|
-
def to_s
|
27694
|
-
"#<#{TemplateCdromService}:#{absolute_path}>"
|
27695
|
-
end
|
27696
|
-
|
27697
25807
|
end
|
27698
25808
|
|
27699
25809
|
class TemplateCdromsService < Service
|
@@ -27761,15 +25871,6 @@ module OvirtSDK4
|
|
27761
25871
|
return cdrom_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
27762
25872
|
end
|
27763
25873
|
|
27764
|
-
#
|
27765
|
-
# Returns an string representation of this service.
|
27766
|
-
#
|
27767
|
-
# @return [String]
|
27768
|
-
#
|
27769
|
-
def to_s
|
27770
|
-
"#<#{TemplateCdromsService}:#{absolute_path}>"
|
27771
|
-
end
|
27772
|
-
|
27773
25874
|
end
|
27774
25875
|
|
27775
25876
|
class TemplateDiskService < Service
|
@@ -27906,15 +26007,6 @@ module OvirtSDK4
|
|
27906
26007
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
27907
26008
|
end
|
27908
26009
|
|
27909
|
-
#
|
27910
|
-
# Returns an string representation of this service.
|
27911
|
-
#
|
27912
|
-
# @return [String]
|
27913
|
-
#
|
27914
|
-
def to_s
|
27915
|
-
"#<#{TemplateDiskService}:#{absolute_path}>"
|
27916
|
-
end
|
27917
|
-
|
27918
26010
|
end
|
27919
26011
|
|
27920
26012
|
class TemplateDiskAttachmentService < Service
|
@@ -27998,15 +26090,6 @@ module OvirtSDK4
|
|
27998
26090
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
27999
26091
|
end
|
28000
26092
|
|
28001
|
-
#
|
28002
|
-
# Returns an string representation of this service.
|
28003
|
-
#
|
28004
|
-
# @return [String]
|
28005
|
-
#
|
28006
|
-
def to_s
|
28007
|
-
"#<#{TemplateDiskAttachmentService}:#{absolute_path}>"
|
28008
|
-
end
|
28009
|
-
|
28010
26093
|
end
|
28011
26094
|
|
28012
26095
|
class TemplateDiskAttachmentsService < Service
|
@@ -28071,15 +26154,6 @@ module OvirtSDK4
|
|
28071
26154
|
return attachment_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
28072
26155
|
end
|
28073
26156
|
|
28074
|
-
#
|
28075
|
-
# Returns an string representation of this service.
|
28076
|
-
#
|
28077
|
-
# @return [String]
|
28078
|
-
#
|
28079
|
-
def to_s
|
28080
|
-
"#<#{TemplateDiskAttachmentsService}:#{absolute_path}>"
|
28081
|
-
end
|
28082
|
-
|
28083
26157
|
end
|
28084
26158
|
|
28085
26159
|
class TemplateDisksService < Service
|
@@ -28147,15 +26221,6 @@ module OvirtSDK4
|
|
28147
26221
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
28148
26222
|
end
|
28149
26223
|
|
28150
|
-
#
|
28151
|
-
# Returns an string representation of this service.
|
28152
|
-
#
|
28153
|
-
# @return [String]
|
28154
|
-
#
|
28155
|
-
def to_s
|
28156
|
-
"#<#{TemplateDisksService}:#{absolute_path}>"
|
28157
|
-
end
|
28158
|
-
|
28159
26224
|
end
|
28160
26225
|
|
28161
26226
|
class TemplateGraphicsConsoleService < Service
|
@@ -28228,15 +26293,6 @@ module OvirtSDK4
|
|
28228
26293
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
28229
26294
|
end
|
28230
26295
|
|
28231
|
-
#
|
28232
|
-
# Returns an string representation of this service.
|
28233
|
-
#
|
28234
|
-
# @return [String]
|
28235
|
-
#
|
28236
|
-
def to_s
|
28237
|
-
"#<#{TemplateGraphicsConsoleService}:#{absolute_path}>"
|
28238
|
-
end
|
28239
|
-
|
28240
26296
|
end
|
28241
26297
|
|
28242
26298
|
class TemplateGraphicsConsolesService < Service
|
@@ -28331,15 +26387,6 @@ module OvirtSDK4
|
|
28331
26387
|
return console_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
28332
26388
|
end
|
28333
26389
|
|
28334
|
-
#
|
28335
|
-
# Returns an string representation of this service.
|
28336
|
-
#
|
28337
|
-
# @return [String]
|
28338
|
-
#
|
28339
|
-
def to_s
|
28340
|
-
"#<#{TemplateGraphicsConsolesService}:#{absolute_path}>"
|
28341
|
-
end
|
28342
|
-
|
28343
26390
|
end
|
28344
26391
|
|
28345
26392
|
class TemplateNicService < Service
|
@@ -28441,15 +26488,6 @@ module OvirtSDK4
|
|
28441
26488
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
28442
26489
|
end
|
28443
26490
|
|
28444
|
-
#
|
28445
|
-
# Returns an string representation of this service.
|
28446
|
-
#
|
28447
|
-
# @return [String]
|
28448
|
-
#
|
28449
|
-
def to_s
|
28450
|
-
"#<#{TemplateNicService}:#{absolute_path}>"
|
28451
|
-
end
|
28452
|
-
|
28453
26491
|
end
|
28454
26492
|
|
28455
26493
|
class TemplateNicsService < Service
|
@@ -28544,15 +26582,6 @@ module OvirtSDK4
|
|
28544
26582
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
28545
26583
|
end
|
28546
26584
|
|
28547
|
-
#
|
28548
|
-
# Returns an string representation of this service.
|
28549
|
-
#
|
28550
|
-
# @return [String]
|
28551
|
-
#
|
28552
|
-
def to_s
|
28553
|
-
"#<#{TemplateNicsService}:#{absolute_path}>"
|
28554
|
-
end
|
28555
|
-
|
28556
26585
|
end
|
28557
26586
|
|
28558
26587
|
class TemplateWatchdogService < Service
|
@@ -28654,15 +26683,6 @@ module OvirtSDK4
|
|
28654
26683
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
28655
26684
|
end
|
28656
26685
|
|
28657
|
-
#
|
28658
|
-
# Returns an string representation of this service.
|
28659
|
-
#
|
28660
|
-
# @return [String]
|
28661
|
-
#
|
28662
|
-
def to_s
|
28663
|
-
"#<#{TemplateWatchdogService}:#{absolute_path}>"
|
28664
|
-
end
|
28665
|
-
|
28666
26686
|
end
|
28667
26687
|
|
28668
26688
|
class TemplateWatchdogsService < Service
|
@@ -28757,15 +26777,6 @@ module OvirtSDK4
|
|
28757
26777
|
return watchdog_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
28758
26778
|
end
|
28759
26779
|
|
28760
|
-
#
|
28761
|
-
# Returns an string representation of this service.
|
28762
|
-
#
|
28763
|
-
# @return [String]
|
28764
|
-
#
|
28765
|
-
def to_s
|
28766
|
-
"#<#{TemplateWatchdogsService}:#{absolute_path}>"
|
28767
|
-
end
|
28768
|
-
|
28769
26780
|
end
|
28770
26781
|
|
28771
26782
|
class TemplatesService < Service
|
@@ -29024,15 +27035,6 @@ module OvirtSDK4
|
|
29024
27035
|
return template_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
29025
27036
|
end
|
29026
27037
|
|
29027
|
-
#
|
29028
|
-
# Returns an string representation of this service.
|
29029
|
-
#
|
29030
|
-
# @return [String]
|
29031
|
-
#
|
29032
|
-
def to_s
|
29033
|
-
"#<#{TemplatesService}:#{absolute_path}>"
|
29034
|
-
end
|
29035
|
-
|
29036
27038
|
end
|
29037
27039
|
|
29038
27040
|
class UnmanagedNetworkService < Service
|
@@ -29105,15 +27107,6 @@ module OvirtSDK4
|
|
29105
27107
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
29106
27108
|
end
|
29107
27109
|
|
29108
|
-
#
|
29109
|
-
# Returns an string representation of this service.
|
29110
|
-
#
|
29111
|
-
# @return [String]
|
29112
|
-
#
|
29113
|
-
def to_s
|
29114
|
-
"#<#{UnmanagedNetworkService}:#{absolute_path}>"
|
29115
|
-
end
|
29116
|
-
|
29117
27110
|
end
|
29118
27111
|
|
29119
27112
|
class UnmanagedNetworksService < Service
|
@@ -29181,15 +27174,6 @@ module OvirtSDK4
|
|
29181
27174
|
return unmanaged_network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
29182
27175
|
end
|
29183
27176
|
|
29184
|
-
#
|
29185
|
-
# Returns an string representation of this service.
|
29186
|
-
#
|
29187
|
-
# @return [String]
|
29188
|
-
#
|
29189
|
-
def to_s
|
29190
|
-
"#<#{UnmanagedNetworksService}:#{absolute_path}>"
|
29191
|
-
end
|
29192
|
-
|
29193
27177
|
end
|
29194
27178
|
|
29195
27179
|
class UserService < Service
|
@@ -29357,15 +27341,6 @@ module OvirtSDK4
|
|
29357
27341
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
29358
27342
|
end
|
29359
27343
|
|
29360
|
-
#
|
29361
|
-
# Returns an string representation of this service.
|
29362
|
-
#
|
29363
|
-
# @return [String]
|
29364
|
-
#
|
29365
|
-
def to_s
|
29366
|
-
"#<#{UserService}:#{absolute_path}>"
|
29367
|
-
end
|
29368
|
-
|
29369
27344
|
end
|
29370
27345
|
|
29371
27346
|
class UsersService < Service
|
@@ -29534,15 +27509,6 @@ module OvirtSDK4
|
|
29534
27509
|
return user_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
29535
27510
|
end
|
29536
27511
|
|
29537
|
-
#
|
29538
|
-
# Returns an string representation of this service.
|
29539
|
-
#
|
29540
|
-
# @return [String]
|
29541
|
-
#
|
29542
|
-
def to_s
|
29543
|
-
"#<#{UsersService}:#{absolute_path}>"
|
29544
|
-
end
|
29545
|
-
|
29546
27512
|
end
|
29547
27513
|
|
29548
27514
|
class VirtualFunctionAllowedNetworkService < Service
|
@@ -29615,15 +27581,6 @@ module OvirtSDK4
|
|
29615
27581
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
29616
27582
|
end
|
29617
27583
|
|
29618
|
-
#
|
29619
|
-
# Returns an string representation of this service.
|
29620
|
-
#
|
29621
|
-
# @return [String]
|
29622
|
-
#
|
29623
|
-
def to_s
|
29624
|
-
"#<#{VirtualFunctionAllowedNetworkService}:#{absolute_path}>"
|
29625
|
-
end
|
29626
|
-
|
29627
27584
|
end
|
29628
27585
|
|
29629
27586
|
class VirtualFunctionAllowedNetworksService < Service
|
@@ -29718,15 +27675,6 @@ module OvirtSDK4
|
|
29718
27675
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
29719
27676
|
end
|
29720
27677
|
|
29721
|
-
#
|
29722
|
-
# Returns an string representation of this service.
|
29723
|
-
#
|
29724
|
-
# @return [String]
|
29725
|
-
#
|
29726
|
-
def to_s
|
29727
|
-
"#<#{VirtualFunctionAllowedNetworksService}:#{absolute_path}>"
|
29728
|
-
end
|
29729
|
-
|
29730
27678
|
end
|
29731
27679
|
|
29732
27680
|
class VmService < MeasurableService
|
@@ -31079,15 +29027,6 @@ module OvirtSDK4
|
|
31079
29027
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
31080
29028
|
end
|
31081
29029
|
|
31082
|
-
#
|
31083
|
-
# Returns an string representation of this service.
|
31084
|
-
#
|
31085
|
-
# @return [String]
|
31086
|
-
#
|
31087
|
-
def to_s
|
31088
|
-
"#<#{VmService}:#{absolute_path}>"
|
31089
|
-
end
|
31090
|
-
|
31091
29030
|
end
|
31092
29031
|
|
31093
29032
|
class VmApplicationService < Service
|
@@ -31138,15 +29077,6 @@ module OvirtSDK4
|
|
31138
29077
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
31139
29078
|
end
|
31140
29079
|
|
31141
|
-
#
|
31142
|
-
# Returns an string representation of this service.
|
31143
|
-
#
|
31144
|
-
# @return [String]
|
31145
|
-
#
|
31146
|
-
def to_s
|
31147
|
-
"#<#{VmApplicationService}:#{absolute_path}>"
|
31148
|
-
end
|
31149
|
-
|
31150
29080
|
end
|
31151
29081
|
|
31152
29082
|
class VmApplicationsService < Service
|
@@ -31217,15 +29147,6 @@ module OvirtSDK4
|
|
31217
29147
|
return application_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
31218
29148
|
end
|
31219
29149
|
|
31220
|
-
#
|
31221
|
-
# Returns an string representation of this service.
|
31222
|
-
#
|
31223
|
-
# @return [String]
|
31224
|
-
#
|
31225
|
-
def to_s
|
31226
|
-
"#<#{VmApplicationsService}:#{absolute_path}>"
|
31227
|
-
end
|
31228
|
-
|
31229
29150
|
end
|
31230
29151
|
|
31231
29152
|
class VmCdromService < Service
|
@@ -31381,15 +29302,6 @@ module OvirtSDK4
|
|
31381
29302
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
31382
29303
|
end
|
31383
29304
|
|
31384
|
-
#
|
31385
|
-
# Returns an string representation of this service.
|
31386
|
-
#
|
31387
|
-
# @return [String]
|
31388
|
-
#
|
31389
|
-
def to_s
|
31390
|
-
"#<#{VmCdromService}:#{absolute_path}>"
|
31391
|
-
end
|
31392
|
-
|
31393
29305
|
end
|
31394
29306
|
|
31395
29307
|
class VmCdromsService < Service
|
@@ -31484,15 +29396,6 @@ module OvirtSDK4
|
|
31484
29396
|
return cdrom_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
31485
29397
|
end
|
31486
29398
|
|
31487
|
-
#
|
31488
|
-
# Returns an string representation of this service.
|
31489
|
-
#
|
31490
|
-
# @return [String]
|
31491
|
-
#
|
31492
|
-
def to_s
|
31493
|
-
"#<#{VmCdromsService}:#{absolute_path}>"
|
31494
|
-
end
|
31495
|
-
|
31496
29399
|
end
|
31497
29400
|
|
31498
29401
|
class VmDiskService < MeasurableService
|
@@ -31738,15 +29641,6 @@ module OvirtSDK4
|
|
31738
29641
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
31739
29642
|
end
|
31740
29643
|
|
31741
|
-
#
|
31742
|
-
# Returns an string representation of this service.
|
31743
|
-
#
|
31744
|
-
# @return [String]
|
31745
|
-
#
|
31746
|
-
def to_s
|
31747
|
-
"#<#{VmDiskService}:#{absolute_path}>"
|
31748
|
-
end
|
31749
|
-
|
31750
29644
|
end
|
31751
29645
|
|
31752
29646
|
class VmDisksService < Service
|
@@ -31841,15 +29735,6 @@ module OvirtSDK4
|
|
31841
29735
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
31842
29736
|
end
|
31843
29737
|
|
31844
|
-
#
|
31845
|
-
# Returns an string representation of this service.
|
31846
|
-
#
|
31847
|
-
# @return [String]
|
31848
|
-
#
|
31849
|
-
def to_s
|
31850
|
-
"#<#{VmDisksService}:#{absolute_path}>"
|
31851
|
-
end
|
31852
|
-
|
31853
29738
|
end
|
31854
29739
|
|
31855
29740
|
class VmGraphicsConsoleService < Service
|
@@ -32126,15 +30011,6 @@ module OvirtSDK4
|
|
32126
30011
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
32127
30012
|
end
|
32128
30013
|
|
32129
|
-
#
|
32130
|
-
# Returns an string representation of this service.
|
32131
|
-
#
|
32132
|
-
# @return [String]
|
32133
|
-
#
|
32134
|
-
def to_s
|
32135
|
-
"#<#{VmGraphicsConsoleService}:#{absolute_path}>"
|
32136
|
-
end
|
32137
|
-
|
32138
30014
|
end
|
32139
30015
|
|
32140
30016
|
class VmGraphicsConsolesService < Service
|
@@ -32253,15 +30129,6 @@ module OvirtSDK4
|
|
32253
30129
|
return console_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
32254
30130
|
end
|
32255
30131
|
|
32256
|
-
#
|
32257
|
-
# Returns an string representation of this service.
|
32258
|
-
#
|
32259
|
-
# @return [String]
|
32260
|
-
#
|
32261
|
-
def to_s
|
32262
|
-
"#<#{VmGraphicsConsolesService}:#{absolute_path}>"
|
32263
|
-
end
|
32264
|
-
|
32265
30132
|
end
|
32266
30133
|
|
32267
30134
|
class VmHostDeviceService < Service
|
@@ -32372,15 +30239,6 @@ module OvirtSDK4
|
|
32372
30239
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
32373
30240
|
end
|
32374
30241
|
|
32375
|
-
#
|
32376
|
-
# Returns an string representation of this service.
|
32377
|
-
#
|
32378
|
-
# @return [String]
|
32379
|
-
#
|
32380
|
-
def to_s
|
32381
|
-
"#<#{VmHostDeviceService}:#{absolute_path}>"
|
32382
|
-
end
|
32383
|
-
|
32384
30242
|
end
|
32385
30243
|
|
32386
30244
|
class VmHostDevicesService < Service
|
@@ -32499,15 +30357,6 @@ module OvirtSDK4
|
|
32499
30357
|
return device_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
32500
30358
|
end
|
32501
30359
|
|
32502
|
-
#
|
32503
|
-
# Returns an string representation of this service.
|
32504
|
-
#
|
32505
|
-
# @return [String]
|
32506
|
-
#
|
32507
|
-
def to_s
|
32508
|
-
"#<#{VmHostDevicesService}:#{absolute_path}>"
|
32509
|
-
end
|
32510
|
-
|
32511
30360
|
end
|
32512
30361
|
|
32513
30362
|
class VmNicService < MeasurableService
|
@@ -32756,15 +30605,6 @@ module OvirtSDK4
|
|
32756
30605
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
32757
30606
|
end
|
32758
30607
|
|
32759
|
-
#
|
32760
|
-
# Returns an string representation of this service.
|
32761
|
-
#
|
32762
|
-
# @return [String]
|
32763
|
-
#
|
32764
|
-
def to_s
|
32765
|
-
"#<#{VmNicService}:#{absolute_path}>"
|
32766
|
-
end
|
32767
|
-
|
32768
30608
|
end
|
32769
30609
|
|
32770
30610
|
class VmNicsService < Service
|
@@ -32908,15 +30748,6 @@ module OvirtSDK4
|
|
32908
30748
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
32909
30749
|
end
|
32910
30750
|
|
32911
|
-
#
|
32912
|
-
# Returns an string representation of this service.
|
32913
|
-
#
|
32914
|
-
# @return [String]
|
32915
|
-
#
|
32916
|
-
def to_s
|
32917
|
-
"#<#{VmNicsService}:#{absolute_path}>"
|
32918
|
-
end
|
32919
|
-
|
32920
30751
|
end
|
32921
30752
|
|
32922
30753
|
class VmNumaNodeService < Service
|
@@ -33045,15 +30876,6 @@ module OvirtSDK4
|
|
33045
30876
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
33046
30877
|
end
|
33047
30878
|
|
33048
|
-
#
|
33049
|
-
# Returns an string representation of this service.
|
33050
|
-
#
|
33051
|
-
# @return [String]
|
33052
|
-
#
|
33053
|
-
def to_s
|
33054
|
-
"#<#{VmNumaNodeService}:#{absolute_path}>"
|
33055
|
-
end
|
33056
|
-
|
33057
30879
|
end
|
33058
30880
|
|
33059
30881
|
class VmNumaNodesService < Service
|
@@ -33172,15 +30994,6 @@ module OvirtSDK4
|
|
33172
30994
|
return node_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
33173
30995
|
end
|
33174
30996
|
|
33175
|
-
#
|
33176
|
-
# Returns an string representation of this service.
|
33177
|
-
#
|
33178
|
-
# @return [String]
|
33179
|
-
#
|
33180
|
-
def to_s
|
33181
|
-
"#<#{VmNumaNodesService}:#{absolute_path}>"
|
33182
|
-
end
|
33183
|
-
|
33184
30997
|
end
|
33185
30998
|
|
33186
30999
|
class VmPoolService < Service
|
@@ -33390,15 +31203,6 @@ module OvirtSDK4
|
|
33390
31203
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
33391
31204
|
end
|
33392
31205
|
|
33393
|
-
#
|
33394
|
-
# Returns an string representation of this service.
|
33395
|
-
#
|
33396
|
-
# @return [String]
|
33397
|
-
#
|
33398
|
-
def to_s
|
33399
|
-
"#<#{VmPoolService}:#{absolute_path}>"
|
33400
|
-
end
|
33401
|
-
|
33402
31206
|
end
|
33403
31207
|
|
33404
31208
|
class VmPoolsService < Service
|
@@ -33541,15 +31345,6 @@ module OvirtSDK4
|
|
33541
31345
|
return pool_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
33542
31346
|
end
|
33543
31347
|
|
33544
|
-
#
|
33545
|
-
# Returns an string representation of this service.
|
33546
|
-
#
|
33547
|
-
# @return [String]
|
33548
|
-
#
|
33549
|
-
def to_s
|
33550
|
-
"#<#{VmPoolsService}:#{absolute_path}>"
|
33551
|
-
end
|
33552
|
-
|
33553
31348
|
end
|
33554
31349
|
|
33555
31350
|
class VmReportedDeviceService < Service
|
@@ -33597,15 +31392,6 @@ module OvirtSDK4
|
|
33597
31392
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
33598
31393
|
end
|
33599
31394
|
|
33600
|
-
#
|
33601
|
-
# Returns an string representation of this service.
|
33602
|
-
#
|
33603
|
-
# @return [String]
|
33604
|
-
#
|
33605
|
-
def to_s
|
33606
|
-
"#<#{VmReportedDeviceService}:#{absolute_path}>"
|
33607
|
-
end
|
33608
|
-
|
33609
31395
|
end
|
33610
31396
|
|
33611
31397
|
class VmReportedDevicesService < Service
|
@@ -33673,15 +31459,6 @@ module OvirtSDK4
|
|
33673
31459
|
return reported_device_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
33674
31460
|
end
|
33675
31461
|
|
33676
|
-
#
|
33677
|
-
# Returns an string representation of this service.
|
33678
|
-
#
|
33679
|
-
# @return [String]
|
33680
|
-
#
|
33681
|
-
def to_s
|
33682
|
-
"#<#{VmReportedDevicesService}:#{absolute_path}>"
|
33683
|
-
end
|
33684
|
-
|
33685
31462
|
end
|
33686
31463
|
|
33687
31464
|
class VmSessionService < Service
|
@@ -33729,15 +31506,6 @@ module OvirtSDK4
|
|
33729
31506
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
33730
31507
|
end
|
33731
31508
|
|
33732
|
-
#
|
33733
|
-
# Returns an string representation of this service.
|
33734
|
-
#
|
33735
|
-
# @return [String]
|
33736
|
-
#
|
33737
|
-
def to_s
|
33738
|
-
"#<#{VmSessionService}:#{absolute_path}>"
|
33739
|
-
end
|
33740
|
-
|
33741
31509
|
end
|
33742
31510
|
|
33743
31511
|
class VmSessionsService < Service
|
@@ -33829,15 +31597,6 @@ module OvirtSDK4
|
|
33829
31597
|
return session_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
33830
31598
|
end
|
33831
31599
|
|
33832
|
-
#
|
33833
|
-
# Returns an string representation of this service.
|
33834
|
-
#
|
33835
|
-
# @return [String]
|
33836
|
-
#
|
33837
|
-
def to_s
|
33838
|
-
"#<#{VmSessionsService}:#{absolute_path}>"
|
33839
|
-
end
|
33840
|
-
|
33841
31600
|
end
|
33842
31601
|
|
33843
31602
|
class VmWatchdogService < Service
|
@@ -33973,15 +31732,6 @@ module OvirtSDK4
|
|
33973
31732
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
33974
31733
|
end
|
33975
31734
|
|
33976
|
-
#
|
33977
|
-
# Returns an string representation of this service.
|
33978
|
-
#
|
33979
|
-
# @return [String]
|
33980
|
-
#
|
33981
|
-
def to_s
|
33982
|
-
"#<#{VmWatchdogService}:#{absolute_path}>"
|
33983
|
-
end
|
33984
|
-
|
33985
31735
|
end
|
33986
31736
|
|
33987
31737
|
class VmWatchdogsService < Service
|
@@ -34102,15 +31852,6 @@ module OvirtSDK4
|
|
34102
31852
|
return watchdog_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
34103
31853
|
end
|
34104
31854
|
|
34105
|
-
#
|
34106
|
-
# Returns an string representation of this service.
|
34107
|
-
#
|
34108
|
-
# @return [String]
|
34109
|
-
#
|
34110
|
-
def to_s
|
34111
|
-
"#<#{VmWatchdogsService}:#{absolute_path}>"
|
34112
|
-
end
|
34113
|
-
|
34114
31855
|
end
|
34115
31856
|
|
34116
31857
|
class VmsService < Service
|
@@ -34706,15 +32447,6 @@ module OvirtSDK4
|
|
34706
32447
|
return vm_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
34707
32448
|
end
|
34708
32449
|
|
34709
|
-
#
|
34710
|
-
# Returns an string representation of this service.
|
34711
|
-
#
|
34712
|
-
# @return [String]
|
34713
|
-
#
|
34714
|
-
def to_s
|
34715
|
-
"#<#{VmsService}:#{absolute_path}>"
|
34716
|
-
end
|
34717
|
-
|
34718
32450
|
end
|
34719
32451
|
|
34720
32452
|
class VnicProfileService < Service
|
@@ -34831,15 +32563,6 @@ module OvirtSDK4
|
|
34831
32563
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
34832
32564
|
end
|
34833
32565
|
|
34834
|
-
#
|
34835
|
-
# Returns an string representation of this service.
|
34836
|
-
#
|
34837
|
-
# @return [String]
|
34838
|
-
#
|
34839
|
-
def to_s
|
34840
|
-
"#<#{VnicProfileService}:#{absolute_path}>"
|
34841
|
-
end
|
34842
|
-
|
34843
32566
|
end
|
34844
32567
|
|
34845
32568
|
class VnicProfilesService < Service
|
@@ -34997,15 +32720,6 @@ module OvirtSDK4
|
|
34997
32720
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
34998
32721
|
end
|
34999
32722
|
|
35000
|
-
#
|
35001
|
-
# Returns an string representation of this service.
|
35002
|
-
#
|
35003
|
-
# @return [String]
|
35004
|
-
#
|
35005
|
-
def to_s
|
35006
|
-
"#<#{VnicProfilesService}:#{absolute_path}>"
|
35007
|
-
end
|
35008
|
-
|
35009
32723
|
end
|
35010
32724
|
|
35011
32725
|
class WeightService < Service
|
@@ -35081,15 +32795,6 @@ module OvirtSDK4
|
|
35081
32795
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
35082
32796
|
end
|
35083
32797
|
|
35084
|
-
#
|
35085
|
-
# Returns an string representation of this service.
|
35086
|
-
#
|
35087
|
-
# @return [String]
|
35088
|
-
#
|
35089
|
-
def to_s
|
35090
|
-
"#<#{WeightService}:#{absolute_path}>"
|
35091
|
-
end
|
35092
|
-
|
35093
32798
|
end
|
35094
32799
|
|
35095
32800
|
class WeightsService < Service
|
@@ -35187,15 +32892,6 @@ module OvirtSDK4
|
|
35187
32892
|
return weight_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
35188
32893
|
end
|
35189
32894
|
|
35190
|
-
#
|
35191
|
-
# Returns an string representation of this service.
|
35192
|
-
#
|
35193
|
-
# @return [String]
|
35194
|
-
#
|
35195
|
-
def to_s
|
35196
|
-
"#<#{WeightsService}:#{absolute_path}>"
|
35197
|
-
end
|
35198
|
-
|
35199
32895
|
end
|
35200
32896
|
|
35201
32897
|
class AttachedStorageDomainDiskService < MeasurableService
|
@@ -35479,15 +33175,6 @@ module OvirtSDK4
|
|
35479
33175
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
35480
33176
|
end
|
35481
33177
|
|
35482
|
-
#
|
35483
|
-
# Returns an string representation of this service.
|
35484
|
-
#
|
35485
|
-
# @return [String]
|
35486
|
-
#
|
35487
|
-
def to_s
|
35488
|
-
"#<#{AttachedStorageDomainDiskService}:#{absolute_path}>"
|
35489
|
-
end
|
35490
|
-
|
35491
33178
|
end
|
35492
33179
|
|
35493
33180
|
class DiskService < MeasurableService
|
@@ -35928,15 +33615,6 @@ module OvirtSDK4
|
|
35928
33615
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
35929
33616
|
end
|
35930
33617
|
|
35931
|
-
#
|
35932
|
-
# Returns an string representation of this service.
|
35933
|
-
#
|
35934
|
-
# @return [String]
|
35935
|
-
#
|
35936
|
-
def to_s
|
35937
|
-
"#<#{DiskService}:#{absolute_path}>"
|
35938
|
-
end
|
35939
|
-
|
35940
33618
|
end
|
35941
33619
|
|
35942
33620
|
class EngineKatelloErrataService < KatelloErrataService
|
@@ -36034,15 +33712,6 @@ module OvirtSDK4
|
|
36034
33712
|
return katello_erratum_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
36035
33713
|
end
|
36036
33714
|
|
36037
|
-
#
|
36038
|
-
# Returns an string representation of this service.
|
36039
|
-
#
|
36040
|
-
# @return [String]
|
36041
|
-
#
|
36042
|
-
def to_s
|
36043
|
-
"#<#{EngineKatelloErrataService}:#{absolute_path}>"
|
36044
|
-
end
|
36045
|
-
|
36046
33715
|
end
|
36047
33716
|
|
36048
33717
|
class ExternalHostProviderService < ExternalProviderService
|
@@ -36298,15 +33967,6 @@ module OvirtSDK4
|
|
36298
33967
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
36299
33968
|
end
|
36300
33969
|
|
36301
|
-
#
|
36302
|
-
# Returns an string representation of this service.
|
36303
|
-
#
|
36304
|
-
# @return [String]
|
36305
|
-
#
|
36306
|
-
def to_s
|
36307
|
-
"#<#{ExternalHostProviderService}:#{absolute_path}>"
|
36308
|
-
end
|
36309
|
-
|
36310
33970
|
end
|
36311
33971
|
|
36312
33972
|
class GlusterBrickService < MeasurableService
|
@@ -36485,15 +34145,6 @@ module OvirtSDK4
|
|
36485
34145
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
36486
34146
|
end
|
36487
34147
|
|
36488
|
-
#
|
36489
|
-
# Returns an string representation of this service.
|
36490
|
-
#
|
36491
|
-
# @return [String]
|
36492
|
-
#
|
36493
|
-
def to_s
|
36494
|
-
"#<#{GlusterBrickService}:#{absolute_path}>"
|
36495
|
-
end
|
36496
|
-
|
36497
34148
|
end
|
36498
34149
|
|
36499
34150
|
class GlusterVolumeService < MeasurableService
|
@@ -37028,15 +34679,6 @@ module OvirtSDK4
|
|
37028
34679
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
37029
34680
|
end
|
37030
34681
|
|
37031
|
-
#
|
37032
|
-
# Returns an string representation of this service.
|
37033
|
-
#
|
37034
|
-
# @return [String]
|
37035
|
-
#
|
37036
|
-
def to_s
|
37037
|
-
"#<#{GlusterVolumeService}:#{absolute_path}>"
|
37038
|
-
end
|
37039
|
-
|
37040
34682
|
end
|
37041
34683
|
|
37042
34684
|
class HostService < MeasurableService
|
@@ -38400,15 +36042,6 @@ module OvirtSDK4
|
|
38400
36042
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
38401
36043
|
end
|
38402
36044
|
|
38403
|
-
#
|
38404
|
-
# Returns an string representation of this service.
|
38405
|
-
#
|
38406
|
-
# @return [String]
|
38407
|
-
#
|
38408
|
-
def to_s
|
38409
|
-
"#<#{HostService}:#{absolute_path}>"
|
38410
|
-
end
|
38411
|
-
|
38412
36045
|
end
|
38413
36046
|
|
38414
36047
|
class HostNicService < MeasurableService
|
@@ -38583,15 +36216,6 @@ module OvirtSDK4
|
|
38583
36216
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
38584
36217
|
end
|
38585
36218
|
|
38586
|
-
#
|
38587
|
-
# Returns an string representation of this service.
|
38588
|
-
#
|
38589
|
-
# @return [String]
|
38590
|
-
#
|
38591
|
-
def to_s
|
38592
|
-
"#<#{HostNicService}:#{absolute_path}>"
|
38593
|
-
end
|
38594
|
-
|
38595
36219
|
end
|
38596
36220
|
|
38597
36221
|
class HostNumaNodeService < MeasurableService
|
@@ -38654,15 +36278,6 @@ module OvirtSDK4
|
|
38654
36278
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
38655
36279
|
end
|
38656
36280
|
|
38657
|
-
#
|
38658
|
-
# Returns an string representation of this service.
|
38659
|
-
#
|
38660
|
-
# @return [String]
|
38661
|
-
#
|
38662
|
-
def to_s
|
38663
|
-
"#<#{HostNumaNodeService}:#{absolute_path}>"
|
38664
|
-
end
|
38665
|
-
|
38666
36281
|
end
|
38667
36282
|
|
38668
36283
|
end
|