ovirt-engine-sdk 4.0.6 → 4.0.7

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.
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module OvirtSDK4
19
- VERSION = '4.0.6'
19
+ VERSION = '4.0.7'.freeze
20
20
  end
@@ -15,7 +15,6 @@
15
15
  #
16
16
 
17
17
  module OvirtSDK4
18
-
19
18
  #
20
19
  # This is the base class for all the XML writers used by the SDK. It contains the utility methods used by
21
20
  # all of them.
@@ -23,7 +22,6 @@ module OvirtSDK4
23
22
  # @api private
24
23
  #
25
24
  class Writer
26
-
27
25
  #
28
26
  # Writes an element with the given name and string value.
29
27
  #
@@ -42,11 +40,7 @@ module OvirtSDK4
42
40
  # @return [String]
43
41
  #
44
42
  def self.render_boolean(value)
45
- if value
46
- return 'true'
47
- else
48
- return 'false'
49
- end
43
+ value ? 'true' : 'false'
50
44
  end
51
45
 
52
46
  #
@@ -67,7 +61,7 @@ module OvirtSDK4
67
61
  # @return [String]
68
62
  #
69
63
  def self.render_integer(value)
70
- return value.to_s
64
+ value.to_s
71
65
  end
72
66
 
73
67
  #
@@ -88,7 +82,7 @@ module OvirtSDK4
88
82
  # @return [String]
89
83
  #
90
84
  def self.render_decimal(value)
91
- return value.to_s
85
+ value.to_s
92
86
  end
93
87
 
94
88
  #
@@ -109,7 +103,7 @@ module OvirtSDK4
109
103
  # @return [String]
110
104
  #
111
105
  def self.render_date(value)
112
- return value.xmlschema
106
+ value.xmlschema
113
107
  end
114
108
 
115
109
  #
@@ -127,7 +121,7 @@ module OvirtSDK4
127
121
  # This hash stores for each known type a reference to the method that writes the XML document corresponding for that
128
122
  # type. For example, for the `Vm` type it will contain a reference to the `VmWriter.write_one` method.
129
123
  #
130
- @@writers = {}
124
+ @writers = {}
131
125
 
132
126
  #
133
127
  # Registers a write method.
@@ -136,7 +130,7 @@ module OvirtSDK4
136
130
  # @param writer [Method] The reference to the method that writes the XML document corresponding to the type.
137
131
  #
138
132
  def self.register(type, writer)
139
- @@writers[type] = writer
133
+ @writers[type] = writer
140
134
  end
141
135
 
142
136
  #
@@ -168,7 +162,7 @@ module OvirtSDK4
168
162
  elsif target.is_a?(XmlWriter)
169
163
  cursor = target
170
164
  else
171
- raise ArgumentError.new("Expected an 'XmlWriter', but got '#{target.class}'")
165
+ raise ArgumentError, "Expected an 'XmlWriter', but got '#{target.class}'"
172
166
  end
173
167
 
174
168
  # Do the actual write, and make sure to always close the XML writer if we created it:
@@ -176,37 +170,30 @@ module OvirtSDK4
176
170
  if object.is_a?(Array)
177
171
  # For arrays we can't decide which tag to use, so the 'root' parameter is mandatory in this case:
178
172
  if root.nil?
179
- raise Error.new("The 'root' option is mandatory when writing arrays")
173
+ raise Error, "The 'root' option is mandatory when writing arrays"
180
174
  end
181
175
 
182
176
  # Write the root tag, and then recursively call the method to write each of the items of the array:
183
177
  cursor.write_start(root)
184
178
  object.each do |item|
185
- write(item, :target => cursor)
179
+ write(item, target: cursor)
186
180
  end
187
181
  cursor.write_end
188
182
  else
189
183
  # Select the specific writer according to the type:
190
184
  type = object.class
191
- writer = @@writers[type]
192
- if writer.nil?
193
- raise Error.new("Can't find a writer for type '#{type}'")
194
- end
185
+ writer = @writers[type]
186
+ raise Error, "Can't find a writer for type '#{type}'" if writer.nil?
195
187
 
196
188
  # Write the object using the specific method:
197
189
  writer.call(object, cursor, root)
198
190
  end
199
191
 
200
192
  # If no XML cursor was explicitly given, and we created it, then we need to return the generated XML text:
201
- if target.nil?
202
- cursor.string
203
- end
193
+ cursor.string if target.nil?
204
194
  ensure
205
- if !cursor.nil? && !cursor.equal?(target)
206
- cursor.close
207
- end
195
+ cursor.close if !cursor.nil? && !cursor.equal?(target)
208
196
  end
209
197
  end
210
198
  end
211
-
212
199
  end
@@ -17,7 +17,7 @@
17
17
 
18
18
  module OvirtSDK4
19
19
 
20
- class ActionWriter < Writer # :nodoc:
20
+ class ActionWriter < Writer
21
21
 
22
22
  def self.write_one(object, writer, singular = nil)
23
23
  singular ||= 'action'
@@ -112,7 +112,7 @@ module OvirtSDK4
112
112
 
113
113
  end
114
114
 
115
- class AffinityGroupWriter < Writer # :nodoc:
115
+ class AffinityGroupWriter < Writer
116
116
 
117
117
  def self.write_one(object, writer, singular = nil)
118
118
  singular ||= 'affinity_group'
@@ -146,7 +146,7 @@ module OvirtSDK4
146
146
 
147
147
  end
148
148
 
149
- class AffinityLabelWriter < Writer # :nodoc:
149
+ class AffinityLabelWriter < Writer
150
150
 
151
151
  def self.write_one(object, writer, singular = nil)
152
152
  singular ||= 'affinity_label'
@@ -179,7 +179,7 @@ module OvirtSDK4
179
179
 
180
180
  end
181
181
 
182
- class AgentWriter < Writer # :nodoc:
182
+ class AgentWriter < Writer
183
183
 
184
184
  def self.write_one(object, writer, singular = nil)
185
185
  singular ||= 'agent'
@@ -219,7 +219,7 @@ module OvirtSDK4
219
219
 
220
220
  end
221
221
 
222
- class AgentConfigurationWriter < Writer # :nodoc:
222
+ class AgentConfigurationWriter < Writer
223
223
 
224
224
  def self.write_one(object, writer, singular = nil)
225
225
  singular ||= 'agent_configuration'
@@ -251,7 +251,7 @@ module OvirtSDK4
251
251
 
252
252
  end
253
253
 
254
- class ApiWriter < Writer # :nodoc:
254
+ class ApiWriter < Writer
255
255
 
256
256
  def self.write_one(object, writer, singular = nil)
257
257
  singular ||= 'api'
@@ -281,7 +281,7 @@ module OvirtSDK4
281
281
 
282
282
  end
283
283
 
284
- class ApiSummaryWriter < Writer # :nodoc:
284
+ class ApiSummaryWriter < Writer
285
285
 
286
286
  def self.write_one(object, writer, singular = nil)
287
287
  singular ||= 'api_summary'
@@ -311,7 +311,7 @@ module OvirtSDK4
311
311
 
312
312
  end
313
313
 
314
- class ApiSummaryItemWriter < Writer # :nodoc:
314
+ class ApiSummaryItemWriter < Writer
315
315
 
316
316
  def self.write_one(object, writer, singular = nil)
317
317
  singular ||= 'api_summary_item'
@@ -339,7 +339,7 @@ module OvirtSDK4
339
339
 
340
340
  end
341
341
 
342
- class ApplicationWriter < Writer # :nodoc:
342
+ class ApplicationWriter < Writer
343
343
 
344
344
  def self.write_one(object, writer, singular = nil)
345
345
  singular ||= 'application'
@@ -370,7 +370,7 @@ module OvirtSDK4
370
370
 
371
371
  end
372
372
 
373
- class AuthorizedKeyWriter < Writer # :nodoc:
373
+ class AuthorizedKeyWriter < Writer
374
374
 
375
375
  def self.write_one(object, writer, singular = nil)
376
376
  singular ||= 'authorized_key'
@@ -402,7 +402,7 @@ module OvirtSDK4
402
402
 
403
403
  end
404
404
 
405
- class BalanceWriter < Writer # :nodoc:
405
+ class BalanceWriter < Writer
406
406
 
407
407
  def self.write_one(object, writer, singular = nil)
408
408
  singular ||= 'balance'
@@ -434,7 +434,7 @@ module OvirtSDK4
434
434
 
435
435
  end
436
436
 
437
- class BiosWriter < Writer # :nodoc:
437
+ class BiosWriter < Writer
438
438
 
439
439
  def self.write_one(object, writer, singular = nil)
440
440
  singular ||= 'bios'
@@ -461,7 +461,7 @@ module OvirtSDK4
461
461
 
462
462
  end
463
463
 
464
- class BlockStatisticWriter < Writer # :nodoc:
464
+ class BlockStatisticWriter < Writer
465
465
 
466
466
  def self.write_one(object, writer, singular = nil)
467
467
  singular ||= 'block_statistic'
@@ -488,7 +488,7 @@ module OvirtSDK4
488
488
 
489
489
  end
490
490
 
491
- class BondingWriter < Writer # :nodoc:
491
+ class BondingWriter < Writer
492
492
 
493
493
  def self.write_one(object, writer, singular = nil)
494
494
  singular ||= 'bonding'
@@ -517,7 +517,7 @@ module OvirtSDK4
517
517
 
518
518
  end
519
519
 
520
- class BookmarkWriter < Writer # :nodoc:
520
+ class BookmarkWriter < Writer
521
521
 
522
522
  def self.write_one(object, writer, singular = nil)
523
523
  singular ||= 'bookmark'
@@ -548,7 +548,7 @@ module OvirtSDK4
548
548
 
549
549
  end
550
550
 
551
- class BootWriter < Writer # :nodoc:
551
+ class BootWriter < Writer
552
552
 
553
553
  def self.write_one(object, writer, singular = nil)
554
554
  singular ||= 'boot'
@@ -581,7 +581,7 @@ module OvirtSDK4
581
581
 
582
582
  end
583
583
 
584
- class BootMenuWriter < Writer # :nodoc:
584
+ class BootMenuWriter < Writer
585
585
 
586
586
  def self.write_one(object, writer, singular = nil)
587
587
  singular ||= 'boot_menu'
@@ -608,7 +608,7 @@ module OvirtSDK4
608
608
 
609
609
  end
610
610
 
611
- class BrickProfileDetailWriter < Writer # :nodoc:
611
+ class BrickProfileDetailWriter < Writer
612
612
 
613
613
  def self.write_one(object, writer, singular = nil)
614
614
  singular ||= 'brick_profile_detail'
@@ -636,7 +636,7 @@ module OvirtSDK4
636
636
 
637
637
  end
638
638
 
639
- class CdromWriter < Writer # :nodoc:
639
+ class CdromWriter < Writer
640
640
 
641
641
  def self.write_one(object, writer, singular = nil)
642
642
  singular ||= 'cdrom'
@@ -671,7 +671,7 @@ module OvirtSDK4
671
671
 
672
672
  end
673
673
 
674
- class CertificateWriter < Writer # :nodoc:
674
+ class CertificateWriter < Writer
675
675
 
676
676
  def self.write_one(object, writer, singular = nil)
677
677
  singular ||= 'certificate'
@@ -704,7 +704,7 @@ module OvirtSDK4
704
704
 
705
705
  end
706
706
 
707
- class CloudInitWriter < Writer # :nodoc:
707
+ class CloudInitWriter < Writer
708
708
 
709
709
  def self.write_one(object, writer, singular = nil)
710
710
  singular ||= 'cloud_init'
@@ -737,7 +737,7 @@ module OvirtSDK4
737
737
 
738
738
  end
739
739
 
740
- class ClusterWriter < Writer # :nodoc:
740
+ class ClusterWriter < Writer
741
741
 
742
742
  def self.write_one(object, writer, singular = nil)
743
743
  singular ||= 'cluster'
@@ -805,7 +805,7 @@ module OvirtSDK4
805
805
 
806
806
  end
807
807
 
808
- class ClusterLevelWriter < Writer # :nodoc:
808
+ class ClusterLevelWriter < Writer
809
809
 
810
810
  def self.write_one(object, writer, singular = nil)
811
811
  singular ||= 'cluster_level'
@@ -837,7 +837,7 @@ module OvirtSDK4
837
837
 
838
838
  end
839
839
 
840
- class ConfigurationWriter < Writer # :nodoc:
840
+ class ConfigurationWriter < Writer
841
841
 
842
842
  def self.write_one(object, writer, singular = nil)
843
843
  singular ||= 'configuration'
@@ -865,7 +865,7 @@ module OvirtSDK4
865
865
 
866
866
  end
867
867
 
868
- class ConsoleWriter < Writer # :nodoc:
868
+ class ConsoleWriter < Writer
869
869
 
870
870
  def self.write_one(object, writer, singular = nil)
871
871
  singular ||= 'console'
@@ -892,7 +892,7 @@ module OvirtSDK4
892
892
 
893
893
  end
894
894
 
895
- class CoreWriter < Writer # :nodoc:
895
+ class CoreWriter < Writer
896
896
 
897
897
  def self.write_one(object, writer, singular = nil)
898
898
  singular ||= 'core'
@@ -920,7 +920,7 @@ module OvirtSDK4
920
920
 
921
921
  end
922
922
 
923
- class CpuWriter < Writer # :nodoc:
923
+ class CpuWriter < Writer
924
924
 
925
925
  def self.write_one(object, writer, singular = nil)
926
926
  singular ||= 'cpu'
@@ -955,7 +955,7 @@ module OvirtSDK4
955
955
 
956
956
  end
957
957
 
958
- class CpuProfileWriter < Writer # :nodoc:
958
+ class CpuProfileWriter < Writer
959
959
 
960
960
  def self.write_one(object, writer, singular = nil)
961
961
  singular ||= 'cpu_profile'
@@ -988,7 +988,7 @@ module OvirtSDK4
988
988
 
989
989
  end
990
990
 
991
- class CpuTopologyWriter < Writer # :nodoc:
991
+ class CpuTopologyWriter < Writer
992
992
 
993
993
  def self.write_one(object, writer, singular = nil)
994
994
  singular ||= 'cpu_topology'
@@ -1017,7 +1017,7 @@ module OvirtSDK4
1017
1017
 
1018
1018
  end
1019
1019
 
1020
- class CpuTuneWriter < Writer # :nodoc:
1020
+ class CpuTuneWriter < Writer
1021
1021
 
1022
1022
  def self.write_one(object, writer, singular = nil)
1023
1023
  singular ||= 'cpu_tune'
@@ -1044,7 +1044,7 @@ module OvirtSDK4
1044
1044
 
1045
1045
  end
1046
1046
 
1047
- class CpuTypeWriter < Writer # :nodoc:
1047
+ class CpuTypeWriter < Writer
1048
1048
 
1049
1049
  def self.write_one(object, writer, singular = nil)
1050
1050
  singular ||= 'cpu_type'
@@ -1073,7 +1073,7 @@ module OvirtSDK4
1073
1073
 
1074
1074
  end
1075
1075
 
1076
- class CustomPropertyWriter < Writer # :nodoc:
1076
+ class CustomPropertyWriter < Writer
1077
1077
 
1078
1078
  def self.write_one(object, writer, singular = nil)
1079
1079
  singular ||= 'custom_property'
@@ -1102,7 +1102,7 @@ module OvirtSDK4
1102
1102
 
1103
1103
  end
1104
1104
 
1105
- class DataCenterWriter < Writer # :nodoc:
1105
+ class DataCenterWriter < Writer
1106
1106
 
1107
1107
  def self.write_one(object, writer, singular = nil)
1108
1108
  singular ||= 'data_center'
@@ -1146,7 +1146,7 @@ module OvirtSDK4
1146
1146
 
1147
1147
  end
1148
1148
 
1149
- class DeviceWriter < Writer # :nodoc:
1149
+ class DeviceWriter < Writer
1150
1150
 
1151
1151
  def self.write_one(object, writer, singular = nil)
1152
1152
  singular ||= 'device'
@@ -1180,7 +1180,7 @@ module OvirtSDK4
1180
1180
 
1181
1181
  end
1182
1182
 
1183
- class DiskWriter < Writer # :nodoc:
1183
+ class DiskWriter < Writer
1184
1184
 
1185
1185
  def self.write_one(object, writer, singular = nil)
1186
1186
  singular ||= 'disk'
@@ -1241,7 +1241,7 @@ module OvirtSDK4
1241
1241
 
1242
1242
  end
1243
1243
 
1244
- class DiskAttachmentWriter < Writer # :nodoc:
1244
+ class DiskAttachmentWriter < Writer
1245
1245
 
1246
1246
  def self.write_one(object, writer, singular = nil)
1247
1247
  singular ||= 'disk_attachment'
@@ -1278,7 +1278,7 @@ module OvirtSDK4
1278
1278
 
1279
1279
  end
1280
1280
 
1281
- class DiskProfileWriter < Writer # :nodoc:
1281
+ class DiskProfileWriter < Writer
1282
1282
 
1283
1283
  def self.write_one(object, writer, singular = nil)
1284
1284
  singular ||= 'disk_profile'
@@ -1311,7 +1311,7 @@ module OvirtSDK4
1311
1311
 
1312
1312
  end
1313
1313
 
1314
- class DiskSnapshotWriter < Writer # :nodoc:
1314
+ class DiskSnapshotWriter < Writer
1315
1315
 
1316
1316
  def self.write_one(object, writer, singular = nil)
1317
1317
  singular ||= 'disk_snapshot'
@@ -1373,7 +1373,7 @@ module OvirtSDK4
1373
1373
 
1374
1374
  end
1375
1375
 
1376
- class DisplayWriter < Writer # :nodoc:
1376
+ class DisplayWriter < Writer
1377
1377
 
1378
1378
  def self.write_one(object, writer, singular = nil)
1379
1379
  singular ||= 'display'
@@ -1413,7 +1413,7 @@ module OvirtSDK4
1413
1413
 
1414
1414
  end
1415
1415
 
1416
- class DnsWriter < Writer # :nodoc:
1416
+ class DnsWriter < Writer
1417
1417
 
1418
1418
  def self.write_one(object, writer, singular = nil)
1419
1419
  singular ||= 'dns'
@@ -1441,7 +1441,7 @@ module OvirtSDK4
1441
1441
 
1442
1442
  end
1443
1443
 
1444
- class DomainWriter < Writer # :nodoc:
1444
+ class DomainWriter < Writer
1445
1445
 
1446
1446
  def self.write_one(object, writer, singular = nil)
1447
1447
  singular ||= 'domain'
@@ -1474,7 +1474,7 @@ module OvirtSDK4
1474
1474
 
1475
1475
  end
1476
1476
 
1477
- class EntityProfileDetailWriter < Writer # :nodoc:
1477
+ class EntityProfileDetailWriter < Writer
1478
1478
 
1479
1479
  def self.write_one(object, writer, singular = nil)
1480
1480
  singular ||= 'entity_profile_detail'
@@ -1501,7 +1501,7 @@ module OvirtSDK4
1501
1501
 
1502
1502
  end
1503
1503
 
1504
- class ErrorHandlingWriter < Writer # :nodoc:
1504
+ class ErrorHandlingWriter < Writer
1505
1505
 
1506
1506
  def self.write_one(object, writer, singular = nil)
1507
1507
  singular ||= 'error_handling'
@@ -1528,7 +1528,7 @@ module OvirtSDK4
1528
1528
 
1529
1529
  end
1530
1530
 
1531
- class EventWriter < Writer # :nodoc:
1531
+ class EventWriter < Writer
1532
1532
 
1533
1533
  def self.write_one(object, writer, singular = nil)
1534
1534
  singular ||= 'event'
@@ -1573,7 +1573,7 @@ module OvirtSDK4
1573
1573
 
1574
1574
  end
1575
1575
 
1576
- class ExternalComputeResourceWriter < Writer # :nodoc:
1576
+ class ExternalComputeResourceWriter < Writer
1577
1577
 
1578
1578
  def self.write_one(object, writer, singular = nil)
1579
1579
  singular ||= 'external_compute_resource'
@@ -1607,7 +1607,7 @@ module OvirtSDK4
1607
1607
 
1608
1608
  end
1609
1609
 
1610
- class ExternalDiscoveredHostWriter < Writer # :nodoc:
1610
+ class ExternalDiscoveredHostWriter < Writer
1611
1611
 
1612
1612
  def self.write_one(object, writer, singular = nil)
1613
1613
  singular ||= 'external_discovered_host'
@@ -1642,7 +1642,7 @@ module OvirtSDK4
1642
1642
 
1643
1643
  end
1644
1644
 
1645
- class ExternalHostWriter < Writer # :nodoc:
1645
+ class ExternalHostWriter < Writer
1646
1646
 
1647
1647
  def self.write_one(object, writer, singular = nil)
1648
1648
  singular ||= 'external_host'
@@ -1674,7 +1674,7 @@ module OvirtSDK4
1674
1674
 
1675
1675
  end
1676
1676
 
1677
- class ExternalHostGroupWriter < Writer # :nodoc:
1677
+ class ExternalHostGroupWriter < Writer
1678
1678
 
1679
1679
  def self.write_one(object, writer, singular = nil)
1680
1680
  singular ||= 'external_host_group'
@@ -1709,7 +1709,7 @@ module OvirtSDK4
1709
1709
 
1710
1710
  end
1711
1711
 
1712
- class ExternalHostProviderWriter < Writer # :nodoc:
1712
+ class ExternalHostProviderWriter < Writer
1713
1713
 
1714
1714
  def self.write_one(object, writer, singular = nil)
1715
1715
  singular ||= 'external_host_provider'
@@ -1750,7 +1750,7 @@ module OvirtSDK4
1750
1750
 
1751
1751
  end
1752
1752
 
1753
- class ExternalProviderWriter < Writer # :nodoc:
1753
+ class ExternalProviderWriter < Writer
1754
1754
 
1755
1755
  def self.write_one(object, writer, singular = nil)
1756
1756
  singular ||= 'external_provider'
@@ -1786,7 +1786,7 @@ module OvirtSDK4
1786
1786
 
1787
1787
  end
1788
1788
 
1789
- class ExternalVmImportWriter < Writer # :nodoc:
1789
+ class ExternalVmImportWriter < Writer
1790
1790
 
1791
1791
  def self.write_one(object, writer, singular = nil)
1792
1792
  singular ||= 'external_vm_import'
@@ -1825,7 +1825,7 @@ module OvirtSDK4
1825
1825
 
1826
1826
  end
1827
1827
 
1828
- class FaultWriter < Writer # :nodoc:
1828
+ class FaultWriter < Writer
1829
1829
 
1830
1830
  def self.write_one(object, writer, singular = nil)
1831
1831
  singular ||= 'fault'
@@ -1853,7 +1853,7 @@ module OvirtSDK4
1853
1853
 
1854
1854
  end
1855
1855
 
1856
- class FencingPolicyWriter < Writer # :nodoc:
1856
+ class FencingPolicyWriter < Writer
1857
1857
 
1858
1858
  def self.write_one(object, writer, singular = nil)
1859
1859
  singular ||= 'fencing_policy'
@@ -1882,7 +1882,7 @@ module OvirtSDK4
1882
1882
 
1883
1883
  end
1884
1884
 
1885
- class FileWriter < Writer # :nodoc:
1885
+ class FileWriter < Writer
1886
1886
 
1887
1887
  def self.write_one(object, writer, singular = nil)
1888
1888
  singular ||= 'file'
@@ -1915,7 +1915,7 @@ module OvirtSDK4
1915
1915
 
1916
1916
  end
1917
1917
 
1918
- class FilterWriter < Writer # :nodoc:
1918
+ class FilterWriter < Writer
1919
1919
 
1920
1920
  def self.write_one(object, writer, singular = nil)
1921
1921
  singular ||= 'filter'
@@ -1947,7 +1947,7 @@ module OvirtSDK4
1947
1947
 
1948
1948
  end
1949
1949
 
1950
- class FloppyWriter < Writer # :nodoc:
1950
+ class FloppyWriter < Writer
1951
1951
 
1952
1952
  def self.write_one(object, writer, singular = nil)
1953
1953
  singular ||= 'floppy'
@@ -1982,7 +1982,7 @@ module OvirtSDK4
1982
1982
 
1983
1983
  end
1984
1984
 
1985
- class FopStatisticWriter < Writer # :nodoc:
1985
+ class FopStatisticWriter < Writer
1986
1986
 
1987
1987
  def self.write_one(object, writer, singular = nil)
1988
1988
  singular ||= 'fop_statistic'
@@ -2010,7 +2010,7 @@ module OvirtSDK4
2010
2010
 
2011
2011
  end
2012
2012
 
2013
- class GlusterBrickWriter < Writer # :nodoc:
2013
+ class GlusterBrickWriter < Writer
2014
2014
 
2015
2015
  def self.write_one(object, writer, singular = nil)
2016
2016
  singular ||= 'brick'
@@ -2056,7 +2056,7 @@ module OvirtSDK4
2056
2056
 
2057
2057
  end
2058
2058
 
2059
- class GlusterBrickAdvancedDetailsWriter < Writer # :nodoc:
2059
+ class GlusterBrickAdvancedDetailsWriter < Writer
2060
2060
 
2061
2061
  def self.write_one(object, writer, singular = nil)
2062
2062
  singular ||= 'gluster_brick_advanced_details'
@@ -2097,7 +2097,7 @@ module OvirtSDK4
2097
2097
 
2098
2098
  end
2099
2099
 
2100
- class GlusterBrickMemoryInfoWriter < Writer # :nodoc:
2100
+ class GlusterBrickMemoryInfoWriter < Writer
2101
2101
 
2102
2102
  def self.write_one(object, writer, singular = nil)
2103
2103
  singular ||= 'brick_memoryinfo'
@@ -2124,7 +2124,7 @@ module OvirtSDK4
2124
2124
 
2125
2125
  end
2126
2126
 
2127
- class GlusterClientWriter < Writer # :nodoc:
2127
+ class GlusterClientWriter < Writer
2128
2128
 
2129
2129
  def self.write_one(object, writer, singular = nil)
2130
2130
  singular ||= 'gluster_client'
@@ -2154,7 +2154,7 @@ module OvirtSDK4
2154
2154
 
2155
2155
  end
2156
2156
 
2157
- class GlusterHookWriter < Writer # :nodoc:
2157
+ class GlusterHookWriter < Writer
2158
2158
 
2159
2159
  def self.write_one(object, writer, singular = nil)
2160
2160
  singular ||= 'gluster_hook'
@@ -2194,7 +2194,7 @@ module OvirtSDK4
2194
2194
 
2195
2195
  end
2196
2196
 
2197
- class GlusterMemoryPoolWriter < Writer # :nodoc:
2197
+ class GlusterMemoryPoolWriter < Writer
2198
2198
 
2199
2199
  def self.write_one(object, writer, singular = nil)
2200
2200
  singular ||= 'memory_pool'
@@ -2232,7 +2232,7 @@ module OvirtSDK4
2232
2232
 
2233
2233
  end
2234
2234
 
2235
- class GlusterServerHookWriter < Writer # :nodoc:
2235
+ class GlusterServerHookWriter < Writer
2236
2236
 
2237
2237
  def self.write_one(object, writer, singular = nil)
2238
2238
  singular ||= 'server_hook'
@@ -2266,7 +2266,7 @@ module OvirtSDK4
2266
2266
 
2267
2267
  end
2268
2268
 
2269
- class GlusterVolumeWriter < Writer # :nodoc:
2269
+ class GlusterVolumeWriter < Writer
2270
2270
 
2271
2271
  def self.write_one(object, writer, singular = nil)
2272
2272
  singular ||= 'gluster_volume'
@@ -2313,7 +2313,7 @@ module OvirtSDK4
2313
2313
 
2314
2314
  end
2315
2315
 
2316
- class GlusterVolumeProfileDetailsWriter < Writer # :nodoc:
2316
+ class GlusterVolumeProfileDetailsWriter < Writer
2317
2317
 
2318
2318
  def self.write_one(object, writer, singular = nil)
2319
2319
  singular ||= 'gluster_volume_profile_details'
@@ -2345,7 +2345,7 @@ module OvirtSDK4
2345
2345
 
2346
2346
  end
2347
2347
 
2348
- class GracePeriodWriter < Writer # :nodoc:
2348
+ class GracePeriodWriter < Writer
2349
2349
 
2350
2350
  def self.write_one(object, writer, singular = nil)
2351
2351
  singular ||= 'grace_period'
@@ -2372,7 +2372,7 @@ module OvirtSDK4
2372
2372
 
2373
2373
  end
2374
2374
 
2375
- class GraphicsConsoleWriter < Writer # :nodoc:
2375
+ class GraphicsConsoleWriter < Writer
2376
2376
 
2377
2377
  def self.write_one(object, writer, singular = nil)
2378
2378
  singular ||= 'graphics_console'
@@ -2409,7 +2409,7 @@ module OvirtSDK4
2409
2409
 
2410
2410
  end
2411
2411
 
2412
- class GroupWriter < Writer # :nodoc:
2412
+ class GroupWriter < Writer
2413
2413
 
2414
2414
  def self.write_one(object, writer, singular = nil)
2415
2415
  singular ||= 'group'
@@ -2445,7 +2445,7 @@ module OvirtSDK4
2445
2445
 
2446
2446
  end
2447
2447
 
2448
- class GuestOperatingSystemWriter < Writer # :nodoc:
2448
+ class GuestOperatingSystemWriter < Writer
2449
2449
 
2450
2450
  def self.write_one(object, writer, singular = nil)
2451
2451
  singular ||= 'guest_operating_system'
@@ -2477,7 +2477,7 @@ module OvirtSDK4
2477
2477
 
2478
2478
  end
2479
2479
 
2480
- class HardwareInformationWriter < Writer # :nodoc:
2480
+ class HardwareInformationWriter < Writer
2481
2481
 
2482
2482
  def self.write_one(object, writer, singular = nil)
2483
2483
  singular ||= 'hardware_information'
@@ -2516,7 +2516,7 @@ module OvirtSDK4
2516
2516
 
2517
2517
  end
2518
2518
 
2519
- class HighAvailabilityWriter < Writer # :nodoc:
2519
+ class HighAvailabilityWriter < Writer
2520
2520
 
2521
2521
  def self.write_one(object, writer, singular = nil)
2522
2522
  singular ||= 'high_availability'
@@ -2544,7 +2544,7 @@ module OvirtSDK4
2544
2544
 
2545
2545
  end
2546
2546
 
2547
- class HookWriter < Writer # :nodoc:
2547
+ class HookWriter < Writer
2548
2548
 
2549
2549
  def self.write_one(object, writer, singular = nil)
2550
2550
  singular ||= 'hook'
@@ -2577,7 +2577,7 @@ module OvirtSDK4
2577
2577
 
2578
2578
  end
2579
2579
 
2580
- class HostWriter < Writer # :nodoc:
2580
+ class HostWriter < Writer
2581
2581
 
2582
2582
  def self.write_one(object, writer, singular = nil)
2583
2583
  singular ||= 'host'
@@ -2655,7 +2655,7 @@ module OvirtSDK4
2655
2655
 
2656
2656
  end
2657
2657
 
2658
- class HostDeviceWriter < Writer # :nodoc:
2658
+ class HostDeviceWriter < Writer
2659
2659
 
2660
2660
  def self.write_one(object, writer, singular = nil)
2661
2661
  singular ||= 'host_device'
@@ -2695,7 +2695,7 @@ module OvirtSDK4
2695
2695
 
2696
2696
  end
2697
2697
 
2698
- class HostDevicePassthroughWriter < Writer # :nodoc:
2698
+ class HostDevicePassthroughWriter < Writer
2699
2699
 
2700
2700
  def self.write_one(object, writer, singular = nil)
2701
2701
  singular ||= 'host_device_passthrough'
@@ -2722,7 +2722,7 @@ module OvirtSDK4
2722
2722
 
2723
2723
  end
2724
2724
 
2725
- class HostNicWriter < Writer # :nodoc:
2725
+ class HostNicWriter < Writer
2726
2726
 
2727
2727
  def self.write_one(object, writer, singular = nil)
2728
2728
  singular ||= 'host_nic'
@@ -2776,7 +2776,7 @@ module OvirtSDK4
2776
2776
 
2777
2777
  end
2778
2778
 
2779
- class HostNicVirtualFunctionsConfigurationWriter < Writer # :nodoc:
2779
+ class HostNicVirtualFunctionsConfigurationWriter < Writer
2780
2780
 
2781
2781
  def self.write_one(object, writer, singular = nil)
2782
2782
  singular ||= 'host_nic_virtual_functions_configuration'
@@ -2805,7 +2805,7 @@ module OvirtSDK4
2805
2805
 
2806
2806
  end
2807
2807
 
2808
- class HostStorageWriter < Writer # :nodoc:
2808
+ class HostStorageWriter < Writer
2809
2809
 
2810
2810
  def self.write_one(object, writer, singular = nil)
2811
2811
  singular ||= 'host_storage'
@@ -2852,7 +2852,7 @@ module OvirtSDK4
2852
2852
 
2853
2853
  end
2854
2854
 
2855
- class HostedEngineWriter < Writer # :nodoc:
2855
+ class HostedEngineWriter < Writer
2856
2856
 
2857
2857
  def self.write_one(object, writer, singular = nil)
2858
2858
  singular ||= 'hosted_engine'
@@ -2883,7 +2883,7 @@ module OvirtSDK4
2883
2883
 
2884
2884
  end
2885
2885
 
2886
- class IconWriter < Writer # :nodoc:
2886
+ class IconWriter < Writer
2887
2887
 
2888
2888
  def self.write_one(object, writer, singular = nil)
2889
2889
  singular ||= 'icon'
@@ -2915,7 +2915,7 @@ module OvirtSDK4
2915
2915
 
2916
2916
  end
2917
2917
 
2918
- class IdentifiedWriter < Writer # :nodoc:
2918
+ class IdentifiedWriter < Writer
2919
2919
 
2920
2920
  def self.write_one(object, writer, singular = nil)
2921
2921
  singular ||= 'identified'
@@ -2945,7 +2945,7 @@ module OvirtSDK4
2945
2945
 
2946
2946
  end
2947
2947
 
2948
- class ImageWriter < Writer # :nodoc:
2948
+ class ImageWriter < Writer
2949
2949
 
2950
2950
  def self.write_one(object, writer, singular = nil)
2951
2951
  singular ||= 'image'
@@ -2976,7 +2976,7 @@ module OvirtSDK4
2976
2976
 
2977
2977
  end
2978
2978
 
2979
- class ImageTransferWriter < Writer # :nodoc:
2979
+ class ImageTransferWriter < Writer
2980
2980
 
2981
2981
  def self.write_one(object, writer, singular = nil)
2982
2982
  singular ||= 'image_transfer'
@@ -3011,7 +3011,7 @@ module OvirtSDK4
3011
3011
 
3012
3012
  end
3013
3013
 
3014
- class InitializationWriter < Writer # :nodoc:
3014
+ class InitializationWriter < Writer
3015
3015
 
3016
3016
  def self.write_one(object, writer, singular = nil)
3017
3017
  singular ||= 'initialization'
@@ -3058,7 +3058,7 @@ module OvirtSDK4
3058
3058
 
3059
3059
  end
3060
3060
 
3061
- class InstanceTypeWriter < Writer # :nodoc:
3061
+ class InstanceTypeWriter < Writer
3062
3062
 
3063
3063
  def self.write_one(object, writer, singular = nil)
3064
3064
  singular ||= 'instance_type'
@@ -3136,7 +3136,7 @@ module OvirtSDK4
3136
3136
 
3137
3137
  end
3138
3138
 
3139
- class IoWriter < Writer # :nodoc:
3139
+ class IoWriter < Writer
3140
3140
 
3141
3141
  def self.write_one(object, writer, singular = nil)
3142
3142
  singular ||= 'io'
@@ -3163,7 +3163,7 @@ module OvirtSDK4
3163
3163
 
3164
3164
  end
3165
3165
 
3166
- class IpWriter < Writer # :nodoc:
3166
+ class IpWriter < Writer
3167
3167
 
3168
3168
  def self.write_one(object, writer, singular = nil)
3169
3169
  singular ||= 'ip'
@@ -3193,7 +3193,7 @@ module OvirtSDK4
3193
3193
 
3194
3194
  end
3195
3195
 
3196
- class IpAddressAssignmentWriter < Writer # :nodoc:
3196
+ class IpAddressAssignmentWriter < Writer
3197
3197
 
3198
3198
  def self.write_one(object, writer, singular = nil)
3199
3199
  singular ||= 'ip_address_assignment'
@@ -3221,7 +3221,7 @@ module OvirtSDK4
3221
3221
 
3222
3222
  end
3223
3223
 
3224
- class IscsiBondWriter < Writer # :nodoc:
3224
+ class IscsiBondWriter < Writer
3225
3225
 
3226
3226
  def self.write_one(object, writer, singular = nil)
3227
3227
  singular ||= 'iscsi_bond'
@@ -3254,7 +3254,7 @@ module OvirtSDK4
3254
3254
 
3255
3255
  end
3256
3256
 
3257
- class IscsiDetailsWriter < Writer # :nodoc:
3257
+ class IscsiDetailsWriter < Writer
3258
3258
 
3259
3259
  def self.write_one(object, writer, singular = nil)
3260
3260
  singular ||= 'iscsi_details'
@@ -3297,7 +3297,7 @@ module OvirtSDK4
3297
3297
 
3298
3298
  end
3299
3299
 
3300
- class JobWriter < Writer # :nodoc:
3300
+ class JobWriter < Writer
3301
3301
 
3302
3302
  def self.write_one(object, writer, singular = nil)
3303
3303
  singular ||= 'job'
@@ -3335,7 +3335,7 @@ module OvirtSDK4
3335
3335
 
3336
3336
  end
3337
3337
 
3338
- class KatelloErratumWriter < Writer # :nodoc:
3338
+ class KatelloErratumWriter < Writer
3339
3339
 
3340
3340
  def self.write_one(object, writer, singular = nil)
3341
3341
  singular ||= 'katello_erratum'
@@ -3374,7 +3374,7 @@ module OvirtSDK4
3374
3374
 
3375
3375
  end
3376
3376
 
3377
- class KernelWriter < Writer # :nodoc:
3377
+ class KernelWriter < Writer
3378
3378
 
3379
3379
  def self.write_one(object, writer, singular = nil)
3380
3380
  singular ||= 'kernel'
@@ -3401,7 +3401,7 @@ module OvirtSDK4
3401
3401
 
3402
3402
  end
3403
3403
 
3404
- class KsmWriter < Writer # :nodoc:
3404
+ class KsmWriter < Writer
3405
3405
 
3406
3406
  def self.write_one(object, writer, singular = nil)
3407
3407
  singular ||= 'ksm'
@@ -3429,7 +3429,7 @@ module OvirtSDK4
3429
3429
 
3430
3430
  end
3431
3431
 
3432
- class LogicalUnitWriter < Writer # :nodoc:
3432
+ class LogicalUnitWriter < Writer
3433
3433
 
3434
3434
  def self.write_one(object, writer, singular = nil)
3435
3435
  singular ||= 'logical_unit'
@@ -3472,7 +3472,7 @@ module OvirtSDK4
3472
3472
 
3473
3473
  end
3474
3474
 
3475
- class MacWriter < Writer # :nodoc:
3475
+ class MacWriter < Writer
3476
3476
 
3477
3477
  def self.write_one(object, writer, singular = nil)
3478
3478
  singular ||= 'mac'
@@ -3499,7 +3499,7 @@ module OvirtSDK4
3499
3499
 
3500
3500
  end
3501
3501
 
3502
- class MacPoolWriter < Writer # :nodoc:
3502
+ class MacPoolWriter < Writer
3503
3503
 
3504
3504
  def self.write_one(object, writer, singular = nil)
3505
3505
  singular ||= 'mac_pool'
@@ -3532,7 +3532,7 @@ module OvirtSDK4
3532
3532
 
3533
3533
  end
3534
3534
 
3535
- class MemoryOverCommitWriter < Writer # :nodoc:
3535
+ class MemoryOverCommitWriter < Writer
3536
3536
 
3537
3537
  def self.write_one(object, writer, singular = nil)
3538
3538
  singular ||= 'memory_over_commit'
@@ -3559,7 +3559,7 @@ module OvirtSDK4
3559
3559
 
3560
3560
  end
3561
3561
 
3562
- class MemoryPolicyWriter < Writer # :nodoc:
3562
+ class MemoryPolicyWriter < Writer
3563
3563
 
3564
3564
  def self.write_one(object, writer, singular = nil)
3565
3565
  singular ||= 'memory_policy'
@@ -3589,14 +3589,14 @@ module OvirtSDK4
3589
3589
 
3590
3590
  end
3591
3591
 
3592
- class MethodWriter < Writer # :nodoc:
3592
+ class MethodWriter < Writer
3593
3593
 
3594
3594
  def self.write_one(object, writer, singular = nil)
3595
3595
  singular ||= 'method'
3596
3596
  writer.write_start(singular)
3597
3597
  href = object.href
3598
3598
  writer.write_attribute('href', href) unless href.nil?
3599
- Writer.write_string(writer, 'id', object.id) unless object.id.nil?
3599
+ writer.write_attribute('id', object.id) unless object.id.nil?
3600
3600
  writer.write_end
3601
3601
  end
3602
3602
 
@@ -3616,7 +3616,7 @@ module OvirtSDK4
3616
3616
 
3617
3617
  end
3618
3618
 
3619
- class MigrationBandwidthWriter < Writer # :nodoc:
3619
+ class MigrationBandwidthWriter < Writer
3620
3620
 
3621
3621
  def self.write_one(object, writer, singular = nil)
3622
3622
  singular ||= 'migration_bandwidth'
@@ -3644,7 +3644,7 @@ module OvirtSDK4
3644
3644
 
3645
3645
  end
3646
3646
 
3647
- class MigrationOptionsWriter < Writer # :nodoc:
3647
+ class MigrationOptionsWriter < Writer
3648
3648
 
3649
3649
  def self.write_one(object, writer, singular = nil)
3650
3650
  singular ||= 'migration'
@@ -3674,7 +3674,7 @@ module OvirtSDK4
3674
3674
 
3675
3675
  end
3676
3676
 
3677
- class MigrationPolicyWriter < Writer # :nodoc:
3677
+ class MigrationPolicyWriter < Writer
3678
3678
 
3679
3679
  def self.write_one(object, writer, singular = nil)
3680
3680
  singular ||= 'migration_policy'
@@ -3704,7 +3704,7 @@ module OvirtSDK4
3704
3704
 
3705
3705
  end
3706
3706
 
3707
- class NetworkWriter < Writer # :nodoc:
3707
+ class NetworkWriter < Writer
3708
3708
 
3709
3709
  def self.write_one(object, writer, singular = nil)
3710
3710
  singular ||= 'network'
@@ -3755,7 +3755,7 @@ module OvirtSDK4
3755
3755
 
3756
3756
  end
3757
3757
 
3758
- class NetworkAttachmentWriter < Writer # :nodoc:
3758
+ class NetworkAttachmentWriter < Writer
3759
3759
 
3760
3760
  def self.write_one(object, writer, singular = nil)
3761
3761
  singular ||= 'network_attachment'
@@ -3793,7 +3793,7 @@ module OvirtSDK4
3793
3793
 
3794
3794
  end
3795
3795
 
3796
- class NetworkConfigurationWriter < Writer # :nodoc:
3796
+ class NetworkConfigurationWriter < Writer
3797
3797
 
3798
3798
  def self.write_one(object, writer, singular = nil)
3799
3799
  singular ||= 'network_configuration'
@@ -3821,7 +3821,7 @@ module OvirtSDK4
3821
3821
 
3822
3822
  end
3823
3823
 
3824
- class NetworkFilterWriter < Writer # :nodoc:
3824
+ class NetworkFilterWriter < Writer
3825
3825
 
3826
3826
  def self.write_one(object, writer, singular = nil)
3827
3827
  singular ||= 'network_filter'
@@ -3852,7 +3852,7 @@ module OvirtSDK4
3852
3852
 
3853
3853
  end
3854
3854
 
3855
- class NetworkLabelWriter < Writer # :nodoc:
3855
+ class NetworkLabelWriter < Writer
3856
3856
 
3857
3857
  def self.write_one(object, writer, singular = nil)
3858
3858
  singular ||= 'network_label'
@@ -3884,7 +3884,7 @@ module OvirtSDK4
3884
3884
 
3885
3885
  end
3886
3886
 
3887
- class NfsProfileDetailWriter < Writer # :nodoc:
3887
+ class NfsProfileDetailWriter < Writer
3888
3888
 
3889
3889
  def self.write_one(object, writer, singular = nil)
3890
3890
  singular ||= 'nfs_profile_detail'
@@ -3912,7 +3912,7 @@ module OvirtSDK4
3912
3912
 
3913
3913
  end
3914
3914
 
3915
- class NicWriter < Writer # :nodoc:
3915
+ class NicWriter < Writer
3916
3916
 
3917
3917
  def self.write_one(object, writer, singular = nil)
3918
3918
  singular ||= 'nic'
@@ -3960,7 +3960,7 @@ module OvirtSDK4
3960
3960
 
3961
3961
  end
3962
3962
 
3963
- class NicConfigurationWriter < Writer # :nodoc:
3963
+ class NicConfigurationWriter < Writer
3964
3964
 
3965
3965
  def self.write_one(object, writer, singular = nil)
3966
3966
  singular ||= 'nic_configuration'
@@ -3990,7 +3990,7 @@ module OvirtSDK4
3990
3990
 
3991
3991
  end
3992
3992
 
3993
- class NumaNodeWriter < Writer # :nodoc:
3993
+ class NumaNodeWriter < Writer
3994
3994
 
3995
3995
  def self.write_one(object, writer, singular = nil)
3996
3996
  singular ||= 'host_numa_node'
@@ -4026,7 +4026,7 @@ module OvirtSDK4
4026
4026
 
4027
4027
  end
4028
4028
 
4029
- class NumaNodePinWriter < Writer # :nodoc:
4029
+ class NumaNodePinWriter < Writer
4030
4030
 
4031
4031
  def self.write_one(object, writer, singular = nil)
4032
4032
  singular ||= 'numa_node_pin'
@@ -4055,7 +4055,7 @@ module OvirtSDK4
4055
4055
 
4056
4056
  end
4057
4057
 
4058
- class OpenStackImageWriter < Writer # :nodoc:
4058
+ class OpenStackImageWriter < Writer
4059
4059
 
4060
4060
  def self.write_one(object, writer, singular = nil)
4061
4061
  singular ||= 'openstack_image'
@@ -4086,7 +4086,7 @@ module OvirtSDK4
4086
4086
 
4087
4087
  end
4088
4088
 
4089
- class OpenStackImageProviderWriter < Writer # :nodoc:
4089
+ class OpenStackImageProviderWriter < Writer
4090
4090
 
4091
4091
  def self.write_one(object, writer, singular = nil)
4092
4092
  singular ||= 'openstack_image_provider'
@@ -4125,7 +4125,7 @@ module OvirtSDK4
4125
4125
 
4126
4126
  end
4127
4127
 
4128
- class OpenStackNetworkWriter < Writer # :nodoc:
4128
+ class OpenStackNetworkWriter < Writer
4129
4129
 
4130
4130
  def self.write_one(object, writer, singular = nil)
4131
4131
  singular ||= 'openstack_network'
@@ -4156,7 +4156,7 @@ module OvirtSDK4
4156
4156
 
4157
4157
  end
4158
4158
 
4159
- class OpenStackNetworkProviderWriter < Writer # :nodoc:
4159
+ class OpenStackNetworkProviderWriter < Writer
4160
4160
 
4161
4161
  def self.write_one(object, writer, singular = nil)
4162
4162
  singular ||= 'openstack_network_provider'
@@ -4200,7 +4200,7 @@ module OvirtSDK4
4200
4200
 
4201
4201
  end
4202
4202
 
4203
- class OpenStackProviderWriter < Writer # :nodoc:
4203
+ class OpenStackProviderWriter < Writer
4204
4204
 
4205
4205
  def self.write_one(object, writer, singular = nil)
4206
4206
  singular ||= 'open_stack_provider'
@@ -4237,7 +4237,7 @@ module OvirtSDK4
4237
4237
 
4238
4238
  end
4239
4239
 
4240
- class OpenStackSubnetWriter < Writer # :nodoc:
4240
+ class OpenStackSubnetWriter < Writer
4241
4241
 
4242
4242
  def self.write_one(object, writer, singular = nil)
4243
4243
  singular ||= 'openstack_subnet'
@@ -4278,7 +4278,7 @@ module OvirtSDK4
4278
4278
 
4279
4279
  end
4280
4280
 
4281
- class OpenStackVolumeProviderWriter < Writer # :nodoc:
4281
+ class OpenStackVolumeProviderWriter < Writer
4282
4282
 
4283
4283
  def self.write_one(object, writer, singular = nil)
4284
4284
  singular ||= 'openstack_volume_provider'
@@ -4319,7 +4319,7 @@ module OvirtSDK4
4319
4319
 
4320
4320
  end
4321
4321
 
4322
- class OpenStackVolumeTypeWriter < Writer # :nodoc:
4322
+ class OpenStackVolumeTypeWriter < Writer
4323
4323
 
4324
4324
  def self.write_one(object, writer, singular = nil)
4325
4325
  singular ||= 'open_stack_volume_type'
@@ -4351,7 +4351,7 @@ module OvirtSDK4
4351
4351
 
4352
4352
  end
4353
4353
 
4354
- class OpenstackVolumeAuthenticationKeyWriter < Writer # :nodoc:
4354
+ class OpenstackVolumeAuthenticationKeyWriter < Writer
4355
4355
 
4356
4356
  def self.write_one(object, writer, singular = nil)
4357
4357
  singular ||= 'openstack_volume_authentication_key'
@@ -4386,7 +4386,7 @@ module OvirtSDK4
4386
4386
 
4387
4387
  end
4388
4388
 
4389
- class OperatingSystemWriter < Writer # :nodoc:
4389
+ class OperatingSystemWriter < Writer
4390
4390
 
4391
4391
  def self.write_one(object, writer, singular = nil)
4392
4392
  singular ||= 'os'
@@ -4420,7 +4420,7 @@ module OvirtSDK4
4420
4420
 
4421
4421
  end
4422
4422
 
4423
- class OperatingSystemInfoWriter < Writer # :nodoc:
4423
+ class OperatingSystemInfoWriter < Writer
4424
4424
 
4425
4425
  def self.write_one(object, writer, singular = nil)
4426
4426
  singular ||= 'operating_system'
@@ -4452,7 +4452,7 @@ module OvirtSDK4
4452
4452
 
4453
4453
  end
4454
4454
 
4455
- class OptionWriter < Writer # :nodoc:
4455
+ class OptionWriter < Writer
4456
4456
 
4457
4457
  def self.write_one(object, writer, singular = nil)
4458
4458
  singular ||= 'option'
@@ -4481,7 +4481,7 @@ module OvirtSDK4
4481
4481
 
4482
4482
  end
4483
4483
 
4484
- class PackageWriter < Writer # :nodoc:
4484
+ class PackageWriter < Writer
4485
4485
 
4486
4486
  def self.write_one(object, writer, singular = nil)
4487
4487
  singular ||= 'package'
@@ -4508,7 +4508,7 @@ module OvirtSDK4
4508
4508
 
4509
4509
  end
4510
4510
 
4511
- class PayloadWriter < Writer # :nodoc:
4511
+ class PayloadWriter < Writer
4512
4512
 
4513
4513
  def self.write_one(object, writer, singular = nil)
4514
4514
  singular ||= 'payload'
@@ -4537,7 +4537,7 @@ module OvirtSDK4
4537
4537
 
4538
4538
  end
4539
4539
 
4540
- class PermissionWriter < Writer # :nodoc:
4540
+ class PermissionWriter < Writer
4541
4541
 
4542
4542
  def self.write_one(object, writer, singular = nil)
4543
4543
  singular ||= 'permission'
@@ -4578,7 +4578,7 @@ module OvirtSDK4
4578
4578
 
4579
4579
  end
4580
4580
 
4581
- class PermitWriter < Writer # :nodoc:
4581
+ class PermitWriter < Writer
4582
4582
 
4583
4583
  def self.write_one(object, writer, singular = nil)
4584
4584
  singular ||= 'permit'
@@ -4610,7 +4610,7 @@ module OvirtSDK4
4610
4610
 
4611
4611
  end
4612
4612
 
4613
- class PmProxyWriter < Writer # :nodoc:
4613
+ class PmProxyWriter < Writer
4614
4614
 
4615
4615
  def self.write_one(object, writer, singular = nil)
4616
4616
  singular ||= 'pm_proxy'
@@ -4637,7 +4637,7 @@ module OvirtSDK4
4637
4637
 
4638
4638
  end
4639
4639
 
4640
- class PortMirroringWriter < Writer # :nodoc:
4640
+ class PortMirroringWriter < Writer
4641
4641
 
4642
4642
  def self.write_one(object, writer, singular = nil)
4643
4643
  singular ||= 'port_mirroring'
@@ -4663,7 +4663,7 @@ module OvirtSDK4
4663
4663
 
4664
4664
  end
4665
4665
 
4666
- class PowerManagementWriter < Writer # :nodoc:
4666
+ class PowerManagementWriter < Writer
4667
4667
 
4668
4668
  def self.write_one(object, writer, singular = nil)
4669
4669
  singular ||= 'power_management'
@@ -4700,7 +4700,7 @@ module OvirtSDK4
4700
4700
 
4701
4701
  end
4702
4702
 
4703
- class ProductWriter < Writer # :nodoc:
4703
+ class ProductWriter < Writer
4704
4704
 
4705
4705
  def self.write_one(object, writer, singular = nil)
4706
4706
  singular ||= 'product'
@@ -4730,7 +4730,7 @@ module OvirtSDK4
4730
4730
 
4731
4731
  end
4732
4732
 
4733
- class ProductInfoWriter < Writer # :nodoc:
4733
+ class ProductInfoWriter < Writer
4734
4734
 
4735
4735
  def self.write_one(object, writer, singular = nil)
4736
4736
  singular ||= 'product_info'
@@ -4759,7 +4759,7 @@ module OvirtSDK4
4759
4759
 
4760
4760
  end
4761
4761
 
4762
- class ProfileDetailWriter < Writer # :nodoc:
4762
+ class ProfileDetailWriter < Writer
4763
4763
 
4764
4764
  def self.write_one(object, writer, singular = nil)
4765
4765
  singular ||= 'profile_detail'
@@ -4790,7 +4790,7 @@ module OvirtSDK4
4790
4790
 
4791
4791
  end
4792
4792
 
4793
- class PropertyWriter < Writer # :nodoc:
4793
+ class PropertyWriter < Writer
4794
4794
 
4795
4795
  def self.write_one(object, writer, singular = nil)
4796
4796
  singular ||= 'property'
@@ -4818,7 +4818,7 @@ module OvirtSDK4
4818
4818
 
4819
4819
  end
4820
4820
 
4821
- class ProxyTicketWriter < Writer # :nodoc:
4821
+ class ProxyTicketWriter < Writer
4822
4822
 
4823
4823
  def self.write_one(object, writer, singular = nil)
4824
4824
  singular ||= 'proxy_ticket'
@@ -4845,7 +4845,7 @@ module OvirtSDK4
4845
4845
 
4846
4846
  end
4847
4847
 
4848
- class QosWriter < Writer # :nodoc:
4848
+ class QosWriter < Writer
4849
4849
 
4850
4850
  def self.write_one(object, writer, singular = nil)
4851
4851
  singular ||= 'qos'
@@ -4893,7 +4893,7 @@ module OvirtSDK4
4893
4893
 
4894
4894
  end
4895
4895
 
4896
- class QuotaWriter < Writer # :nodoc:
4896
+ class QuotaWriter < Writer
4897
4897
 
4898
4898
  def self.write_one(object, writer, singular = nil)
4899
4899
  singular ||= 'quota'
@@ -4934,7 +4934,7 @@ module OvirtSDK4
4934
4934
 
4935
4935
  end
4936
4936
 
4937
- class QuotaClusterLimitWriter < Writer # :nodoc:
4937
+ class QuotaClusterLimitWriter < Writer
4938
4938
 
4939
4939
  def self.write_one(object, writer, singular = nil)
4940
4940
  singular ||= 'quota_cluster_limit'
@@ -4970,7 +4970,7 @@ module OvirtSDK4
4970
4970
 
4971
4971
  end
4972
4972
 
4973
- class QuotaStorageLimitWriter < Writer # :nodoc:
4973
+ class QuotaStorageLimitWriter < Writer
4974
4974
 
4975
4975
  def self.write_one(object, writer, singular = nil)
4976
4976
  singular ||= 'quota_storage_limit'
@@ -5004,7 +5004,7 @@ module OvirtSDK4
5004
5004
 
5005
5005
  end
5006
5006
 
5007
- class RangeWriter < Writer # :nodoc:
5007
+ class RangeWriter < Writer
5008
5008
 
5009
5009
  def self.write_one(object, writer, singular = nil)
5010
5010
  singular ||= 'range'
@@ -5032,7 +5032,7 @@ module OvirtSDK4
5032
5032
 
5033
5033
  end
5034
5034
 
5035
- class RateWriter < Writer # :nodoc:
5035
+ class RateWriter < Writer
5036
5036
 
5037
5037
  def self.write_one(object, writer, singular = nil)
5038
5038
  singular ||= 'rate'
@@ -5060,7 +5060,7 @@ module OvirtSDK4
5060
5060
 
5061
5061
  end
5062
5062
 
5063
- class ReportedConfigurationWriter < Writer # :nodoc:
5063
+ class ReportedConfigurationWriter < Writer
5064
5064
 
5065
5065
  def self.write_one(object, writer, singular = nil)
5066
5066
  singular ||= 'reported_configuration'
@@ -5090,7 +5090,7 @@ module OvirtSDK4
5090
5090
 
5091
5091
  end
5092
5092
 
5093
- class ReportedDeviceWriter < Writer # :nodoc:
5093
+ class ReportedDeviceWriter < Writer
5094
5094
 
5095
5095
  def self.write_one(object, writer, singular = nil)
5096
5096
  singular ||= 'reported_device'
@@ -5124,7 +5124,7 @@ module OvirtSDK4
5124
5124
 
5125
5125
  end
5126
5126
 
5127
- class RngDeviceWriter < Writer # :nodoc:
5127
+ class RngDeviceWriter < Writer
5128
5128
 
5129
5129
  def self.write_one(object, writer, singular = nil)
5130
5130
  singular ||= 'rng_device'
@@ -5152,7 +5152,7 @@ module OvirtSDK4
5152
5152
 
5153
5153
  end
5154
5154
 
5155
- class RoleWriter < Writer # :nodoc:
5155
+ class RoleWriter < Writer
5156
5156
 
5157
5157
  def self.write_one(object, writer, singular = nil)
5158
5158
  singular ||= 'role'
@@ -5186,7 +5186,7 @@ module OvirtSDK4
5186
5186
 
5187
5187
  end
5188
5188
 
5189
- class SchedulingPolicyWriter < Writer # :nodoc:
5189
+ class SchedulingPolicyWriter < Writer
5190
5190
 
5191
5191
  def self.write_one(object, writer, singular = nil)
5192
5192
  singular ||= 'scheduling_policy'
@@ -5222,7 +5222,7 @@ module OvirtSDK4
5222
5222
 
5223
5223
  end
5224
5224
 
5225
- class SchedulingPolicyUnitWriter < Writer # :nodoc:
5225
+ class SchedulingPolicyUnitWriter < Writer
5226
5226
 
5227
5227
  def self.write_one(object, writer, singular = nil)
5228
5228
  singular ||= 'scheduling_policy_unit'
@@ -5256,7 +5256,7 @@ module OvirtSDK4
5256
5256
 
5257
5257
  end
5258
5258
 
5259
- class SeLinuxWriter < Writer # :nodoc:
5259
+ class SeLinuxWriter < Writer
5260
5260
 
5261
5261
  def self.write_one(object, writer, singular = nil)
5262
5262
  singular ||= 'se_linux'
@@ -5283,7 +5283,7 @@ module OvirtSDK4
5283
5283
 
5284
5284
  end
5285
5285
 
5286
- class SerialNumberWriter < Writer # :nodoc:
5286
+ class SerialNumberWriter < Writer
5287
5287
 
5288
5288
  def self.write_one(object, writer, singular = nil)
5289
5289
  singular ||= 'serial_number'
@@ -5311,7 +5311,7 @@ module OvirtSDK4
5311
5311
 
5312
5312
  end
5313
5313
 
5314
- class SessionWriter < Writer # :nodoc:
5314
+ class SessionWriter < Writer
5315
5315
 
5316
5316
  def self.write_one(object, writer, singular = nil)
5317
5317
  singular ||= 'session'
@@ -5346,7 +5346,7 @@ module OvirtSDK4
5346
5346
 
5347
5347
  end
5348
5348
 
5349
- class SkipIfConnectivityBrokenWriter < Writer # :nodoc:
5349
+ class SkipIfConnectivityBrokenWriter < Writer
5350
5350
 
5351
5351
  def self.write_one(object, writer, singular = nil)
5352
5352
  singular ||= 'skip_if_connectivity_broken'
@@ -5374,7 +5374,7 @@ module OvirtSDK4
5374
5374
 
5375
5375
  end
5376
5376
 
5377
- class SkipIfSdActiveWriter < Writer # :nodoc:
5377
+ class SkipIfSdActiveWriter < Writer
5378
5378
 
5379
5379
  def self.write_one(object, writer, singular = nil)
5380
5380
  singular ||= 'skip_if_sd_active'
@@ -5401,7 +5401,7 @@ module OvirtSDK4
5401
5401
 
5402
5402
  end
5403
5403
 
5404
- class SnapshotWriter < Writer # :nodoc:
5404
+ class SnapshotWriter < Writer
5405
5405
 
5406
5406
  def self.write_one(object, writer, singular = nil)
5407
5407
  singular ||= 'snapshot'
@@ -5510,7 +5510,7 @@ module OvirtSDK4
5510
5510
 
5511
5511
  end
5512
5512
 
5513
- class SpecialObjectsWriter < Writer # :nodoc:
5513
+ class SpecialObjectsWriter < Writer
5514
5514
 
5515
5515
  def self.write_one(object, writer, singular = nil)
5516
5516
  singular ||= 'special_objects'
@@ -5538,7 +5538,7 @@ module OvirtSDK4
5538
5538
 
5539
5539
  end
5540
5540
 
5541
- class SpmWriter < Writer # :nodoc:
5541
+ class SpmWriter < Writer
5542
5542
 
5543
5543
  def self.write_one(object, writer, singular = nil)
5544
5544
  singular ||= 'spm'
@@ -5566,7 +5566,7 @@ module OvirtSDK4
5566
5566
 
5567
5567
  end
5568
5568
 
5569
- class SshWriter < Writer # :nodoc:
5569
+ class SshWriter < Writer
5570
5570
 
5571
5571
  def self.write_one(object, writer, singular = nil)
5572
5572
  singular ||= 'ssh'
@@ -5600,7 +5600,7 @@ module OvirtSDK4
5600
5600
 
5601
5601
  end
5602
5602
 
5603
- class SshPublicKeyWriter < Writer # :nodoc:
5603
+ class SshPublicKeyWriter < Writer
5604
5604
 
5605
5605
  def self.write_one(object, writer, singular = nil)
5606
5606
  singular ||= 'ssh_public_key'
@@ -5632,7 +5632,7 @@ module OvirtSDK4
5632
5632
 
5633
5633
  end
5634
5634
 
5635
- class SsoWriter < Writer # :nodoc:
5635
+ class SsoWriter < Writer
5636
5636
 
5637
5637
  def self.write_one(object, writer, singular = nil)
5638
5638
  singular ||= 'sso'
@@ -5659,7 +5659,7 @@ module OvirtSDK4
5659
5659
 
5660
5660
  end
5661
5661
 
5662
- class StatisticWriter < Writer # :nodoc:
5662
+ class StatisticWriter < Writer
5663
5663
 
5664
5664
  def self.write_one(object, writer, singular = nil)
5665
5665
  singular ||= 'statistic'
@@ -5702,7 +5702,7 @@ module OvirtSDK4
5702
5702
 
5703
5703
  end
5704
5704
 
5705
- class StepWriter < Writer # :nodoc:
5705
+ class StepWriter < Writer
5706
5706
 
5707
5707
  def self.write_one(object, writer, singular = nil)
5708
5708
  singular ||= 'step'
@@ -5742,7 +5742,7 @@ module OvirtSDK4
5742
5742
 
5743
5743
  end
5744
5744
 
5745
- class StorageConnectionWriter < Writer # :nodoc:
5745
+ class StorageConnectionWriter < Writer
5746
5746
 
5747
5747
  def self.write_one(object, writer, singular = nil)
5748
5748
  singular ||= 'storage_connection'
@@ -5786,7 +5786,7 @@ module OvirtSDK4
5786
5786
 
5787
5787
  end
5788
5788
 
5789
- class StorageConnectionExtensionWriter < Writer # :nodoc:
5789
+ class StorageConnectionExtensionWriter < Writer
5790
5790
 
5791
5791
  def self.write_one(object, writer, singular = nil)
5792
5792
  singular ||= 'storage_connection_extension'
@@ -5820,7 +5820,7 @@ module OvirtSDK4
5820
5820
 
5821
5821
  end
5822
5822
 
5823
- class StorageDomainWriter < Writer # :nodoc:
5823
+ class StorageDomainWriter < Writer
5824
5824
 
5825
5825
  def self.write_one(object, writer, singular = nil)
5826
5826
  singular ||= 'storage_domain'
@@ -5875,7 +5875,7 @@ module OvirtSDK4
5875
5875
 
5876
5876
  end
5877
5877
 
5878
- class TagWriter < Writer # :nodoc:
5878
+ class TagWriter < Writer
5879
5879
 
5880
5880
  def self.write_one(object, writer, singular = nil)
5881
5881
  singular ||= 'tag'
@@ -5911,7 +5911,7 @@ module OvirtSDK4
5911
5911
 
5912
5912
  end
5913
5913
 
5914
- class TemplateWriter < Writer # :nodoc:
5914
+ class TemplateWriter < Writer
5915
5915
 
5916
5916
  def self.write_one(object, writer, singular = nil)
5917
5917
  singular ||= 'template'
@@ -5989,7 +5989,7 @@ module OvirtSDK4
5989
5989
 
5990
5990
  end
5991
5991
 
5992
- class TemplateVersionWriter < Writer # :nodoc:
5992
+ class TemplateVersionWriter < Writer
5993
5993
 
5994
5994
  def self.write_one(object, writer, singular = nil)
5995
5995
  singular ||= 'template_version'
@@ -6018,7 +6018,7 @@ module OvirtSDK4
6018
6018
 
6019
6019
  end
6020
6020
 
6021
- class TicketWriter < Writer # :nodoc:
6021
+ class TicketWriter < Writer
6022
6022
 
6023
6023
  def self.write_one(object, writer, singular = nil)
6024
6024
  singular ||= 'ticket'
@@ -6046,7 +6046,7 @@ module OvirtSDK4
6046
6046
 
6047
6047
  end
6048
6048
 
6049
- class TimeZoneWriter < Writer # :nodoc:
6049
+ class TimeZoneWriter < Writer
6050
6050
 
6051
6051
  def self.write_one(object, writer, singular = nil)
6052
6052
  singular ||= 'time_zone'
@@ -6074,7 +6074,7 @@ module OvirtSDK4
6074
6074
 
6075
6075
  end
6076
6076
 
6077
- class TransparentHugePagesWriter < Writer # :nodoc:
6077
+ class TransparentHugePagesWriter < Writer
6078
6078
 
6079
6079
  def self.write_one(object, writer, singular = nil)
6080
6080
  singular ||= 'transparent_hugepages'
@@ -6101,7 +6101,7 @@ module OvirtSDK4
6101
6101
 
6102
6102
  end
6103
6103
 
6104
- class UnmanagedNetworkWriter < Writer # :nodoc:
6104
+ class UnmanagedNetworkWriter < Writer
6105
6105
 
6106
6106
  def self.write_one(object, writer, singular = nil)
6107
6107
  singular ||= 'unmanaged_network'
@@ -6133,7 +6133,7 @@ module OvirtSDK4
6133
6133
 
6134
6134
  end
6135
6135
 
6136
- class UsbWriter < Writer # :nodoc:
6136
+ class UsbWriter < Writer
6137
6137
 
6138
6138
  def self.write_one(object, writer, singular = nil)
6139
6139
  singular ||= 'usb'
@@ -6161,7 +6161,7 @@ module OvirtSDK4
6161
6161
 
6162
6162
  end
6163
6163
 
6164
- class UserWriter < Writer # :nodoc:
6164
+ class UserWriter < Writer
6165
6165
 
6166
6166
  def self.write_one(object, writer, singular = nil)
6167
6167
  singular ||= 'user'
@@ -6206,7 +6206,7 @@ module OvirtSDK4
6206
6206
 
6207
6207
  end
6208
6208
 
6209
- class ValueWriter < Writer # :nodoc:
6209
+ class ValueWriter < Writer
6210
6210
 
6211
6211
  def self.write_one(object, writer, singular = nil)
6212
6212
  singular ||= 'value'
@@ -6234,7 +6234,7 @@ module OvirtSDK4
6234
6234
 
6235
6235
  end
6236
6236
 
6237
- class VcpuPinWriter < Writer # :nodoc:
6237
+ class VcpuPinWriter < Writer
6238
6238
 
6239
6239
  def self.write_one(object, writer, singular = nil)
6240
6240
  singular ||= 'vcpu_pin'
@@ -6262,7 +6262,7 @@ module OvirtSDK4
6262
6262
 
6263
6263
  end
6264
6264
 
6265
- class VendorWriter < Writer # :nodoc:
6265
+ class VendorWriter < Writer
6266
6266
 
6267
6267
  def self.write_one(object, writer, singular = nil)
6268
6268
  singular ||= 'vendor'
@@ -6292,7 +6292,7 @@ module OvirtSDK4
6292
6292
 
6293
6293
  end
6294
6294
 
6295
- class VersionWriter < Writer # :nodoc:
6295
+ class VersionWriter < Writer
6296
6296
 
6297
6297
  def self.write_one(object, writer, singular = nil)
6298
6298
  singular ||= 'version'
@@ -6327,7 +6327,7 @@ module OvirtSDK4
6327
6327
 
6328
6328
  end
6329
6329
 
6330
- class VirtioScsiWriter < Writer # :nodoc:
6330
+ class VirtioScsiWriter < Writer
6331
6331
 
6332
6332
  def self.write_one(object, writer, singular = nil)
6333
6333
  singular ||= 'virtio_scsi'
@@ -6354,7 +6354,7 @@ module OvirtSDK4
6354
6354
 
6355
6355
  end
6356
6356
 
6357
- class VirtualNumaNodeWriter < Writer # :nodoc:
6357
+ class VirtualNumaNodeWriter < Writer
6358
6358
 
6359
6359
  def self.write_one(object, writer, singular = nil)
6360
6360
  singular ||= 'vm_numa_node'
@@ -6392,7 +6392,7 @@ module OvirtSDK4
6392
6392
 
6393
6393
  end
6394
6394
 
6395
- class VlanWriter < Writer # :nodoc:
6395
+ class VlanWriter < Writer
6396
6396
 
6397
6397
  def self.write_one(object, writer, singular = nil)
6398
6398
  singular ||= 'vlan'
@@ -6419,7 +6419,7 @@ module OvirtSDK4
6419
6419
 
6420
6420
  end
6421
6421
 
6422
- class VmWriter < Writer # :nodoc:
6422
+ class VmWriter < Writer
6423
6423
 
6424
6424
  def self.write_one(object, writer, singular = nil)
6425
6425
  singular ||= 'vm'
@@ -6523,7 +6523,7 @@ module OvirtSDK4
6523
6523
 
6524
6524
  end
6525
6525
 
6526
- class VmBaseWriter < Writer # :nodoc:
6526
+ class VmBaseWriter < Writer
6527
6527
 
6528
6528
  def self.write_one(object, writer, singular = nil)
6529
6529
  singular ||= 'vm_base'
@@ -6591,7 +6591,7 @@ module OvirtSDK4
6591
6591
 
6592
6592
  end
6593
6593
 
6594
- class VmPlacementPolicyWriter < Writer # :nodoc:
6594
+ class VmPlacementPolicyWriter < Writer
6595
6595
 
6596
6596
  def self.write_one(object, writer, singular = nil)
6597
6597
  singular ||= 'vm_placement_policy'
@@ -6619,7 +6619,7 @@ module OvirtSDK4
6619
6619
 
6620
6620
  end
6621
6621
 
6622
- class VmPoolWriter < Writer # :nodoc:
6622
+ class VmPoolWriter < Writer
6623
6623
 
6624
6624
  def self.write_one(object, writer, singular = nil)
6625
6625
  singular ||= 'vm_pool'
@@ -6663,7 +6663,7 @@ module OvirtSDK4
6663
6663
 
6664
6664
  end
6665
6665
 
6666
- class VmSummaryWriter < Writer # :nodoc:
6666
+ class VmSummaryWriter < Writer
6667
6667
 
6668
6668
  def self.write_one(object, writer, singular = nil)
6669
6669
  singular ||= 'vm_summary'
@@ -6692,7 +6692,7 @@ module OvirtSDK4
6692
6692
 
6693
6693
  end
6694
6694
 
6695
- class VnicPassThroughWriter < Writer # :nodoc:
6695
+ class VnicPassThroughWriter < Writer
6696
6696
 
6697
6697
  def self.write_one(object, writer, singular = nil)
6698
6698
  singular ||= 'vnic_pass_through'
@@ -6719,7 +6719,7 @@ module OvirtSDK4
6719
6719
 
6720
6720
  end
6721
6721
 
6722
- class VnicProfileWriter < Writer # :nodoc:
6722
+ class VnicProfileWriter < Writer
6723
6723
 
6724
6724
  def self.write_one(object, writer, singular = nil)
6725
6725
  singular ||= 'vnic_profile'
@@ -6756,7 +6756,7 @@ module OvirtSDK4
6756
6756
 
6757
6757
  end
6758
6758
 
6759
- class VolumeGroupWriter < Writer # :nodoc:
6759
+ class VolumeGroupWriter < Writer
6760
6760
 
6761
6761
  def self.write_one(object, writer, singular = nil)
6762
6762
  singular ||= 'volume_group'
@@ -6785,7 +6785,7 @@ module OvirtSDK4
6785
6785
 
6786
6786
  end
6787
6787
 
6788
- class WatchdogWriter < Writer # :nodoc:
6788
+ class WatchdogWriter < Writer
6789
6789
 
6790
6790
  def self.write_one(object, writer, singular = nil)
6791
6791
  singular ||= 'watchdog'
@@ -6821,7 +6821,7 @@ module OvirtSDK4
6821
6821
 
6822
6822
  end
6823
6823
 
6824
- class WeightWriter < Writer # :nodoc:
6824
+ class WeightWriter < Writer
6825
6825
 
6826
6826
  def self.write_one(object, writer, singular = nil)
6827
6827
  singular ||= 'weight'