ovirt-engine-sdk 4.2.4 → 4.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGES.adoc +36 -0
- data/lib/ovirtsdk4/readers.rb +38 -0
- data/lib/ovirtsdk4/services.rb +301 -56
- data/lib/ovirtsdk4/types.rb +228 -2
- data/lib/ovirtsdk4/version.rb +1 -1
- data/lib/ovirtsdk4/writers.rb +10 -0
- metadata +7 -7
data/lib/ovirtsdk4/types.rb
CHANGED
@@ -20388,6 +20388,31 @@ module OvirtSDK4
|
|
20388
20388
|
@description = value
|
20389
20389
|
end
|
20390
20390
|
|
20391
|
+
#
|
20392
|
+
# Returns the value of the `gluster_volume` attribute.
|
20393
|
+
#
|
20394
|
+
# @return [GlusterVolume]
|
20395
|
+
#
|
20396
|
+
def gluster_volume
|
20397
|
+
@gluster_volume
|
20398
|
+
end
|
20399
|
+
|
20400
|
+
#
|
20401
|
+
# Sets the value of the `gluster_volume` attribute.
|
20402
|
+
#
|
20403
|
+
# @param value [GlusterVolume, Hash]
|
20404
|
+
#
|
20405
|
+
# The `value` parameter can be an instance of {OvirtSDK4::GlusterVolume} or a hash.
|
20406
|
+
# If it is a hash then a new instance will be created passing the hash as the
|
20407
|
+
# `opts` parameter to the constructor.
|
20408
|
+
#
|
20409
|
+
def gluster_volume=(value)
|
20410
|
+
if value.is_a?(Hash)
|
20411
|
+
value = GlusterVolume.new(value)
|
20412
|
+
end
|
20413
|
+
@gluster_volume = value
|
20414
|
+
end
|
20415
|
+
|
20391
20416
|
#
|
20392
20417
|
# Returns the value of the `host` attribute.
|
20393
20418
|
#
|
@@ -20678,6 +20703,8 @@ module OvirtSDK4
|
|
20678
20703
|
#
|
20679
20704
|
# @option opts [String] :description The value of attribute `description`.
|
20680
20705
|
#
|
20706
|
+
# @option opts [GlusterVolume, Hash] :gluster_volume The value of attribute `gluster_volume`.
|
20707
|
+
#
|
20681
20708
|
# @option opts [Host, Hash] :host The value of attribute `host`.
|
20682
20709
|
#
|
20683
20710
|
# @option opts [String] :id The value of attribute `id`.
|
@@ -20712,6 +20739,7 @@ module OvirtSDK4
|
|
20712
20739
|
def initialize(opts = {})
|
20713
20740
|
super(opts)
|
20714
20741
|
self.address = opts[:address]
|
20742
|
+
self.gluster_volume = opts[:gluster_volume]
|
20715
20743
|
self.host = opts[:host]
|
20716
20744
|
self.mount_options = opts[:mount_options]
|
20717
20745
|
self.nfs_retrans = opts[:nfs_retrans]
|
@@ -20733,6 +20761,7 @@ module OvirtSDK4
|
|
20733
20761
|
def ==(other)
|
20734
20762
|
super &&
|
20735
20763
|
@address == other.address &&
|
20764
|
+
@gluster_volume == other.gluster_volume &&
|
20736
20765
|
@host == other.host &&
|
20737
20766
|
@mount_options == other.mount_options &&
|
20738
20767
|
@nfs_retrans == other.nfs_retrans &&
|
@@ -20754,6 +20783,7 @@ module OvirtSDK4
|
|
20754
20783
|
def hash
|
20755
20784
|
super +
|
20756
20785
|
@address.hash +
|
20786
|
+
@gluster_volume.hash +
|
20757
20787
|
@host.hash +
|
20758
20788
|
@mount_options.hash +
|
20759
20789
|
@nfs_retrans.hash +
|
@@ -24959,6 +24989,24 @@ module OvirtSDK4
|
|
24959
24989
|
@migration_downtime = value
|
24960
24990
|
end
|
24961
24991
|
|
24992
|
+
#
|
24993
|
+
# Returns the value of the `multi_queues_enabled` attribute.
|
24994
|
+
#
|
24995
|
+
# @return [Boolean]
|
24996
|
+
#
|
24997
|
+
def multi_queues_enabled
|
24998
|
+
@multi_queues_enabled
|
24999
|
+
end
|
25000
|
+
|
25001
|
+
#
|
25002
|
+
# Sets the value of the `multi_queues_enabled` attribute.
|
25003
|
+
#
|
25004
|
+
# @param value [Boolean]
|
25005
|
+
#
|
25006
|
+
def multi_queues_enabled=(value)
|
25007
|
+
@multi_queues_enabled = value
|
25008
|
+
end
|
25009
|
+
|
24962
25010
|
#
|
24963
25011
|
# Returns the value of the `name` attribute.
|
24964
25012
|
#
|
@@ -25437,6 +25485,8 @@ module OvirtSDK4
|
|
25437
25485
|
#
|
25438
25486
|
# @option opts [Integer] :migration_downtime The value of attribute `migration_downtime`.
|
25439
25487
|
#
|
25488
|
+
# @option opts [Boolean] :multi_queues_enabled The value of attribute `multi_queues_enabled`.
|
25489
|
+
#
|
25440
25490
|
# @option opts [String] :name The value of attribute `name`.
|
25441
25491
|
#
|
25442
25492
|
# @option opts [String] :origin The value of attribute `origin`.
|
@@ -25501,6 +25551,7 @@ module OvirtSDK4
|
|
25501
25551
|
self.memory_policy = opts[:memory_policy]
|
25502
25552
|
self.migration = opts[:migration]
|
25503
25553
|
self.migration_downtime = opts[:migration_downtime]
|
25554
|
+
self.multi_queues_enabled = opts[:multi_queues_enabled]
|
25504
25555
|
self.origin = opts[:origin]
|
25505
25556
|
self.os = opts[:os]
|
25506
25557
|
self.placement_policy = opts[:placement_policy]
|
@@ -25549,6 +25600,7 @@ module OvirtSDK4
|
|
25549
25600
|
@memory_policy == other.memory_policy &&
|
25550
25601
|
@migration == other.migration &&
|
25551
25602
|
@migration_downtime == other.migration_downtime &&
|
25603
|
+
@multi_queues_enabled == other.multi_queues_enabled &&
|
25552
25604
|
@origin == other.origin &&
|
25553
25605
|
@os == other.os &&
|
25554
25606
|
@placement_policy == other.placement_policy &&
|
@@ -25597,6 +25649,7 @@ module OvirtSDK4
|
|
25597
25649
|
@memory_policy.hash +
|
25598
25650
|
@migration.hash +
|
25599
25651
|
@migration_downtime.hash +
|
25652
|
+
@multi_queues_enabled.hash +
|
25600
25653
|
@origin.hash +
|
25601
25654
|
@os.hash +
|
25602
25655
|
@placement_policy.hash +
|
@@ -41795,6 +41848,24 @@ module OvirtSDK4
|
|
41795
41848
|
@network_attachments = list
|
41796
41849
|
end
|
41797
41850
|
|
41851
|
+
#
|
41852
|
+
# Returns the value of the `network_operation_in_progress` attribute.
|
41853
|
+
#
|
41854
|
+
# @return [Boolean]
|
41855
|
+
#
|
41856
|
+
def network_operation_in_progress
|
41857
|
+
@network_operation_in_progress
|
41858
|
+
end
|
41859
|
+
|
41860
|
+
#
|
41861
|
+
# Sets the value of the `network_operation_in_progress` attribute.
|
41862
|
+
#
|
41863
|
+
# @param value [Boolean]
|
41864
|
+
#
|
41865
|
+
def network_operation_in_progress=(value)
|
41866
|
+
@network_operation_in_progress = value
|
41867
|
+
end
|
41868
|
+
|
41798
41869
|
#
|
41799
41870
|
# Returns the value of the `nics` attribute.
|
41800
41871
|
#
|
@@ -42428,6 +42499,8 @@ module OvirtSDK4
|
|
42428
42499
|
#
|
42429
42500
|
# @option opts [Array<NetworkAttachment>, Array<Hash>] :network_attachments The values of attribute `network_attachments`.
|
42430
42501
|
#
|
42502
|
+
# @option opts [Boolean] :network_operation_in_progress The value of attribute `network_operation_in_progress`.
|
42503
|
+
#
|
42431
42504
|
# @option opts [Array<HostNic>, Array<Hash>] :nics The values of attribute `nics`.
|
42432
42505
|
#
|
42433
42506
|
# @option opts [Array<NumaNode>, Array<Hash>] :numa_nodes The values of attribute `numa_nodes`.
|
@@ -42505,6 +42578,7 @@ module OvirtSDK4
|
|
42505
42578
|
self.max_scheduling_memory = opts[:max_scheduling_memory]
|
42506
42579
|
self.memory = opts[:memory]
|
42507
42580
|
self.network_attachments = opts[:network_attachments]
|
42581
|
+
self.network_operation_in_progress = opts[:network_operation_in_progress]
|
42508
42582
|
self.nics = opts[:nics]
|
42509
42583
|
self.numa_nodes = opts[:numa_nodes]
|
42510
42584
|
self.numa_supported = opts[:numa_supported]
|
@@ -42561,6 +42635,7 @@ module OvirtSDK4
|
|
42561
42635
|
@max_scheduling_memory == other.max_scheduling_memory &&
|
42562
42636
|
@memory == other.memory &&
|
42563
42637
|
@network_attachments == other.network_attachments &&
|
42638
|
+
@network_operation_in_progress == other.network_operation_in_progress &&
|
42564
42639
|
@nics == other.nics &&
|
42565
42640
|
@numa_nodes == other.numa_nodes &&
|
42566
42641
|
@numa_supported == other.numa_supported &&
|
@@ -42617,6 +42692,7 @@ module OvirtSDK4
|
|
42617
42692
|
@max_scheduling_memory.hash +
|
42618
42693
|
@memory.hash +
|
42619
42694
|
@network_attachments.hash +
|
42695
|
+
@network_operation_in_progress.hash +
|
42620
42696
|
@nics.hash +
|
42621
42697
|
@numa_nodes.hash +
|
42622
42698
|
@numa_supported.hash +
|
@@ -46430,6 +46506,24 @@ module OvirtSDK4
|
|
46430
46506
|
@migration_downtime = value
|
46431
46507
|
end
|
46432
46508
|
|
46509
|
+
#
|
46510
|
+
# Returns the value of the `multi_queues_enabled` attribute.
|
46511
|
+
#
|
46512
|
+
# @return [Boolean]
|
46513
|
+
#
|
46514
|
+
def multi_queues_enabled
|
46515
|
+
@multi_queues_enabled
|
46516
|
+
end
|
46517
|
+
|
46518
|
+
#
|
46519
|
+
# Sets the value of the `multi_queues_enabled` attribute.
|
46520
|
+
#
|
46521
|
+
# @param value [Boolean]
|
46522
|
+
#
|
46523
|
+
def multi_queues_enabled=(value)
|
46524
|
+
@multi_queues_enabled = value
|
46525
|
+
end
|
46526
|
+
|
46433
46527
|
#
|
46434
46528
|
# Returns the value of the `name` attribute.
|
46435
46529
|
#
|
@@ -47086,6 +47180,8 @@ module OvirtSDK4
|
|
47086
47180
|
#
|
47087
47181
|
# @option opts [Integer] :migration_downtime The value of attribute `migration_downtime`.
|
47088
47182
|
#
|
47183
|
+
# @option opts [Boolean] :multi_queues_enabled The value of attribute `multi_queues_enabled`.
|
47184
|
+
#
|
47089
47185
|
# @option opts [String] :name The value of attribute `name`.
|
47090
47186
|
#
|
47091
47187
|
# @option opts [Array<Nic>, Array<Hash>] :nics The values of attribute `nics`.
|
@@ -48141,6 +48237,24 @@ module OvirtSDK4
|
|
48141
48237
|
@migration_downtime = value
|
48142
48238
|
end
|
48143
48239
|
|
48240
|
+
#
|
48241
|
+
# Returns the value of the `multi_queues_enabled` attribute.
|
48242
|
+
#
|
48243
|
+
# @return [Boolean]
|
48244
|
+
#
|
48245
|
+
def multi_queues_enabled
|
48246
|
+
@multi_queues_enabled
|
48247
|
+
end
|
48248
|
+
|
48249
|
+
#
|
48250
|
+
# Sets the value of the `multi_queues_enabled` attribute.
|
48251
|
+
#
|
48252
|
+
# @param value [Boolean]
|
48253
|
+
#
|
48254
|
+
def multi_queues_enabled=(value)
|
48255
|
+
@multi_queues_enabled = value
|
48256
|
+
end
|
48257
|
+
|
48144
48258
|
#
|
48145
48259
|
# Returns the value of the `name` attribute.
|
48146
48260
|
#
|
@@ -49146,6 +49260,8 @@ module OvirtSDK4
|
|
49146
49260
|
#
|
49147
49261
|
# @option opts [Integer] :migration_downtime The value of attribute `migration_downtime`.
|
49148
49262
|
#
|
49263
|
+
# @option opts [Boolean] :multi_queues_enabled The value of attribute `multi_queues_enabled`.
|
49264
|
+
#
|
49149
49265
|
# @option opts [String] :name The value of attribute `name`.
|
49150
49266
|
#
|
49151
49267
|
# @option opts [Boolean] :next_run_configuration_exists The value of attribute `next_run_configuration_exists`.
|
@@ -51433,6 +51549,24 @@ module OvirtSDK4
|
|
51433
51549
|
@migration_downtime = value
|
51434
51550
|
end
|
51435
51551
|
|
51552
|
+
#
|
51553
|
+
# Returns the value of the `multi_queues_enabled` attribute.
|
51554
|
+
#
|
51555
|
+
# @return [Boolean]
|
51556
|
+
#
|
51557
|
+
def multi_queues_enabled
|
51558
|
+
@multi_queues_enabled
|
51559
|
+
end
|
51560
|
+
|
51561
|
+
#
|
51562
|
+
# Sets the value of the `multi_queues_enabled` attribute.
|
51563
|
+
#
|
51564
|
+
# @param value [Boolean]
|
51565
|
+
#
|
51566
|
+
def multi_queues_enabled=(value)
|
51567
|
+
@multi_queues_enabled = value
|
51568
|
+
end
|
51569
|
+
|
51436
51570
|
#
|
51437
51571
|
# Returns the value of the `name` attribute.
|
51438
51572
|
#
|
@@ -52089,6 +52223,8 @@ module OvirtSDK4
|
|
52089
52223
|
#
|
52090
52224
|
# @option opts [Integer] :migration_downtime The value of attribute `migration_downtime`.
|
52091
52225
|
#
|
52226
|
+
# @option opts [Boolean] :multi_queues_enabled The value of attribute `multi_queues_enabled`.
|
52227
|
+
#
|
52092
52228
|
# @option opts [String] :name The value of attribute `name`.
|
52093
52229
|
#
|
52094
52230
|
# @option opts [Array<Nic>, Array<Hash>] :nics The values of attribute `nics`.
|
@@ -52709,6 +52845,42 @@ module OvirtSDK4
|
|
52709
52845
|
@plugin_type = value
|
52710
52846
|
end
|
52711
52847
|
|
52848
|
+
#
|
52849
|
+
# Returns the value of the `project_domain_name` attribute.
|
52850
|
+
#
|
52851
|
+
# @return [String]
|
52852
|
+
#
|
52853
|
+
def project_domain_name
|
52854
|
+
@project_domain_name
|
52855
|
+
end
|
52856
|
+
|
52857
|
+
#
|
52858
|
+
# Sets the value of the `project_domain_name` attribute.
|
52859
|
+
#
|
52860
|
+
# @param value [String]
|
52861
|
+
#
|
52862
|
+
def project_domain_name=(value)
|
52863
|
+
@project_domain_name = value
|
52864
|
+
end
|
52865
|
+
|
52866
|
+
#
|
52867
|
+
# Returns the value of the `project_name` attribute.
|
52868
|
+
#
|
52869
|
+
# @return [String]
|
52870
|
+
#
|
52871
|
+
def project_name
|
52872
|
+
@project_name
|
52873
|
+
end
|
52874
|
+
|
52875
|
+
#
|
52876
|
+
# Sets the value of the `project_name` attribute.
|
52877
|
+
#
|
52878
|
+
# @param value [String]
|
52879
|
+
#
|
52880
|
+
def project_name=(value)
|
52881
|
+
@project_name = value
|
52882
|
+
end
|
52883
|
+
|
52712
52884
|
#
|
52713
52885
|
# Returns the value of the `properties` attribute.
|
52714
52886
|
#
|
@@ -52869,6 +53041,24 @@ module OvirtSDK4
|
|
52869
53041
|
@url = value
|
52870
53042
|
end
|
52871
53043
|
|
53044
|
+
#
|
53045
|
+
# Returns the value of the `user_domain_name` attribute.
|
53046
|
+
#
|
53047
|
+
# @return [String]
|
53048
|
+
#
|
53049
|
+
def user_domain_name
|
53050
|
+
@user_domain_name
|
53051
|
+
end
|
53052
|
+
|
53053
|
+
#
|
53054
|
+
# Sets the value of the `user_domain_name` attribute.
|
53055
|
+
#
|
53056
|
+
# @param value [String]
|
53057
|
+
#
|
53058
|
+
def user_domain_name=(value)
|
53059
|
+
@user_domain_name = value
|
53060
|
+
end
|
53061
|
+
|
52872
53062
|
#
|
52873
53063
|
# Returns the value of the `username` attribute.
|
52874
53064
|
#
|
@@ -52918,6 +53108,10 @@ module OvirtSDK4
|
|
52918
53108
|
#
|
52919
53109
|
# @option opts [NetworkPluginType] :plugin_type The value of attribute `plugin_type`.
|
52920
53110
|
#
|
53111
|
+
# @option opts [String] :project_domain_name The value of attribute `project_domain_name`.
|
53112
|
+
#
|
53113
|
+
# @option opts [String] :project_name The value of attribute `project_name`.
|
53114
|
+
#
|
52921
53115
|
# @option opts [Array<Property>, Array<Hash>] :properties The values of attribute `properties`.
|
52922
53116
|
#
|
52923
53117
|
# @option opts [Boolean] :read_only The value of attribute `read_only`.
|
@@ -52934,6 +53128,8 @@ module OvirtSDK4
|
|
52934
53128
|
#
|
52935
53129
|
# @option opts [String] :url The value of attribute `url`.
|
52936
53130
|
#
|
53131
|
+
# @option opts [String] :user_domain_name The value of attribute `user_domain_name`.
|
53132
|
+
#
|
52937
53133
|
# @option opts [String] :username The value of attribute `username`.
|
52938
53134
|
#
|
52939
53135
|
#
|
@@ -52945,10 +53141,13 @@ module OvirtSDK4
|
|
52945
53141
|
self.external_plugin_type = opts[:external_plugin_type]
|
52946
53142
|
self.networks = opts[:networks]
|
52947
53143
|
self.plugin_type = opts[:plugin_type]
|
53144
|
+
self.project_domain_name = opts[:project_domain_name]
|
53145
|
+
self.project_name = opts[:project_name]
|
52948
53146
|
self.read_only = opts[:read_only]
|
52949
53147
|
self.subnets = opts[:subnets]
|
52950
53148
|
self.type = opts[:type]
|
52951
53149
|
self.unmanaged = opts[:unmanaged]
|
53150
|
+
self.user_domain_name = opts[:user_domain_name]
|
52952
53151
|
end
|
52953
53152
|
|
52954
53153
|
#
|
@@ -52962,10 +53161,13 @@ module OvirtSDK4
|
|
52962
53161
|
@external_plugin_type == other.external_plugin_type &&
|
52963
53162
|
@networks == other.networks &&
|
52964
53163
|
@plugin_type == other.plugin_type &&
|
53164
|
+
@project_domain_name == other.project_domain_name &&
|
53165
|
+
@project_name == other.project_name &&
|
52965
53166
|
@read_only == other.read_only &&
|
52966
53167
|
@subnets == other.subnets &&
|
52967
53168
|
@type == other.type &&
|
52968
|
-
@unmanaged == other.unmanaged
|
53169
|
+
@unmanaged == other.unmanaged &&
|
53170
|
+
@user_domain_name == other.user_domain_name
|
52969
53171
|
end
|
52970
53172
|
|
52971
53173
|
#
|
@@ -52979,10 +53181,13 @@ module OvirtSDK4
|
|
52979
53181
|
@external_plugin_type.hash +
|
52980
53182
|
@networks.hash +
|
52981
53183
|
@plugin_type.hash +
|
53184
|
+
@project_domain_name.hash +
|
53185
|
+
@project_name.hash +
|
52982
53186
|
@read_only.hash +
|
52983
53187
|
@subnets.hash +
|
52984
53188
|
@type.hash +
|
52985
|
-
@unmanaged.hash
|
53189
|
+
@unmanaged.hash +
|
53190
|
+
@user_domain_name.hash
|
52986
53191
|
end
|
52987
53192
|
|
52988
53193
|
end
|
@@ -53957,6 +54162,24 @@ module OvirtSDK4
|
|
53957
54162
|
@migration_downtime = value
|
53958
54163
|
end
|
53959
54164
|
|
54165
|
+
#
|
54166
|
+
# Returns the value of the `multi_queues_enabled` attribute.
|
54167
|
+
#
|
54168
|
+
# @return [Boolean]
|
54169
|
+
#
|
54170
|
+
def multi_queues_enabled
|
54171
|
+
@multi_queues_enabled
|
54172
|
+
end
|
54173
|
+
|
54174
|
+
#
|
54175
|
+
# Sets the value of the `multi_queues_enabled` attribute.
|
54176
|
+
#
|
54177
|
+
# @param value [Boolean]
|
54178
|
+
#
|
54179
|
+
def multi_queues_enabled=(value)
|
54180
|
+
@multi_queues_enabled = value
|
54181
|
+
end
|
54182
|
+
|
53960
54183
|
#
|
53961
54184
|
# Returns the value of the `name` attribute.
|
53962
54185
|
#
|
@@ -55043,6 +55266,8 @@ module OvirtSDK4
|
|
55043
55266
|
#
|
55044
55267
|
# @option opts [Integer] :migration_downtime The value of attribute `migration_downtime`.
|
55045
55268
|
#
|
55269
|
+
# @option opts [Boolean] :multi_queues_enabled The value of attribute `multi_queues_enabled`.
|
55270
|
+
#
|
55046
55271
|
# @option opts [String] :name The value of attribute `name`.
|
55047
55272
|
#
|
55048
55273
|
# @option opts [Boolean] :next_run_configuration_exists The value of attribute `next_run_configuration_exists`.
|
@@ -55198,6 +55423,7 @@ module OvirtSDK4
|
|
55198
55423
|
AUTOCONF = 'autoconf'.freeze
|
55199
55424
|
DHCP = 'dhcp'.freeze
|
55200
55425
|
NONE = 'none'.freeze
|
55426
|
+
POLY_DHCP_AUTOCONF = 'poly_dhcp_autoconf'.freeze
|
55201
55427
|
STATIC = 'static'.freeze
|
55202
55428
|
end
|
55203
55429
|
|
data/lib/ovirtsdk4/version.rb
CHANGED
data/lib/ovirtsdk4/writers.rb
CHANGED
@@ -2774,6 +2774,7 @@ module OvirtSDK4
|
|
2774
2774
|
Writer.write_integer(writer, 'max_scheduling_memory', object.max_scheduling_memory) unless object.max_scheduling_memory.nil?
|
2775
2775
|
Writer.write_integer(writer, 'memory', object.memory) unless object.memory.nil?
|
2776
2776
|
Writer.write_string(writer, 'name', object.name) unless object.name.nil?
|
2777
|
+
Writer.write_boolean(writer, 'network_operation_in_progress', object.network_operation_in_progress) unless object.network_operation_in_progress.nil?
|
2777
2778
|
Writer.write_boolean(writer, 'numa_supported', object.numa_supported) unless object.numa_supported.nil?
|
2778
2779
|
OperatingSystemWriter.write_one(object.os, writer, 'os') unless object.os.nil?
|
2779
2780
|
Writer.write_boolean(writer, 'override_iptables', object.override_iptables) unless object.override_iptables.nil?
|
@@ -3271,6 +3272,7 @@ module OvirtSDK4
|
|
3271
3272
|
MemoryPolicyWriter.write_one(object.memory_policy, writer, 'memory_policy') unless object.memory_policy.nil?
|
3272
3273
|
MigrationOptionsWriter.write_one(object.migration, writer, 'migration') unless object.migration.nil?
|
3273
3274
|
Writer.write_integer(writer, 'migration_downtime', object.migration_downtime) unless object.migration_downtime.nil?
|
3275
|
+
Writer.write_boolean(writer, 'multi_queues_enabled', object.multi_queues_enabled) unless object.multi_queues_enabled.nil?
|
3274
3276
|
Writer.write_string(writer, 'name', object.name) unless object.name.nil?
|
3275
3277
|
Writer.write_string(writer, 'origin', object.origin) unless object.origin.nil?
|
3276
3278
|
OperatingSystemWriter.write_one(object.os, writer, 'os') unless object.os.nil?
|
@@ -4434,6 +4436,8 @@ module OvirtSDK4
|
|
4434
4436
|
Writer.write_string(writer, 'name', object.name) unless object.name.nil?
|
4435
4437
|
Writer.write_string(writer, 'password', object.password) unless object.password.nil?
|
4436
4438
|
Writer.write_string(writer, 'plugin_type', object.plugin_type) unless object.plugin_type.nil?
|
4439
|
+
Writer.write_string(writer, 'project_domain_name', object.project_domain_name) unless object.project_domain_name.nil?
|
4440
|
+
Writer.write_string(writer, 'project_name', object.project_name) unless object.project_name.nil?
|
4437
4441
|
PropertyWriter.write_many(object.properties, writer, 'property', 'properties') unless object.properties.nil?
|
4438
4442
|
Writer.write_boolean(writer, 'read_only', object.read_only) unless object.read_only.nil?
|
4439
4443
|
Writer.write_boolean(writer, 'requires_authentication', object.requires_authentication) unless object.requires_authentication.nil?
|
@@ -4441,6 +4445,7 @@ module OvirtSDK4
|
|
4441
4445
|
Writer.write_string(writer, 'type', object.type) unless object.type.nil?
|
4442
4446
|
Writer.write_boolean(writer, 'unmanaged', object.unmanaged) unless object.unmanaged.nil?
|
4443
4447
|
Writer.write_string(writer, 'url', object.url) unless object.url.nil?
|
4448
|
+
Writer.write_string(writer, 'user_domain_name', object.user_domain_name) unless object.user_domain_name.nil?
|
4444
4449
|
Writer.write_string(writer, 'username', object.username) unless object.username.nil?
|
4445
4450
|
CertificateWriter.write_many(object.certificates, writer, 'certificate', 'certificates') unless object.certificates.nil?
|
4446
4451
|
OpenStackNetworkWriter.write_many(object.networks, writer, 'openstack_network', 'networks') unless object.networks.nil?
|
@@ -5931,6 +5936,7 @@ module OvirtSDK4
|
|
5931
5936
|
MemoryPolicyWriter.write_one(object.memory_policy, writer, 'memory_policy') unless object.memory_policy.nil?
|
5932
5937
|
MigrationOptionsWriter.write_one(object.migration, writer, 'migration') unless object.migration.nil?
|
5933
5938
|
Writer.write_integer(writer, 'migration_downtime', object.migration_downtime) unless object.migration_downtime.nil?
|
5939
|
+
Writer.write_boolean(writer, 'multi_queues_enabled', object.multi_queues_enabled) unless object.multi_queues_enabled.nil?
|
5934
5940
|
Writer.write_string(writer, 'name', object.name) unless object.name.nil?
|
5935
5941
|
Writer.write_boolean(writer, 'next_run_configuration_exists', object.next_run_configuration_exists) unless object.next_run_configuration_exists.nil?
|
5936
5942
|
Writer.write_string(writer, 'numa_tune_mode', object.numa_tune_mode) unless object.numa_tune_mode.nil?
|
@@ -6266,6 +6272,7 @@ module OvirtSDK4
|
|
6266
6272
|
Writer.write_string(writer, 'type', object.type) unless object.type.nil?
|
6267
6273
|
Writer.write_string(writer, 'username', object.username) unless object.username.nil?
|
6268
6274
|
Writer.write_string(writer, 'vfs_type', object.vfs_type) unless object.vfs_type.nil?
|
6275
|
+
GlusterVolumeWriter.write_one(object.gluster_volume, writer, 'gluster_volume') unless object.gluster_volume.nil?
|
6269
6276
|
HostWriter.write_one(object.host, writer, 'host') unless object.host.nil?
|
6270
6277
|
writer.write_end
|
6271
6278
|
end
|
@@ -6532,6 +6539,7 @@ module OvirtSDK4
|
|
6532
6539
|
MemoryPolicyWriter.write_one(object.memory_policy, writer, 'memory_policy') unless object.memory_policy.nil?
|
6533
6540
|
MigrationOptionsWriter.write_one(object.migration, writer, 'migration') unless object.migration.nil?
|
6534
6541
|
Writer.write_integer(writer, 'migration_downtime', object.migration_downtime) unless object.migration_downtime.nil?
|
6542
|
+
Writer.write_boolean(writer, 'multi_queues_enabled', object.multi_queues_enabled) unless object.multi_queues_enabled.nil?
|
6535
6543
|
Writer.write_string(writer, 'name', object.name) unless object.name.nil?
|
6536
6544
|
Writer.write_string(writer, 'origin', object.origin) unless object.origin.nil?
|
6537
6545
|
OperatingSystemWriter.write_one(object.os, writer, 'os') unless object.os.nil?
|
@@ -7047,6 +7055,7 @@ module OvirtSDK4
|
|
7047
7055
|
MemoryPolicyWriter.write_one(object.memory_policy, writer, 'memory_policy') unless object.memory_policy.nil?
|
7048
7056
|
MigrationOptionsWriter.write_one(object.migration, writer, 'migration') unless object.migration.nil?
|
7049
7057
|
Writer.write_integer(writer, 'migration_downtime', object.migration_downtime) unless object.migration_downtime.nil?
|
7058
|
+
Writer.write_boolean(writer, 'multi_queues_enabled', object.multi_queues_enabled) unless object.multi_queues_enabled.nil?
|
7050
7059
|
Writer.write_string(writer, 'name', object.name) unless object.name.nil?
|
7051
7060
|
Writer.write_boolean(writer, 'next_run_configuration_exists', object.next_run_configuration_exists) unless object.next_run_configuration_exists.nil?
|
7052
7061
|
Writer.write_string(writer, 'numa_tune_mode', object.numa_tune_mode) unless object.numa_tune_mode.nil?
|
@@ -7151,6 +7160,7 @@ module OvirtSDK4
|
|
7151
7160
|
MemoryPolicyWriter.write_one(object.memory_policy, writer, 'memory_policy') unless object.memory_policy.nil?
|
7152
7161
|
MigrationOptionsWriter.write_one(object.migration, writer, 'migration') unless object.migration.nil?
|
7153
7162
|
Writer.write_integer(writer, 'migration_downtime', object.migration_downtime) unless object.migration_downtime.nil?
|
7163
|
+
Writer.write_boolean(writer, 'multi_queues_enabled', object.multi_queues_enabled) unless object.multi_queues_enabled.nil?
|
7154
7164
|
Writer.write_string(writer, 'name', object.name) unless object.name.nil?
|
7155
7165
|
Writer.write_string(writer, 'origin', object.origin) unless object.origin.nil?
|
7156
7166
|
OperatingSystemWriter.write_one(object.os, writer, 'os') unless object.os.nil?
|