ovirt-engine-sdk 4.1.12 → 4.1.13
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 +1 -2269
- 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: d15c7864e456a822afbdb20f8c4402658dd9553f
|
4
|
+
data.tar.gz: 672c896f5270dd6fc76acd585b58d78d44d1405e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 801bc3ab19bf21cdc701dcbcd0f18b2a6f1b9b7077805e4e54066b0ab6360da34a1e1184f6794944ae7174bd5ad556d5a31cca388926728e82f263c66553e544
|
7
|
+
data.tar.gz: 2e1a6c15399706216eef641a5bb207608121052dd09fbe7ca120900c642d866cafe53a484ee1ed7deb733b3e83d8c24b6e47fa0a651e5b6cce495ffd1b37e397
|
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.1.13 / 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.1.12 / Nov 6 2017
|
6
13
|
|
7
14
|
Bug fixes:
|
@@ -1012,6 +1012,13 @@ static VALUE ov_http_client_wait(VALUE self, VALUE request) {
|
|
1012
1012
|
return Qnil;
|
1013
1013
|
}
|
1014
1014
|
|
1015
|
+
static VALUE ov_http_client_inspect(VALUE self) {
|
1016
|
+
ov_http_client_object* ptr;
|
1017
|
+
|
1018
|
+
ov_http_client_ptr(self, ptr);
|
1019
|
+
return rb_sprintf("#<%"PRIsVALUE":%p>", ov_http_client_class, ptr);
|
1020
|
+
}
|
1021
|
+
|
1015
1022
|
void ov_http_client_define(void) {
|
1016
1023
|
CURLcode code;
|
1017
1024
|
|
@@ -1027,9 +1034,11 @@ void ov_http_client_define(void) {
|
|
1027
1034
|
rb_define_method(ov_http_client_class, "initialize", ov_http_client_initialize, -1);
|
1028
1035
|
|
1029
1036
|
/* Define the methods: */
|
1030
|
-
rb_define_method(ov_http_client_class, "close",
|
1031
|
-
rb_define_method(ov_http_client_class, "
|
1032
|
-
rb_define_method(ov_http_client_class, "
|
1037
|
+
rb_define_method(ov_http_client_class, "close", ov_http_client_close, 0);
|
1038
|
+
rb_define_method(ov_http_client_class, "inspect", ov_http_client_inspect, 0);
|
1039
|
+
rb_define_method(ov_http_client_class, "send", ov_http_client_send, 1);
|
1040
|
+
rb_define_method(ov_http_client_class, "to_s", ov_http_client_inspect, 0);
|
1041
|
+
rb_define_method(ov_http_client_class, "wait", ov_http_client_wait, 1);
|
1033
1042
|
|
1034
1043
|
/* Define the symbols: */
|
1035
1044
|
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
@@ -514,6 +514,30 @@ module OvirtSDK4
|
|
514
514
|
raise error
|
515
515
|
end
|
516
516
|
|
517
|
+
#
|
518
|
+
# Returns a string representation of the connection.
|
519
|
+
#
|
520
|
+
# @return [String] The string representation.
|
521
|
+
#
|
522
|
+
def inspect
|
523
|
+
"#<#{self.class.name}:#{@url}>"
|
524
|
+
end
|
525
|
+
|
526
|
+
#
|
527
|
+
# Returns a string representation of the connection.
|
528
|
+
#
|
529
|
+
# @return [String] The string representation.
|
530
|
+
#
|
531
|
+
def to_s
|
532
|
+
inspect
|
533
|
+
end
|
534
|
+
|
535
|
+
#
|
536
|
+
# Returns a string representation of the connection.
|
537
|
+
#
|
538
|
+
# @return [String] The string representation.
|
539
|
+
#
|
540
|
+
|
517
541
|
private
|
518
542
|
|
519
543
|
#
|
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
@@ -903,15 +903,6 @@ module OvirtSDK4
|
|
903
903
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
904
904
|
end
|
905
905
|
|
906
|
-
#
|
907
|
-
# Returns an string representation of this service.
|
908
|
-
#
|
909
|
-
# @return [String]
|
910
|
-
#
|
911
|
-
def to_s
|
912
|
-
"#<#{AffinityGroupService}:#{absolute_path}>"
|
913
|
-
end
|
914
|
-
|
915
906
|
end
|
916
907
|
|
917
908
|
class AffinityGroupVmService < Service
|
@@ -955,15 +946,6 @@ module OvirtSDK4
|
|
955
946
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
956
947
|
end
|
957
948
|
|
958
|
-
#
|
959
|
-
# Returns an string representation of this service.
|
960
|
-
#
|
961
|
-
# @return [String]
|
962
|
-
#
|
963
|
-
def to_s
|
964
|
-
"#<#{AffinityGroupVmService}:#{absolute_path}>"
|
965
|
-
end
|
966
|
-
|
967
949
|
end
|
968
950
|
|
969
951
|
class AffinityGroupVmsService < Service
|
@@ -1069,15 +1051,6 @@ module OvirtSDK4
|
|
1069
1051
|
return vm_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1070
1052
|
end
|
1071
1053
|
|
1072
|
-
#
|
1073
|
-
# Returns an string representation of this service.
|
1074
|
-
#
|
1075
|
-
# @return [String]
|
1076
|
-
#
|
1077
|
-
def to_s
|
1078
|
-
"#<#{AffinityGroupVmsService}:#{absolute_path}>"
|
1079
|
-
end
|
1080
|
-
|
1081
1054
|
end
|
1082
1055
|
|
1083
1056
|
class AffinityGroupsService < Service
|
@@ -1191,15 +1164,6 @@ module OvirtSDK4
|
|
1191
1164
|
return group_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1192
1165
|
end
|
1193
1166
|
|
1194
|
-
#
|
1195
|
-
# Returns an string representation of this service.
|
1196
|
-
#
|
1197
|
-
# @return [String]
|
1198
|
-
#
|
1199
|
-
def to_s
|
1200
|
-
"#<#{AffinityGroupsService}:#{absolute_path}>"
|
1201
|
-
end
|
1202
|
-
|
1203
1167
|
end
|
1204
1168
|
|
1205
1169
|
class AffinityLabelService < Service
|
@@ -1324,15 +1288,6 @@ module OvirtSDK4
|
|
1324
1288
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
1325
1289
|
end
|
1326
1290
|
|
1327
|
-
#
|
1328
|
-
# Returns an string representation of this service.
|
1329
|
-
#
|
1330
|
-
# @return [String]
|
1331
|
-
#
|
1332
|
-
def to_s
|
1333
|
-
"#<#{AffinityLabelService}:#{absolute_path}>"
|
1334
|
-
end
|
1335
|
-
|
1336
1291
|
end
|
1337
1292
|
|
1338
1293
|
class AffinityLabelHostService < Service
|
@@ -1399,15 +1354,6 @@ module OvirtSDK4
|
|
1399
1354
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
1400
1355
|
end
|
1401
1356
|
|
1402
|
-
#
|
1403
|
-
# Returns an string representation of this service.
|
1404
|
-
#
|
1405
|
-
# @return [String]
|
1406
|
-
#
|
1407
|
-
def to_s
|
1408
|
-
"#<#{AffinityLabelHostService}:#{absolute_path}>"
|
1409
|
-
end
|
1410
|
-
|
1411
1357
|
end
|
1412
1358
|
|
1413
1359
|
class AffinityLabelHostsService < Service
|
@@ -1496,15 +1442,6 @@ module OvirtSDK4
|
|
1496
1442
|
return host_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1497
1443
|
end
|
1498
1444
|
|
1499
|
-
#
|
1500
|
-
# Returns an string representation of this service.
|
1501
|
-
#
|
1502
|
-
# @return [String]
|
1503
|
-
#
|
1504
|
-
def to_s
|
1505
|
-
"#<#{AffinityLabelHostsService}:#{absolute_path}>"
|
1506
|
-
end
|
1507
|
-
|
1508
1445
|
end
|
1509
1446
|
|
1510
1447
|
class AffinityLabelVmService < Service
|
@@ -1571,15 +1508,6 @@ module OvirtSDK4
|
|
1571
1508
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
1572
1509
|
end
|
1573
1510
|
|
1574
|
-
#
|
1575
|
-
# Returns an string representation of this service.
|
1576
|
-
#
|
1577
|
-
# @return [String]
|
1578
|
-
#
|
1579
|
-
def to_s
|
1580
|
-
"#<#{AffinityLabelVmService}:#{absolute_path}>"
|
1581
|
-
end
|
1582
|
-
|
1583
1511
|
end
|
1584
1512
|
|
1585
1513
|
class AffinityLabelVmsService < Service
|
@@ -1668,15 +1596,6 @@ module OvirtSDK4
|
|
1668
1596
|
return vm_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1669
1597
|
end
|
1670
1598
|
|
1671
|
-
#
|
1672
|
-
# Returns an string representation of this service.
|
1673
|
-
#
|
1674
|
-
# @return [String]
|
1675
|
-
#
|
1676
|
-
def to_s
|
1677
|
-
"#<#{AffinityLabelVmsService}:#{absolute_path}>"
|
1678
|
-
end
|
1679
|
-
|
1680
1599
|
end
|
1681
1600
|
|
1682
1601
|
class AffinityLabelsService < Service
|
@@ -1768,15 +1687,6 @@ module OvirtSDK4
|
|
1768
1687
|
return label_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1769
1688
|
end
|
1770
1689
|
|
1771
|
-
#
|
1772
|
-
# Returns an string representation of this service.
|
1773
|
-
#
|
1774
|
-
# @return [String]
|
1775
|
-
#
|
1776
|
-
def to_s
|
1777
|
-
"#<#{AffinityLabelsService}:#{absolute_path}>"
|
1778
|
-
end
|
1779
|
-
|
1780
1690
|
end
|
1781
1691
|
|
1782
1692
|
class AssignedAffinityLabelService < Service
|
@@ -1843,15 +1753,6 @@ module OvirtSDK4
|
|
1843
1753
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
1844
1754
|
end
|
1845
1755
|
|
1846
|
-
#
|
1847
|
-
# Returns an string representation of this service.
|
1848
|
-
#
|
1849
|
-
# @return [String]
|
1850
|
-
#
|
1851
|
-
def to_s
|
1852
|
-
"#<#{AssignedAffinityLabelService}:#{absolute_path}>"
|
1853
|
-
end
|
1854
|
-
|
1855
1756
|
end
|
1856
1757
|
|
1857
1758
|
class AssignedAffinityLabelsService < Service
|
@@ -1940,15 +1841,6 @@ module OvirtSDK4
|
|
1940
1841
|
return label_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
1941
1842
|
end
|
1942
1843
|
|
1943
|
-
#
|
1944
|
-
# Returns an string representation of this service.
|
1945
|
-
#
|
1946
|
-
# @return [String]
|
1947
|
-
#
|
1948
|
-
def to_s
|
1949
|
-
"#<#{AssignedAffinityLabelsService}:#{absolute_path}>"
|
1950
|
-
end
|
1951
|
-
|
1952
1844
|
end
|
1953
1845
|
|
1954
1846
|
class AssignedCpuProfileService < Service
|
@@ -2017,15 +1909,6 @@ module OvirtSDK4
|
|
2017
1909
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
2018
1910
|
end
|
2019
1911
|
|
2020
|
-
#
|
2021
|
-
# Returns an string representation of this service.
|
2022
|
-
#
|
2023
|
-
# @return [String]
|
2024
|
-
#
|
2025
|
-
def to_s
|
2026
|
-
"#<#{AssignedCpuProfileService}:#{absolute_path}>"
|
2027
|
-
end
|
2028
|
-
|
2029
1912
|
end
|
2030
1913
|
|
2031
1914
|
class AssignedCpuProfilesService < Service
|
@@ -2116,15 +1999,6 @@ module OvirtSDK4
|
|
2116
1999
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2117
2000
|
end
|
2118
2001
|
|
2119
|
-
#
|
2120
|
-
# Returns an string representation of this service.
|
2121
|
-
#
|
2122
|
-
# @return [String]
|
2123
|
-
#
|
2124
|
-
def to_s
|
2125
|
-
"#<#{AssignedCpuProfilesService}:#{absolute_path}>"
|
2126
|
-
end
|
2127
|
-
|
2128
2002
|
end
|
2129
2003
|
|
2130
2004
|
class AssignedDiskProfileService < Service
|
@@ -2193,15 +2067,6 @@ module OvirtSDK4
|
|
2193
2067
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
2194
2068
|
end
|
2195
2069
|
|
2196
|
-
#
|
2197
|
-
# Returns an string representation of this service.
|
2198
|
-
#
|
2199
|
-
# @return [String]
|
2200
|
-
#
|
2201
|
-
def to_s
|
2202
|
-
"#<#{AssignedDiskProfileService}:#{absolute_path}>"
|
2203
|
-
end
|
2204
|
-
|
2205
2070
|
end
|
2206
2071
|
|
2207
2072
|
class AssignedDiskProfilesService < Service
|
@@ -2292,15 +2157,6 @@ module OvirtSDK4
|
|
2292
2157
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2293
2158
|
end
|
2294
2159
|
|
2295
|
-
#
|
2296
|
-
# Returns an string representation of this service.
|
2297
|
-
#
|
2298
|
-
# @return [String]
|
2299
|
-
#
|
2300
|
-
def to_s
|
2301
|
-
"#<#{AssignedDiskProfilesService}:#{absolute_path}>"
|
2302
|
-
end
|
2303
|
-
|
2304
2160
|
end
|
2305
2161
|
|
2306
2162
|
class AssignedPermissionsService < Service
|
@@ -2468,15 +2324,6 @@ module OvirtSDK4
|
|
2468
2324
|
return permission_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2469
2325
|
end
|
2470
2326
|
|
2471
|
-
#
|
2472
|
-
# Returns an string representation of this service.
|
2473
|
-
#
|
2474
|
-
# @return [String]
|
2475
|
-
#
|
2476
|
-
def to_s
|
2477
|
-
"#<#{AssignedPermissionsService}:#{absolute_path}>"
|
2478
|
-
end
|
2479
|
-
|
2480
2327
|
end
|
2481
2328
|
|
2482
2329
|
class AssignedRolesService < Service
|
@@ -2540,15 +2387,6 @@ module OvirtSDK4
|
|
2540
2387
|
return role_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2541
2388
|
end
|
2542
2389
|
|
2543
|
-
#
|
2544
|
-
# Returns an string representation of this service.
|
2545
|
-
#
|
2546
|
-
# @return [String]
|
2547
|
-
#
|
2548
|
-
def to_s
|
2549
|
-
"#<#{AssignedRolesService}:#{absolute_path}>"
|
2550
|
-
end
|
2551
|
-
|
2552
2390
|
end
|
2553
2391
|
|
2554
2392
|
class AssignedTagService < Service
|
@@ -2639,15 +2477,6 @@ module OvirtSDK4
|
|
2639
2477
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
2640
2478
|
end
|
2641
2479
|
|
2642
|
-
#
|
2643
|
-
# Returns an string representation of this service.
|
2644
|
-
#
|
2645
|
-
# @return [String]
|
2646
|
-
#
|
2647
|
-
def to_s
|
2648
|
-
"#<#{AssignedTagService}:#{absolute_path}>"
|
2649
|
-
end
|
2650
|
-
|
2651
2480
|
end
|
2652
2481
|
|
2653
2482
|
class AssignedTagsService < Service
|
@@ -2770,15 +2599,6 @@ module OvirtSDK4
|
|
2770
2599
|
return tag_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2771
2600
|
end
|
2772
2601
|
|
2773
|
-
#
|
2774
|
-
# Returns an string representation of this service.
|
2775
|
-
#
|
2776
|
-
# @return [String]
|
2777
|
-
#
|
2778
|
-
def to_s
|
2779
|
-
"#<#{AssignedTagsService}:#{absolute_path}>"
|
2780
|
-
end
|
2781
|
-
|
2782
2602
|
end
|
2783
2603
|
|
2784
2604
|
class AssignedVnicProfileService < Service
|
@@ -2862,15 +2682,6 @@ module OvirtSDK4
|
|
2862
2682
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
2863
2683
|
end
|
2864
2684
|
|
2865
|
-
#
|
2866
|
-
# Returns an string representation of this service.
|
2867
|
-
#
|
2868
|
-
# @return [String]
|
2869
|
-
#
|
2870
|
-
def to_s
|
2871
|
-
"#<#{AssignedVnicProfileService}:#{absolute_path}>"
|
2872
|
-
end
|
2873
|
-
|
2874
2685
|
end
|
2875
2686
|
|
2876
2687
|
class AssignedVnicProfilesService < Service
|
@@ -2961,15 +2772,6 @@ module OvirtSDK4
|
|
2961
2772
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
2962
2773
|
end
|
2963
2774
|
|
2964
|
-
#
|
2965
|
-
# Returns an string representation of this service.
|
2966
|
-
#
|
2967
|
-
# @return [String]
|
2968
|
-
#
|
2969
|
-
def to_s
|
2970
|
-
"#<#{AssignedVnicProfilesService}:#{absolute_path}>"
|
2971
|
-
end
|
2972
|
-
|
2973
2775
|
end
|
2974
2776
|
|
2975
2777
|
class AttachedStorageDomainService < Service
|
@@ -3121,15 +2923,6 @@ module OvirtSDK4
|
|
3121
2923
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
3122
2924
|
end
|
3123
2925
|
|
3124
|
-
#
|
3125
|
-
# Returns an string representation of this service.
|
3126
|
-
#
|
3127
|
-
# @return [String]
|
3128
|
-
#
|
3129
|
-
def to_s
|
3130
|
-
"#<#{AttachedStorageDomainService}:#{absolute_path}>"
|
3131
|
-
end
|
3132
|
-
|
3133
2926
|
end
|
3134
2927
|
|
3135
2928
|
class AttachedStorageDomainsService < Service
|
@@ -3220,15 +3013,6 @@ module OvirtSDK4
|
|
3220
3013
|
return storage_domain_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
3221
3014
|
end
|
3222
3015
|
|
3223
|
-
#
|
3224
|
-
# Returns an string representation of this service.
|
3225
|
-
#
|
3226
|
-
# @return [String]
|
3227
|
-
#
|
3228
|
-
def to_s
|
3229
|
-
"#<#{AttachedStorageDomainsService}:#{absolute_path}>"
|
3230
|
-
end
|
3231
|
-
|
3232
3016
|
end
|
3233
3017
|
|
3234
3018
|
class BalanceService < Service
|
@@ -3300,15 +3084,6 @@ module OvirtSDK4
|
|
3300
3084
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
3301
3085
|
end
|
3302
3086
|
|
3303
|
-
#
|
3304
|
-
# Returns an string representation of this service.
|
3305
|
-
#
|
3306
|
-
# @return [String]
|
3307
|
-
#
|
3308
|
-
def to_s
|
3309
|
-
"#<#{BalanceService}:#{absolute_path}>"
|
3310
|
-
end
|
3311
|
-
|
3312
3087
|
end
|
3313
3088
|
|
3314
3089
|
class BalancesService < Service
|
@@ -3402,15 +3177,6 @@ module OvirtSDK4
|
|
3402
3177
|
return balance_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
3403
3178
|
end
|
3404
3179
|
|
3405
|
-
#
|
3406
|
-
# Returns an string representation of this service.
|
3407
|
-
#
|
3408
|
-
# @return [String]
|
3409
|
-
#
|
3410
|
-
def to_s
|
3411
|
-
"#<#{BalancesService}:#{absolute_path}>"
|
3412
|
-
end
|
3413
|
-
|
3414
3180
|
end
|
3415
3181
|
|
3416
3182
|
class BookmarkService < Service
|
@@ -3547,15 +3313,6 @@ module OvirtSDK4
|
|
3547
3313
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
3548
3314
|
end
|
3549
3315
|
|
3550
|
-
#
|
3551
|
-
# Returns an string representation of this service.
|
3552
|
-
#
|
3553
|
-
# @return [String]
|
3554
|
-
#
|
3555
|
-
def to_s
|
3556
|
-
"#<#{BookmarkService}:#{absolute_path}>"
|
3557
|
-
end
|
3558
|
-
|
3559
3316
|
end
|
3560
3317
|
|
3561
3318
|
class BookmarksService < Service
|
@@ -3682,15 +3439,6 @@ module OvirtSDK4
|
|
3682
3439
|
return bookmark_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
3683
3440
|
end
|
3684
3441
|
|
3685
|
-
#
|
3686
|
-
# Returns an string representation of this service.
|
3687
|
-
#
|
3688
|
-
# @return [String]
|
3689
|
-
#
|
3690
|
-
def to_s
|
3691
|
-
"#<#{BookmarksService}:#{absolute_path}>"
|
3692
|
-
end
|
3693
|
-
|
3694
3442
|
end
|
3695
3443
|
|
3696
3444
|
class ClusterService < Service
|
@@ -4034,15 +3782,6 @@ module OvirtSDK4
|
|
4034
3782
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4035
3783
|
end
|
4036
3784
|
|
4037
|
-
#
|
4038
|
-
# Returns an string representation of this service.
|
4039
|
-
#
|
4040
|
-
# @return [String]
|
4041
|
-
#
|
4042
|
-
def to_s
|
4043
|
-
"#<#{ClusterService}:#{absolute_path}>"
|
4044
|
-
end
|
4045
|
-
|
4046
3785
|
end
|
4047
3786
|
|
4048
3787
|
class ClusterEnabledFeatureService < Service
|
@@ -4132,15 +3871,6 @@ module OvirtSDK4
|
|
4132
3871
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4133
3872
|
end
|
4134
3873
|
|
4135
|
-
#
|
4136
|
-
# Returns an string representation of this service.
|
4137
|
-
#
|
4138
|
-
# @return [String]
|
4139
|
-
#
|
4140
|
-
def to_s
|
4141
|
-
"#<#{ClusterEnabledFeatureService}:#{absolute_path}>"
|
4142
|
-
end
|
4143
|
-
|
4144
3874
|
end
|
4145
3875
|
|
4146
3876
|
class ClusterEnabledFeaturesService < Service
|
@@ -4260,15 +3990,6 @@ module OvirtSDK4
|
|
4260
3990
|
return feature_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
4261
3991
|
end
|
4262
3992
|
|
4263
|
-
#
|
4264
|
-
# Returns an string representation of this service.
|
4265
|
-
#
|
4266
|
-
# @return [String]
|
4267
|
-
#
|
4268
|
-
def to_s
|
4269
|
-
"#<#{ClusterEnabledFeaturesService}:#{absolute_path}>"
|
4270
|
-
end
|
4271
|
-
|
4272
3993
|
end
|
4273
3994
|
|
4274
3995
|
class ClusterFeatureService < Service
|
@@ -4328,15 +4049,6 @@ module OvirtSDK4
|
|
4328
4049
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4329
4050
|
end
|
4330
4051
|
|
4331
|
-
#
|
4332
|
-
# Returns an string representation of this service.
|
4333
|
-
#
|
4334
|
-
# @return [String]
|
4335
|
-
#
|
4336
|
-
def to_s
|
4337
|
-
"#<#{ClusterFeatureService}:#{absolute_path}>"
|
4338
|
-
end
|
4339
|
-
|
4340
4052
|
end
|
4341
4053
|
|
4342
4054
|
class ClusterFeaturesService < Service
|
@@ -4412,15 +4124,6 @@ module OvirtSDK4
|
|
4412
4124
|
return feature_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
4413
4125
|
end
|
4414
4126
|
|
4415
|
-
#
|
4416
|
-
# Returns an string representation of this service.
|
4417
|
-
#
|
4418
|
-
# @return [String]
|
4419
|
-
#
|
4420
|
-
def to_s
|
4421
|
-
"#<#{ClusterFeaturesService}:#{absolute_path}>"
|
4422
|
-
end
|
4423
|
-
|
4424
4127
|
end
|
4425
4128
|
|
4426
4129
|
class ClusterLevelService < Service
|
@@ -4510,15 +4213,6 @@ module OvirtSDK4
|
|
4510
4213
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4511
4214
|
end
|
4512
4215
|
|
4513
|
-
#
|
4514
|
-
# Returns an string representation of this service.
|
4515
|
-
#
|
4516
|
-
# @return [String]
|
4517
|
-
#
|
4518
|
-
def to_s
|
4519
|
-
"#<#{ClusterLevelService}:#{absolute_path}>"
|
4520
|
-
end
|
4521
|
-
|
4522
4216
|
end
|
4523
4217
|
|
4524
4218
|
class ClusterLevelsService < Service
|
@@ -4596,15 +4290,6 @@ module OvirtSDK4
|
|
4596
4290
|
return level_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
4597
4291
|
end
|
4598
4292
|
|
4599
|
-
#
|
4600
|
-
# Returns an string representation of this service.
|
4601
|
-
#
|
4602
|
-
# @return [String]
|
4603
|
-
#
|
4604
|
-
def to_s
|
4605
|
-
"#<#{ClusterLevelsService}:#{absolute_path}>"
|
4606
|
-
end
|
4607
|
-
|
4608
4293
|
end
|
4609
4294
|
|
4610
4295
|
class ClusterNetworkService < Service
|
@@ -4697,15 +4382,6 @@ module OvirtSDK4
|
|
4697
4382
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4698
4383
|
end
|
4699
4384
|
|
4700
|
-
#
|
4701
|
-
# Returns an string representation of this service.
|
4702
|
-
#
|
4703
|
-
# @return [String]
|
4704
|
-
#
|
4705
|
-
def to_s
|
4706
|
-
"#<#{ClusterNetworkService}:#{absolute_path}>"
|
4707
|
-
end
|
4708
|
-
|
4709
4385
|
end
|
4710
4386
|
|
4711
4387
|
class ClusterNetworksService < Service
|
@@ -4810,15 +4486,6 @@ module OvirtSDK4
|
|
4810
4486
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
4811
4487
|
end
|
4812
4488
|
|
4813
|
-
#
|
4814
|
-
# Returns an string representation of this service.
|
4815
|
-
#
|
4816
|
-
# @return [String]
|
4817
|
-
#
|
4818
|
-
def to_s
|
4819
|
-
"#<#{ClusterNetworksService}:#{absolute_path}>"
|
4820
|
-
end
|
4821
|
-
|
4822
4489
|
end
|
4823
4490
|
|
4824
4491
|
class ClustersService < Service
|
@@ -4942,15 +4609,6 @@ module OvirtSDK4
|
|
4942
4609
|
return cluster_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
4943
4610
|
end
|
4944
4611
|
|
4945
|
-
#
|
4946
|
-
# Returns an string representation of this service.
|
4947
|
-
#
|
4948
|
-
# @return [String]
|
4949
|
-
#
|
4950
|
-
def to_s
|
4951
|
-
"#<#{ClustersService}:#{absolute_path}>"
|
4952
|
-
end
|
4953
|
-
|
4954
4612
|
end
|
4955
4613
|
|
4956
4614
|
class CopyableService < Service
|
@@ -4989,15 +4647,6 @@ module OvirtSDK4
|
|
4989
4647
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
4990
4648
|
end
|
4991
4649
|
|
4992
|
-
#
|
4993
|
-
# Returns an string representation of this service.
|
4994
|
-
#
|
4995
|
-
# @return [String]
|
4996
|
-
#
|
4997
|
-
def to_s
|
4998
|
-
"#<#{CopyableService}:#{absolute_path}>"
|
4999
|
-
end
|
5000
|
-
|
5001
4650
|
end
|
5002
4651
|
|
5003
4652
|
class CpuProfileService < Service
|
@@ -5110,15 +4759,6 @@ module OvirtSDK4
|
|
5110
4759
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
5111
4760
|
end
|
5112
4761
|
|
5113
|
-
#
|
5114
|
-
# Returns an string representation of this service.
|
5115
|
-
#
|
5116
|
-
# @return [String]
|
5117
|
-
#
|
5118
|
-
def to_s
|
5119
|
-
"#<#{CpuProfileService}:#{absolute_path}>"
|
5120
|
-
end
|
5121
|
-
|
5122
4762
|
end
|
5123
4763
|
|
5124
4764
|
class CpuProfilesService < Service
|
@@ -5209,15 +4849,6 @@ module OvirtSDK4
|
|
5209
4849
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
5210
4850
|
end
|
5211
4851
|
|
5212
|
-
#
|
5213
|
-
# Returns an string representation of this service.
|
5214
|
-
#
|
5215
|
-
# @return [String]
|
5216
|
-
#
|
5217
|
-
def to_s
|
5218
|
-
"#<#{CpuProfilesService}:#{absolute_path}>"
|
5219
|
-
end
|
5220
|
-
|
5221
4852
|
end
|
5222
4853
|
|
5223
4854
|
class DataCenterService < Service
|
@@ -5519,15 +5150,6 @@ module OvirtSDK4
|
|
5519
5150
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
5520
5151
|
end
|
5521
5152
|
|
5522
|
-
#
|
5523
|
-
# Returns an string representation of this service.
|
5524
|
-
#
|
5525
|
-
# @return [String]
|
5526
|
-
#
|
5527
|
-
def to_s
|
5528
|
-
"#<#{DataCenterService}:#{absolute_path}>"
|
5529
|
-
end
|
5530
|
-
|
5531
5153
|
end
|
5532
5154
|
|
5533
5155
|
class DataCenterNetworkService < Service
|
@@ -5620,15 +5242,6 @@ module OvirtSDK4
|
|
5620
5242
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
5621
5243
|
end
|
5622
5244
|
|
5623
|
-
#
|
5624
|
-
# Returns an string representation of this service.
|
5625
|
-
#
|
5626
|
-
# @return [String]
|
5627
|
-
#
|
5628
|
-
def to_s
|
5629
|
-
"#<#{DataCenterNetworkService}:#{absolute_path}>"
|
5630
|
-
end
|
5631
|
-
|
5632
5245
|
end
|
5633
5246
|
|
5634
5247
|
class DataCenterNetworksService < Service
|
@@ -5735,15 +5348,6 @@ module OvirtSDK4
|
|
5735
5348
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
5736
5349
|
end
|
5737
5350
|
|
5738
|
-
#
|
5739
|
-
# Returns an string representation of this service.
|
5740
|
-
#
|
5741
|
-
# @return [String]
|
5742
|
-
#
|
5743
|
-
def to_s
|
5744
|
-
"#<#{DataCenterNetworksService}:#{absolute_path}>"
|
5745
|
-
end
|
5746
|
-
|
5747
5351
|
end
|
5748
5352
|
|
5749
5353
|
class DataCentersService < Service
|
@@ -5920,15 +5524,6 @@ module OvirtSDK4
|
|
5920
5524
|
return data_center_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
5921
5525
|
end
|
5922
5526
|
|
5923
|
-
#
|
5924
|
-
# Returns an string representation of this service.
|
5925
|
-
#
|
5926
|
-
# @return [String]
|
5927
|
-
#
|
5928
|
-
def to_s
|
5929
|
-
"#<#{DataCentersService}:#{absolute_path}>"
|
5930
|
-
end
|
5931
|
-
|
5932
5527
|
end
|
5933
5528
|
|
5934
5529
|
class DiskAttachmentService < Service
|
@@ -6067,15 +5662,6 @@ module OvirtSDK4
|
|
6067
5662
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
6068
5663
|
end
|
6069
5664
|
|
6070
|
-
#
|
6071
|
-
# Returns an string representation of this service.
|
6072
|
-
#
|
6073
|
-
# @return [String]
|
6074
|
-
#
|
6075
|
-
def to_s
|
6076
|
-
"#<#{DiskAttachmentService}:#{absolute_path}>"
|
6077
|
-
end
|
6078
|
-
|
6079
5665
|
end
|
6080
5666
|
|
6081
5667
|
class DiskAttachmentsService < Service
|
@@ -6206,15 +5792,6 @@ module OvirtSDK4
|
|
6206
5792
|
return attachment_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
6207
5793
|
end
|
6208
5794
|
|
6209
|
-
#
|
6210
|
-
# Returns an string representation of this service.
|
6211
|
-
#
|
6212
|
-
# @return [String]
|
6213
|
-
#
|
6214
|
-
def to_s
|
6215
|
-
"#<#{DiskAttachmentsService}:#{absolute_path}>"
|
6216
|
-
end
|
6217
|
-
|
6218
5795
|
end
|
6219
5796
|
|
6220
5797
|
class DiskProfileService < Service
|
@@ -6327,15 +5904,6 @@ module OvirtSDK4
|
|
6327
5904
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
6328
5905
|
end
|
6329
5906
|
|
6330
|
-
#
|
6331
|
-
# Returns an string representation of this service.
|
6332
|
-
#
|
6333
|
-
# @return [String]
|
6334
|
-
#
|
6335
|
-
def to_s
|
6336
|
-
"#<#{DiskProfileService}:#{absolute_path}>"
|
6337
|
-
end
|
6338
|
-
|
6339
5907
|
end
|
6340
5908
|
|
6341
5909
|
class DiskProfilesService < Service
|
@@ -6426,15 +5994,6 @@ module OvirtSDK4
|
|
6426
5994
|
return disk_profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
6427
5995
|
end
|
6428
5996
|
|
6429
|
-
#
|
6430
|
-
# Returns an string representation of this service.
|
6431
|
-
#
|
6432
|
-
# @return [String]
|
6433
|
-
#
|
6434
|
-
def to_s
|
6435
|
-
"#<#{DiskProfilesService}:#{absolute_path}>"
|
6436
|
-
end
|
6437
|
-
|
6438
5997
|
end
|
6439
5998
|
|
6440
5999
|
class DiskSnapshotService < Service
|
@@ -6503,15 +6062,6 @@ module OvirtSDK4
|
|
6503
6062
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
6504
6063
|
end
|
6505
6064
|
|
6506
|
-
#
|
6507
|
-
# Returns an string representation of this service.
|
6508
|
-
#
|
6509
|
-
# @return [String]
|
6510
|
-
#
|
6511
|
-
def to_s
|
6512
|
-
"#<#{DiskSnapshotService}:#{absolute_path}>"
|
6513
|
-
end
|
6514
|
-
|
6515
6065
|
end
|
6516
6066
|
|
6517
6067
|
class DiskSnapshotsService < Service
|
@@ -6575,15 +6125,6 @@ module OvirtSDK4
|
|
6575
6125
|
return snapshot_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
6576
6126
|
end
|
6577
6127
|
|
6578
|
-
#
|
6579
|
-
# Returns an string representation of this service.
|
6580
|
-
#
|
6581
|
-
# @return [String]
|
6582
|
-
#
|
6583
|
-
def to_s
|
6584
|
-
"#<#{DiskSnapshotsService}:#{absolute_path}>"
|
6585
|
-
end
|
6586
|
-
|
6587
6128
|
end
|
6588
6129
|
|
6589
6130
|
class DisksService < Service
|
@@ -6827,15 +6368,6 @@ module OvirtSDK4
|
|
6827
6368
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
6828
6369
|
end
|
6829
6370
|
|
6830
|
-
#
|
6831
|
-
# Returns an string representation of this service.
|
6832
|
-
#
|
6833
|
-
# @return [String]
|
6834
|
-
#
|
6835
|
-
def to_s
|
6836
|
-
"#<#{DisksService}:#{absolute_path}>"
|
6837
|
-
end
|
6838
|
-
|
6839
6371
|
end
|
6840
6372
|
|
6841
6373
|
class DomainService < Service
|
@@ -6928,15 +6460,6 @@ module OvirtSDK4
|
|
6928
6460
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
6929
6461
|
end
|
6930
6462
|
|
6931
|
-
#
|
6932
|
-
# Returns an string representation of this service.
|
6933
|
-
#
|
6934
|
-
# @return [String]
|
6935
|
-
#
|
6936
|
-
def to_s
|
6937
|
-
"#<#{DomainService}:#{absolute_path}>"
|
6938
|
-
end
|
6939
|
-
|
6940
6463
|
end
|
6941
6464
|
|
6942
6465
|
class DomainGroupService < Service
|
@@ -6980,15 +6503,6 @@ module OvirtSDK4
|
|
6980
6503
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
6981
6504
|
end
|
6982
6505
|
|
6983
|
-
#
|
6984
|
-
# Returns an string representation of this service.
|
6985
|
-
#
|
6986
|
-
# @return [String]
|
6987
|
-
#
|
6988
|
-
def to_s
|
6989
|
-
"#<#{DomainGroupService}:#{absolute_path}>"
|
6990
|
-
end
|
6991
|
-
|
6992
6506
|
end
|
6993
6507
|
|
6994
6508
|
class DomainGroupsService < Service
|
@@ -7060,15 +6574,6 @@ module OvirtSDK4
|
|
7060
6574
|
return group_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
7061
6575
|
end
|
7062
6576
|
|
7063
|
-
#
|
7064
|
-
# Returns an string representation of this service.
|
7065
|
-
#
|
7066
|
-
# @return [String]
|
7067
|
-
#
|
7068
|
-
def to_s
|
7069
|
-
"#<#{DomainGroupsService}:#{absolute_path}>"
|
7070
|
-
end
|
7071
|
-
|
7072
6577
|
end
|
7073
6578
|
|
7074
6579
|
class DomainUserService < Service
|
@@ -7134,15 +6639,6 @@ module OvirtSDK4
|
|
7134
6639
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
7135
6640
|
end
|
7136
6641
|
|
7137
|
-
#
|
7138
|
-
# Returns an string representation of this service.
|
7139
|
-
#
|
7140
|
-
# @return [String]
|
7141
|
-
#
|
7142
|
-
def to_s
|
7143
|
-
"#<#{DomainUserService}:#{absolute_path}>"
|
7144
|
-
end
|
7145
|
-
|
7146
6642
|
end
|
7147
6643
|
|
7148
6644
|
class DomainUsersService < Service
|
@@ -7238,15 +6734,6 @@ module OvirtSDK4
|
|
7238
6734
|
return user_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
7239
6735
|
end
|
7240
6736
|
|
7241
|
-
#
|
7242
|
-
# Returns an string representation of this service.
|
7243
|
-
#
|
7244
|
-
# @return [String]
|
7245
|
-
#
|
7246
|
-
def to_s
|
7247
|
-
"#<#{DomainUsersService}:#{absolute_path}>"
|
7248
|
-
end
|
7249
|
-
|
7250
6737
|
end
|
7251
6738
|
|
7252
6739
|
class DomainsService < Service
|
@@ -7331,15 +6818,6 @@ module OvirtSDK4
|
|
7331
6818
|
return domain_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
7332
6819
|
end
|
7333
6820
|
|
7334
|
-
#
|
7335
|
-
# Returns an string representation of this service.
|
7336
|
-
#
|
7337
|
-
# @return [String]
|
7338
|
-
#
|
7339
|
-
def to_s
|
7340
|
-
"#<#{DomainsService}:#{absolute_path}>"
|
7341
|
-
end
|
7342
|
-
|
7343
6821
|
end
|
7344
6822
|
|
7345
6823
|
class EventService < Service
|
@@ -7443,15 +6921,6 @@ module OvirtSDK4
|
|
7443
6921
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
7444
6922
|
end
|
7445
6923
|
|
7446
|
-
#
|
7447
|
-
# Returns an string representation of this service.
|
7448
|
-
#
|
7449
|
-
# @return [String]
|
7450
|
-
#
|
7451
|
-
def to_s
|
7452
|
-
"#<#{EventService}:#{absolute_path}>"
|
7453
|
-
end
|
7454
|
-
|
7455
6924
|
end
|
7456
6925
|
|
7457
6926
|
class EventsService < Service
|
@@ -7726,15 +7195,6 @@ module OvirtSDK4
|
|
7726
7195
|
return event_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
7727
7196
|
end
|
7728
7197
|
|
7729
|
-
#
|
7730
|
-
# Returns an string representation of this service.
|
7731
|
-
#
|
7732
|
-
# @return [String]
|
7733
|
-
#
|
7734
|
-
def to_s
|
7735
|
-
"#<#{EventsService}:#{absolute_path}>"
|
7736
|
-
end
|
7737
|
-
|
7738
7198
|
end
|
7739
7199
|
|
7740
7200
|
class ExternalComputeResourceService < Service
|
@@ -7797,15 +7257,6 @@ module OvirtSDK4
|
|
7797
7257
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
7798
7258
|
end
|
7799
7259
|
|
7800
|
-
#
|
7801
|
-
# Returns an string representation of this service.
|
7802
|
-
#
|
7803
|
-
# @return [String]
|
7804
|
-
#
|
7805
|
-
def to_s
|
7806
|
-
"#<#{ExternalComputeResourceService}:#{absolute_path}>"
|
7807
|
-
end
|
7808
|
-
|
7809
7260
|
end
|
7810
7261
|
|
7811
7262
|
class ExternalComputeResourcesService < Service
|
@@ -7891,15 +7342,6 @@ module OvirtSDK4
|
|
7891
7342
|
return resource_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
7892
7343
|
end
|
7893
7344
|
|
7894
|
-
#
|
7895
|
-
# Returns an string representation of this service.
|
7896
|
-
#
|
7897
|
-
# @return [String]
|
7898
|
-
#
|
7899
|
-
def to_s
|
7900
|
-
"#<#{ExternalComputeResourcesService}:#{absolute_path}>"
|
7901
|
-
end
|
7902
|
-
|
7903
7345
|
end
|
7904
7346
|
|
7905
7347
|
class ExternalDiscoveredHostService < Service
|
@@ -7966,15 +7408,6 @@ module OvirtSDK4
|
|
7966
7408
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
7967
7409
|
end
|
7968
7410
|
|
7969
|
-
#
|
7970
|
-
# Returns an string representation of this service.
|
7971
|
-
#
|
7972
|
-
# @return [String]
|
7973
|
-
#
|
7974
|
-
def to_s
|
7975
|
-
"#<#{ExternalDiscoveredHostService}:#{absolute_path}>"
|
7976
|
-
end
|
7977
|
-
|
7978
7411
|
end
|
7979
7412
|
|
7980
7413
|
class ExternalDiscoveredHostsService < Service
|
@@ -8070,15 +7503,6 @@ module OvirtSDK4
|
|
8070
7503
|
return host_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8071
7504
|
end
|
8072
7505
|
|
8073
|
-
#
|
8074
|
-
# Returns an string representation of this service.
|
8075
|
-
#
|
8076
|
-
# @return [String]
|
8077
|
-
#
|
8078
|
-
def to_s
|
8079
|
-
"#<#{ExternalDiscoveredHostsService}:#{absolute_path}>"
|
8080
|
-
end
|
8081
|
-
|
8082
7506
|
end
|
8083
7507
|
|
8084
7508
|
class ExternalHostService < Service
|
@@ -8122,15 +7546,6 @@ module OvirtSDK4
|
|
8122
7546
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8123
7547
|
end
|
8124
7548
|
|
8125
|
-
#
|
8126
|
-
# Returns an string representation of this service.
|
8127
|
-
#
|
8128
|
-
# @return [String]
|
8129
|
-
#
|
8130
|
-
def to_s
|
8131
|
-
"#<#{ExternalHostService}:#{absolute_path}>"
|
8132
|
-
end
|
8133
|
-
|
8134
7549
|
end
|
8135
7550
|
|
8136
7551
|
class ExternalHostGroupService < Service
|
@@ -8194,15 +7609,6 @@ module OvirtSDK4
|
|
8194
7609
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8195
7610
|
end
|
8196
7611
|
|
8197
|
-
#
|
8198
|
-
# Returns an string representation of this service.
|
8199
|
-
#
|
8200
|
-
# @return [String]
|
8201
|
-
#
|
8202
|
-
def to_s
|
8203
|
-
"#<#{ExternalHostGroupService}:#{absolute_path}>"
|
8204
|
-
end
|
8205
|
-
|
8206
7612
|
end
|
8207
7613
|
|
8208
7614
|
class ExternalHostGroupsService < Service
|
@@ -8292,15 +7698,6 @@ module OvirtSDK4
|
|
8292
7698
|
return group_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8293
7699
|
end
|
8294
7700
|
|
8295
|
-
#
|
8296
|
-
# Returns an string representation of this service.
|
8297
|
-
#
|
8298
|
-
# @return [String]
|
8299
|
-
#
|
8300
|
-
def to_s
|
8301
|
-
"#<#{ExternalHostGroupsService}:#{absolute_path}>"
|
8302
|
-
end
|
8303
|
-
|
8304
7701
|
end
|
8305
7702
|
|
8306
7703
|
class ExternalHostProvidersService < Service
|
@@ -8391,15 +7788,6 @@ module OvirtSDK4
|
|
8391
7788
|
return provider_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8392
7789
|
end
|
8393
7790
|
|
8394
|
-
#
|
8395
|
-
# Returns an string representation of this service.
|
8396
|
-
#
|
8397
|
-
# @return [String]
|
8398
|
-
#
|
8399
|
-
def to_s
|
8400
|
-
"#<#{ExternalHostProvidersService}:#{absolute_path}>"
|
8401
|
-
end
|
8402
|
-
|
8403
7791
|
end
|
8404
7792
|
|
8405
7793
|
class ExternalHostsService < Service
|
@@ -8463,15 +7851,6 @@ module OvirtSDK4
|
|
8463
7851
|
return host_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8464
7852
|
end
|
8465
7853
|
|
8466
|
-
#
|
8467
|
-
# Returns an string representation of this service.
|
8468
|
-
#
|
8469
|
-
# @return [String]
|
8470
|
-
#
|
8471
|
-
def to_s
|
8472
|
-
"#<#{ExternalHostsService}:#{absolute_path}>"
|
8473
|
-
end
|
8474
|
-
|
8475
7854
|
end
|
8476
7855
|
|
8477
7856
|
class ExternalProviderService < Service
|
@@ -8551,15 +7930,6 @@ module OvirtSDK4
|
|
8551
7930
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8552
7931
|
end
|
8553
7932
|
|
8554
|
-
#
|
8555
|
-
# Returns an string representation of this service.
|
8556
|
-
#
|
8557
|
-
# @return [String]
|
8558
|
-
#
|
8559
|
-
def to_s
|
8560
|
-
"#<#{ExternalProviderService}:#{absolute_path}>"
|
8561
|
-
end
|
8562
|
-
|
8563
7933
|
end
|
8564
7934
|
|
8565
7935
|
class ExternalProviderCertificateService < Service
|
@@ -8619,15 +7989,6 @@ module OvirtSDK4
|
|
8619
7989
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8620
7990
|
end
|
8621
7991
|
|
8622
|
-
#
|
8623
|
-
# Returns an string representation of this service.
|
8624
|
-
#
|
8625
|
-
# @return [String]
|
8626
|
-
#
|
8627
|
-
def to_s
|
8628
|
-
"#<#{ExternalProviderCertificateService}:#{absolute_path}>"
|
8629
|
-
end
|
8630
|
-
|
8631
7992
|
end
|
8632
7993
|
|
8633
7994
|
class ExternalProviderCertificatesService < Service
|
@@ -8708,15 +8069,6 @@ module OvirtSDK4
|
|
8708
8069
|
return certificate_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
8709
8070
|
end
|
8710
8071
|
|
8711
|
-
#
|
8712
|
-
# Returns an string representation of this service.
|
8713
|
-
#
|
8714
|
-
# @return [String]
|
8715
|
-
#
|
8716
|
-
def to_s
|
8717
|
-
"#<#{ExternalProviderCertificatesService}:#{absolute_path}>"
|
8718
|
-
end
|
8719
|
-
|
8720
8072
|
end
|
8721
8073
|
|
8722
8074
|
class ExternalVmImportsService < Service
|
@@ -8789,15 +8141,6 @@ module OvirtSDK4
|
|
8789
8141
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8790
8142
|
end
|
8791
8143
|
|
8792
|
-
#
|
8793
|
-
# Returns an string representation of this service.
|
8794
|
-
#
|
8795
|
-
# @return [String]
|
8796
|
-
#
|
8797
|
-
def to_s
|
8798
|
-
"#<#{ExternalVmImportsService}:#{absolute_path}>"
|
8799
|
-
end
|
8800
|
-
|
8801
8144
|
end
|
8802
8145
|
|
8803
8146
|
class FenceAgentService < Service
|
@@ -8920,15 +8263,6 @@ module OvirtSDK4
|
|
8920
8263
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
8921
8264
|
end
|
8922
8265
|
|
8923
|
-
#
|
8924
|
-
# Returns an string representation of this service.
|
8925
|
-
#
|
8926
|
-
# @return [String]
|
8927
|
-
#
|
8928
|
-
def to_s
|
8929
|
-
"#<#{FenceAgentService}:#{absolute_path}>"
|
8930
|
-
end
|
8931
|
-
|
8932
8266
|
end
|
8933
8267
|
|
8934
8268
|
class FenceAgentsService < Service
|
@@ -9042,15 +8376,6 @@ module OvirtSDK4
|
|
9042
8376
|
return agent_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9043
8377
|
end
|
9044
8378
|
|
9045
|
-
#
|
9046
|
-
# Returns an string representation of this service.
|
9047
|
-
#
|
9048
|
-
# @return [String]
|
9049
|
-
#
|
9050
|
-
def to_s
|
9051
|
-
"#<#{FenceAgentsService}:#{absolute_path}>"
|
9052
|
-
end
|
9053
|
-
|
9054
8379
|
end
|
9055
8380
|
|
9056
8381
|
class FileService < Service
|
@@ -9094,15 +8419,6 @@ module OvirtSDK4
|
|
9094
8419
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
9095
8420
|
end
|
9096
8421
|
|
9097
|
-
#
|
9098
|
-
# Returns an string representation of this service.
|
9099
|
-
#
|
9100
|
-
# @return [String]
|
9101
|
-
#
|
9102
|
-
def to_s
|
9103
|
-
"#<#{FileService}:#{absolute_path}>"
|
9104
|
-
end
|
9105
|
-
|
9106
8422
|
end
|
9107
8423
|
|
9108
8424
|
class FilesService < Service
|
@@ -9192,15 +8508,6 @@ module OvirtSDK4
|
|
9192
8508
|
return file_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9193
8509
|
end
|
9194
8510
|
|
9195
|
-
#
|
9196
|
-
# Returns an string representation of this service.
|
9197
|
-
#
|
9198
|
-
# @return [String]
|
9199
|
-
#
|
9200
|
-
def to_s
|
9201
|
-
"#<#{FilesService}:#{absolute_path}>"
|
9202
|
-
end
|
9203
|
-
|
9204
8511
|
end
|
9205
8512
|
|
9206
8513
|
class FilterService < Service
|
@@ -9272,15 +8579,6 @@ module OvirtSDK4
|
|
9272
8579
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
9273
8580
|
end
|
9274
8581
|
|
9275
|
-
#
|
9276
|
-
# Returns an string representation of this service.
|
9277
|
-
#
|
9278
|
-
# @return [String]
|
9279
|
-
#
|
9280
|
-
def to_s
|
9281
|
-
"#<#{FilterService}:#{absolute_path}>"
|
9282
|
-
end
|
9283
|
-
|
9284
8582
|
end
|
9285
8583
|
|
9286
8584
|
class FiltersService < Service
|
@@ -9374,15 +8672,6 @@ module OvirtSDK4
|
|
9374
8672
|
return filter_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9375
8673
|
end
|
9376
8674
|
|
9377
|
-
#
|
9378
|
-
# Returns an string representation of this service.
|
9379
|
-
#
|
9380
|
-
# @return [String]
|
9381
|
-
#
|
9382
|
-
def to_s
|
9383
|
-
"#<#{FiltersService}:#{absolute_path}>"
|
9384
|
-
end
|
9385
|
-
|
9386
8675
|
end
|
9387
8676
|
|
9388
8677
|
class GlusterBricksService < Service
|
@@ -9721,15 +9010,6 @@ module OvirtSDK4
|
|
9721
9010
|
return brick_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9722
9011
|
end
|
9723
9012
|
|
9724
|
-
#
|
9725
|
-
# Returns an string representation of this service.
|
9726
|
-
#
|
9727
|
-
# @return [String]
|
9728
|
-
#
|
9729
|
-
def to_s
|
9730
|
-
"#<#{GlusterBricksService}:#{absolute_path}>"
|
9731
|
-
end
|
9732
|
-
|
9733
9013
|
end
|
9734
9014
|
|
9735
9015
|
class GlusterHookService < Service
|
@@ -9872,15 +9152,6 @@ module OvirtSDK4
|
|
9872
9152
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
9873
9153
|
end
|
9874
9154
|
|
9875
|
-
#
|
9876
|
-
# Returns an string representation of this service.
|
9877
|
-
#
|
9878
|
-
# @return [String]
|
9879
|
-
#
|
9880
|
-
def to_s
|
9881
|
-
"#<#{GlusterHookService}:#{absolute_path}>"
|
9882
|
-
end
|
9883
|
-
|
9884
9155
|
end
|
9885
9156
|
|
9886
9157
|
class GlusterHooksService < Service
|
@@ -9944,15 +9215,6 @@ module OvirtSDK4
|
|
9944
9215
|
return hook_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
9945
9216
|
end
|
9946
9217
|
|
9947
|
-
#
|
9948
|
-
# Returns an string representation of this service.
|
9949
|
-
#
|
9950
|
-
# @return [String]
|
9951
|
-
#
|
9952
|
-
def to_s
|
9953
|
-
"#<#{GlusterHooksService}:#{absolute_path}>"
|
9954
|
-
end
|
9955
|
-
|
9956
9218
|
end
|
9957
9219
|
|
9958
9220
|
class GlusterVolumesService < Service
|
@@ -10095,15 +9357,6 @@ module OvirtSDK4
|
|
10095
9357
|
return volume_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10096
9358
|
end
|
10097
9359
|
|
10098
|
-
#
|
10099
|
-
# Returns an string representation of this service.
|
10100
|
-
#
|
10101
|
-
# @return [String]
|
10102
|
-
#
|
10103
|
-
def to_s
|
10104
|
-
"#<#{GlusterVolumesService}:#{absolute_path}>"
|
10105
|
-
end
|
10106
|
-
|
10107
9360
|
end
|
10108
9361
|
|
10109
9362
|
class GroupService < Service
|
@@ -10246,15 +9499,6 @@ module OvirtSDK4
|
|
10246
9499
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
10247
9500
|
end
|
10248
9501
|
|
10249
|
-
#
|
10250
|
-
# Returns an string representation of this service.
|
10251
|
-
#
|
10252
|
-
# @return [String]
|
10253
|
-
#
|
10254
|
-
def to_s
|
10255
|
-
"#<#{GroupService}:#{absolute_path}>"
|
10256
|
-
end
|
10257
|
-
|
10258
9502
|
end
|
10259
9503
|
|
10260
9504
|
class GroupsService < Service
|
@@ -10399,15 +9643,6 @@ module OvirtSDK4
|
|
10399
9643
|
return group_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10400
9644
|
end
|
10401
9645
|
|
10402
|
-
#
|
10403
|
-
# Returns an string representation of this service.
|
10404
|
-
#
|
10405
|
-
# @return [String]
|
10406
|
-
#
|
10407
|
-
def to_s
|
10408
|
-
"#<#{GroupsService}:#{absolute_path}>"
|
10409
|
-
end
|
10410
|
-
|
10411
9646
|
end
|
10412
9647
|
|
10413
9648
|
class HostDeviceService < Service
|
@@ -10470,15 +9705,6 @@ module OvirtSDK4
|
|
10470
9705
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
10471
9706
|
end
|
10472
9707
|
|
10473
|
-
#
|
10474
|
-
# Returns an string representation of this service.
|
10475
|
-
#
|
10476
|
-
# @return [String]
|
10477
|
-
#
|
10478
|
-
def to_s
|
10479
|
-
"#<#{HostDeviceService}:#{absolute_path}>"
|
10480
|
-
end
|
10481
|
-
|
10482
9708
|
end
|
10483
9709
|
|
10484
9710
|
class HostDevicesService < Service
|
@@ -10542,15 +9768,6 @@ module OvirtSDK4
|
|
10542
9768
|
return device_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10543
9769
|
end
|
10544
9770
|
|
10545
|
-
#
|
10546
|
-
# Returns an string representation of this service.
|
10547
|
-
#
|
10548
|
-
# @return [String]
|
10549
|
-
#
|
10550
|
-
def to_s
|
10551
|
-
"#<#{HostDevicesService}:#{absolute_path}>"
|
10552
|
-
end
|
10553
|
-
|
10554
9771
|
end
|
10555
9772
|
|
10556
9773
|
class HostHookService < Service
|
@@ -10594,15 +9811,6 @@ module OvirtSDK4
|
|
10594
9811
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
10595
9812
|
end
|
10596
9813
|
|
10597
|
-
#
|
10598
|
-
# Returns an string representation of this service.
|
10599
|
-
#
|
10600
|
-
# @return [String]
|
10601
|
-
#
|
10602
|
-
def to_s
|
10603
|
-
"#<#{HostHookService}:#{absolute_path}>"
|
10604
|
-
end
|
10605
|
-
|
10606
9814
|
end
|
10607
9815
|
|
10608
9816
|
class HostHooksService < Service
|
@@ -10666,15 +9874,6 @@ module OvirtSDK4
|
|
10666
9874
|
return hook_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10667
9875
|
end
|
10668
9876
|
|
10669
|
-
#
|
10670
|
-
# Returns an string representation of this service.
|
10671
|
-
#
|
10672
|
-
# @return [String]
|
10673
|
-
#
|
10674
|
-
def to_s
|
10675
|
-
"#<#{HostHooksService}:#{absolute_path}>"
|
10676
|
-
end
|
10677
|
-
|
10678
9877
|
end
|
10679
9878
|
|
10680
9879
|
class HostNicsService < Service
|
@@ -10738,15 +9937,6 @@ module OvirtSDK4
|
|
10738
9937
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10739
9938
|
end
|
10740
9939
|
|
10741
|
-
#
|
10742
|
-
# Returns an string representation of this service.
|
10743
|
-
#
|
10744
|
-
# @return [String]
|
10745
|
-
#
|
10746
|
-
def to_s
|
10747
|
-
"#<#{HostNicsService}:#{absolute_path}>"
|
10748
|
-
end
|
10749
|
-
|
10750
9940
|
end
|
10751
9941
|
|
10752
9942
|
class HostNumaNodesService < Service
|
@@ -10810,15 +10000,6 @@ module OvirtSDK4
|
|
10810
10000
|
return node_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10811
10001
|
end
|
10812
10002
|
|
10813
|
-
#
|
10814
|
-
# Returns an string representation of this service.
|
10815
|
-
#
|
10816
|
-
# @return [String]
|
10817
|
-
#
|
10818
|
-
def to_s
|
10819
|
-
"#<#{HostNumaNodesService}:#{absolute_path}>"
|
10820
|
-
end
|
10821
|
-
|
10822
10003
|
end
|
10823
10004
|
|
10824
10005
|
class HostStorageService < Service
|
@@ -10947,15 +10128,6 @@ module OvirtSDK4
|
|
10947
10128
|
return storage_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
10948
10129
|
end
|
10949
10130
|
|
10950
|
-
#
|
10951
|
-
# Returns an string representation of this service.
|
10952
|
-
#
|
10953
|
-
# @return [String]
|
10954
|
-
#
|
10955
|
-
def to_s
|
10956
|
-
"#<#{HostStorageService}:#{absolute_path}>"
|
10957
|
-
end
|
10958
|
-
|
10959
10131
|
end
|
10960
10132
|
|
10961
10133
|
class HostsService < Service
|
@@ -11141,15 +10313,6 @@ module OvirtSDK4
|
|
11141
10313
|
return host_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
11142
10314
|
end
|
11143
10315
|
|
11144
|
-
#
|
11145
|
-
# Returns an string representation of this service.
|
11146
|
-
#
|
11147
|
-
# @return [String]
|
11148
|
-
#
|
11149
|
-
def to_s
|
11150
|
-
"#<#{HostsService}:#{absolute_path}>"
|
11151
|
-
end
|
11152
|
-
|
11153
10316
|
end
|
11154
10317
|
|
11155
10318
|
class IconService < Service
|
@@ -11208,15 +10371,6 @@ module OvirtSDK4
|
|
11208
10371
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
11209
10372
|
end
|
11210
10373
|
|
11211
|
-
#
|
11212
|
-
# Returns an string representation of this service.
|
11213
|
-
#
|
11214
|
-
# @return [String]
|
11215
|
-
#
|
11216
|
-
def to_s
|
11217
|
-
"#<#{IconService}:#{absolute_path}>"
|
11218
|
-
end
|
11219
|
-
|
11220
10374
|
end
|
11221
10375
|
|
11222
10376
|
class IconsService < Service
|
@@ -11298,15 +10452,6 @@ module OvirtSDK4
|
|
11298
10452
|
return icon_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
11299
10453
|
end
|
11300
10454
|
|
11301
|
-
#
|
11302
|
-
# Returns an string representation of this service.
|
11303
|
-
#
|
11304
|
-
# @return [String]
|
11305
|
-
#
|
11306
|
-
def to_s
|
11307
|
-
"#<#{IconsService}:#{absolute_path}>"
|
11308
|
-
end
|
11309
|
-
|
11310
10455
|
end
|
11311
10456
|
|
11312
10457
|
class ImageService < Service
|
@@ -11396,15 +10541,6 @@ module OvirtSDK4
|
|
11396
10541
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
11397
10542
|
end
|
11398
10543
|
|
11399
|
-
#
|
11400
|
-
# Returns an string representation of this service.
|
11401
|
-
#
|
11402
|
-
# @return [String]
|
11403
|
-
#
|
11404
|
-
def to_s
|
11405
|
-
"#<#{ImageService}:#{absolute_path}>"
|
11406
|
-
end
|
11407
|
-
|
11408
10544
|
end
|
11409
10545
|
|
11410
10546
|
class ImageTransferService < Service
|
@@ -11537,15 +10673,6 @@ module OvirtSDK4
|
|
11537
10673
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
11538
10674
|
end
|
11539
10675
|
|
11540
|
-
#
|
11541
|
-
# Returns an string representation of this service.
|
11542
|
-
#
|
11543
|
-
# @return [String]
|
11544
|
-
#
|
11545
|
-
def to_s
|
11546
|
-
"#<#{ImageTransferService}:#{absolute_path}>"
|
11547
|
-
end
|
11548
|
-
|
11549
10676
|
end
|
11550
10677
|
|
11551
10678
|
class ImageTransfersService < Service
|
@@ -11636,15 +10763,6 @@ module OvirtSDK4
|
|
11636
10763
|
return image_transfer_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
11637
10764
|
end
|
11638
10765
|
|
11639
|
-
#
|
11640
|
-
# Returns an string representation of this service.
|
11641
|
-
#
|
11642
|
-
# @return [String]
|
11643
|
-
#
|
11644
|
-
def to_s
|
11645
|
-
"#<#{ImageTransfersService}:#{absolute_path}>"
|
11646
|
-
end
|
11647
|
-
|
11648
10766
|
end
|
11649
10767
|
|
11650
10768
|
class ImagesService < Service
|
@@ -11708,15 +10826,6 @@ module OvirtSDK4
|
|
11708
10826
|
return image_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
11709
10827
|
end
|
11710
10828
|
|
11711
|
-
#
|
11712
|
-
# Returns an string representation of this service.
|
11713
|
-
#
|
11714
|
-
# @return [String]
|
11715
|
-
#
|
11716
|
-
def to_s
|
11717
|
-
"#<#{ImagesService}:#{absolute_path}>"
|
11718
|
-
end
|
11719
|
-
|
11720
10829
|
end
|
11721
10830
|
|
11722
10831
|
class InstanceTypeService < Service
|
@@ -11901,15 +11010,6 @@ module OvirtSDK4
|
|
11901
11010
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
11902
11011
|
end
|
11903
11012
|
|
11904
|
-
#
|
11905
|
-
# Returns an string representation of this service.
|
11906
|
-
#
|
11907
|
-
# @return [String]
|
11908
|
-
#
|
11909
|
-
def to_s
|
11910
|
-
"#<#{InstanceTypeService}:#{absolute_path}>"
|
11911
|
-
end
|
11912
|
-
|
11913
11013
|
end
|
11914
11014
|
|
11915
11015
|
class InstanceTypeGraphicsConsoleService < Service
|
@@ -11978,15 +11078,6 @@ module OvirtSDK4
|
|
11978
11078
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
11979
11079
|
end
|
11980
11080
|
|
11981
|
-
#
|
11982
|
-
# Returns an string representation of this service.
|
11983
|
-
#
|
11984
|
-
# @return [String]
|
11985
|
-
#
|
11986
|
-
def to_s
|
11987
|
-
"#<#{InstanceTypeGraphicsConsoleService}:#{absolute_path}>"
|
11988
|
-
end
|
11989
|
-
|
11990
11081
|
end
|
11991
11082
|
|
11992
11083
|
class InstanceTypeGraphicsConsolesService < Service
|
@@ -12077,15 +11168,6 @@ module OvirtSDK4
|
|
12077
11168
|
return console_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12078
11169
|
end
|
12079
11170
|
|
12080
|
-
#
|
12081
|
-
# Returns an string representation of this service.
|
12082
|
-
#
|
12083
|
-
# @return [String]
|
12084
|
-
#
|
12085
|
-
def to_s
|
12086
|
-
"#<#{InstanceTypeGraphicsConsolesService}:#{absolute_path}>"
|
12087
|
-
end
|
12088
|
-
|
12089
11171
|
end
|
12090
11172
|
|
12091
11173
|
class InstanceTypeNicService < Service
|
@@ -12183,15 +11265,6 @@ module OvirtSDK4
|
|
12183
11265
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
12184
11266
|
end
|
12185
11267
|
|
12186
|
-
#
|
12187
|
-
# Returns an string representation of this service.
|
12188
|
-
#
|
12189
|
-
# @return [String]
|
12190
|
-
#
|
12191
|
-
def to_s
|
12192
|
-
"#<#{InstanceTypeNicService}:#{absolute_path}>"
|
12193
|
-
end
|
12194
|
-
|
12195
11268
|
end
|
12196
11269
|
|
12197
11270
|
class InstanceTypeNicsService < Service
|
@@ -12285,15 +11358,6 @@ module OvirtSDK4
|
|
12285
11358
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12286
11359
|
end
|
12287
11360
|
|
12288
|
-
#
|
12289
|
-
# Returns an string representation of this service.
|
12290
|
-
#
|
12291
|
-
# @return [String]
|
12292
|
-
#
|
12293
|
-
def to_s
|
12294
|
-
"#<#{InstanceTypeNicsService}:#{absolute_path}>"
|
12295
|
-
end
|
12296
|
-
|
12297
11361
|
end
|
12298
11362
|
|
12299
11363
|
class InstanceTypeWatchdogService < Service
|
@@ -12391,15 +11455,6 @@ module OvirtSDK4
|
|
12391
11455
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
12392
11456
|
end
|
12393
11457
|
|
12394
|
-
#
|
12395
|
-
# Returns an string representation of this service.
|
12396
|
-
#
|
12397
|
-
# @return [String]
|
12398
|
-
#
|
12399
|
-
def to_s
|
12400
|
-
"#<#{InstanceTypeWatchdogService}:#{absolute_path}>"
|
12401
|
-
end
|
12402
|
-
|
12403
11458
|
end
|
12404
11459
|
|
12405
11460
|
class InstanceTypeWatchdogsService < Service
|
@@ -12494,15 +11549,6 @@ module OvirtSDK4
|
|
12494
11549
|
return watchdog_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12495
11550
|
end
|
12496
11551
|
|
12497
|
-
#
|
12498
|
-
# Returns an string representation of this service.
|
12499
|
-
#
|
12500
|
-
# @return [String]
|
12501
|
-
#
|
12502
|
-
def to_s
|
12503
|
-
"#<#{InstanceTypeWatchdogsService}:#{absolute_path}>"
|
12504
|
-
end
|
12505
|
-
|
12506
11552
|
end
|
12507
11553
|
|
12508
11554
|
class InstanceTypesService < Service
|
@@ -12686,15 +11732,6 @@ module OvirtSDK4
|
|
12686
11732
|
return instance_type_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12687
11733
|
end
|
12688
11734
|
|
12689
|
-
#
|
12690
|
-
# Returns an string representation of this service.
|
12691
|
-
#
|
12692
|
-
# @return [String]
|
12693
|
-
#
|
12694
|
-
def to_s
|
12695
|
-
"#<#{InstanceTypesService}:#{absolute_path}>"
|
12696
|
-
end
|
12697
|
-
|
12698
11735
|
end
|
12699
11736
|
|
12700
11737
|
class IscsiBondService < Service
|
@@ -12847,15 +11884,6 @@ module OvirtSDK4
|
|
12847
11884
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
12848
11885
|
end
|
12849
11886
|
|
12850
|
-
#
|
12851
|
-
# Returns an string representation of this service.
|
12852
|
-
#
|
12853
|
-
# @return [String]
|
12854
|
-
#
|
12855
|
-
def to_s
|
12856
|
-
"#<#{IscsiBondService}:#{absolute_path}>"
|
12857
|
-
end
|
12858
|
-
|
12859
11887
|
end
|
12860
11888
|
|
12861
11889
|
class IscsiBondsService < Service
|
@@ -12970,15 +11998,6 @@ module OvirtSDK4
|
|
12970
11998
|
return iscsi_bond_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
12971
11999
|
end
|
12972
12000
|
|
12973
|
-
#
|
12974
|
-
# Returns an string representation of this service.
|
12975
|
-
#
|
12976
|
-
# @return [String]
|
12977
|
-
#
|
12978
|
-
def to_s
|
12979
|
-
"#<#{IscsiBondsService}:#{absolute_path}>"
|
12980
|
-
end
|
12981
|
-
|
12982
12001
|
end
|
12983
12002
|
|
12984
12003
|
class JobService < Service
|
@@ -13142,15 +12161,6 @@ module OvirtSDK4
|
|
13142
12161
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13143
12162
|
end
|
13144
12163
|
|
13145
|
-
#
|
13146
|
-
# Returns an string representation of this service.
|
13147
|
-
#
|
13148
|
-
# @return [String]
|
13149
|
-
#
|
13150
|
-
def to_s
|
13151
|
-
"#<#{JobService}:#{absolute_path}>"
|
13152
|
-
end
|
13153
|
-
|
13154
12164
|
end
|
13155
12165
|
|
13156
12166
|
class JobsService < Service
|
@@ -13307,15 +12317,6 @@ module OvirtSDK4
|
|
13307
12317
|
return job_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
13308
12318
|
end
|
13309
12319
|
|
13310
|
-
#
|
13311
|
-
# Returns an string representation of this service.
|
13312
|
-
#
|
13313
|
-
# @return [String]
|
13314
|
-
#
|
13315
|
-
def to_s
|
13316
|
-
"#<#{JobsService}:#{absolute_path}>"
|
13317
|
-
end
|
13318
|
-
|
13319
12320
|
end
|
13320
12321
|
|
13321
12322
|
class KatelloErrataService < Service
|
@@ -13409,15 +12410,6 @@ module OvirtSDK4
|
|
13409
12410
|
return katello_erratum_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
13410
12411
|
end
|
13411
12412
|
|
13412
|
-
#
|
13413
|
-
# Returns an string representation of this service.
|
13414
|
-
#
|
13415
|
-
# @return [String]
|
13416
|
-
#
|
13417
|
-
def to_s
|
13418
|
-
"#<#{KatelloErrataService}:#{absolute_path}>"
|
13419
|
-
end
|
13420
|
-
|
13421
12413
|
end
|
13422
12414
|
|
13423
12415
|
class KatelloErratumService < Service
|
@@ -13487,15 +12479,6 @@ module OvirtSDK4
|
|
13487
12479
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13488
12480
|
end
|
13489
12481
|
|
13490
|
-
#
|
13491
|
-
# Returns an string representation of this service.
|
13492
|
-
#
|
13493
|
-
# @return [String]
|
13494
|
-
#
|
13495
|
-
def to_s
|
13496
|
-
"#<#{KatelloErratumService}:#{absolute_path}>"
|
13497
|
-
end
|
13498
|
-
|
13499
12482
|
end
|
13500
12483
|
|
13501
12484
|
class LinkLayerDiscoveryProtocolService < Service
|
@@ -13539,15 +12522,6 @@ module OvirtSDK4
|
|
13539
12522
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13540
12523
|
end
|
13541
12524
|
|
13542
|
-
#
|
13543
|
-
# Returns an string representation of this service.
|
13544
|
-
#
|
13545
|
-
# @return [String]
|
13546
|
-
#
|
13547
|
-
def to_s
|
13548
|
-
"#<#{LinkLayerDiscoveryProtocolService}:#{absolute_path}>"
|
13549
|
-
end
|
13550
|
-
|
13551
12525
|
end
|
13552
12526
|
|
13553
12527
|
class MacPoolService < Service
|
@@ -13682,15 +12656,6 @@ module OvirtSDK4
|
|
13682
12656
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13683
12657
|
end
|
13684
12658
|
|
13685
|
-
#
|
13686
|
-
# Returns an string representation of this service.
|
13687
|
-
#
|
13688
|
-
# @return [String]
|
13689
|
-
#
|
13690
|
-
def to_s
|
13691
|
-
"#<#{MacPoolService}:#{absolute_path}>"
|
13692
|
-
end
|
13693
|
-
|
13694
12659
|
end
|
13695
12660
|
|
13696
12661
|
class MacPoolsService < Service
|
@@ -13808,15 +12773,6 @@ module OvirtSDK4
|
|
13808
12773
|
return mac_pool_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
13809
12774
|
end
|
13810
12775
|
|
13811
|
-
#
|
13812
|
-
# Returns an string representation of this service.
|
13813
|
-
#
|
13814
|
-
# @return [String]
|
13815
|
-
#
|
13816
|
-
def to_s
|
13817
|
-
"#<#{MacPoolsService}:#{absolute_path}>"
|
13818
|
-
end
|
13819
|
-
|
13820
12776
|
end
|
13821
12777
|
|
13822
12778
|
class MeasurableService < Service
|
@@ -13850,15 +12806,6 @@ module OvirtSDK4
|
|
13850
12806
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13851
12807
|
end
|
13852
12808
|
|
13853
|
-
#
|
13854
|
-
# Returns an string representation of this service.
|
13855
|
-
#
|
13856
|
-
# @return [String]
|
13857
|
-
#
|
13858
|
-
def to_s
|
13859
|
-
"#<#{MeasurableService}:#{absolute_path}>"
|
13860
|
-
end
|
13861
|
-
|
13862
12809
|
end
|
13863
12810
|
|
13864
12811
|
class MoveableService < Service
|
@@ -13897,15 +12844,6 @@ module OvirtSDK4
|
|
13897
12844
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
13898
12845
|
end
|
13899
12846
|
|
13900
|
-
#
|
13901
|
-
# Returns an string representation of this service.
|
13902
|
-
#
|
13903
|
-
# @return [String]
|
13904
|
-
#
|
13905
|
-
def to_s
|
13906
|
-
"#<#{MoveableService}:#{absolute_path}>"
|
13907
|
-
end
|
13908
|
-
|
13909
12847
|
end
|
13910
12848
|
|
13911
12849
|
class NetworkService < Service
|
@@ -14130,15 +13068,6 @@ module OvirtSDK4
|
|
14130
13068
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
14131
13069
|
end
|
14132
13070
|
|
14133
|
-
#
|
14134
|
-
# Returns an string representation of this service.
|
14135
|
-
#
|
14136
|
-
# @return [String]
|
14137
|
-
#
|
14138
|
-
def to_s
|
14139
|
-
"#<#{NetworkService}:#{absolute_path}>"
|
14140
|
-
end
|
14141
|
-
|
14142
13071
|
end
|
14143
13072
|
|
14144
13073
|
class NetworkAttachmentService < Service
|
@@ -14236,15 +13165,6 @@ module OvirtSDK4
|
|
14236
13165
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
14237
13166
|
end
|
14238
13167
|
|
14239
|
-
#
|
14240
|
-
# Returns an string representation of this service.
|
14241
|
-
#
|
14242
|
-
# @return [String]
|
14243
|
-
#
|
14244
|
-
def to_s
|
14245
|
-
"#<#{NetworkAttachmentService}:#{absolute_path}>"
|
14246
|
-
end
|
14247
|
-
|
14248
13168
|
end
|
14249
13169
|
|
14250
13170
|
class NetworkAttachmentsService < Service
|
@@ -14335,15 +13255,6 @@ module OvirtSDK4
|
|
14335
13255
|
return attachment_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
14336
13256
|
end
|
14337
13257
|
|
14338
|
-
#
|
14339
|
-
# Returns an string representation of this service.
|
14340
|
-
#
|
14341
|
-
# @return [String]
|
14342
|
-
#
|
14343
|
-
def to_s
|
14344
|
-
"#<#{NetworkAttachmentsService}:#{absolute_path}>"
|
14345
|
-
end
|
14346
|
-
|
14347
13258
|
end
|
14348
13259
|
|
14349
13260
|
class NetworkFilterService < Service
|
@@ -14387,15 +13298,6 @@ module OvirtSDK4
|
|
14387
13298
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
14388
13299
|
end
|
14389
13300
|
|
14390
|
-
#
|
14391
|
-
# Returns an string representation of this service.
|
14392
|
-
#
|
14393
|
-
# @return [String]
|
14394
|
-
#
|
14395
|
-
def to_s
|
14396
|
-
"#<#{NetworkFilterService}:#{absolute_path}>"
|
14397
|
-
end
|
14398
|
-
|
14399
13301
|
end
|
14400
13302
|
|
14401
13303
|
class NetworkFiltersService < Service
|
@@ -14456,15 +13358,6 @@ module OvirtSDK4
|
|
14456
13358
|
return network_filter_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
14457
13359
|
end
|
14458
13360
|
|
14459
|
-
#
|
14460
|
-
# Returns an string representation of this service.
|
14461
|
-
#
|
14462
|
-
# @return [String]
|
14463
|
-
#
|
14464
|
-
def to_s
|
14465
|
-
"#<#{NetworkFiltersService}:#{absolute_path}>"
|
14466
|
-
end
|
14467
|
-
|
14468
13361
|
end
|
14469
13362
|
|
14470
13363
|
class NetworkLabelService < Service
|
@@ -14540,15 +13433,6 @@ module OvirtSDK4
|
|
14540
13433
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
14541
13434
|
end
|
14542
13435
|
|
14543
|
-
#
|
14544
|
-
# Returns an string representation of this service.
|
14545
|
-
#
|
14546
|
-
# @return [String]
|
14547
|
-
#
|
14548
|
-
def to_s
|
14549
|
-
"#<#{NetworkLabelService}:#{absolute_path}>"
|
14550
|
-
end
|
14551
|
-
|
14552
13436
|
end
|
14553
13437
|
|
14554
13438
|
class NetworkLabelsService < Service
|
@@ -14656,15 +13540,6 @@ module OvirtSDK4
|
|
14656
13540
|
return label_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
14657
13541
|
end
|
14658
13542
|
|
14659
|
-
#
|
14660
|
-
# Returns an string representation of this service.
|
14661
|
-
#
|
14662
|
-
# @return [String]
|
14663
|
-
#
|
14664
|
-
def to_s
|
14665
|
-
"#<#{NetworkLabelsService}:#{absolute_path}>"
|
14666
|
-
end
|
14667
|
-
|
14668
13543
|
end
|
14669
13544
|
|
14670
13545
|
class NetworksService < Service
|
@@ -14829,15 +13704,6 @@ module OvirtSDK4
|
|
14829
13704
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
14830
13705
|
end
|
14831
13706
|
|
14832
|
-
#
|
14833
|
-
# Returns an string representation of this service.
|
14834
|
-
#
|
14835
|
-
# @return [String]
|
14836
|
-
#
|
14837
|
-
def to_s
|
14838
|
-
"#<#{NetworksService}:#{absolute_path}>"
|
14839
|
-
end
|
14840
|
-
|
14841
13707
|
end
|
14842
13708
|
|
14843
13709
|
class OpenstackImageService < Service
|
@@ -14934,15 +13800,6 @@ module OvirtSDK4
|
|
14934
13800
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
14935
13801
|
end
|
14936
13802
|
|
14937
|
-
#
|
14938
|
-
# Returns an string representation of this service.
|
14939
|
-
#
|
14940
|
-
# @return [String]
|
14941
|
-
#
|
14942
|
-
def to_s
|
14943
|
-
"#<#{OpenstackImageService}:#{absolute_path}>"
|
14944
|
-
end
|
14945
|
-
|
14946
13803
|
end
|
14947
13804
|
|
14948
13805
|
class OpenstackImageProviderService < ExternalProviderService
|
@@ -15116,15 +13973,6 @@ module OvirtSDK4
|
|
15116
13973
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15117
13974
|
end
|
15118
13975
|
|
15119
|
-
#
|
15120
|
-
# Returns an string representation of this service.
|
15121
|
-
#
|
15122
|
-
# @return [String]
|
15123
|
-
#
|
15124
|
-
def to_s
|
15125
|
-
"#<#{OpenstackImageProviderService}:#{absolute_path}>"
|
15126
|
-
end
|
15127
|
-
|
15128
13976
|
end
|
15129
13977
|
|
15130
13978
|
class OpenstackImageProvidersService < Service
|
@@ -15215,15 +14063,6 @@ module OvirtSDK4
|
|
15215
14063
|
return provider_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
15216
14064
|
end
|
15217
14065
|
|
15218
|
-
#
|
15219
|
-
# Returns an string representation of this service.
|
15220
|
-
#
|
15221
|
-
# @return [String]
|
15222
|
-
#
|
15223
|
-
def to_s
|
15224
|
-
"#<#{OpenstackImageProvidersService}:#{absolute_path}>"
|
15225
|
-
end
|
15226
|
-
|
15227
14066
|
end
|
15228
14067
|
|
15229
14068
|
class OpenstackImagesService < Service
|
@@ -15287,15 +14126,6 @@ module OvirtSDK4
|
|
15287
14126
|
return image_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
15288
14127
|
end
|
15289
14128
|
|
15290
|
-
#
|
15291
|
-
# Returns an string representation of this service.
|
15292
|
-
#
|
15293
|
-
# @return [String]
|
15294
|
-
#
|
15295
|
-
def to_s
|
15296
|
-
"#<#{OpenstackImagesService}:#{absolute_path}>"
|
15297
|
-
end
|
15298
|
-
|
15299
14129
|
end
|
15300
14130
|
|
15301
14131
|
class OpenstackNetworkService < Service
|
@@ -15380,15 +14210,6 @@ module OvirtSDK4
|
|
15380
14210
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15381
14211
|
end
|
15382
14212
|
|
15383
|
-
#
|
15384
|
-
# Returns an string representation of this service.
|
15385
|
-
#
|
15386
|
-
# @return [String]
|
15387
|
-
#
|
15388
|
-
def to_s
|
15389
|
-
"#<#{OpenstackNetworkService}:#{absolute_path}>"
|
15390
|
-
end
|
15391
|
-
|
15392
14213
|
end
|
15393
14214
|
|
15394
14215
|
class OpenstackNetworkProviderService < ExternalProviderService
|
@@ -15597,15 +14418,6 @@ module OvirtSDK4
|
|
15597
14418
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15598
14419
|
end
|
15599
14420
|
|
15600
|
-
#
|
15601
|
-
# Returns an string representation of this service.
|
15602
|
-
#
|
15603
|
-
# @return [String]
|
15604
|
-
#
|
15605
|
-
def to_s
|
15606
|
-
"#<#{OpenstackNetworkProviderService}:#{absolute_path}>"
|
15607
|
-
end
|
15608
|
-
|
15609
14421
|
end
|
15610
14422
|
|
15611
14423
|
class OpenstackNetworkProvidersService < Service
|
@@ -15697,15 +14509,6 @@ module OvirtSDK4
|
|
15697
14509
|
return provider_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
15698
14510
|
end
|
15699
14511
|
|
15700
|
-
#
|
15701
|
-
# Returns an string representation of this service.
|
15702
|
-
#
|
15703
|
-
# @return [String]
|
15704
|
-
#
|
15705
|
-
def to_s
|
15706
|
-
"#<#{OpenstackNetworkProvidersService}:#{absolute_path}>"
|
15707
|
-
end
|
15708
|
-
|
15709
14512
|
end
|
15710
14513
|
|
15711
14514
|
class OpenstackNetworksService < Service
|
@@ -15769,15 +14572,6 @@ module OvirtSDK4
|
|
15769
14572
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
15770
14573
|
end
|
15771
14574
|
|
15772
|
-
#
|
15773
|
-
# Returns an string representation of this service.
|
15774
|
-
#
|
15775
|
-
# @return [String]
|
15776
|
-
#
|
15777
|
-
def to_s
|
15778
|
-
"#<#{OpenstackNetworksService}:#{absolute_path}>"
|
15779
|
-
end
|
15780
|
-
|
15781
14575
|
end
|
15782
14576
|
|
15783
14577
|
class OpenstackSubnetService < Service
|
@@ -15846,15 +14640,6 @@ module OvirtSDK4
|
|
15846
14640
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
15847
14641
|
end
|
15848
14642
|
|
15849
|
-
#
|
15850
|
-
# Returns an string representation of this service.
|
15851
|
-
#
|
15852
|
-
# @return [String]
|
15853
|
-
#
|
15854
|
-
def to_s
|
15855
|
-
"#<#{OpenstackSubnetService}:#{absolute_path}>"
|
15856
|
-
end
|
15857
|
-
|
15858
14643
|
end
|
15859
14644
|
|
15860
14645
|
class OpenstackSubnetsService < Service
|
@@ -15945,15 +14730,6 @@ module OvirtSDK4
|
|
15945
14730
|
return subnet_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
15946
14731
|
end
|
15947
14732
|
|
15948
|
-
#
|
15949
|
-
# Returns an string representation of this service.
|
15950
|
-
#
|
15951
|
-
# @return [String]
|
15952
|
-
#
|
15953
|
-
def to_s
|
15954
|
-
"#<#{OpenstackSubnetsService}:#{absolute_path}>"
|
15955
|
-
end
|
15956
|
-
|
15957
14733
|
end
|
15958
14734
|
|
15959
14735
|
class OpenstackVolumeAuthenticationKeyService < Service
|
@@ -16048,15 +14824,6 @@ module OvirtSDK4
|
|
16048
14824
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16049
14825
|
end
|
16050
14826
|
|
16051
|
-
#
|
16052
|
-
# Returns an string representation of this service.
|
16053
|
-
#
|
16054
|
-
# @return [String]
|
16055
|
-
#
|
16056
|
-
def to_s
|
16057
|
-
"#<#{OpenstackVolumeAuthenticationKeyService}:#{absolute_path}>"
|
16058
|
-
end
|
16059
|
-
|
16060
14827
|
end
|
16061
14828
|
|
16062
14829
|
class OpenstackVolumeAuthenticationKeysService < Service
|
@@ -16147,15 +14914,6 @@ module OvirtSDK4
|
|
16147
14914
|
return key_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
16148
14915
|
end
|
16149
14916
|
|
16150
|
-
#
|
16151
|
-
# Returns an string representation of this service.
|
16152
|
-
#
|
16153
|
-
# @return [String]
|
16154
|
-
#
|
16155
|
-
def to_s
|
16156
|
-
"#<#{OpenstackVolumeAuthenticationKeysService}:#{absolute_path}>"
|
16157
|
-
end
|
16158
|
-
|
16159
14917
|
end
|
16160
14918
|
|
16161
14919
|
class OpenstackVolumeProviderService < ExternalProviderService
|
@@ -16344,15 +15102,6 @@ module OvirtSDK4
|
|
16344
15102
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16345
15103
|
end
|
16346
15104
|
|
16347
|
-
#
|
16348
|
-
# Returns an string representation of this service.
|
16349
|
-
#
|
16350
|
-
# @return [String]
|
16351
|
-
#
|
16352
|
-
def to_s
|
16353
|
-
"#<#{OpenstackVolumeProviderService}:#{absolute_path}>"
|
16354
|
-
end
|
16355
|
-
|
16356
15105
|
end
|
16357
15106
|
|
16358
15107
|
class OpenstackVolumeProvidersService < Service
|
@@ -16467,15 +15216,6 @@ module OvirtSDK4
|
|
16467
15216
|
return provider_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
16468
15217
|
end
|
16469
15218
|
|
16470
|
-
#
|
16471
|
-
# Returns an string representation of this service.
|
16472
|
-
#
|
16473
|
-
# @return [String]
|
16474
|
-
#
|
16475
|
-
def to_s
|
16476
|
-
"#<#{OpenstackVolumeProvidersService}:#{absolute_path}>"
|
16477
|
-
end
|
16478
|
-
|
16479
15219
|
end
|
16480
15220
|
|
16481
15221
|
class OpenstackVolumeTypeService < Service
|
@@ -16519,15 +15259,6 @@ module OvirtSDK4
|
|
16519
15259
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16520
15260
|
end
|
16521
15261
|
|
16522
|
-
#
|
16523
|
-
# Returns an string representation of this service.
|
16524
|
-
#
|
16525
|
-
# @return [String]
|
16526
|
-
#
|
16527
|
-
def to_s
|
16528
|
-
"#<#{OpenstackVolumeTypeService}:#{absolute_path}>"
|
16529
|
-
end
|
16530
|
-
|
16531
15262
|
end
|
16532
15263
|
|
16533
15264
|
class OpenstackVolumeTypesService < Service
|
@@ -16591,15 +15322,6 @@ module OvirtSDK4
|
|
16591
15322
|
return type_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
16592
15323
|
end
|
16593
15324
|
|
16594
|
-
#
|
16595
|
-
# Returns an string representation of this service.
|
16596
|
-
#
|
16597
|
-
# @return [String]
|
16598
|
-
#
|
16599
|
-
def to_s
|
16600
|
-
"#<#{OpenstackVolumeTypesService}:#{absolute_path}>"
|
16601
|
-
end
|
16602
|
-
|
16603
15325
|
end
|
16604
15326
|
|
16605
15327
|
class OperatingSystemService < Service
|
@@ -16643,15 +15365,6 @@ module OvirtSDK4
|
|
16643
15365
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16644
15366
|
end
|
16645
15367
|
|
16646
|
-
#
|
16647
|
-
# Returns an string representation of this service.
|
16648
|
-
#
|
16649
|
-
# @return [String]
|
16650
|
-
#
|
16651
|
-
def to_s
|
16652
|
-
"#<#{OperatingSystemService}:#{absolute_path}>"
|
16653
|
-
end
|
16654
|
-
|
16655
15368
|
end
|
16656
15369
|
|
16657
15370
|
class OperatingSystemsService < Service
|
@@ -16715,15 +15428,6 @@ module OvirtSDK4
|
|
16715
15428
|
return operating_system_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
16716
15429
|
end
|
16717
15430
|
|
16718
|
-
#
|
16719
|
-
# Returns an string representation of this service.
|
16720
|
-
#
|
16721
|
-
# @return [String]
|
16722
|
-
#
|
16723
|
-
def to_s
|
16724
|
-
"#<#{OperatingSystemsService}:#{absolute_path}>"
|
16725
|
-
end
|
16726
|
-
|
16727
15431
|
end
|
16728
15432
|
|
16729
15433
|
class PermissionService < Service
|
@@ -16792,15 +15496,6 @@ module OvirtSDK4
|
|
16792
15496
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16793
15497
|
end
|
16794
15498
|
|
16795
|
-
#
|
16796
|
-
# Returns an string representation of this service.
|
16797
|
-
#
|
16798
|
-
# @return [String]
|
16799
|
-
#
|
16800
|
-
def to_s
|
16801
|
-
"#<#{PermissionService}:#{absolute_path}>"
|
16802
|
-
end
|
16803
|
-
|
16804
15499
|
end
|
16805
15500
|
|
16806
15501
|
class PermitService < Service
|
@@ -16891,15 +15586,6 @@ module OvirtSDK4
|
|
16891
15586
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
16892
15587
|
end
|
16893
15588
|
|
16894
|
-
#
|
16895
|
-
# Returns an string representation of this service.
|
16896
|
-
#
|
16897
|
-
# @return [String]
|
16898
|
-
#
|
16899
|
-
def to_s
|
16900
|
-
"#<#{PermitService}:#{absolute_path}>"
|
16901
|
-
end
|
16902
|
-
|
16903
15589
|
end
|
16904
15590
|
|
16905
15591
|
class PermitsService < Service
|
@@ -17027,15 +15713,6 @@ module OvirtSDK4
|
|
17027
15713
|
return permit_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17028
15714
|
end
|
17029
15715
|
|
17030
|
-
#
|
17031
|
-
# Returns an string representation of this service.
|
17032
|
-
#
|
17033
|
-
# @return [String]
|
17034
|
-
#
|
17035
|
-
def to_s
|
17036
|
-
"#<#{PermitsService}:#{absolute_path}>"
|
17037
|
-
end
|
17038
|
-
|
17039
15716
|
end
|
17040
15717
|
|
17041
15718
|
class QosService < Service
|
@@ -17185,15 +15862,6 @@ module OvirtSDK4
|
|
17185
15862
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
17186
15863
|
end
|
17187
15864
|
|
17188
|
-
#
|
17189
|
-
# Returns an string representation of this service.
|
17190
|
-
#
|
17191
|
-
# @return [String]
|
17192
|
-
#
|
17193
|
-
def to_s
|
17194
|
-
"#<#{QosService}:#{absolute_path}>"
|
17195
|
-
end
|
17196
|
-
|
17197
15865
|
end
|
17198
15866
|
|
17199
15867
|
class QossService < Service
|
@@ -17300,15 +15968,6 @@ module OvirtSDK4
|
|
17300
15968
|
return qos_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17301
15969
|
end
|
17302
15970
|
|
17303
|
-
#
|
17304
|
-
# Returns an string representation of this service.
|
17305
|
-
#
|
17306
|
-
# @return [String]
|
17307
|
-
#
|
17308
|
-
def to_s
|
17309
|
-
"#<#{QossService}:#{absolute_path}>"
|
17310
|
-
end
|
17311
|
-
|
17312
15971
|
end
|
17313
15972
|
|
17314
15973
|
class QuotaService < Service
|
@@ -17497,15 +16156,6 @@ module OvirtSDK4
|
|
17497
16156
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
17498
16157
|
end
|
17499
16158
|
|
17500
|
-
#
|
17501
|
-
# Returns an string representation of this service.
|
17502
|
-
#
|
17503
|
-
# @return [String]
|
17504
|
-
#
|
17505
|
-
def to_s
|
17506
|
-
"#<#{QuotaService}:#{absolute_path}>"
|
17507
|
-
end
|
17508
|
-
|
17509
16159
|
end
|
17510
16160
|
|
17511
16161
|
class QuotaClusterLimitService < Service
|
@@ -17574,15 +16224,6 @@ module OvirtSDK4
|
|
17574
16224
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
17575
16225
|
end
|
17576
16226
|
|
17577
|
-
#
|
17578
|
-
# Returns an string representation of this service.
|
17579
|
-
#
|
17580
|
-
# @return [String]
|
17581
|
-
#
|
17582
|
-
def to_s
|
17583
|
-
"#<#{QuotaClusterLimitService}:#{absolute_path}>"
|
17584
|
-
end
|
17585
|
-
|
17586
16227
|
end
|
17587
16228
|
|
17588
16229
|
class QuotaClusterLimitsService < Service
|
@@ -17673,15 +16314,6 @@ module OvirtSDK4
|
|
17673
16314
|
return limit_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17674
16315
|
end
|
17675
16316
|
|
17676
|
-
#
|
17677
|
-
# Returns an string representation of this service.
|
17678
|
-
#
|
17679
|
-
# @return [String]
|
17680
|
-
#
|
17681
|
-
def to_s
|
17682
|
-
"#<#{QuotaClusterLimitsService}:#{absolute_path}>"
|
17683
|
-
end
|
17684
|
-
|
17685
16317
|
end
|
17686
16318
|
|
17687
16319
|
class QuotaStorageLimitService < Service
|
@@ -17750,15 +16382,6 @@ module OvirtSDK4
|
|
17750
16382
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
17751
16383
|
end
|
17752
16384
|
|
17753
|
-
#
|
17754
|
-
# Returns an string representation of this service.
|
17755
|
-
#
|
17756
|
-
# @return [String]
|
17757
|
-
#
|
17758
|
-
def to_s
|
17759
|
-
"#<#{QuotaStorageLimitService}:#{absolute_path}>"
|
17760
|
-
end
|
17761
|
-
|
17762
16385
|
end
|
17763
16386
|
|
17764
16387
|
class QuotaStorageLimitsService < Service
|
@@ -17882,15 +16505,6 @@ module OvirtSDK4
|
|
17882
16505
|
return limit_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17883
16506
|
end
|
17884
16507
|
|
17885
|
-
#
|
17886
|
-
# Returns an string representation of this service.
|
17887
|
-
#
|
17888
|
-
# @return [String]
|
17889
|
-
#
|
17890
|
-
def to_s
|
17891
|
-
"#<#{QuotaStorageLimitsService}:#{absolute_path}>"
|
17892
|
-
end
|
17893
|
-
|
17894
16508
|
end
|
17895
16509
|
|
17896
16510
|
class QuotasService < Service
|
@@ -17996,15 +16610,6 @@ module OvirtSDK4
|
|
17996
16610
|
return quota_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
17997
16611
|
end
|
17998
16612
|
|
17999
|
-
#
|
18000
|
-
# Returns an string representation of this service.
|
18001
|
-
#
|
18002
|
-
# @return [String]
|
18003
|
-
#
|
18004
|
-
def to_s
|
18005
|
-
"#<#{QuotasService}:#{absolute_path}>"
|
18006
|
-
end
|
18007
|
-
|
18008
16613
|
end
|
18009
16614
|
|
18010
16615
|
class RoleService < Service
|
@@ -18162,15 +16767,6 @@ module OvirtSDK4
|
|
18162
16767
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18163
16768
|
end
|
18164
16769
|
|
18165
|
-
#
|
18166
|
-
# Returns an string representation of this service.
|
18167
|
-
#
|
18168
|
-
# @return [String]
|
18169
|
-
#
|
18170
|
-
def to_s
|
18171
|
-
"#<#{RoleService}:#{absolute_path}>"
|
18172
|
-
end
|
18173
|
-
|
18174
16770
|
end
|
18175
16771
|
|
18176
16772
|
class RolesService < Service
|
@@ -18305,15 +16901,6 @@ module OvirtSDK4
|
|
18305
16901
|
return role_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
18306
16902
|
end
|
18307
16903
|
|
18308
|
-
#
|
18309
|
-
# Returns an string representation of this service.
|
18310
|
-
#
|
18311
|
-
# @return [String]
|
18312
|
-
#
|
18313
|
-
def to_s
|
18314
|
-
"#<#{RolesService}:#{absolute_path}>"
|
18315
|
-
end
|
18316
|
-
|
18317
16904
|
end
|
18318
16905
|
|
18319
16906
|
class SchedulingPoliciesService < Service
|
@@ -18407,15 +16994,6 @@ module OvirtSDK4
|
|
18407
16994
|
return policy_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
18408
16995
|
end
|
18409
16996
|
|
18410
|
-
#
|
18411
|
-
# Returns an string representation of this service.
|
18412
|
-
#
|
18413
|
-
# @return [String]
|
18414
|
-
#
|
18415
|
-
def to_s
|
18416
|
-
"#<#{SchedulingPoliciesService}:#{absolute_path}>"
|
18417
|
-
end
|
18418
|
-
|
18419
16997
|
end
|
18420
16998
|
|
18421
16999
|
class SchedulingPolicyService < Service
|
@@ -18561,15 +17139,6 @@ module OvirtSDK4
|
|
18561
17139
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18562
17140
|
end
|
18563
17141
|
|
18564
|
-
#
|
18565
|
-
# Returns an string representation of this service.
|
18566
|
-
#
|
18567
|
-
# @return [String]
|
18568
|
-
#
|
18569
|
-
def to_s
|
18570
|
-
"#<#{SchedulingPolicyService}:#{absolute_path}>"
|
18571
|
-
end
|
18572
|
-
|
18573
17142
|
end
|
18574
17143
|
|
18575
17144
|
class SchedulingPolicyUnitService < Service
|
@@ -18641,15 +17210,6 @@ module OvirtSDK4
|
|
18641
17210
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18642
17211
|
end
|
18643
17212
|
|
18644
|
-
#
|
18645
|
-
# Returns an string representation of this service.
|
18646
|
-
#
|
18647
|
-
# @return [String]
|
18648
|
-
#
|
18649
|
-
def to_s
|
18650
|
-
"#<#{SchedulingPolicyUnitService}:#{absolute_path}>"
|
18651
|
-
end
|
18652
|
-
|
18653
17213
|
end
|
18654
17214
|
|
18655
17215
|
class SchedulingPolicyUnitsService < Service
|
@@ -18716,15 +17276,6 @@ module OvirtSDK4
|
|
18716
17276
|
return unit_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
18717
17277
|
end
|
18718
17278
|
|
18719
|
-
#
|
18720
|
-
# Returns an string representation of this service.
|
18721
|
-
#
|
18722
|
-
# @return [String]
|
18723
|
-
#
|
18724
|
-
def to_s
|
18725
|
-
"#<#{SchedulingPolicyUnitsService}:#{absolute_path}>"
|
18726
|
-
end
|
18727
|
-
|
18728
17279
|
end
|
18729
17280
|
|
18730
17281
|
class SnapshotService < Service
|
@@ -18877,15 +17428,6 @@ module OvirtSDK4
|
|
18877
17428
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18878
17429
|
end
|
18879
17430
|
|
18880
|
-
#
|
18881
|
-
# Returns an string representation of this service.
|
18882
|
-
#
|
18883
|
-
# @return [String]
|
18884
|
-
#
|
18885
|
-
def to_s
|
18886
|
-
"#<#{SnapshotService}:#{absolute_path}>"
|
18887
|
-
end
|
18888
|
-
|
18889
17431
|
end
|
18890
17432
|
|
18891
17433
|
class SnapshotCdromService < Service
|
@@ -18929,15 +17471,6 @@ module OvirtSDK4
|
|
18929
17471
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
18930
17472
|
end
|
18931
17473
|
|
18932
|
-
#
|
18933
|
-
# Returns an string representation of this service.
|
18934
|
-
#
|
18935
|
-
# @return [String]
|
18936
|
-
#
|
18937
|
-
def to_s
|
18938
|
-
"#<#{SnapshotCdromService}:#{absolute_path}>"
|
18939
|
-
end
|
18940
|
-
|
18941
17474
|
end
|
18942
17475
|
|
18943
17476
|
class SnapshotCdromsService < Service
|
@@ -19001,15 +17534,6 @@ module OvirtSDK4
|
|
19001
17534
|
return cdrom_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
19002
17535
|
end
|
19003
17536
|
|
19004
|
-
#
|
19005
|
-
# Returns an string representation of this service.
|
19006
|
-
#
|
19007
|
-
# @return [String]
|
19008
|
-
#
|
19009
|
-
def to_s
|
19010
|
-
"#<#{SnapshotCdromsService}:#{absolute_path}>"
|
19011
|
-
end
|
19012
|
-
|
19013
17537
|
end
|
19014
17538
|
|
19015
17539
|
class SnapshotDiskService < Service
|
@@ -19053,15 +17577,6 @@ module OvirtSDK4
|
|
19053
17577
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
19054
17578
|
end
|
19055
17579
|
|
19056
|
-
#
|
19057
|
-
# Returns an string representation of this service.
|
19058
|
-
#
|
19059
|
-
# @return [String]
|
19060
|
-
#
|
19061
|
-
def to_s
|
19062
|
-
"#<#{SnapshotDiskService}:#{absolute_path}>"
|
19063
|
-
end
|
19064
|
-
|
19065
17580
|
end
|
19066
17581
|
|
19067
17582
|
class SnapshotDisksService < Service
|
@@ -19125,15 +17640,6 @@ module OvirtSDK4
|
|
19125
17640
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
19126
17641
|
end
|
19127
17642
|
|
19128
|
-
#
|
19129
|
-
# Returns an string representation of this service.
|
19130
|
-
#
|
19131
|
-
# @return [String]
|
19132
|
-
#
|
19133
|
-
def to_s
|
19134
|
-
"#<#{SnapshotDisksService}:#{absolute_path}>"
|
19135
|
-
end
|
19136
|
-
|
19137
17643
|
end
|
19138
17644
|
|
19139
17645
|
class SnapshotNicService < Service
|
@@ -19177,15 +17683,6 @@ module OvirtSDK4
|
|
19177
17683
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
19178
17684
|
end
|
19179
17685
|
|
19180
|
-
#
|
19181
|
-
# Returns an string representation of this service.
|
19182
|
-
#
|
19183
|
-
# @return [String]
|
19184
|
-
#
|
19185
|
-
def to_s
|
19186
|
-
"#<#{SnapshotNicService}:#{absolute_path}>"
|
19187
|
-
end
|
19188
|
-
|
19189
17686
|
end
|
19190
17687
|
|
19191
17688
|
class SnapshotNicsService < Service
|
@@ -19249,15 +17746,6 @@ module OvirtSDK4
|
|
19249
17746
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
19250
17747
|
end
|
19251
17748
|
|
19252
|
-
#
|
19253
|
-
# Returns an string representation of this service.
|
19254
|
-
#
|
19255
|
-
# @return [String]
|
19256
|
-
#
|
19257
|
-
def to_s
|
19258
|
-
"#<#{SnapshotNicsService}:#{absolute_path}>"
|
19259
|
-
end
|
19260
|
-
|
19261
17749
|
end
|
19262
17750
|
|
19263
17751
|
class SnapshotsService < Service
|
@@ -19381,15 +17869,6 @@ module OvirtSDK4
|
|
19381
17869
|
return snapshot_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
19382
17870
|
end
|
19383
17871
|
|
19384
|
-
#
|
19385
|
-
# Returns an string representation of this service.
|
19386
|
-
#
|
19387
|
-
# @return [String]
|
19388
|
-
#
|
19389
|
-
def to_s
|
19390
|
-
"#<#{SnapshotsService}:#{absolute_path}>"
|
19391
|
-
end
|
19392
|
-
|
19393
17872
|
end
|
19394
17873
|
|
19395
17874
|
class SshPublicKeyService < Service
|
@@ -19487,15 +17966,6 @@ module OvirtSDK4
|
|
19487
17966
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
19488
17967
|
end
|
19489
17968
|
|
19490
|
-
#
|
19491
|
-
# Returns an string representation of this service.
|
19492
|
-
#
|
19493
|
-
# @return [String]
|
19494
|
-
#
|
19495
|
-
def to_s
|
19496
|
-
"#<#{SshPublicKeyService}:#{absolute_path}>"
|
19497
|
-
end
|
19498
|
-
|
19499
17969
|
end
|
19500
17970
|
|
19501
17971
|
class SshPublicKeysService < Service
|
@@ -19625,15 +18095,6 @@ module OvirtSDK4
|
|
19625
18095
|
return key_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
19626
18096
|
end
|
19627
18097
|
|
19628
|
-
#
|
19629
|
-
# Returns an string representation of this service.
|
19630
|
-
#
|
19631
|
-
# @return [String]
|
19632
|
-
#
|
19633
|
-
def to_s
|
19634
|
-
"#<#{SshPublicKeysService}:#{absolute_path}>"
|
19635
|
-
end
|
19636
|
-
|
19637
18098
|
end
|
19638
18099
|
|
19639
18100
|
class StatisticService < Service
|
@@ -19677,15 +18138,6 @@ module OvirtSDK4
|
|
19677
18138
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
19678
18139
|
end
|
19679
18140
|
|
19680
|
-
#
|
19681
|
-
# Returns an string representation of this service.
|
19682
|
-
#
|
19683
|
-
# @return [String]
|
19684
|
-
#
|
19685
|
-
def to_s
|
19686
|
-
"#<#{StatisticService}:#{absolute_path}>"
|
19687
|
-
end
|
19688
|
-
|
19689
18141
|
end
|
19690
18142
|
|
19691
18143
|
class StatisticsService < Service
|
@@ -19805,15 +18257,6 @@ module OvirtSDK4
|
|
19805
18257
|
return statistic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
19806
18258
|
end
|
19807
18259
|
|
19808
|
-
#
|
19809
|
-
# Returns an string representation of this service.
|
19810
|
-
#
|
19811
|
-
# @return [String]
|
19812
|
-
#
|
19813
|
-
def to_s
|
19814
|
-
"#<#{StatisticsService}:#{absolute_path}>"
|
19815
|
-
end
|
19816
|
-
|
19817
18260
|
end
|
19818
18261
|
|
19819
18262
|
class StepService < MeasurableService
|
@@ -19940,15 +18383,6 @@ module OvirtSDK4
|
|
19940
18383
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
19941
18384
|
end
|
19942
18385
|
|
19943
|
-
#
|
19944
|
-
# Returns an string representation of this service.
|
19945
|
-
#
|
19946
|
-
# @return [String]
|
19947
|
-
#
|
19948
|
-
def to_s
|
19949
|
-
"#<#{StepService}:#{absolute_path}>"
|
19950
|
-
end
|
19951
|
-
|
19952
18386
|
end
|
19953
18387
|
|
19954
18388
|
class StepsService < Service
|
@@ -20105,15 +18539,6 @@ module OvirtSDK4
|
|
20105
18539
|
return step_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
20106
18540
|
end
|
20107
18541
|
|
20108
|
-
#
|
20109
|
-
# Returns an string representation of this service.
|
20110
|
-
#
|
20111
|
-
# @return [String]
|
20112
|
-
#
|
20113
|
-
def to_s
|
20114
|
-
"#<#{StepsService}:#{absolute_path}>"
|
20115
|
-
end
|
20116
|
-
|
20117
18542
|
end
|
20118
18543
|
|
20119
18544
|
class StorageService < Service
|
@@ -20208,15 +18633,6 @@ module OvirtSDK4
|
|
20208
18633
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
20209
18634
|
end
|
20210
18635
|
|
20211
|
-
#
|
20212
|
-
# Returns an string representation of this service.
|
20213
|
-
#
|
20214
|
-
# @return [String]
|
20215
|
-
#
|
20216
|
-
def to_s
|
20217
|
-
"#<#{StorageService}:#{absolute_path}>"
|
20218
|
-
end
|
20219
|
-
|
20220
18636
|
end
|
20221
18637
|
|
20222
18638
|
class StorageDomainService < Service
|
@@ -20671,15 +19087,6 @@ module OvirtSDK4
|
|
20671
19087
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
20672
19088
|
end
|
20673
19089
|
|
20674
|
-
#
|
20675
|
-
# Returns an string representation of this service.
|
20676
|
-
#
|
20677
|
-
# @return [String]
|
20678
|
-
#
|
20679
|
-
def to_s
|
20680
|
-
"#<#{StorageDomainService}:#{absolute_path}>"
|
20681
|
-
end
|
20682
|
-
|
20683
19090
|
end
|
20684
19091
|
|
20685
19092
|
class StorageDomainContentDiskService < Service
|
@@ -20726,15 +19133,6 @@ module OvirtSDK4
|
|
20726
19133
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
20727
19134
|
end
|
20728
19135
|
|
20729
|
-
#
|
20730
|
-
# Returns an string representation of this service.
|
20731
|
-
#
|
20732
|
-
# @return [String]
|
20733
|
-
#
|
20734
|
-
def to_s
|
20735
|
-
"#<#{StorageDomainContentDiskService}:#{absolute_path}>"
|
20736
|
-
end
|
20737
|
-
|
20738
19136
|
end
|
20739
19137
|
|
20740
19138
|
class StorageDomainContentDisksService < Service
|
@@ -20807,15 +19205,6 @@ module OvirtSDK4
|
|
20807
19205
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
20808
19206
|
end
|
20809
19207
|
|
20810
|
-
#
|
20811
|
-
# Returns an string representation of this service.
|
20812
|
-
#
|
20813
|
-
# @return [String]
|
20814
|
-
#
|
20815
|
-
def to_s
|
20816
|
-
"#<#{StorageDomainContentDisksService}:#{absolute_path}>"
|
20817
|
-
end
|
20818
|
-
|
20819
19208
|
end
|
20820
19209
|
|
20821
19210
|
class StorageDomainServerConnectionService < Service
|
@@ -20884,15 +19273,6 @@ module OvirtSDK4
|
|
20884
19273
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
20885
19274
|
end
|
20886
19275
|
|
20887
|
-
#
|
20888
|
-
# Returns an string representation of this service.
|
20889
|
-
#
|
20890
|
-
# @return [String]
|
20891
|
-
#
|
20892
|
-
def to_s
|
20893
|
-
"#<#{StorageDomainServerConnectionService}:#{absolute_path}>"
|
20894
|
-
end
|
20895
|
-
|
20896
19276
|
end
|
20897
19277
|
|
20898
19278
|
class StorageDomainServerConnectionsService < Service
|
@@ -20983,15 +19363,6 @@ module OvirtSDK4
|
|
20983
19363
|
return connection_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
20984
19364
|
end
|
20985
19365
|
|
20986
|
-
#
|
20987
|
-
# Returns an string representation of this service.
|
20988
|
-
#
|
20989
|
-
# @return [String]
|
20990
|
-
#
|
20991
|
-
def to_s
|
20992
|
-
"#<#{StorageDomainServerConnectionsService}:#{absolute_path}>"
|
20993
|
-
end
|
20994
|
-
|
20995
19366
|
end
|
20996
19367
|
|
20997
19368
|
class StorageDomainTemplateService < Service
|
@@ -21165,15 +19536,6 @@ module OvirtSDK4
|
|
21165
19536
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
21166
19537
|
end
|
21167
19538
|
|
21168
|
-
#
|
21169
|
-
# Returns an string representation of this service.
|
21170
|
-
#
|
21171
|
-
# @return [String]
|
21172
|
-
#
|
21173
|
-
def to_s
|
21174
|
-
"#<#{StorageDomainTemplateService}:#{absolute_path}>"
|
21175
|
-
end
|
21176
|
-
|
21177
19539
|
end
|
21178
19540
|
|
21179
19541
|
class StorageDomainTemplatesService < Service
|
@@ -21249,15 +19611,6 @@ module OvirtSDK4
|
|
21249
19611
|
return template_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
21250
19612
|
end
|
21251
19613
|
|
21252
|
-
#
|
21253
|
-
# Returns an string representation of this service.
|
21254
|
-
#
|
21255
|
-
# @return [String]
|
21256
|
-
#
|
21257
|
-
def to_s
|
21258
|
-
"#<#{StorageDomainTemplatesService}:#{absolute_path}>"
|
21259
|
-
end
|
21260
|
-
|
21261
19614
|
end
|
21262
19615
|
|
21263
19616
|
class StorageDomainVmService < Service
|
@@ -21505,15 +19858,6 @@ module OvirtSDK4
|
|
21505
19858
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
21506
19859
|
end
|
21507
19860
|
|
21508
|
-
#
|
21509
|
-
# Returns an string representation of this service.
|
21510
|
-
#
|
21511
|
-
# @return [String]
|
21512
|
-
#
|
21513
|
-
def to_s
|
21514
|
-
"#<#{StorageDomainVmService}:#{absolute_path}>"
|
21515
|
-
end
|
21516
|
-
|
21517
19861
|
end
|
21518
19862
|
|
21519
19863
|
class StorageDomainVmDiskAttachmentService < Service
|
@@ -21557,15 +19901,6 @@ module OvirtSDK4
|
|
21557
19901
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
21558
19902
|
end
|
21559
19903
|
|
21560
|
-
#
|
21561
|
-
# Returns an string representation of this service.
|
21562
|
-
#
|
21563
|
-
# @return [String]
|
21564
|
-
#
|
21565
|
-
def to_s
|
21566
|
-
"#<#{StorageDomainVmDiskAttachmentService}:#{absolute_path}>"
|
21567
|
-
end
|
21568
|
-
|
21569
19904
|
end
|
21570
19905
|
|
21571
19906
|
class StorageDomainVmDiskAttachmentsService < Service
|
@@ -21626,15 +19961,6 @@ module OvirtSDK4
|
|
21626
19961
|
return attachment_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
21627
19962
|
end
|
21628
19963
|
|
21629
|
-
#
|
21630
|
-
# Returns an string representation of this service.
|
21631
|
-
#
|
21632
|
-
# @return [String]
|
21633
|
-
#
|
21634
|
-
def to_s
|
21635
|
-
"#<#{StorageDomainVmDiskAttachmentsService}:#{absolute_path}>"
|
21636
|
-
end
|
21637
|
-
|
21638
19964
|
end
|
21639
19965
|
|
21640
19966
|
class StorageDomainVmsService < Service
|
@@ -21712,15 +20038,6 @@ module OvirtSDK4
|
|
21712
20038
|
return vm_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
21713
20039
|
end
|
21714
20040
|
|
21715
|
-
#
|
21716
|
-
# Returns an string representation of this service.
|
21717
|
-
#
|
21718
|
-
# @return [String]
|
21719
|
-
#
|
21720
|
-
def to_s
|
21721
|
-
"#<#{StorageDomainVmsService}:#{absolute_path}>"
|
21722
|
-
end
|
21723
|
-
|
21724
20041
|
end
|
21725
20042
|
|
21726
20043
|
class StorageDomainsService < Service
|
@@ -21893,15 +20210,6 @@ module OvirtSDK4
|
|
21893
20210
|
return storage_domain_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
21894
20211
|
end
|
21895
20212
|
|
21896
|
-
#
|
21897
|
-
# Returns an string representation of this service.
|
21898
|
-
#
|
21899
|
-
# @return [String]
|
21900
|
-
#
|
21901
|
-
def to_s
|
21902
|
-
"#<#{StorageDomainsService}:#{absolute_path}>"
|
21903
|
-
end
|
21904
|
-
|
21905
20213
|
end
|
21906
20214
|
|
21907
20215
|
class StorageServerConnectionService < Service
|
@@ -22038,15 +20346,6 @@ module OvirtSDK4
|
|
22038
20346
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
22039
20347
|
end
|
22040
20348
|
|
22041
|
-
#
|
22042
|
-
# Returns an string representation of this service.
|
22043
|
-
#
|
22044
|
-
# @return [String]
|
22045
|
-
#
|
22046
|
-
def to_s
|
22047
|
-
"#<#{StorageServerConnectionService}:#{absolute_path}>"
|
22048
|
-
end
|
22049
|
-
|
22050
20349
|
end
|
22051
20350
|
|
22052
20351
|
class StorageServerConnectionExtensionService < Service
|
@@ -22162,15 +20461,6 @@ module OvirtSDK4
|
|
22162
20461
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
22163
20462
|
end
|
22164
20463
|
|
22165
|
-
#
|
22166
|
-
# Returns an string representation of this service.
|
22167
|
-
#
|
22168
|
-
# @return [String]
|
22169
|
-
#
|
22170
|
-
def to_s
|
22171
|
-
"#<#{StorageServerConnectionExtensionService}:#{absolute_path}>"
|
22172
|
-
end
|
22173
|
-
|
22174
20464
|
end
|
22175
20465
|
|
22176
20466
|
class StorageServerConnectionExtensionsService < Service
|
@@ -22281,15 +20571,6 @@ module OvirtSDK4
|
|
22281
20571
|
return storage_connection_extension_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
22282
20572
|
end
|
22283
20573
|
|
22284
|
-
#
|
22285
|
-
# Returns an string representation of this service.
|
22286
|
-
#
|
22287
|
-
# @return [String]
|
22288
|
-
#
|
22289
|
-
def to_s
|
22290
|
-
"#<#{StorageServerConnectionExtensionsService}:#{absolute_path}>"
|
22291
|
-
end
|
22292
|
-
|
22293
20574
|
end
|
22294
20575
|
|
22295
20576
|
class StorageServerConnectionsService < Service
|
@@ -22402,15 +20683,6 @@ module OvirtSDK4
|
|
22402
20683
|
return storage_connection_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
22403
20684
|
end
|
22404
20685
|
|
22405
|
-
#
|
22406
|
-
# Returns an string representation of this service.
|
22407
|
-
#
|
22408
|
-
# @return [String]
|
22409
|
-
#
|
22410
|
-
def to_s
|
22411
|
-
"#<#{StorageServerConnectionsService}:#{absolute_path}>"
|
22412
|
-
end
|
22413
|
-
|
22414
20686
|
end
|
22415
20687
|
|
22416
20688
|
class SystemService < Service
|
@@ -23123,15 +21395,6 @@ module OvirtSDK4
|
|
23123
21395
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
23124
21396
|
end
|
23125
21397
|
|
23126
|
-
#
|
23127
|
-
# Returns an string representation of this service.
|
23128
|
-
#
|
23129
|
-
# @return [String]
|
23130
|
-
#
|
23131
|
-
def to_s
|
23132
|
-
"#<#{SystemService}:#{absolute_path}>"
|
23133
|
-
end
|
23134
|
-
|
23135
21398
|
end
|
23136
21399
|
|
23137
21400
|
class SystemPermissionsService < AssignedPermissionsService
|
@@ -23299,15 +21562,6 @@ module OvirtSDK4
|
|
23299
21562
|
return permission_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
23300
21563
|
end
|
23301
21564
|
|
23302
|
-
#
|
23303
|
-
# Returns an string representation of this service.
|
23304
|
-
#
|
23305
|
-
# @return [String]
|
23306
|
-
#
|
23307
|
-
def to_s
|
23308
|
-
"#<#{SystemPermissionsService}:#{absolute_path}>"
|
23309
|
-
end
|
23310
|
-
|
23311
21565
|
end
|
23312
21566
|
|
23313
21567
|
class TagService < Service
|
@@ -23452,15 +21706,6 @@ module OvirtSDK4
|
|
23452
21706
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
23453
21707
|
end
|
23454
21708
|
|
23455
|
-
#
|
23456
|
-
# Returns an string representation of this service.
|
23457
|
-
#
|
23458
|
-
# @return [String]
|
23459
|
-
#
|
23460
|
-
def to_s
|
23461
|
-
"#<#{TagService}:#{absolute_path}>"
|
23462
|
-
end
|
23463
|
-
|
23464
21709
|
end
|
23465
21710
|
|
23466
21711
|
class TagsService < Service
|
@@ -23614,15 +21859,6 @@ module OvirtSDK4
|
|
23614
21859
|
return tag_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
23615
21860
|
end
|
23616
21861
|
|
23617
|
-
#
|
23618
|
-
# Returns an string representation of this service.
|
23619
|
-
#
|
23620
|
-
# @return [String]
|
23621
|
-
#
|
23622
|
-
def to_s
|
23623
|
-
"#<#{TagsService}:#{absolute_path}>"
|
23624
|
-
end
|
23625
|
-
|
23626
21862
|
end
|
23627
21863
|
|
23628
21864
|
class TemplateService < Service
|
@@ -23907,15 +22143,6 @@ module OvirtSDK4
|
|
23907
22143
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
23908
22144
|
end
|
23909
22145
|
|
23910
|
-
#
|
23911
|
-
# Returns an string representation of this service.
|
23912
|
-
#
|
23913
|
-
# @return [String]
|
23914
|
-
#
|
23915
|
-
def to_s
|
23916
|
-
"#<#{TemplateService}:#{absolute_path}>"
|
23917
|
-
end
|
23918
|
-
|
23919
22146
|
end
|
23920
22147
|
|
23921
22148
|
class TemplateCdromService < Service
|
@@ -23966,15 +22193,6 @@ module OvirtSDK4
|
|
23966
22193
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
23967
22194
|
end
|
23968
22195
|
|
23969
|
-
#
|
23970
|
-
# Returns an string representation of this service.
|
23971
|
-
#
|
23972
|
-
# @return [String]
|
23973
|
-
#
|
23974
|
-
def to_s
|
23975
|
-
"#<#{TemplateCdromService}:#{absolute_path}>"
|
23976
|
-
end
|
23977
|
-
|
23978
22196
|
end
|
23979
22197
|
|
23980
22198
|
class TemplateCdromsService < Service
|
@@ -24038,15 +22256,6 @@ module OvirtSDK4
|
|
24038
22256
|
return cdrom_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24039
22257
|
end
|
24040
22258
|
|
24041
|
-
#
|
24042
|
-
# Returns an string representation of this service.
|
24043
|
-
#
|
24044
|
-
# @return [String]
|
24045
|
-
#
|
24046
|
-
def to_s
|
24047
|
-
"#<#{TemplateCdromsService}:#{absolute_path}>"
|
24048
|
-
end
|
24049
|
-
|
24050
22259
|
end
|
24051
22260
|
|
24052
22261
|
class TemplateDiskService < Service
|
@@ -24159,15 +22368,6 @@ module OvirtSDK4
|
|
24159
22368
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
24160
22369
|
end
|
24161
22370
|
|
24162
|
-
#
|
24163
|
-
# Returns an string representation of this service.
|
24164
|
-
#
|
24165
|
-
# @return [String]
|
24166
|
-
#
|
24167
|
-
def to_s
|
24168
|
-
"#<#{TemplateDiskService}:#{absolute_path}>"
|
24169
|
-
end
|
24170
|
-
|
24171
22371
|
end
|
24172
22372
|
|
24173
22373
|
class TemplateDiskAttachmentService < Service
|
@@ -24244,16 +22444,7 @@ module OvirtSDK4
|
|
24244
22444
|
if path.nil? || path == ''
|
24245
22445
|
return self
|
24246
22446
|
end
|
24247
|
-
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
24248
|
-
end
|
24249
|
-
|
24250
|
-
#
|
24251
|
-
# Returns an string representation of this service.
|
24252
|
-
#
|
24253
|
-
# @return [String]
|
24254
|
-
#
|
24255
|
-
def to_s
|
24256
|
-
"#<#{TemplateDiskAttachmentService}:#{absolute_path}>"
|
22447
|
+
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
24257
22448
|
end
|
24258
22449
|
|
24259
22450
|
end
|
@@ -24316,15 +22507,6 @@ module OvirtSDK4
|
|
24316
22507
|
return attachment_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24317
22508
|
end
|
24318
22509
|
|
24319
|
-
#
|
24320
|
-
# Returns an string representation of this service.
|
24321
|
-
#
|
24322
|
-
# @return [String]
|
24323
|
-
#
|
24324
|
-
def to_s
|
24325
|
-
"#<#{TemplateDiskAttachmentsService}:#{absolute_path}>"
|
24326
|
-
end
|
24327
|
-
|
24328
22510
|
end
|
24329
22511
|
|
24330
22512
|
class TemplateDisksService < Service
|
@@ -24388,15 +22570,6 @@ module OvirtSDK4
|
|
24388
22570
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24389
22571
|
end
|
24390
22572
|
|
24391
|
-
#
|
24392
|
-
# Returns an string representation of this service.
|
24393
|
-
#
|
24394
|
-
# @return [String]
|
24395
|
-
#
|
24396
|
-
def to_s
|
24397
|
-
"#<#{TemplateDisksService}:#{absolute_path}>"
|
24398
|
-
end
|
24399
|
-
|
24400
22573
|
end
|
24401
22574
|
|
24402
22575
|
class TemplateGraphicsConsoleService < Service
|
@@ -24465,15 +22638,6 @@ module OvirtSDK4
|
|
24465
22638
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
24466
22639
|
end
|
24467
22640
|
|
24468
|
-
#
|
24469
|
-
# Returns an string representation of this service.
|
24470
|
-
#
|
24471
|
-
# @return [String]
|
24472
|
-
#
|
24473
|
-
def to_s
|
24474
|
-
"#<#{TemplateGraphicsConsoleService}:#{absolute_path}>"
|
24475
|
-
end
|
24476
|
-
|
24477
22641
|
end
|
24478
22642
|
|
24479
22643
|
class TemplateGraphicsConsolesService < Service
|
@@ -24564,15 +22728,6 @@ module OvirtSDK4
|
|
24564
22728
|
return console_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24565
22729
|
end
|
24566
22730
|
|
24567
|
-
#
|
24568
|
-
# Returns an string representation of this service.
|
24569
|
-
#
|
24570
|
-
# @return [String]
|
24571
|
-
#
|
24572
|
-
def to_s
|
24573
|
-
"#<#{TemplateGraphicsConsolesService}:#{absolute_path}>"
|
24574
|
-
end
|
24575
|
-
|
24576
22731
|
end
|
24577
22732
|
|
24578
22733
|
class TemplateNicService < Service
|
@@ -24670,15 +22825,6 @@ module OvirtSDK4
|
|
24670
22825
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
24671
22826
|
end
|
24672
22827
|
|
24673
|
-
#
|
24674
|
-
# Returns an string representation of this service.
|
24675
|
-
#
|
24676
|
-
# @return [String]
|
24677
|
-
#
|
24678
|
-
def to_s
|
24679
|
-
"#<#{TemplateNicService}:#{absolute_path}>"
|
24680
|
-
end
|
24681
|
-
|
24682
22828
|
end
|
24683
22829
|
|
24684
22830
|
class TemplateNicsService < Service
|
@@ -24769,15 +22915,6 @@ module OvirtSDK4
|
|
24769
22915
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24770
22916
|
end
|
24771
22917
|
|
24772
|
-
#
|
24773
|
-
# Returns an string representation of this service.
|
24774
|
-
#
|
24775
|
-
# @return [String]
|
24776
|
-
#
|
24777
|
-
def to_s
|
24778
|
-
"#<#{TemplateNicsService}:#{absolute_path}>"
|
24779
|
-
end
|
24780
|
-
|
24781
22918
|
end
|
24782
22919
|
|
24783
22920
|
class TemplateWatchdogService < Service
|
@@ -24875,15 +23012,6 @@ module OvirtSDK4
|
|
24875
23012
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
24876
23013
|
end
|
24877
23014
|
|
24878
|
-
#
|
24879
|
-
# Returns an string representation of this service.
|
24880
|
-
#
|
24881
|
-
# @return [String]
|
24882
|
-
#
|
24883
|
-
def to_s
|
24884
|
-
"#<#{TemplateWatchdogService}:#{absolute_path}>"
|
24885
|
-
end
|
24886
|
-
|
24887
23015
|
end
|
24888
23016
|
|
24889
23017
|
class TemplateWatchdogsService < Service
|
@@ -24974,15 +23102,6 @@ module OvirtSDK4
|
|
24974
23102
|
return watchdog_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
24975
23103
|
end
|
24976
23104
|
|
24977
|
-
#
|
24978
|
-
# Returns an string representation of this service.
|
24979
|
-
#
|
24980
|
-
# @return [String]
|
24981
|
-
#
|
24982
|
-
def to_s
|
24983
|
-
"#<#{TemplateWatchdogsService}:#{absolute_path}>"
|
24984
|
-
end
|
24985
|
-
|
24986
23105
|
end
|
24987
23106
|
|
24988
23107
|
class TemplatesService < Service
|
@@ -25190,15 +23309,6 @@ module OvirtSDK4
|
|
25190
23309
|
return template_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
25191
23310
|
end
|
25192
23311
|
|
25193
|
-
#
|
25194
|
-
# Returns an string representation of this service.
|
25195
|
-
#
|
25196
|
-
# @return [String]
|
25197
|
-
#
|
25198
|
-
def to_s
|
25199
|
-
"#<#{TemplatesService}:#{absolute_path}>"
|
25200
|
-
end
|
25201
|
-
|
25202
23312
|
end
|
25203
23313
|
|
25204
23314
|
class UnmanagedNetworkService < Service
|
@@ -25267,15 +23377,6 @@ module OvirtSDK4
|
|
25267
23377
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
25268
23378
|
end
|
25269
23379
|
|
25270
|
-
#
|
25271
|
-
# Returns an string representation of this service.
|
25272
|
-
#
|
25273
|
-
# @return [String]
|
25274
|
-
#
|
25275
|
-
def to_s
|
25276
|
-
"#<#{UnmanagedNetworkService}:#{absolute_path}>"
|
25277
|
-
end
|
25278
|
-
|
25279
23380
|
end
|
25280
23381
|
|
25281
23382
|
class UnmanagedNetworksService < Service
|
@@ -25339,15 +23440,6 @@ module OvirtSDK4
|
|
25339
23440
|
return unmanaged_network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
25340
23441
|
end
|
25341
23442
|
|
25342
|
-
#
|
25343
|
-
# Returns an string representation of this service.
|
25344
|
-
#
|
25345
|
-
# @return [String]
|
25346
|
-
#
|
25347
|
-
def to_s
|
25348
|
-
"#<#{UnmanagedNetworksService}:#{absolute_path}>"
|
25349
|
-
end
|
25350
|
-
|
25351
23443
|
end
|
25352
23444
|
|
25353
23445
|
class UserService < Service
|
@@ -25511,15 +23603,6 @@ module OvirtSDK4
|
|
25511
23603
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
25512
23604
|
end
|
25513
23605
|
|
25514
|
-
#
|
25515
|
-
# Returns an string representation of this service.
|
25516
|
-
#
|
25517
|
-
# @return [String]
|
25518
|
-
#
|
25519
|
-
def to_s
|
25520
|
-
"#<#{UserService}:#{absolute_path}>"
|
25521
|
-
end
|
25522
|
-
|
25523
23606
|
end
|
25524
23607
|
|
25525
23608
|
class UsersService < Service
|
@@ -25684,15 +23767,6 @@ module OvirtSDK4
|
|
25684
23767
|
return user_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
25685
23768
|
end
|
25686
23769
|
|
25687
|
-
#
|
25688
|
-
# Returns an string representation of this service.
|
25689
|
-
#
|
25690
|
-
# @return [String]
|
25691
|
-
#
|
25692
|
-
def to_s
|
25693
|
-
"#<#{UsersService}:#{absolute_path}>"
|
25694
|
-
end
|
25695
|
-
|
25696
23770
|
end
|
25697
23771
|
|
25698
23772
|
class VirtualFunctionAllowedNetworkService < Service
|
@@ -25761,15 +23835,6 @@ module OvirtSDK4
|
|
25761
23835
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
25762
23836
|
end
|
25763
23837
|
|
25764
|
-
#
|
25765
|
-
# Returns an string representation of this service.
|
25766
|
-
#
|
25767
|
-
# @return [String]
|
25768
|
-
#
|
25769
|
-
def to_s
|
25770
|
-
"#<#{VirtualFunctionAllowedNetworkService}:#{absolute_path}>"
|
25771
|
-
end
|
25772
|
-
|
25773
23838
|
end
|
25774
23839
|
|
25775
23840
|
class VirtualFunctionAllowedNetworksService < Service
|
@@ -25860,15 +23925,6 @@ module OvirtSDK4
|
|
25860
23925
|
return network_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
25861
23926
|
end
|
25862
23927
|
|
25863
|
-
#
|
25864
|
-
# Returns an string representation of this service.
|
25865
|
-
#
|
25866
|
-
# @return [String]
|
25867
|
-
#
|
25868
|
-
def to_s
|
25869
|
-
"#<#{VirtualFunctionAllowedNetworksService}:#{absolute_path}>"
|
25870
|
-
end
|
25871
|
-
|
25872
23928
|
end
|
25873
23929
|
|
25874
23930
|
class VmService < MeasurableService
|
@@ -26970,15 +25026,6 @@ module OvirtSDK4
|
|
26970
25026
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
26971
25027
|
end
|
26972
25028
|
|
26973
|
-
#
|
26974
|
-
# Returns an string representation of this service.
|
26975
|
-
#
|
26976
|
-
# @return [String]
|
26977
|
-
#
|
26978
|
-
def to_s
|
26979
|
-
"#<#{VmService}:#{absolute_path}>"
|
26980
|
-
end
|
26981
|
-
|
26982
25029
|
end
|
26983
25030
|
|
26984
25031
|
class VmApplicationService < Service
|
@@ -27025,15 +25072,6 @@ module OvirtSDK4
|
|
27025
25072
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
27026
25073
|
end
|
27027
25074
|
|
27028
|
-
#
|
27029
|
-
# Returns an string representation of this service.
|
27030
|
-
#
|
27031
|
-
# @return [String]
|
27032
|
-
#
|
27033
|
-
def to_s
|
27034
|
-
"#<#{VmApplicationService}:#{absolute_path}>"
|
27035
|
-
end
|
27036
|
-
|
27037
25075
|
end
|
27038
25076
|
|
27039
25077
|
class VmApplicationsService < Service
|
@@ -27100,15 +25138,6 @@ module OvirtSDK4
|
|
27100
25138
|
return application_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
27101
25139
|
end
|
27102
25140
|
|
27103
|
-
#
|
27104
|
-
# Returns an string representation of this service.
|
27105
|
-
#
|
27106
|
-
# @return [String]
|
27107
|
-
#
|
27108
|
-
def to_s
|
27109
|
-
"#<#{VmApplicationsService}:#{absolute_path}>"
|
27110
|
-
end
|
27111
|
-
|
27112
25141
|
end
|
27113
25142
|
|
27114
25143
|
class VmCdromService < Service
|
@@ -27260,15 +25289,6 @@ module OvirtSDK4
|
|
27260
25289
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
27261
25290
|
end
|
27262
25291
|
|
27263
|
-
#
|
27264
|
-
# Returns an string representation of this service.
|
27265
|
-
#
|
27266
|
-
# @return [String]
|
27267
|
-
#
|
27268
|
-
def to_s
|
27269
|
-
"#<#{VmCdromService}:#{absolute_path}>"
|
27270
|
-
end
|
27271
|
-
|
27272
25292
|
end
|
27273
25293
|
|
27274
25294
|
class VmCdromsService < Service
|
@@ -27332,15 +25352,6 @@ module OvirtSDK4
|
|
27332
25352
|
return cdrom_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
27333
25353
|
end
|
27334
25354
|
|
27335
|
-
#
|
27336
|
-
# Returns an string representation of this service.
|
27337
|
-
#
|
27338
|
-
# @return [String]
|
27339
|
-
#
|
27340
|
-
def to_s
|
27341
|
-
"#<#{VmCdromsService}:#{absolute_path}>"
|
27342
|
-
end
|
27343
|
-
|
27344
25355
|
end
|
27345
25356
|
|
27346
25357
|
class VmDiskService < MeasurableService
|
@@ -27556,15 +25567,6 @@ module OvirtSDK4
|
|
27556
25567
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
27557
25568
|
end
|
27558
25569
|
|
27559
|
-
#
|
27560
|
-
# Returns an string representation of this service.
|
27561
|
-
#
|
27562
|
-
# @return [String]
|
27563
|
-
#
|
27564
|
-
def to_s
|
27565
|
-
"#<#{VmDiskService}:#{absolute_path}>"
|
27566
|
-
end
|
27567
|
-
|
27568
25570
|
end
|
27569
25571
|
|
27570
25572
|
class VmDisksService < Service
|
@@ -27655,15 +25657,6 @@ module OvirtSDK4
|
|
27655
25657
|
return disk_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
27656
25658
|
end
|
27657
25659
|
|
27658
|
-
#
|
27659
|
-
# Returns an string representation of this service.
|
27660
|
-
#
|
27661
|
-
# @return [String]
|
27662
|
-
#
|
27663
|
-
def to_s
|
27664
|
-
"#<#{VmDisksService}:#{absolute_path}>"
|
27665
|
-
end
|
27666
|
-
|
27667
25660
|
end
|
27668
25661
|
|
27669
25662
|
class VmGraphicsConsoleService < Service
|
@@ -27919,15 +25912,6 @@ module OvirtSDK4
|
|
27919
25912
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
27920
25913
|
end
|
27921
25914
|
|
27922
|
-
#
|
27923
|
-
# Returns an string representation of this service.
|
27924
|
-
#
|
27925
|
-
# @return [String]
|
27926
|
-
#
|
27927
|
-
def to_s
|
27928
|
-
"#<#{VmGraphicsConsoleService}:#{absolute_path}>"
|
27929
|
-
end
|
27930
|
-
|
27931
25915
|
end
|
27932
25916
|
|
27933
25917
|
class VmGraphicsConsolesService < Service
|
@@ -28042,15 +26026,6 @@ module OvirtSDK4
|
|
28042
26026
|
return console_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
28043
26027
|
end
|
28044
26028
|
|
28045
|
-
#
|
28046
|
-
# Returns an string representation of this service.
|
28047
|
-
#
|
28048
|
-
# @return [String]
|
28049
|
-
#
|
28050
|
-
def to_s
|
28051
|
-
"#<#{VmGraphicsConsolesService}:#{absolute_path}>"
|
28052
|
-
end
|
28053
|
-
|
28054
26029
|
end
|
28055
26030
|
|
28056
26031
|
class VmHostDeviceService < Service
|
@@ -28157,15 +26132,6 @@ module OvirtSDK4
|
|
28157
26132
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
28158
26133
|
end
|
28159
26134
|
|
28160
|
-
#
|
28161
|
-
# Returns an string representation of this service.
|
28162
|
-
#
|
28163
|
-
# @return [String]
|
28164
|
-
#
|
28165
|
-
def to_s
|
28166
|
-
"#<#{VmHostDeviceService}:#{absolute_path}>"
|
28167
|
-
end
|
28168
|
-
|
28169
26135
|
end
|
28170
26136
|
|
28171
26137
|
class VmHostDevicesService < Service
|
@@ -28280,15 +26246,6 @@ module OvirtSDK4
|
|
28280
26246
|
return device_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
28281
26247
|
end
|
28282
26248
|
|
28283
|
-
#
|
28284
|
-
# Returns an string representation of this service.
|
28285
|
-
#
|
28286
|
-
# @return [String]
|
28287
|
-
#
|
28288
|
-
def to_s
|
28289
|
-
"#<#{VmHostDevicesService}:#{absolute_path}>"
|
28290
|
-
end
|
28291
|
-
|
28292
26249
|
end
|
28293
26250
|
|
28294
26251
|
class VmNicService < MeasurableService
|
@@ -28504,15 +26461,6 @@ module OvirtSDK4
|
|
28504
26461
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
28505
26462
|
end
|
28506
26463
|
|
28507
|
-
#
|
28508
|
-
# Returns an string representation of this service.
|
28509
|
-
#
|
28510
|
-
# @return [String]
|
28511
|
-
#
|
28512
|
-
def to_s
|
28513
|
-
"#<#{VmNicService}:#{absolute_path}>"
|
28514
|
-
end
|
28515
|
-
|
28516
26464
|
end
|
28517
26465
|
|
28518
26466
|
class VmNicsService < Service
|
@@ -28652,15 +26600,6 @@ module OvirtSDK4
|
|
28652
26600
|
return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
28653
26601
|
end
|
28654
26602
|
|
28655
|
-
#
|
28656
|
-
# Returns an string representation of this service.
|
28657
|
-
#
|
28658
|
-
# @return [String]
|
28659
|
-
#
|
28660
|
-
def to_s
|
28661
|
-
"#<#{VmNicsService}:#{absolute_path}>"
|
28662
|
-
end
|
28663
|
-
|
28664
26603
|
end
|
28665
26604
|
|
28666
26605
|
class VmNumaNodeService < Service
|
@@ -28785,15 +26724,6 @@ module OvirtSDK4
|
|
28785
26724
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
28786
26725
|
end
|
28787
26726
|
|
28788
|
-
#
|
28789
|
-
# Returns an string representation of this service.
|
28790
|
-
#
|
28791
|
-
# @return [String]
|
28792
|
-
#
|
28793
|
-
def to_s
|
28794
|
-
"#<#{VmNumaNodeService}:#{absolute_path}>"
|
28795
|
-
end
|
28796
|
-
|
28797
26727
|
end
|
28798
26728
|
|
28799
26729
|
class VmNumaNodesService < Service
|
@@ -28908,15 +26838,6 @@ module OvirtSDK4
|
|
28908
26838
|
return node_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
28909
26839
|
end
|
28910
26840
|
|
28911
|
-
#
|
28912
|
-
# Returns an string representation of this service.
|
28913
|
-
#
|
28914
|
-
# @return [String]
|
28915
|
-
#
|
28916
|
-
def to_s
|
28917
|
-
"#<#{VmNumaNodesService}:#{absolute_path}>"
|
28918
|
-
end
|
28919
|
-
|
28920
26841
|
end
|
28921
26842
|
|
28922
26843
|
class VmPoolService < Service
|
@@ -29116,15 +27037,6 @@ module OvirtSDK4
|
|
29116
27037
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
29117
27038
|
end
|
29118
27039
|
|
29119
|
-
#
|
29120
|
-
# Returns an string representation of this service.
|
29121
|
-
#
|
29122
|
-
# @return [String]
|
29123
|
-
#
|
29124
|
-
def to_s
|
29125
|
-
"#<#{VmPoolService}:#{absolute_path}>"
|
29126
|
-
end
|
29127
|
-
|
29128
27040
|
end
|
29129
27041
|
|
29130
27042
|
class VmPoolsService < Service
|
@@ -29263,15 +27175,6 @@ module OvirtSDK4
|
|
29263
27175
|
return pool_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
29264
27176
|
end
|
29265
27177
|
|
29266
|
-
#
|
29267
|
-
# Returns an string representation of this service.
|
29268
|
-
#
|
29269
|
-
# @return [String]
|
29270
|
-
#
|
29271
|
-
def to_s
|
29272
|
-
"#<#{VmPoolsService}:#{absolute_path}>"
|
29273
|
-
end
|
29274
|
-
|
29275
27178
|
end
|
29276
27179
|
|
29277
27180
|
class VmReportedDeviceService < Service
|
@@ -29315,15 +27218,6 @@ module OvirtSDK4
|
|
29315
27218
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
29316
27219
|
end
|
29317
27220
|
|
29318
|
-
#
|
29319
|
-
# Returns an string representation of this service.
|
29320
|
-
#
|
29321
|
-
# @return [String]
|
29322
|
-
#
|
29323
|
-
def to_s
|
29324
|
-
"#<#{VmReportedDeviceService}:#{absolute_path}>"
|
29325
|
-
end
|
29326
|
-
|
29327
27221
|
end
|
29328
27222
|
|
29329
27223
|
class VmReportedDevicesService < Service
|
@@ -29387,15 +27281,6 @@ module OvirtSDK4
|
|
29387
27281
|
return reported_device_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
29388
27282
|
end
|
29389
27283
|
|
29390
|
-
#
|
29391
|
-
# Returns an string representation of this service.
|
29392
|
-
#
|
29393
|
-
# @return [String]
|
29394
|
-
#
|
29395
|
-
def to_s
|
29396
|
-
"#<#{VmReportedDevicesService}:#{absolute_path}>"
|
29397
|
-
end
|
29398
|
-
|
29399
27284
|
end
|
29400
27285
|
|
29401
27286
|
class VmSessionService < Service
|
@@ -29439,15 +27324,6 @@ module OvirtSDK4
|
|
29439
27324
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
29440
27325
|
end
|
29441
27326
|
|
29442
|
-
#
|
29443
|
-
# Returns an string representation of this service.
|
29444
|
-
#
|
29445
|
-
# @return [String]
|
29446
|
-
#
|
29447
|
-
def to_s
|
29448
|
-
"#<#{VmSessionService}:#{absolute_path}>"
|
29449
|
-
end
|
29450
|
-
|
29451
27327
|
end
|
29452
27328
|
|
29453
27329
|
class VmSessionsService < Service
|
@@ -29535,15 +27411,6 @@ module OvirtSDK4
|
|
29535
27411
|
return session_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
29536
27412
|
end
|
29537
27413
|
|
29538
|
-
#
|
29539
|
-
# Returns an string representation of this service.
|
29540
|
-
#
|
29541
|
-
# @return [String]
|
29542
|
-
#
|
29543
|
-
def to_s
|
29544
|
-
"#<#{VmSessionsService}:#{absolute_path}>"
|
29545
|
-
end
|
29546
|
-
|
29547
27414
|
end
|
29548
27415
|
|
29549
27416
|
class VmWatchdogService < Service
|
@@ -29675,15 +27542,6 @@ module OvirtSDK4
|
|
29675
27542
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
29676
27543
|
end
|
29677
27544
|
|
29678
|
-
#
|
29679
|
-
# Returns an string representation of this service.
|
29680
|
-
#
|
29681
|
-
# @return [String]
|
29682
|
-
#
|
29683
|
-
def to_s
|
29684
|
-
"#<#{VmWatchdogService}:#{absolute_path}>"
|
29685
|
-
end
|
29686
|
-
|
29687
27545
|
end
|
29688
27546
|
|
29689
27547
|
class VmWatchdogsService < Service
|
@@ -29800,15 +27658,6 @@ module OvirtSDK4
|
|
29800
27658
|
return watchdog_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
29801
27659
|
end
|
29802
27660
|
|
29803
|
-
#
|
29804
|
-
# Returns an string representation of this service.
|
29805
|
-
#
|
29806
|
-
# @return [String]
|
29807
|
-
#
|
29808
|
-
def to_s
|
29809
|
-
"#<#{VmWatchdogsService}:#{absolute_path}>"
|
29810
|
-
end
|
29811
|
-
|
29812
27661
|
end
|
29813
27662
|
|
29814
27663
|
class VmsService < Service
|
@@ -30142,15 +27991,6 @@ module OvirtSDK4
|
|
30142
27991
|
return vm_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
30143
27992
|
end
|
30144
27993
|
|
30145
|
-
#
|
30146
|
-
# Returns an string representation of this service.
|
30147
|
-
#
|
30148
|
-
# @return [String]
|
30149
|
-
#
|
30150
|
-
def to_s
|
30151
|
-
"#<#{VmsService}:#{absolute_path}>"
|
30152
|
-
end
|
30153
|
-
|
30154
27994
|
end
|
30155
27995
|
|
30156
27996
|
class VnicProfileService < Service
|
@@ -30263,15 +28103,6 @@ module OvirtSDK4
|
|
30263
28103
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
30264
28104
|
end
|
30265
28105
|
|
30266
|
-
#
|
30267
|
-
# Returns an string representation of this service.
|
30268
|
-
#
|
30269
|
-
# @return [String]
|
30270
|
-
#
|
30271
|
-
def to_s
|
30272
|
-
"#<#{VnicProfileService}:#{absolute_path}>"
|
30273
|
-
end
|
30274
|
-
|
30275
28106
|
end
|
30276
28107
|
|
30277
28108
|
class VnicProfilesService < Service
|
@@ -30425,15 +28256,6 @@ module OvirtSDK4
|
|
30425
28256
|
return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
30426
28257
|
end
|
30427
28258
|
|
30428
|
-
#
|
30429
|
-
# Returns an string representation of this service.
|
30430
|
-
#
|
30431
|
-
# @return [String]
|
30432
|
-
#
|
30433
|
-
def to_s
|
30434
|
-
"#<#{VnicProfilesService}:#{absolute_path}>"
|
30435
|
-
end
|
30436
|
-
|
30437
28259
|
end
|
30438
28260
|
|
30439
28261
|
class WeightService < Service
|
@@ -30505,15 +28327,6 @@ module OvirtSDK4
|
|
30505
28327
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
30506
28328
|
end
|
30507
28329
|
|
30508
|
-
#
|
30509
|
-
# Returns an string representation of this service.
|
30510
|
-
#
|
30511
|
-
# @return [String]
|
30512
|
-
#
|
30513
|
-
def to_s
|
30514
|
-
"#<#{WeightService}:#{absolute_path}>"
|
30515
|
-
end
|
30516
|
-
|
30517
28330
|
end
|
30518
28331
|
|
30519
28332
|
class WeightsService < Service
|
@@ -30607,15 +28420,6 @@ module OvirtSDK4
|
|
30607
28420
|
return weight_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
30608
28421
|
end
|
30609
28422
|
|
30610
|
-
#
|
30611
|
-
# Returns an string representation of this service.
|
30612
|
-
#
|
30613
|
-
# @return [String]
|
30614
|
-
#
|
30615
|
-
def to_s
|
30616
|
-
"#<#{WeightsService}:#{absolute_path}>"
|
30617
|
-
end
|
30618
|
-
|
30619
28423
|
end
|
30620
28424
|
|
30621
28425
|
class DiskService < MeasurableService
|
@@ -30848,15 +28652,6 @@ module OvirtSDK4
|
|
30848
28652
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
30849
28653
|
end
|
30850
28654
|
|
30851
|
-
#
|
30852
|
-
# Returns an string representation of this service.
|
30853
|
-
#
|
30854
|
-
# @return [String]
|
30855
|
-
#
|
30856
|
-
def to_s
|
30857
|
-
"#<#{DiskService}:#{absolute_path}>"
|
30858
|
-
end
|
30859
|
-
|
30860
28655
|
end
|
30861
28656
|
|
30862
28657
|
class EngineKatelloErrataService < KatelloErrataService
|
@@ -30950,15 +28745,6 @@ module OvirtSDK4
|
|
30950
28745
|
return katello_erratum_service(path[0..(index - 1)]).service(path[(index +1)..-1])
|
30951
28746
|
end
|
30952
28747
|
|
30953
|
-
#
|
30954
|
-
# Returns an string representation of this service.
|
30955
|
-
#
|
30956
|
-
# @return [String]
|
30957
|
-
#
|
30958
|
-
def to_s
|
30959
|
-
"#<#{EngineKatelloErrataService}:#{absolute_path}>"
|
30960
|
-
end
|
30961
|
-
|
30962
28748
|
end
|
30963
28749
|
|
30964
28750
|
class ExternalHostProviderService < ExternalProviderService
|
@@ -31198,15 +28984,6 @@ module OvirtSDK4
|
|
31198
28984
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
31199
28985
|
end
|
31200
28986
|
|
31201
|
-
#
|
31202
|
-
# Returns an string representation of this service.
|
31203
|
-
#
|
31204
|
-
# @return [String]
|
31205
|
-
#
|
31206
|
-
def to_s
|
31207
|
-
"#<#{ExternalHostProviderService}:#{absolute_path}>"
|
31208
|
-
end
|
31209
|
-
|
31210
28987
|
end
|
31211
28988
|
|
31212
28989
|
class GlusterBrickService < MeasurableService
|
@@ -31374,15 +29151,6 @@ module OvirtSDK4
|
|
31374
29151
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
31375
29152
|
end
|
31376
29153
|
|
31377
|
-
#
|
31378
|
-
# Returns an string representation of this service.
|
31379
|
-
#
|
31380
|
-
# @return [String]
|
31381
|
-
#
|
31382
|
-
def to_s
|
31383
|
-
"#<#{GlusterBrickService}:#{absolute_path}>"
|
31384
|
-
end
|
31385
|
-
|
31386
29154
|
end
|
31387
29155
|
|
31388
29156
|
class GlusterVolumeService < MeasurableService
|
@@ -31847,15 +29615,6 @@ module OvirtSDK4
|
|
31847
29615
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
31848
29616
|
end
|
31849
29617
|
|
31850
|
-
#
|
31851
|
-
# Returns an string representation of this service.
|
31852
|
-
#
|
31853
|
-
# @return [String]
|
31854
|
-
#
|
31855
|
-
def to_s
|
31856
|
-
"#<#{GlusterVolumeService}:#{absolute_path}>"
|
31857
|
-
end
|
31858
|
-
|
31859
29618
|
end
|
31860
29619
|
|
31861
29620
|
class HostService < MeasurableService
|
@@ -32865,15 +30624,6 @@ module OvirtSDK4
|
|
32865
30624
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
32866
30625
|
end
|
32867
30626
|
|
32868
|
-
#
|
32869
|
-
# Returns an string representation of this service.
|
32870
|
-
#
|
32871
|
-
# @return [String]
|
32872
|
-
#
|
32873
|
-
def to_s
|
32874
|
-
"#<#{HostService}:#{absolute_path}>"
|
32875
|
-
end
|
32876
|
-
|
32877
30627
|
end
|
32878
30628
|
|
32879
30629
|
class HostNicService < MeasurableService
|
@@ -33037,15 +30787,6 @@ module OvirtSDK4
|
|
33037
30787
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
33038
30788
|
end
|
33039
30789
|
|
33040
|
-
#
|
33041
|
-
# Returns an string representation of this service.
|
33042
|
-
#
|
33043
|
-
# @return [String]
|
33044
|
-
#
|
33045
|
-
def to_s
|
33046
|
-
"#<#{HostNicService}:#{absolute_path}>"
|
33047
|
-
end
|
33048
|
-
|
33049
30790
|
end
|
33050
30791
|
|
33051
30792
|
class HostNumaNodeService < MeasurableService
|
@@ -33104,15 +30845,6 @@ module OvirtSDK4
|
|
33104
30845
|
raise Error.new("The path \"#{path}\" doesn't correspond to any service")
|
33105
30846
|
end
|
33106
30847
|
|
33107
|
-
#
|
33108
|
-
# Returns an string representation of this service.
|
33109
|
-
#
|
33110
|
-
# @return [String]
|
33111
|
-
#
|
33112
|
-
def to_s
|
33113
|
-
"#<#{HostNumaNodeService}:#{absolute_path}>"
|
33114
|
-
end
|
33115
|
-
|
33116
30848
|
end
|
33117
30849
|
|
33118
30850
|
end
|