ovirt-engine-sdk 4.2.0.alpha4 → 4.2.0.alpha5

Sign up to get free protection for your applications and to get access to all the features.
@@ -371,7 +371,9 @@ module OvirtSDK4
371
371
  def internal_read_body(response)
372
372
  # First check if the response body is empty, as it makes no sense to check the content type if there is
373
373
  # no body:
374
- connection.raise_error(response, nil) if response.body.nil? || response.body.length.zero?
374
+ if response.body.nil? || response.body.length.zero?
375
+ connection.raise_error(response, 'The response body is empty')
376
+ end
375
377
 
376
378
  # Check the content type, as otherwise the parsing will fail, and the resulting error message won't be explicit
377
379
  # about the cause of the problem:
@@ -272,6 +272,9 @@ module OvirtSDK4
272
272
  class FiltersService < Service
273
273
  end
274
274
 
275
+ class FollowService < Service
276
+ end
277
+
275
278
  class GlusterBricksService < Service
276
279
  end
277
280
 
@@ -815,6 +818,7 @@ module OvirtSDK4
815
818
  class AffinityGroupService < Service
816
819
 
817
820
  GET = [
821
+ [:follow, String].freeze,
818
822
  ].freeze
819
823
 
820
824
  private_constant :GET
@@ -834,6 +838,9 @@ module OvirtSDK4
834
838
  #
835
839
  # @param opts [Hash] Additional options.
836
840
  #
841
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
842
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
843
+ #
837
844
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
838
845
  #
839
846
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -1046,6 +1053,7 @@ module OvirtSDK4
1046
1053
  end
1047
1054
 
1048
1055
  LIST = [
1056
+ [:follow, String].freeze,
1049
1057
  [:max, Integer].freeze,
1050
1058
  ].freeze
1051
1059
 
@@ -1058,6 +1066,9 @@ module OvirtSDK4
1058
1066
  #
1059
1067
  # @param opts [Hash] Additional options.
1060
1068
  #
1069
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
1070
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
1071
+ #
1061
1072
  # @option opts [Integer] :max Sets the maximum number of virtual machines to return. If not specified, all the virtual machines are
1062
1073
  # returned.
1063
1074
  #
@@ -1169,6 +1180,7 @@ module OvirtSDK4
1169
1180
  end
1170
1181
 
1171
1182
  LIST = [
1183
+ [:follow, String].freeze,
1172
1184
  [:max, Integer].freeze,
1173
1185
  ].freeze
1174
1186
 
@@ -1181,6 +1193,9 @@ module OvirtSDK4
1181
1193
  #
1182
1194
  # @param opts [Hash] Additional options.
1183
1195
  #
1196
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
1197
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
1198
+ #
1184
1199
  # @option opts [Integer] :max Sets the maximum number of affinity groups to return. If not specified all the affinity groups are returned.
1185
1200
  #
1186
1201
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -1241,6 +1256,7 @@ module OvirtSDK4
1241
1256
  class AffinityLabelService < Service
1242
1257
 
1243
1258
  GET = [
1259
+ [:follow, String].freeze,
1244
1260
  ].freeze
1245
1261
 
1246
1262
  private_constant :GET
@@ -1250,6 +1266,9 @@ module OvirtSDK4
1250
1266
  #
1251
1267
  # @param opts [Hash] Additional options.
1252
1268
  #
1269
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
1270
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
1271
+ #
1253
1272
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
1254
1273
  #
1255
1274
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -1374,6 +1393,7 @@ module OvirtSDK4
1374
1393
  class AffinityLabelHostService < Service
1375
1394
 
1376
1395
  GET = [
1396
+ [:follow, String].freeze,
1377
1397
  ].freeze
1378
1398
 
1379
1399
  private_constant :GET
@@ -1383,6 +1403,9 @@ module OvirtSDK4
1383
1403
  #
1384
1404
  # @param opts [Hash] Additional options.
1385
1405
  #
1406
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
1407
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
1408
+ #
1386
1409
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
1387
1410
  #
1388
1411
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -1476,6 +1499,7 @@ module OvirtSDK4
1476
1499
  end
1477
1500
 
1478
1501
  LIST = [
1502
+ [:follow, String].freeze,
1479
1503
  ].freeze
1480
1504
 
1481
1505
  private_constant :LIST
@@ -1487,6 +1511,9 @@ module OvirtSDK4
1487
1511
  #
1488
1512
  # @param opts [Hash] Additional options.
1489
1513
  #
1514
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
1515
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
1516
+ #
1490
1517
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
1491
1518
  #
1492
1519
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -1546,6 +1573,7 @@ module OvirtSDK4
1546
1573
  class AffinityLabelVmService < Service
1547
1574
 
1548
1575
  GET = [
1576
+ [:follow, String].freeze,
1549
1577
  ].freeze
1550
1578
 
1551
1579
  private_constant :GET
@@ -1555,6 +1583,9 @@ module OvirtSDK4
1555
1583
  #
1556
1584
  # @param opts [Hash] Additional options.
1557
1585
  #
1586
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
1587
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
1588
+ #
1558
1589
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
1559
1590
  #
1560
1591
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -1648,6 +1679,7 @@ module OvirtSDK4
1648
1679
  end
1649
1680
 
1650
1681
  LIST = [
1682
+ [:follow, String].freeze,
1651
1683
  ].freeze
1652
1684
 
1653
1685
  private_constant :LIST
@@ -1659,6 +1691,9 @@ module OvirtSDK4
1659
1691
  #
1660
1692
  # @param opts [Hash] Additional options.
1661
1693
  #
1694
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
1695
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
1696
+ #
1662
1697
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
1663
1698
  #
1664
1699
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -1746,6 +1781,7 @@ module OvirtSDK4
1746
1781
  end
1747
1782
 
1748
1783
  LIST = [
1784
+ [:follow, String].freeze,
1749
1785
  [:max, Integer].freeze,
1750
1786
  ].freeze
1751
1787
 
@@ -1758,6 +1794,9 @@ module OvirtSDK4
1758
1794
  #
1759
1795
  # @param opts [Hash] Additional options.
1760
1796
  #
1797
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
1798
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
1799
+ #
1761
1800
  # @option opts [Integer] :max Sets the maximum number of labels to return. If not specified all the labels are returned.
1762
1801
  #
1763
1802
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -1845,6 +1884,7 @@ module OvirtSDK4
1845
1884
  class AssignedAffinityLabelService < Service
1846
1885
 
1847
1886
  GET = [
1887
+ [:follow, String].freeze,
1848
1888
  ].freeze
1849
1889
 
1850
1890
  private_constant :GET
@@ -1854,6 +1894,9 @@ module OvirtSDK4
1854
1894
  #
1855
1895
  # @param opts [Hash] Additional options.
1856
1896
  #
1897
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
1898
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
1899
+ #
1857
1900
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
1858
1901
  #
1859
1902
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -1947,6 +1990,7 @@ module OvirtSDK4
1947
1990
  end
1948
1991
 
1949
1992
  LIST = [
1993
+ [:follow, String].freeze,
1950
1994
  ].freeze
1951
1995
 
1952
1996
  private_constant :LIST
@@ -1958,6 +2002,9 @@ module OvirtSDK4
1958
2002
  #
1959
2003
  # @param opts [Hash] Additional options.
1960
2004
  #
2005
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2006
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2007
+ #
1961
2008
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
1962
2009
  #
1963
2010
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -2017,6 +2064,7 @@ module OvirtSDK4
2017
2064
  class AssignedCpuProfileService < Service
2018
2065
 
2019
2066
  GET = [
2067
+ [:follow, String].freeze,
2020
2068
  ].freeze
2021
2069
 
2022
2070
  private_constant :GET
@@ -2026,6 +2074,9 @@ module OvirtSDK4
2026
2074
  #
2027
2075
  # @param opts [Hash] Additional options.
2028
2076
  #
2077
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2078
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2079
+ #
2029
2080
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
2030
2081
  #
2031
2082
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -2121,6 +2172,7 @@ module OvirtSDK4
2121
2172
  end
2122
2173
 
2123
2174
  LIST = [
2175
+ [:follow, String].freeze,
2124
2176
  [:max, Integer].freeze,
2125
2177
  ].freeze
2126
2178
 
@@ -2133,6 +2185,9 @@ module OvirtSDK4
2133
2185
  #
2134
2186
  # @param opts [Hash] Additional options.
2135
2187
  #
2188
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2189
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2190
+ #
2136
2191
  # @option opts [Integer] :max Sets the maximum number of profiles to return. If not specified all the profiles are returned.
2137
2192
  #
2138
2193
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -2193,6 +2248,7 @@ module OvirtSDK4
2193
2248
  class AssignedDiskProfileService < Service
2194
2249
 
2195
2250
  GET = [
2251
+ [:follow, String].freeze,
2196
2252
  ].freeze
2197
2253
 
2198
2254
  private_constant :GET
@@ -2202,6 +2258,9 @@ module OvirtSDK4
2202
2258
  #
2203
2259
  # @param opts [Hash] Additional options.
2204
2260
  #
2261
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2262
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2263
+ #
2205
2264
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
2206
2265
  #
2207
2266
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -2297,6 +2356,7 @@ module OvirtSDK4
2297
2356
  end
2298
2357
 
2299
2358
  LIST = [
2359
+ [:follow, String].freeze,
2300
2360
  [:max, Integer].freeze,
2301
2361
  ].freeze
2302
2362
 
@@ -2309,6 +2369,9 @@ module OvirtSDK4
2309
2369
  #
2310
2370
  # @param opts [Hash] Additional options.
2311
2371
  #
2372
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2373
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2374
+ #
2312
2375
  # @option opts [Integer] :max Sets the maximum number of profiles to return. If not specified all the profiles are returned.
2313
2376
  #
2314
2377
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -2453,6 +2516,7 @@ module OvirtSDK4
2453
2516
  end
2454
2517
 
2455
2518
  LIST = [
2519
+ [:follow, String].freeze,
2456
2520
  ].freeze
2457
2521
 
2458
2522
  private_constant :LIST
@@ -2486,6 +2550,9 @@ module OvirtSDK4
2486
2550
  #
2487
2551
  # @param opts [Hash] Additional options.
2488
2552
  #
2553
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2554
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2555
+ #
2489
2556
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
2490
2557
  #
2491
2558
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -2545,6 +2612,7 @@ module OvirtSDK4
2545
2612
  class AssignedRolesService < Service
2546
2613
 
2547
2614
  LIST = [
2615
+ [:follow, String].freeze,
2548
2616
  [:max, Integer].freeze,
2549
2617
  ].freeze
2550
2618
 
@@ -2557,6 +2625,9 @@ module OvirtSDK4
2557
2625
  #
2558
2626
  # @param opts [Hash] Additional options.
2559
2627
  #
2628
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2629
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2630
+ #
2560
2631
  # @option opts [Integer] :max Sets the maximum number of roles to return. If not specified all the roles are returned.
2561
2632
  #
2562
2633
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -2617,6 +2688,7 @@ module OvirtSDK4
2617
2688
  class AssignedTagService < Service
2618
2689
 
2619
2690
  GET = [
2691
+ [:follow, String].freeze,
2620
2692
  ].freeze
2621
2693
 
2622
2694
  private_constant :GET
@@ -2642,6 +2714,9 @@ module OvirtSDK4
2642
2714
  #
2643
2715
  # @param opts [Hash] Additional options.
2644
2716
  #
2717
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2718
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2719
+ #
2645
2720
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
2646
2721
  #
2647
2722
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -2758,6 +2833,7 @@ module OvirtSDK4
2758
2833
  end
2759
2834
 
2760
2835
  LIST = [
2836
+ [:follow, String].freeze,
2761
2837
  [:max, Integer].freeze,
2762
2838
  ].freeze
2763
2839
 
@@ -2787,6 +2863,9 @@ module OvirtSDK4
2787
2863
  #
2788
2864
  # @param opts [Hash] Additional options.
2789
2865
  #
2866
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2867
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2868
+ #
2790
2869
  # @option opts [Integer] :max Sets the maximum number of tags to return. If not specified all the tags are returned.
2791
2870
  #
2792
2871
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -2847,6 +2926,7 @@ module OvirtSDK4
2847
2926
  class AssignedVnicProfileService < Service
2848
2927
 
2849
2928
  GET = [
2929
+ [:follow, String].freeze,
2850
2930
  ].freeze
2851
2931
 
2852
2932
  private_constant :GET
@@ -2856,6 +2936,9 @@ module OvirtSDK4
2856
2936
  #
2857
2937
  # @param opts [Hash] Additional options.
2858
2938
  #
2939
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
2940
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
2941
+ #
2859
2942
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
2860
2943
  #
2861
2944
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -2966,6 +3049,7 @@ module OvirtSDK4
2966
3049
  end
2967
3050
 
2968
3051
  LIST = [
3052
+ [:follow, String].freeze,
2969
3053
  [:max, Integer].freeze,
2970
3054
  ].freeze
2971
3055
 
@@ -2978,6 +3062,9 @@ module OvirtSDK4
2978
3062
  #
2979
3063
  # @param opts [Hash] Additional options.
2980
3064
  #
3065
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
3066
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
3067
+ #
2981
3068
  # @option opts [Integer] :max Sets the maximum number of profiles to return. If not specified all the profiles are returned.
2982
3069
  #
2983
3070
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -3079,6 +3166,7 @@ module OvirtSDK4
3079
3166
 
3080
3167
  DEACTIVATE = [
3081
3168
  [:async, TrueClass].freeze,
3169
+ [:force, TrueClass].freeze,
3082
3170
  ].freeze
3083
3171
 
3084
3172
  private_constant :DEACTIVATE
@@ -3086,24 +3174,48 @@ module OvirtSDK4
3086
3174
  #
3087
3175
  # This operation deactivates an attached storage domain.
3088
3176
  # Once the storage domain is deactivated it will not be used with the data center.
3177
+ # For example, to deactivate storage domain `456`, send the following request:
3089
3178
  #
3090
3179
  # [source]
3091
3180
  # ----
3092
3181
  # POST /ovirt-engine/api/datacenters/123/storagedomains/456/deactivate
3093
3182
  # ----
3094
3183
  #
3095
- # The deactivate action does not take any action specific parameters,
3096
- # so the request body should contain an empty `action`:
3184
+ # With a request body like this:
3097
3185
  #
3098
3186
  # [source,xml]
3099
3187
  # ----
3100
3188
  # <action/>
3101
3189
  # ----
3102
3190
  #
3191
+ # If the `force` parameter is `true` then the operation will succeed, even if the OVF update which takes place
3192
+ # before the deactivation of the storage domain failed. If the `force` parameter is `false` and the OVF update failed,
3193
+ # the deactivation of the storage domain will also fail.
3194
+ #
3103
3195
  # @param opts [Hash] Additional options.
3104
3196
  #
3105
3197
  # @option opts [Boolean] :async Indicates if the deactivation should be performed asynchronously.
3106
3198
  #
3199
+ # @option opts [Boolean] :force Indicates if the operation should succeed and the storage domain should be moved to a deactivated state, even if
3200
+ # the OVF update for the storage domain failed.
3201
+ # For example, to deactivate storage domain `456` using force flag, send the following request:
3202
+ #
3203
+ # [source]
3204
+ # ----
3205
+ # POST /ovirt-engine/api/datacenters/123/storagedomains/456/deactivate
3206
+ # ----
3207
+ #
3208
+ # With a request body like this:
3209
+ #
3210
+ # [source,xml]
3211
+ # ----
3212
+ # <action>
3213
+ # <force>true</force>
3214
+ # <action>
3215
+ # ----
3216
+ #
3217
+ # This parameter is optional, and the default value is `false`.
3218
+ #
3107
3219
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
3108
3220
  #
3109
3221
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -3118,6 +3230,7 @@ module OvirtSDK4
3118
3230
  end
3119
3231
 
3120
3232
  GET = [
3233
+ [:follow, String].freeze,
3121
3234
  ].freeze
3122
3235
 
3123
3236
  private_constant :GET
@@ -3127,6 +3240,9 @@ module OvirtSDK4
3127
3240
  #
3128
3241
  # @param opts [Hash] Additional options.
3129
3242
  #
3243
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
3244
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
3245
+ #
3130
3246
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
3131
3247
  #
3132
3248
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -3280,6 +3396,7 @@ module OvirtSDK4
3280
3396
  end
3281
3397
 
3282
3398
  LIST = [
3399
+ [:follow, String].freeze,
3283
3400
  [:max, Integer].freeze,
3284
3401
  ].freeze
3285
3402
 
@@ -3290,6 +3407,9 @@ module OvirtSDK4
3290
3407
  #
3291
3408
  # @param opts [Hash] Additional options.
3292
3409
  #
3410
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
3411
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
3412
+ #
3293
3413
  # @option opts [Integer] :max Sets the maximum number of disks to return. If not specified all the disks are returned.
3294
3414
  #
3295
3415
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -3377,6 +3497,7 @@ module OvirtSDK4
3377
3497
  end
3378
3498
 
3379
3499
  LIST = [
3500
+ [:follow, String].freeze,
3380
3501
  [:max, Integer].freeze,
3381
3502
  ].freeze
3382
3503
 
@@ -3389,6 +3510,9 @@ module OvirtSDK4
3389
3510
  #
3390
3511
  # @param opts [Hash] Additional options.
3391
3512
  #
3513
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
3514
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
3515
+ #
3392
3516
  # @option opts [Integer] :max Sets the maximum number of storage domains to return. If not specified all the storage domains are returned.
3393
3517
  #
3394
3518
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -3450,6 +3574,7 @@ module OvirtSDK4
3450
3574
 
3451
3575
  GET = [
3452
3576
  [:filter, TrueClass].freeze,
3577
+ [:follow, String].freeze,
3453
3578
  ].freeze
3454
3579
 
3455
3580
  private_constant :GET
@@ -3461,6 +3586,9 @@ module OvirtSDK4
3461
3586
  #
3462
3587
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
3463
3588
  #
3589
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
3590
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
3591
+ #
3464
3592
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
3465
3593
  #
3466
3594
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -3557,6 +3685,7 @@ module OvirtSDK4
3557
3685
 
3558
3686
  LIST = [
3559
3687
  [:filter, TrueClass].freeze,
3688
+ [:follow, String].freeze,
3560
3689
  [:max, Integer].freeze,
3561
3690
  ].freeze
3562
3691
 
@@ -3571,6 +3700,9 @@ module OvirtSDK4
3571
3700
  #
3572
3701
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
3573
3702
  #
3703
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
3704
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
3705
+ #
3574
3706
  # @option opts [Integer] :max Sets the maximum number of balances to return. If not specified all the balances are returned.
3575
3707
  #
3576
3708
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -3631,6 +3763,7 @@ module OvirtSDK4
3631
3763
  class BookmarkService < Service
3632
3764
 
3633
3765
  GET = [
3766
+ [:follow, String].freeze,
3634
3767
  ].freeze
3635
3768
 
3636
3769
  private_constant :GET
@@ -3655,6 +3788,9 @@ module OvirtSDK4
3655
3788
  #
3656
3789
  # @param opts [Hash] Additional options.
3657
3790
  #
3791
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
3792
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
3793
+ #
3658
3794
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
3659
3795
  #
3660
3796
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -3818,6 +3954,7 @@ module OvirtSDK4
3818
3954
  end
3819
3955
 
3820
3956
  LIST = [
3957
+ [:follow, String].freeze,
3821
3958
  [:max, Integer].freeze,
3822
3959
  ].freeze
3823
3960
 
@@ -3851,6 +3988,9 @@ module OvirtSDK4
3851
3988
  #
3852
3989
  # @param opts [Hash] Additional options.
3853
3990
  #
3991
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
3992
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
3993
+ #
3854
3994
  # @option opts [Integer] :max Sets the maximum number of bookmarks to return. If not specified all the bookmarks are returned.
3855
3995
  #
3856
3996
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -3912,6 +4052,7 @@ module OvirtSDK4
3912
4052
 
3913
4053
  GET = [
3914
4054
  [:filter, TrueClass].freeze,
4055
+ [:follow, String].freeze,
3915
4056
  ].freeze
3916
4057
 
3917
4058
  private_constant :GET
@@ -4001,6 +4142,9 @@ module OvirtSDK4
4001
4142
  #
4002
4143
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
4003
4144
  #
4145
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
4146
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
4147
+ #
4004
4148
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
4005
4149
  #
4006
4150
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -4284,6 +4428,7 @@ module OvirtSDK4
4284
4428
  class ClusterEnabledFeatureService < Service
4285
4429
 
4286
4430
  GET = [
4431
+ [:follow, String].freeze,
4287
4432
  ].freeze
4288
4433
 
4289
4434
  private_constant :GET
@@ -4309,6 +4454,9 @@ module OvirtSDK4
4309
4454
  #
4310
4455
  # @param opts [Hash] Additional options.
4311
4456
  #
4457
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
4458
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
4459
+ #
4312
4460
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
4313
4461
  #
4314
4462
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -4423,6 +4571,7 @@ module OvirtSDK4
4423
4571
  end
4424
4572
 
4425
4573
  LIST = [
4574
+ [:follow, String].freeze,
4426
4575
  ].freeze
4427
4576
 
4428
4577
  private_constant :LIST
@@ -4451,6 +4600,9 @@ module OvirtSDK4
4451
4600
  #
4452
4601
  # @param opts [Hash] Additional options.
4453
4602
  #
4603
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
4604
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
4605
+ #
4454
4606
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
4455
4607
  #
4456
4608
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -4510,6 +4662,7 @@ module OvirtSDK4
4510
4662
  class ClusterExternalProvidersService < Service
4511
4663
 
4512
4664
  LIST = [
4665
+ [:follow, String].freeze,
4513
4666
  ].freeze
4514
4667
 
4515
4668
  private_constant :LIST
@@ -4521,6 +4674,9 @@ module OvirtSDK4
4521
4674
  #
4522
4675
  # @param opts [Hash] Additional options.
4523
4676
  #
4677
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
4678
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
4679
+ #
4524
4680
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
4525
4681
  #
4526
4682
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -4564,6 +4720,7 @@ module OvirtSDK4
4564
4720
  class ClusterFeatureService < Service
4565
4721
 
4566
4722
  GET = [
4723
+ [:follow, String].freeze,
4567
4724
  ].freeze
4568
4725
 
4569
4726
  private_constant :GET
@@ -4589,6 +4746,9 @@ module OvirtSDK4
4589
4746
  #
4590
4747
  # @param opts [Hash] Additional options.
4591
4748
  #
4749
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
4750
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
4751
+ #
4592
4752
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
4593
4753
  #
4594
4754
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -4632,6 +4792,7 @@ module OvirtSDK4
4632
4792
  class ClusterFeaturesService < Service
4633
4793
 
4634
4794
  LIST = [
4795
+ [:follow, String].freeze,
4635
4796
  ].freeze
4636
4797
 
4637
4798
  private_constant :LIST
@@ -4658,6 +4819,9 @@ module OvirtSDK4
4658
4819
  #
4659
4820
  # @param opts [Hash] Additional options.
4660
4821
  #
4822
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
4823
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
4824
+ #
4661
4825
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
4662
4826
  #
4663
4827
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -4716,6 +4880,7 @@ module OvirtSDK4
4716
4880
  class ClusterLevelService < Service
4717
4881
 
4718
4882
  GET = [
4883
+ [:follow, String].freeze,
4719
4884
  ].freeze
4720
4885
 
4721
4886
  private_constant :GET
@@ -4756,6 +4921,9 @@ module OvirtSDK4
4756
4921
  #
4757
4922
  # @param opts [Hash] Additional options.
4758
4923
  #
4924
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
4925
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
4926
+ #
4759
4927
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
4760
4928
  #
4761
4929
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -4814,6 +4982,7 @@ module OvirtSDK4
4814
4982
  class ClusterLevelsService < Service
4815
4983
 
4816
4984
  LIST = [
4985
+ [:follow, String].freeze,
4817
4986
  ].freeze
4818
4987
 
4819
4988
  private_constant :LIST
@@ -4842,6 +5011,9 @@ module OvirtSDK4
4842
5011
  #
4843
5012
  # @param opts [Hash] Additional options.
4844
5013
  #
5014
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
5015
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
5016
+ #
4845
5017
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
4846
5018
  #
4847
5019
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -4900,6 +5072,7 @@ module OvirtSDK4
4900
5072
  class ClusterNetworkService < Service
4901
5073
 
4902
5074
  GET = [
5075
+ [:follow, String].freeze,
4903
5076
  ].freeze
4904
5077
 
4905
5078
  private_constant :GET
@@ -4909,6 +5082,9 @@ module OvirtSDK4
4909
5082
  #
4910
5083
  # @param opts [Hash] Additional options.
4911
5084
  #
5085
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
5086
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
5087
+ #
4912
5088
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
4913
5089
  #
4914
5090
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -5042,6 +5218,7 @@ module OvirtSDK4
5042
5218
  end
5043
5219
 
5044
5220
  LIST = [
5221
+ [:follow, String].freeze,
5045
5222
  [:max, Integer].freeze,
5046
5223
  ].freeze
5047
5224
 
@@ -5054,6 +5231,9 @@ module OvirtSDK4
5054
5231
  #
5055
5232
  # @param opts [Hash] Additional options.
5056
5233
  #
5234
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
5235
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
5236
+ #
5057
5237
  # @option opts [Integer] :max Sets the maximum number of networks to return. If not specified, all the networks are returned.
5058
5238
  #
5059
5239
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -5188,6 +5368,7 @@ module OvirtSDK4
5188
5368
  LIST = [
5189
5369
  [:case_sensitive, TrueClass].freeze,
5190
5370
  [:filter, TrueClass].freeze,
5371
+ [:follow, String].freeze,
5191
5372
  [:max, Integer].freeze,
5192
5373
  [:search, String].freeze,
5193
5374
  ].freeze
@@ -5208,6 +5389,9 @@ module OvirtSDK4
5208
5389
  #
5209
5390
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
5210
5391
  #
5392
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
5393
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
5394
+ #
5211
5395
  # @option opts [Integer] :max Sets the maximum number of clusters to return. If not specified, all the clusters are returned.
5212
5396
  #
5213
5397
  # @option opts [String] :search A query string used to restrict the returned clusters.
@@ -5323,6 +5507,7 @@ module OvirtSDK4
5323
5507
  class CpuProfileService < Service
5324
5508
 
5325
5509
  GET = [
5510
+ [:follow, String].freeze,
5326
5511
  ].freeze
5327
5512
 
5328
5513
  private_constant :GET
@@ -5332,6 +5517,9 @@ module OvirtSDK4
5332
5517
  #
5333
5518
  # @param opts [Hash] Additional options.
5334
5519
  #
5520
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
5521
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
5522
+ #
5335
5523
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
5336
5524
  #
5337
5525
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -5471,6 +5659,7 @@ module OvirtSDK4
5471
5659
  end
5472
5660
 
5473
5661
  LIST = [
5662
+ [:follow, String].freeze,
5474
5663
  [:max, Integer].freeze,
5475
5664
  ].freeze
5476
5665
 
@@ -5483,6 +5672,9 @@ module OvirtSDK4
5483
5672
  #
5484
5673
  # @param opts [Hash] Additional options.
5485
5674
  #
5675
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
5676
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
5677
+ #
5486
5678
  # @option opts [Integer] :max Sets the maximum number of profiles to return. If not specified all the profiles are returned.
5487
5679
  #
5488
5680
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -5544,6 +5736,7 @@ module OvirtSDK4
5544
5736
 
5545
5737
  GET = [
5546
5738
  [:filter, TrueClass].freeze,
5739
+ [:follow, String].freeze,
5547
5740
  ].freeze
5548
5741
 
5549
5742
  private_constant :GET
@@ -5592,6 +5785,9 @@ module OvirtSDK4
5592
5785
  #
5593
5786
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
5594
5787
  #
5788
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
5789
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
5790
+ #
5595
5791
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
5596
5792
  #
5597
5793
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -5853,6 +6049,7 @@ module OvirtSDK4
5853
6049
  class DataCenterNetworkService < Service
5854
6050
 
5855
6051
  GET = [
6052
+ [:follow, String].freeze,
5856
6053
  ].freeze
5857
6054
 
5858
6055
  private_constant :GET
@@ -5862,6 +6059,9 @@ module OvirtSDK4
5862
6059
  #
5863
6060
  # @param opts [Hash] Additional options.
5864
6061
  #
6062
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
6063
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
6064
+ #
5865
6065
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
5866
6066
  #
5867
6067
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -5997,6 +6197,7 @@ module OvirtSDK4
5997
6197
  end
5998
6198
 
5999
6199
  LIST = [
6200
+ [:follow, String].freeze,
6000
6201
  [:max, Integer].freeze,
6001
6202
  ].freeze
6002
6203
 
@@ -6009,6 +6210,9 @@ module OvirtSDK4
6009
6210
  #
6010
6211
  # @param opts [Hash] Additional options.
6011
6212
  #
6213
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
6214
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
6215
+ #
6012
6216
  # @option opts [Integer] :max Sets the maximum number of networks to return. If not specified, all the networks are returned.
6013
6217
  #
6014
6218
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -6116,6 +6320,7 @@ module OvirtSDK4
6116
6320
  LIST = [
6117
6321
  [:case_sensitive, TrueClass].freeze,
6118
6322
  [:filter, TrueClass].freeze,
6323
+ [:follow, String].freeze,
6119
6324
  [:max, Integer].freeze,
6120
6325
  [:search, String].freeze,
6121
6326
  ].freeze
@@ -6192,6 +6397,9 @@ module OvirtSDK4
6192
6397
  #
6193
6398
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
6194
6399
  #
6400
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
6401
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
6402
+ #
6195
6403
  # @option opts [Integer] :max Sets the maximum number of data centers to return. If not specified all the data centers are returned.
6196
6404
  #
6197
6405
  # @option opts [String] :search A query string used to restrict the returned data centers.
@@ -6254,6 +6462,7 @@ module OvirtSDK4
6254
6462
  class DiskAttachmentService < Service
6255
6463
 
6256
6464
  GET = [
6465
+ [:follow, String].freeze,
6257
6466
  ].freeze
6258
6467
 
6259
6468
  private_constant :GET
@@ -6281,6 +6490,9 @@ module OvirtSDK4
6281
6490
  #
6282
6491
  # @param opts [Hash] Additional options.
6283
6492
  #
6493
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
6494
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
6495
+ #
6284
6496
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
6285
6497
  #
6286
6498
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -6471,6 +6683,7 @@ module OvirtSDK4
6471
6683
  end
6472
6684
 
6473
6685
  LIST = [
6686
+ [:follow, String].freeze,
6474
6687
  ].freeze
6475
6688
 
6476
6689
  private_constant :LIST
@@ -6482,6 +6695,9 @@ module OvirtSDK4
6482
6695
  #
6483
6696
  # @param opts [Hash] Additional options.
6484
6697
  #
6698
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
6699
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
6700
+ #
6485
6701
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
6486
6702
  #
6487
6703
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -6540,6 +6756,7 @@ module OvirtSDK4
6540
6756
  class DiskProfileService < Service
6541
6757
 
6542
6758
  GET = [
6759
+ [:follow, String].freeze,
6543
6760
  ].freeze
6544
6761
 
6545
6762
  private_constant :GET
@@ -6549,6 +6766,9 @@ module OvirtSDK4
6549
6766
  #
6550
6767
  # @param opts [Hash] Additional options.
6551
6768
  #
6769
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
6770
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
6771
+ #
6552
6772
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
6553
6773
  #
6554
6774
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -6688,6 +6908,7 @@ module OvirtSDK4
6688
6908
  end
6689
6909
 
6690
6910
  LIST = [
6911
+ [:follow, String].freeze,
6691
6912
  [:max, Integer].freeze,
6692
6913
  ].freeze
6693
6914
 
@@ -6700,6 +6921,9 @@ module OvirtSDK4
6700
6921
  #
6701
6922
  # @param opts [Hash] Additional options.
6702
6923
  #
6924
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
6925
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
6926
+ #
6703
6927
  # @option opts [Integer] :max Sets the maximum number of profiles to return. If not specified all the profiles are returned.
6704
6928
  #
6705
6929
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -6760,6 +6984,7 @@ module OvirtSDK4
6760
6984
  class DiskSnapshotService < Service
6761
6985
 
6762
6986
  GET = [
6987
+ [:follow, String].freeze,
6763
6988
  ].freeze
6764
6989
 
6765
6990
  private_constant :GET
@@ -6769,6 +6994,9 @@ module OvirtSDK4
6769
6994
  #
6770
6995
  # @param opts [Hash] Additional options.
6771
6996
  #
6997
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
6998
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
6999
+ #
6772
7000
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
6773
7001
  #
6774
7002
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -6837,6 +7065,7 @@ module OvirtSDK4
6837
7065
  class DiskSnapshotsService < Service
6838
7066
 
6839
7067
  LIST = [
7068
+ [:follow, String].freeze,
6840
7069
  [:max, Integer].freeze,
6841
7070
  ].freeze
6842
7071
 
@@ -6849,6 +7078,9 @@ module OvirtSDK4
6849
7078
  #
6850
7079
  # @param opts [Hash] Additional options.
6851
7080
  #
7081
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
7082
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
7083
+ #
6852
7084
  # @option opts [Integer] :max Sets the maximum number of snapshots to return. If not specified all the snapshots are returned.
6853
7085
  #
6854
7086
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -7086,6 +7318,7 @@ module OvirtSDK4
7086
7318
 
7087
7319
  LIST = [
7088
7320
  [:case_sensitive, TrueClass].freeze,
7321
+ [:follow, String].freeze,
7089
7322
  [:max, Integer].freeze,
7090
7323
  [:search, String].freeze,
7091
7324
  ].freeze
@@ -7134,6 +7367,9 @@ module OvirtSDK4
7134
7367
  # account. The default value is `true`, which means that case is taken into account. If you want to search
7135
7368
  # ignoring case set it to `false`.
7136
7369
  #
7370
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
7371
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
7372
+ #
7137
7373
  # @option opts [Integer] :max Sets the maximum number of disks to return. If not specified all the disks are returned.
7138
7374
  #
7139
7375
  # @option opts [String] :search A query string used to restrict the returned disks.
@@ -7196,6 +7432,7 @@ module OvirtSDK4
7196
7432
  class DomainService < Service
7197
7433
 
7198
7434
  GET = [
7435
+ [:follow, String].freeze,
7199
7436
  ].freeze
7200
7437
 
7201
7438
  private_constant :GET
@@ -7224,6 +7461,9 @@ module OvirtSDK4
7224
7461
  #
7225
7462
  # @param opts [Hash] Additional options.
7226
7463
  #
7464
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
7465
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
7466
+ #
7227
7467
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
7228
7468
  #
7229
7469
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -7297,6 +7537,7 @@ module OvirtSDK4
7297
7537
  class DomainGroupService < Service
7298
7538
 
7299
7539
  GET = [
7540
+ [:follow, String].freeze,
7300
7541
  ].freeze
7301
7542
 
7302
7543
  private_constant :GET
@@ -7306,6 +7547,9 @@ module OvirtSDK4
7306
7547
  #
7307
7548
  # @param opts [Hash] Additional options.
7308
7549
  #
7550
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
7551
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
7552
+ #
7309
7553
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
7310
7554
  #
7311
7555
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -7350,6 +7594,7 @@ module OvirtSDK4
7350
7594
 
7351
7595
  LIST = [
7352
7596
  [:case_sensitive, TrueClass].freeze,
7597
+ [:follow, String].freeze,
7353
7598
  [:max, Integer].freeze,
7354
7599
  [:search, String].freeze,
7355
7600
  ].freeze
@@ -7367,6 +7612,9 @@ module OvirtSDK4
7367
7612
  # account. The default value is `true`, which means that case is taken into account. If you want to search
7368
7613
  # ignoring case set it to `false`.
7369
7614
  #
7615
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
7616
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
7617
+ #
7370
7618
  # @option opts [Integer] :max Sets the maximum number of groups to return. If not specified all the groups are returned.
7371
7619
  #
7372
7620
  # @option opts [String] :search A query string used to restrict the returned groups.
@@ -7429,6 +7677,7 @@ module OvirtSDK4
7429
7677
  class DomainUserService < Service
7430
7678
 
7431
7679
  GET = [
7680
+ [:follow, String].freeze,
7432
7681
  ].freeze
7433
7682
 
7434
7683
  private_constant :GET
@@ -7460,6 +7709,9 @@ module OvirtSDK4
7460
7709
  #
7461
7710
  # @param opts [Hash] Additional options.
7462
7711
  #
7712
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
7713
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
7714
+ #
7463
7715
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
7464
7716
  #
7465
7717
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -7504,6 +7756,7 @@ module OvirtSDK4
7504
7756
 
7505
7757
  LIST = [
7506
7758
  [:case_sensitive, TrueClass].freeze,
7759
+ [:follow, String].freeze,
7507
7760
  [:max, Integer].freeze,
7508
7761
  [:search, String].freeze,
7509
7762
  ].freeze
@@ -7545,6 +7798,9 @@ module OvirtSDK4
7545
7798
  # account. The default value is `true`, which means that case is taken into account. If you want to search
7546
7799
  # ignoring case set it to `false`.
7547
7800
  #
7801
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
7802
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
7803
+ #
7548
7804
  # @option opts [Integer] :max Sets the maximum number of users to return. If not specified all the users are returned.
7549
7805
  #
7550
7806
  # @option opts [String] :search A query string used to restrict the returned users.
@@ -7607,6 +7863,7 @@ module OvirtSDK4
7607
7863
  class DomainsService < Service
7608
7864
 
7609
7865
  LIST = [
7866
+ [:follow, String].freeze,
7610
7867
  [:max, Integer].freeze,
7611
7868
  ].freeze
7612
7869
 
@@ -7640,6 +7897,9 @@ module OvirtSDK4
7640
7897
  #
7641
7898
  # @param opts [Hash] Additional options.
7642
7899
  #
7900
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
7901
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
7902
+ #
7643
7903
  # @option opts [Integer] :max Sets the maximum number of domains to return. If not specified all the domains are returned.
7644
7904
  #
7645
7905
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -7700,6 +7960,7 @@ module OvirtSDK4
7700
7960
  class EventService < Service
7701
7961
 
7702
7962
  GET = [
7963
+ [:follow, String].freeze,
7703
7964
  ].freeze
7704
7965
 
7705
7966
  private_constant :GET
@@ -7737,6 +7998,9 @@ module OvirtSDK4
7737
7998
  #
7738
7999
  # @param opts [Hash] Additional options.
7739
8000
  #
8001
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
8002
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
8003
+ #
7740
8004
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
7741
8005
  #
7742
8006
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -7874,6 +8138,7 @@ module OvirtSDK4
7874
8138
 
7875
8139
  LIST = [
7876
8140
  [:case_sensitive, TrueClass].freeze,
8141
+ [:follow, String].freeze,
7877
8142
  [:from, Integer].freeze,
7878
8143
  [:max, Integer].freeze,
7879
8144
  [:search, String].freeze,
@@ -7939,6 +8204,9 @@ module OvirtSDK4
7939
8204
  # account. The default value is `true`, which means that case is taken into account. If you want to search
7940
8205
  # ignoring case set it to `false`.
7941
8206
  #
8207
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
8208
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
8209
+ #
7942
8210
  # @option opts [Integer] :from Indicates the event index after which events should be returned. The indexes of events are
7943
8211
  # strictly increasing, so when this parameter is used only the events with greater indexes
7944
8212
  # will be returned. For example, the following request will return only the events
@@ -8101,6 +8369,7 @@ module OvirtSDK4
8101
8369
  class ExternalComputeResourceService < Service
8102
8370
 
8103
8371
  GET = [
8372
+ [:follow, String].freeze,
8104
8373
  ].freeze
8105
8374
 
8106
8375
  private_constant :GET
@@ -8129,6 +8398,9 @@ module OvirtSDK4
8129
8398
  #
8130
8399
  # @param opts [Hash] Additional options.
8131
8400
  #
8401
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
8402
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
8403
+ #
8132
8404
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
8133
8405
  #
8134
8406
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -8172,6 +8444,7 @@ module OvirtSDK4
8172
8444
  class ExternalComputeResourcesService < Service
8173
8445
 
8174
8446
  LIST = [
8447
+ [:follow, String].freeze,
8175
8448
  [:max, Integer].freeze,
8176
8449
  ].freeze
8177
8450
 
@@ -8206,6 +8479,9 @@ module OvirtSDK4
8206
8479
  #
8207
8480
  # @param opts [Hash] Additional options.
8208
8481
  #
8482
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
8483
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
8484
+ #
8209
8485
  # @option opts [Integer] :max Sets the maximum number of resources to return. If not specified all the resources are returned.
8210
8486
  #
8211
8487
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -8266,6 +8542,7 @@ module OvirtSDK4
8266
8542
  class ExternalDiscoveredHostService < Service
8267
8543
 
8268
8544
  GET = [
8545
+ [:follow, String].freeze,
8269
8546
  ].freeze
8270
8547
 
8271
8548
  private_constant :GET
@@ -8298,6 +8575,9 @@ module OvirtSDK4
8298
8575
  #
8299
8576
  # @param opts [Hash] Additional options.
8300
8577
  #
8578
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
8579
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
8580
+ #
8301
8581
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
8302
8582
  #
8303
8583
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -8341,6 +8621,7 @@ module OvirtSDK4
8341
8621
  class ExternalDiscoveredHostsService < Service
8342
8622
 
8343
8623
  LIST = [
8624
+ [:follow, String].freeze,
8344
8625
  [:max, Integer].freeze,
8345
8626
  ].freeze
8346
8627
 
@@ -8385,6 +8666,9 @@ module OvirtSDK4
8385
8666
  #
8386
8667
  # @param opts [Hash] Additional options.
8387
8668
  #
8669
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
8670
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
8671
+ #
8388
8672
  # @option opts [Integer] :max Sets the maximum number of hosts to return. If not specified all the hosts are returned.
8389
8673
  #
8390
8674
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -8445,6 +8729,7 @@ module OvirtSDK4
8445
8729
  class ExternalHostService < Service
8446
8730
 
8447
8731
  GET = [
8732
+ [:follow, String].freeze,
8448
8733
  ].freeze
8449
8734
 
8450
8735
  private_constant :GET
@@ -8454,6 +8739,9 @@ module OvirtSDK4
8454
8739
  #
8455
8740
  # @param opts [Hash] Additional options.
8456
8741
  #
8742
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
8743
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
8744
+ #
8457
8745
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
8458
8746
  #
8459
8747
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -8497,6 +8785,7 @@ module OvirtSDK4
8497
8785
  class ExternalHostGroupService < Service
8498
8786
 
8499
8787
  GET = [
8788
+ [:follow, String].freeze,
8500
8789
  ].freeze
8501
8790
 
8502
8791
  private_constant :GET
@@ -8526,6 +8815,9 @@ module OvirtSDK4
8526
8815
  #
8527
8816
  # @param opts [Hash] Additional options.
8528
8817
  #
8818
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
8819
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
8820
+ #
8529
8821
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
8530
8822
  #
8531
8823
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -8569,6 +8861,7 @@ module OvirtSDK4
8569
8861
  class ExternalHostGroupsService < Service
8570
8862
 
8571
8863
  LIST = [
8864
+ [:follow, String].freeze,
8572
8865
  [:max, Integer].freeze,
8573
8866
  ].freeze
8574
8867
 
@@ -8607,6 +8900,9 @@ module OvirtSDK4
8607
8900
  #
8608
8901
  # @param opts [Hash] Additional options.
8609
8902
  #
8903
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
8904
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
8905
+ #
8610
8906
  # @option opts [Integer] :max Sets the maximum number of groups to return. If not specified all the groups are returned.
8611
8907
  #
8612
8908
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -8694,6 +8990,7 @@ module OvirtSDK4
8694
8990
  end
8695
8991
 
8696
8992
  LIST = [
8993
+ [:follow, String].freeze,
8697
8994
  [:max, Integer].freeze,
8698
8995
  ].freeze
8699
8996
 
@@ -8706,6 +9003,9 @@ module OvirtSDK4
8706
9003
  #
8707
9004
  # @param opts [Hash] Additional options.
8708
9005
  #
9006
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9007
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9008
+ #
8709
9009
  # @option opts [Integer] :max Sets the maximum number of providers to return. If not specified all the providers are returned.
8710
9010
  #
8711
9011
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -8766,6 +9066,7 @@ module OvirtSDK4
8766
9066
  class ExternalHostsService < Service
8767
9067
 
8768
9068
  LIST = [
9069
+ [:follow, String].freeze,
8769
9070
  [:max, Integer].freeze,
8770
9071
  ].freeze
8771
9072
 
@@ -8778,6 +9079,9 @@ module OvirtSDK4
8778
9079
  #
8779
9080
  # @param opts [Hash] Additional options.
8780
9081
  #
9082
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9083
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9084
+ #
8781
9085
  # @option opts [Integer] :max Sets the maximum number of hosts to return. If not specified all the hosts are returned.
8782
9086
  #
8783
9087
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -8838,6 +9142,7 @@ module OvirtSDK4
8838
9142
  class ExternalNetworkProviderConfigurationService < Service
8839
9143
 
8840
9144
  GET = [
9145
+ [:follow, String].freeze,
8841
9146
  ].freeze
8842
9147
 
8843
9148
  private_constant :GET
@@ -8847,6 +9152,9 @@ module OvirtSDK4
8847
9152
  #
8848
9153
  # @param opts [Hash] Additional options.
8849
9154
  #
9155
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9156
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9157
+ #
8850
9158
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
8851
9159
  #
8852
9160
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -8890,6 +9198,7 @@ module OvirtSDK4
8890
9198
  class ExternalNetworkProviderConfigurationsService < Service
8891
9199
 
8892
9200
  LIST = [
9201
+ [:follow, String].freeze,
8893
9202
  ].freeze
8894
9203
 
8895
9204
  private_constant :LIST
@@ -8901,6 +9210,9 @@ module OvirtSDK4
8901
9210
  #
8902
9211
  # @param opts [Hash] Additional options.
8903
9212
  #
9213
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9214
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9215
+ #
8904
9216
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
8905
9217
  #
8906
9218
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -9059,6 +9371,7 @@ module OvirtSDK4
9059
9371
  class ExternalProviderCertificateService < Service
9060
9372
 
9061
9373
  GET = [
9374
+ [:follow, String].freeze,
9062
9375
  ].freeze
9063
9376
 
9064
9377
  private_constant :GET
@@ -9084,6 +9397,9 @@ module OvirtSDK4
9084
9397
  #
9085
9398
  # @param opts [Hash] Additional options.
9086
9399
  #
9400
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9401
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9402
+ #
9087
9403
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
9088
9404
  #
9089
9405
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -9127,6 +9443,7 @@ module OvirtSDK4
9127
9443
  class ExternalProviderCertificatesService < Service
9128
9444
 
9129
9445
  LIST = [
9446
+ [:follow, String].freeze,
9130
9447
  [:max, Integer].freeze,
9131
9448
  ].freeze
9132
9449
 
@@ -9155,6 +9472,9 @@ module OvirtSDK4
9155
9472
  #
9156
9473
  # @param opts [Hash] Additional options.
9157
9474
  #
9475
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9476
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9477
+ #
9158
9478
  # @option opts [Integer] :max Sets the maximum number of certificates to return. If not specified all the certificates are returned.
9159
9479
  #
9160
9480
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -9297,6 +9617,7 @@ module OvirtSDK4
9297
9617
  class FenceAgentService < Service
9298
9618
 
9299
9619
  GET = [
9620
+ [:follow, String].freeze,
9300
9621
  ].freeze
9301
9622
 
9302
9623
  private_constant :GET
@@ -9326,6 +9647,9 @@ module OvirtSDK4
9326
9647
  #
9327
9648
  # @param opts [Hash] Additional options.
9328
9649
  #
9650
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9651
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9652
+ #
9329
9653
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
9330
9654
  #
9331
9655
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -9455,6 +9779,7 @@ module OvirtSDK4
9455
9779
  end
9456
9780
 
9457
9781
  LIST = [
9782
+ [:follow, String].freeze,
9458
9783
  [:max, Integer].freeze,
9459
9784
  ].freeze
9460
9785
 
@@ -9489,6 +9814,9 @@ module OvirtSDK4
9489
9814
  #
9490
9815
  # @param opts [Hash] Additional options.
9491
9816
  #
9817
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9818
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9819
+ #
9492
9820
  # @option opts [Integer] :max Sets the maximum number of agents to return. If not specified all the agents are returned.
9493
9821
  #
9494
9822
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -9550,6 +9878,7 @@ module OvirtSDK4
9550
9878
  class FileService < Service
9551
9879
 
9552
9880
  GET = [
9881
+ [:follow, String].freeze,
9553
9882
  ].freeze
9554
9883
 
9555
9884
  private_constant :GET
@@ -9559,6 +9888,9 @@ module OvirtSDK4
9559
9888
  #
9560
9889
  # @param opts [Hash] Additional options.
9561
9890
  #
9891
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9892
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9893
+ #
9562
9894
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
9563
9895
  #
9564
9896
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -9603,6 +9935,7 @@ module OvirtSDK4
9603
9935
 
9604
9936
  LIST = [
9605
9937
  [:case_sensitive, TrueClass].freeze,
9938
+ [:follow, String].freeze,
9606
9939
  [:max, Integer].freeze,
9607
9940
  [:refresh, TrueClass].freeze,
9608
9941
  [:search, String].freeze,
@@ -9635,6 +9968,9 @@ module OvirtSDK4
9635
9968
  # @option opts [Boolean] :case_sensitive Indicates if the search performed using the `search` parameter should take case into
9636
9969
  # account. The default value is `true`.
9637
9970
  #
9971
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
9972
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
9973
+ #
9638
9974
  # @option opts [Integer] :max Sets the maximum number of files to return. If not specified, all the files are returned.
9639
9975
  #
9640
9976
  # @option opts [Boolean] :refresh Indicates whether the list of files should be refreshed from the storage domain, rather than showing cached
@@ -9701,6 +10037,7 @@ module OvirtSDK4
9701
10037
 
9702
10038
  GET = [
9703
10039
  [:filter, TrueClass].freeze,
10040
+ [:follow, String].freeze,
9704
10041
  ].freeze
9705
10042
 
9706
10043
  private_constant :GET
@@ -9712,6 +10049,9 @@ module OvirtSDK4
9712
10049
  #
9713
10050
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
9714
10051
  #
10052
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
10053
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
10054
+ #
9715
10055
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
9716
10056
  #
9717
10057
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -9808,6 +10148,7 @@ module OvirtSDK4
9808
10148
 
9809
10149
  LIST = [
9810
10150
  [:filter, TrueClass].freeze,
10151
+ [:follow, String].freeze,
9811
10152
  [:max, Integer].freeze,
9812
10153
  ].freeze
9813
10154
 
@@ -9822,6 +10163,9 @@ module OvirtSDK4
9822
10163
  #
9823
10164
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
9824
10165
  #
10166
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
10167
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
10168
+ #
9825
10169
  # @option opts [Integer] :max Sets the maximum number of filters to return. If not specified all the filters are returned.
9826
10170
  #
9827
10171
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -9879,6 +10223,33 @@ module OvirtSDK4
9879
10223
 
9880
10224
  end
9881
10225
 
10226
+ class FollowService < Service
10227
+
10228
+ #
10229
+ # Locates the service corresponding to the given path.
10230
+ #
10231
+ # @param path [String] The path of the service.
10232
+ #
10233
+ # @return [Service] A reference to the service.
10234
+ #
10235
+ def service(path)
10236
+ if path.nil? || path == ''
10237
+ return self
10238
+ end
10239
+ raise Error.new("The path \"#{path}\" doesn't correspond to any service")
10240
+ end
10241
+
10242
+ #
10243
+ # Returns an string representation of this service.
10244
+ #
10245
+ # @return [String]
10246
+ #
10247
+ def to_s
10248
+ "#<#{FollowService}:#{absolute_path}>"
10249
+ end
10250
+
10251
+ end
10252
+
9882
10253
  class GlusterBricksService < Service
9883
10254
 
9884
10255
  ACTIVATE = [
@@ -9991,6 +10362,7 @@ module OvirtSDK4
9991
10362
  end
9992
10363
 
9993
10364
  LIST = [
10365
+ [:follow, String].freeze,
9994
10366
  [:max, Integer].freeze,
9995
10367
  ].freeze
9996
10368
 
@@ -10030,6 +10402,9 @@ module OvirtSDK4
10030
10402
  #
10031
10403
  # @param opts [Hash] Additional options.
10032
10404
  #
10405
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
10406
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
10407
+ #
10033
10408
  # @option opts [Integer] :max Sets the maximum number of bricks to return. If not specified all the bricks are returned.
10034
10409
  #
10035
10410
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -10304,6 +10679,7 @@ module OvirtSDK4
10304
10679
  end
10305
10680
 
10306
10681
  GET = [
10682
+ [:follow, String].freeze,
10307
10683
  ].freeze
10308
10684
 
10309
10685
  private_constant :GET
@@ -10313,6 +10689,9 @@ module OvirtSDK4
10313
10689
  #
10314
10690
  # @param opts [Hash] Additional options.
10315
10691
  #
10692
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
10693
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
10694
+ #
10316
10695
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
10317
10696
  #
10318
10697
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -10421,6 +10800,7 @@ module OvirtSDK4
10421
10800
  class GlusterHooksService < Service
10422
10801
 
10423
10802
  LIST = [
10803
+ [:follow, String].freeze,
10424
10804
  [:max, Integer].freeze,
10425
10805
  ].freeze
10426
10806
 
@@ -10433,6 +10813,9 @@ module OvirtSDK4
10433
10813
  #
10434
10814
  # @param opts [Hash] Additional options.
10435
10815
  #
10816
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
10817
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
10818
+ #
10436
10819
  # @option opts [Integer] :max Sets the maximum number of hooks to return. If not specified all the hooks are returned.
10437
10820
  #
10438
10821
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -10557,6 +10940,7 @@ module OvirtSDK4
10557
10940
 
10558
10941
  LIST = [
10559
10942
  [:case_sensitive, TrueClass].freeze,
10943
+ [:follow, String].freeze,
10560
10944
  [:max, Integer].freeze,
10561
10945
  [:search, String].freeze,
10562
10946
  ].freeze
@@ -10582,6 +10966,9 @@ module OvirtSDK4
10582
10966
  # account. The default value is `true`, which means that case is taken into account. If you want to search
10583
10967
  # ignoring case set it to `false`.
10584
10968
  #
10969
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
10970
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
10971
+ #
10585
10972
  # @option opts [Integer] :max Sets the maximum number of volumes to return. If not specified all the volumes are returned.
10586
10973
  #
10587
10974
  # @option opts [String] :search A query string used to restrict the returned volumes.
@@ -10644,6 +11031,7 @@ module OvirtSDK4
10644
11031
  class GroupService < Service
10645
11032
 
10646
11033
  GET = [
11034
+ [:follow, String].freeze,
10647
11035
  ].freeze
10648
11036
 
10649
11037
  private_constant :GET
@@ -10676,6 +11064,9 @@ module OvirtSDK4
10676
11064
  #
10677
11065
  # @param opts [Hash] Additional options.
10678
11066
  #
11067
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
11068
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
11069
+ #
10679
11070
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
10680
11071
  #
10681
11072
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -10843,6 +11234,7 @@ module OvirtSDK4
10843
11234
 
10844
11235
  LIST = [
10845
11236
  [:case_sensitive, TrueClass].freeze,
11237
+ [:follow, String].freeze,
10846
11238
  [:max, Integer].freeze,
10847
11239
  [:search, String].freeze,
10848
11240
  ].freeze
@@ -10886,6 +11278,9 @@ module OvirtSDK4
10886
11278
  # account. The default value is `true`, which means that case is taken into account. If you want to search
10887
11279
  # ignoring case set it to `false`.
10888
11280
  #
11281
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
11282
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
11283
+ #
10889
11284
  # @option opts [Integer] :max Sets the maximum number of groups to return. If not specified all the groups are returned.
10890
11285
  #
10891
11286
  # @option opts [String] :search A query string used to restrict the returned groups.
@@ -10948,6 +11343,7 @@ module OvirtSDK4
10948
11343
  class HostDeviceService < Service
10949
11344
 
10950
11345
  GET = [
11346
+ [:follow, String].freeze,
10951
11347
  ].freeze
10952
11348
 
10953
11349
  private_constant :GET
@@ -10976,6 +11372,9 @@ module OvirtSDK4
10976
11372
  #
10977
11373
  # @param opts [Hash] Additional options.
10978
11374
  #
11375
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
11376
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
11377
+ #
10979
11378
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
10980
11379
  #
10981
11380
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -11019,6 +11418,7 @@ module OvirtSDK4
11019
11418
  class HostDevicesService < Service
11020
11419
 
11021
11420
  LIST = [
11421
+ [:follow, String].freeze,
11022
11422
  [:max, Integer].freeze,
11023
11423
  ].freeze
11024
11424
 
@@ -11031,6 +11431,9 @@ module OvirtSDK4
11031
11431
  #
11032
11432
  # @param opts [Hash] Additional options.
11033
11433
  #
11434
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
11435
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
11436
+ #
11034
11437
  # @option opts [Integer] :max Sets the maximum number of devices to return. If not specified all the devices are returned.
11035
11438
  #
11036
11439
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -11091,6 +11494,7 @@ module OvirtSDK4
11091
11494
  class HostHookService < Service
11092
11495
 
11093
11496
  GET = [
11497
+ [:follow, String].freeze,
11094
11498
  ].freeze
11095
11499
 
11096
11500
  private_constant :GET
@@ -11100,6 +11504,9 @@ module OvirtSDK4
11100
11504
  #
11101
11505
  # @param opts [Hash] Additional options.
11102
11506
  #
11507
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
11508
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
11509
+ #
11103
11510
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
11104
11511
  #
11105
11512
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -11143,6 +11550,7 @@ module OvirtSDK4
11143
11550
  class HostHooksService < Service
11144
11551
 
11145
11552
  LIST = [
11553
+ [:follow, String].freeze,
11146
11554
  [:max, Integer].freeze,
11147
11555
  ].freeze
11148
11556
 
@@ -11155,6 +11563,9 @@ module OvirtSDK4
11155
11563
  #
11156
11564
  # @param opts [Hash] Additional options.
11157
11565
  #
11566
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
11567
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
11568
+ #
11158
11569
  # @option opts [Integer] :max Sets the maximum number of hooks to return. If not specified all the hooks are returned.
11159
11570
  #
11160
11571
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -11215,6 +11626,7 @@ module OvirtSDK4
11215
11626
  class HostNicsService < Service
11216
11627
 
11217
11628
  LIST = [
11629
+ [:follow, String].freeze,
11218
11630
  [:max, Integer].freeze,
11219
11631
  ].freeze
11220
11632
 
@@ -11227,6 +11639,9 @@ module OvirtSDK4
11227
11639
  #
11228
11640
  # @param opts [Hash] Additional options.
11229
11641
  #
11642
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
11643
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
11644
+ #
11230
11645
  # @option opts [Integer] :max Sets the maximum number of NICs to return. If not specified all the NICs are returned.
11231
11646
  #
11232
11647
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -11287,6 +11702,7 @@ module OvirtSDK4
11287
11702
  class HostNumaNodesService < Service
11288
11703
 
11289
11704
  LIST = [
11705
+ [:follow, String].freeze,
11290
11706
  [:max, Integer].freeze,
11291
11707
  ].freeze
11292
11708
 
@@ -11299,6 +11715,9 @@ module OvirtSDK4
11299
11715
  #
11300
11716
  # @param opts [Hash] Additional options.
11301
11717
  #
11718
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
11719
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
11720
+ #
11302
11721
  # @option opts [Integer] :max Sets the maximum number of nodes to return. If not specified all the nodes are returned.
11303
11722
  #
11304
11723
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -11359,6 +11778,7 @@ module OvirtSDK4
11359
11778
  class HostStorageService < Service
11360
11779
 
11361
11780
  LIST = [
11781
+ [:follow, String].freeze,
11362
11782
  [:report_status, TrueClass].freeze,
11363
11783
  ].freeze
11364
11784
 
@@ -11388,6 +11808,9 @@ module OvirtSDK4
11388
11808
  #
11389
11809
  # @param opts [Hash] Additional options.
11390
11810
  #
11811
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
11812
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
11813
+ #
11391
11814
  # @option opts [Boolean] :report_status Indicates if the status of the LUNs in the storage should be checked.
11392
11815
  # Checking the status of the LUN is an heavy weight operation and
11393
11816
  # this data is not always needed by the user.
@@ -11599,6 +12022,7 @@ module OvirtSDK4
11599
12022
  [:all_content, TrueClass].freeze,
11600
12023
  [:case_sensitive, TrueClass].freeze,
11601
12024
  [:filter, TrueClass].freeze,
12025
+ [:follow, String].freeze,
11602
12026
  [:max, Integer].freeze,
11603
12027
  [:search, String].freeze,
11604
12028
  ].freeze
@@ -11656,6 +12080,9 @@ module OvirtSDK4
11656
12080
  #
11657
12081
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
11658
12082
  #
12083
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
12084
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
12085
+ #
11659
12086
  # @option opts [Integer] :max Sets the maximum number of hosts to return. If not specified all the hosts are returned.
11660
12087
  #
11661
12088
  # @option opts [String] :search A query string used to restrict the returned hosts.
@@ -11718,6 +12145,7 @@ module OvirtSDK4
11718
12145
  class IconService < Service
11719
12146
 
11720
12147
  GET = [
12148
+ [:follow, String].freeze,
11721
12149
  ].freeze
11722
12150
 
11723
12151
  private_constant :GET
@@ -11742,6 +12170,9 @@ module OvirtSDK4
11742
12170
  #
11743
12171
  # @param opts [Hash] Additional options.
11744
12172
  #
12173
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
12174
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
12175
+ #
11745
12176
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
11746
12177
  #
11747
12178
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -11785,6 +12216,7 @@ module OvirtSDK4
11785
12216
  class IconsService < Service
11786
12217
 
11787
12218
  LIST = [
12219
+ [:follow, String].freeze,
11788
12220
  [:max, Integer].freeze,
11789
12221
  ].freeze
11790
12222
 
@@ -11815,6 +12247,9 @@ module OvirtSDK4
11815
12247
  #
11816
12248
  # @param opts [Hash] Additional options.
11817
12249
  #
12250
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
12251
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
12252
+ #
11818
12253
  # @option opts [Integer] :max Sets the maximum number of icons to return. If not specified all the icons are returned.
11819
12254
  #
11820
12255
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -11875,6 +12310,7 @@ module OvirtSDK4
11875
12310
  class ImageService < Service
11876
12311
 
11877
12312
  GET = [
12313
+ [:follow, String].freeze,
11878
12314
  ].freeze
11879
12315
 
11880
12316
  private_constant :GET
@@ -11884,6 +12320,9 @@ module OvirtSDK4
11884
12320
  #
11885
12321
  # @param opts [Hash] Additional options.
11886
12322
  #
12323
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
12324
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
12325
+ #
11887
12326
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
11888
12327
  #
11889
12328
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -12035,6 +12474,7 @@ module OvirtSDK4
12035
12474
  end
12036
12475
 
12037
12476
  GET = [
12477
+ [:follow, String].freeze,
12038
12478
  ].freeze
12039
12479
 
12040
12480
  private_constant :GET
@@ -12044,6 +12484,9 @@ module OvirtSDK4
12044
12484
  #
12045
12485
  # @param opts [Hash] Additional options.
12046
12486
  #
12487
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
12488
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
12489
+ #
12047
12490
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
12048
12491
  #
12049
12492
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -12176,6 +12619,7 @@ module OvirtSDK4
12176
12619
  end
12177
12620
 
12178
12621
  LIST = [
12622
+ [:follow, String].freeze,
12179
12623
  ].freeze
12180
12624
 
12181
12625
  private_constant :LIST
@@ -12188,6 +12632,9 @@ module OvirtSDK4
12188
12632
  #
12189
12633
  # @param opts [Hash] Additional options.
12190
12634
  #
12635
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
12636
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
12637
+ #
12191
12638
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
12192
12639
  #
12193
12640
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -12247,6 +12694,7 @@ module OvirtSDK4
12247
12694
  class ImagesService < Service
12248
12695
 
12249
12696
  LIST = [
12697
+ [:follow, String].freeze,
12250
12698
  [:max, Integer].freeze,
12251
12699
  ].freeze
12252
12700
 
@@ -12259,6 +12707,9 @@ module OvirtSDK4
12259
12707
  #
12260
12708
  # @param opts [Hash] Additional options.
12261
12709
  #
12710
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
12711
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
12712
+ #
12262
12713
  # @option opts [Integer] :max Sets the maximum number of images to return. If not specified all the images are returned.
12263
12714
  #
12264
12715
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -12319,6 +12770,7 @@ module OvirtSDK4
12319
12770
  class InstanceTypeService < Service
12320
12771
 
12321
12772
  GET = [
12773
+ [:follow, String].freeze,
12322
12774
  ].freeze
12323
12775
 
12324
12776
  private_constant :GET
@@ -12333,6 +12785,9 @@ module OvirtSDK4
12333
12785
  #
12334
12786
  # @param opts [Hash] Additional options.
12335
12787
  #
12788
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
12789
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
12790
+ #
12336
12791
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
12337
12792
  #
12338
12793
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -12512,6 +12967,7 @@ module OvirtSDK4
12512
12967
  class InstanceTypeGraphicsConsoleService < Service
12513
12968
 
12514
12969
  GET = [
12970
+ [:follow, String].freeze,
12515
12971
  ].freeze
12516
12972
 
12517
12973
  private_constant :GET
@@ -12521,6 +12977,9 @@ module OvirtSDK4
12521
12977
  #
12522
12978
  # @param opts [Hash] Additional options.
12523
12979
  #
12980
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
12981
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
12982
+ #
12524
12983
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
12525
12984
  #
12526
12985
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -12616,6 +13075,7 @@ module OvirtSDK4
12616
13075
  end
12617
13076
 
12618
13077
  LIST = [
13078
+ [:follow, String].freeze,
12619
13079
  [:max, Integer].freeze,
12620
13080
  ].freeze
12621
13081
 
@@ -12628,6 +13088,9 @@ module OvirtSDK4
12628
13088
  #
12629
13089
  # @param opts [Hash] Additional options.
12630
13090
  #
13091
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
13092
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
13093
+ #
12631
13094
  # @option opts [Integer] :max Sets the maximum number of consoles to return. If not specified all the consoles are returned.
12632
13095
  #
12633
13096
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -12688,6 +13151,7 @@ module OvirtSDK4
12688
13151
  class InstanceTypeNicService < Service
12689
13152
 
12690
13153
  GET = [
13154
+ [:follow, String].freeze,
12691
13155
  ].freeze
12692
13156
 
12693
13157
  private_constant :GET
@@ -12697,6 +13161,9 @@ module OvirtSDK4
12697
13161
  #
12698
13162
  # @param opts [Hash] Additional options.
12699
13163
  #
13164
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
13165
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
13166
+ #
12700
13167
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
12701
13168
  #
12702
13169
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -12821,6 +13288,7 @@ module OvirtSDK4
12821
13288
  end
12822
13289
 
12823
13290
  LIST = [
13291
+ [:follow, String].freeze,
12824
13292
  [:max, Integer].freeze,
12825
13293
  [:search, String].freeze,
12826
13294
  ].freeze
@@ -12834,6 +13302,9 @@ module OvirtSDK4
12834
13302
  #
12835
13303
  # @param opts [Hash] Additional options.
12836
13304
  #
13305
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
13306
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
13307
+ #
12837
13308
  # @option opts [Integer] :max Sets the maximum number of NICs to return. If not specified all the NICs are returned.
12838
13309
  #
12839
13310
  # @option opts [String] :search A query string used to restrict the returned templates.
@@ -12896,6 +13367,7 @@ module OvirtSDK4
12896
13367
  class InstanceTypeWatchdogService < Service
12897
13368
 
12898
13369
  GET = [
13370
+ [:follow, String].freeze,
12899
13371
  ].freeze
12900
13372
 
12901
13373
  private_constant :GET
@@ -12905,6 +13377,9 @@ module OvirtSDK4
12905
13377
  #
12906
13378
  # @param opts [Hash] Additional options.
12907
13379
  #
13380
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
13381
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
13382
+ #
12908
13383
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
12909
13384
  #
12910
13385
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -13029,6 +13504,7 @@ module OvirtSDK4
13029
13504
  end
13030
13505
 
13031
13506
  LIST = [
13507
+ [:follow, String].freeze,
13032
13508
  [:max, Integer].freeze,
13033
13509
  [:search, String].freeze,
13034
13510
  ].freeze
@@ -13042,6 +13518,9 @@ module OvirtSDK4
13042
13518
  #
13043
13519
  # @param opts [Hash] Additional options.
13044
13520
  #
13521
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
13522
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
13523
+ #
13045
13524
  # @option opts [Integer] :max Sets the maximum number of watchdogs to return. If not specified all the watchdogs are
13046
13525
  # returned.
13047
13526
  #
@@ -13217,6 +13696,7 @@ module OvirtSDK4
13217
13696
 
13218
13697
  LIST = [
13219
13698
  [:case_sensitive, TrueClass].freeze,
13699
+ [:follow, String].freeze,
13220
13700
  [:max, Integer].freeze,
13221
13701
  [:search, String].freeze,
13222
13702
  ].freeze
@@ -13234,6 +13714,9 @@ module OvirtSDK4
13234
13714
  # taking case into account. The default value is `true`, which means that case is taken
13235
13715
  # into account. If you want to search ignoring case set it to `false`.
13236
13716
  #
13717
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
13718
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
13719
+ #
13237
13720
  # @option opts [Integer] :max Sets the maximum number of instance types to return. If not specified all the instance
13238
13721
  # types are returned.
13239
13722
  #
@@ -13297,6 +13780,7 @@ module OvirtSDK4
13297
13780
  class IscsiBondService < Service
13298
13781
 
13299
13782
  GET = [
13783
+ [:follow, String].freeze,
13300
13784
  ].freeze
13301
13785
 
13302
13786
  private_constant :GET
@@ -13306,6 +13790,9 @@ module OvirtSDK4
13306
13790
  #
13307
13791
  # @param opts [Hash] Additional options.
13308
13792
  #
13793
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
13794
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
13795
+ #
13309
13796
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
13310
13797
  #
13311
13798
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -13509,6 +13996,7 @@ module OvirtSDK4
13509
13996
  end
13510
13997
 
13511
13998
  LIST = [
13999
+ [:follow, String].freeze,
13512
14000
  [:max, Integer].freeze,
13513
14001
  ].freeze
13514
14002
 
@@ -13521,6 +14009,9 @@ module OvirtSDK4
13521
14009
  #
13522
14010
  # @param opts [Hash] Additional options.
13523
14011
  #
14012
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
14013
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
14014
+ #
13524
14015
  # @option opts [Integer] :max Sets the maximum number of bonds to return. If not specified all the bonds are returned.
13525
14016
  #
13526
14017
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -13672,6 +14163,7 @@ module OvirtSDK4
13672
14163
  end
13673
14164
 
13674
14165
  GET = [
14166
+ [:follow, String].freeze,
13675
14167
  ].freeze
13676
14168
 
13677
14169
  private_constant :GET
@@ -13707,6 +14199,9 @@ module OvirtSDK4
13707
14199
  #
13708
14200
  # @param opts [Hash] Additional options.
13709
14201
  #
14202
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
14203
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
14204
+ #
13710
14205
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
13711
14206
  #
13712
14207
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -13831,6 +14326,7 @@ module OvirtSDK4
13831
14326
  end
13832
14327
 
13833
14328
  LIST = [
14329
+ [:follow, String].freeze,
13834
14330
  [:max, Integer].freeze,
13835
14331
  ].freeze
13836
14332
 
@@ -13872,6 +14368,9 @@ module OvirtSDK4
13872
14368
  #
13873
14369
  # @param opts [Hash] Additional options.
13874
14370
  #
14371
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
14372
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
14373
+ #
13875
14374
  # @option opts [Integer] :max Sets the maximum number of jobs to return. If not specified all the jobs are returned.
13876
14375
  #
13877
14376
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -13932,6 +14431,7 @@ module OvirtSDK4
13932
14431
  class KatelloErrataService < Service
13933
14432
 
13934
14433
  LIST = [
14434
+ [:follow, String].freeze,
13935
14435
  [:max, Integer].freeze,
13936
14436
  ].freeze
13937
14437
 
@@ -13973,6 +14473,9 @@ module OvirtSDK4
13973
14473
  #
13974
14474
  # @param opts [Hash] Additional options.
13975
14475
  #
14476
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
14477
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
14478
+ #
13976
14479
  # @option opts [Integer] :max Sets the maximum number of errata to return. If not specified all the errata are returned.
13977
14480
  #
13978
14481
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -14034,6 +14537,7 @@ module OvirtSDK4
14034
14537
  class KatelloErratumService < Service
14035
14538
 
14036
14539
  GET = [
14540
+ [:follow, String].freeze,
14037
14541
  ].freeze
14038
14542
 
14039
14543
  private_constant :GET
@@ -14069,6 +14573,9 @@ module OvirtSDK4
14069
14573
  #
14070
14574
  # @param opts [Hash] Additional options.
14071
14575
  #
14576
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
14577
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
14578
+ #
14072
14579
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
14073
14580
  #
14074
14581
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -14112,6 +14619,7 @@ module OvirtSDK4
14112
14619
  class LinkLayerDiscoveryProtocolService < Service
14113
14620
 
14114
14621
  LIST = [
14622
+ [:follow, String].freeze,
14115
14623
  ].freeze
14116
14624
 
14117
14625
  private_constant :LIST
@@ -14121,6 +14629,9 @@ module OvirtSDK4
14121
14629
  #
14122
14630
  # @param opts [Hash] Additional options.
14123
14631
  #
14632
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
14633
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
14634
+ #
14124
14635
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
14125
14636
  #
14126
14637
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -14164,6 +14675,7 @@ module OvirtSDK4
14164
14675
  class MacPoolService < Service
14165
14676
 
14166
14677
  GET = [
14678
+ [:follow, String].freeze,
14167
14679
  ].freeze
14168
14680
 
14169
14681
  private_constant :GET
@@ -14173,6 +14685,9 @@ module OvirtSDK4
14173
14685
  #
14174
14686
  # @param opts [Hash] Additional options.
14175
14687
  #
14688
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
14689
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
14690
+ #
14176
14691
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
14177
14692
  #
14178
14693
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -14361,6 +14876,7 @@ module OvirtSDK4
14361
14876
  end
14362
14877
 
14363
14878
  LIST = [
14879
+ [:follow, String].freeze,
14364
14880
  [:max, Integer].freeze,
14365
14881
  ].freeze
14366
14882
 
@@ -14373,6 +14889,9 @@ module OvirtSDK4
14373
14889
  #
14374
14890
  # @param opts [Hash] Additional options.
14375
14891
  #
14892
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
14893
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
14894
+ #
14376
14895
  # @option opts [Integer] :max Sets the maximum number of pools to return. If not specified all the pools are returned.
14377
14896
  #
14378
14897
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -14528,6 +15047,7 @@ module OvirtSDK4
14528
15047
  class NetworkService < Service
14529
15048
 
14530
15049
  GET = [
15050
+ [:follow, String].freeze,
14531
15051
  ].freeze
14532
15052
 
14533
15053
  private_constant :GET
@@ -14563,6 +15083,9 @@ module OvirtSDK4
14563
15083
  #
14564
15084
  # @param opts [Hash] Additional options.
14565
15085
  #
15086
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
15087
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
15088
+ #
14566
15089
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
14567
15090
  #
14568
15091
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -14761,6 +15284,7 @@ module OvirtSDK4
14761
15284
  class NetworkAttachmentService < Service
14762
15285
 
14763
15286
  GET = [
15287
+ [:follow, String].freeze,
14764
15288
  ].freeze
14765
15289
 
14766
15290
  private_constant :GET
@@ -14770,6 +15294,9 @@ module OvirtSDK4
14770
15294
  #
14771
15295
  # @param opts [Hash] Additional options.
14772
15296
  #
15297
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
15298
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
15299
+ #
14773
15300
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
14774
15301
  #
14775
15302
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -14894,6 +15421,7 @@ module OvirtSDK4
14894
15421
  end
14895
15422
 
14896
15423
  LIST = [
15424
+ [:follow, String].freeze,
14897
15425
  [:max, Integer].freeze,
14898
15426
  ].freeze
14899
15427
 
@@ -14906,6 +15434,9 @@ module OvirtSDK4
14906
15434
  #
14907
15435
  # @param opts [Hash] Additional options.
14908
15436
  #
15437
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
15438
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
15439
+ #
14909
15440
  # @option opts [Integer] :max Sets the maximum number of attachments to return. If not specified all the attachments are returned.
14910
15441
  #
14911
15442
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -14966,6 +15497,7 @@ module OvirtSDK4
14966
15497
  class NetworkFilterService < Service
14967
15498
 
14968
15499
  GET = [
15500
+ [:follow, String].freeze,
14969
15501
  ].freeze
14970
15502
 
14971
15503
  private_constant :GET
@@ -14975,6 +15507,9 @@ module OvirtSDK4
14975
15507
  #
14976
15508
  # @param opts [Hash] Additional options.
14977
15509
  #
15510
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
15511
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
15512
+ #
14978
15513
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
14979
15514
  #
14980
15515
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -15018,6 +15553,7 @@ module OvirtSDK4
15018
15553
  class NetworkFiltersService < Service
15019
15554
 
15020
15555
  LIST = [
15556
+ [:follow, String].freeze,
15021
15557
  ].freeze
15022
15558
 
15023
15559
  private_constant :LIST
@@ -15029,6 +15565,9 @@ module OvirtSDK4
15029
15565
  #
15030
15566
  # @param opts [Hash] Additional options.
15031
15567
  #
15568
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
15569
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
15570
+ #
15032
15571
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
15033
15572
  #
15034
15573
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -15087,6 +15626,7 @@ module OvirtSDK4
15087
15626
  class NetworkLabelService < Service
15088
15627
 
15089
15628
  GET = [
15629
+ [:follow, String].freeze,
15090
15630
  ].freeze
15091
15631
 
15092
15632
  private_constant :GET
@@ -15096,6 +15636,9 @@ module OvirtSDK4
15096
15636
  #
15097
15637
  # @param opts [Hash] Additional options.
15098
15638
  #
15639
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
15640
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
15641
+ #
15099
15642
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
15100
15643
  #
15101
15644
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -15215,6 +15758,7 @@ module OvirtSDK4
15215
15758
  end
15216
15759
 
15217
15760
  LIST = [
15761
+ [:follow, String].freeze,
15218
15762
  [:max, Integer].freeze,
15219
15763
  ].freeze
15220
15764
 
@@ -15227,6 +15771,9 @@ module OvirtSDK4
15227
15771
  #
15228
15772
  # @param opts [Hash] Additional options.
15229
15773
  #
15774
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
15775
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
15776
+ #
15230
15777
  # @option opts [Integer] :max Sets the maximum number of labels to return. If not specified all the labels are returned.
15231
15778
  #
15232
15779
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -15351,6 +15898,7 @@ module OvirtSDK4
15351
15898
 
15352
15899
  LIST = [
15353
15900
  [:case_sensitive, TrueClass].freeze,
15901
+ [:follow, String].freeze,
15354
15902
  [:max, Integer].freeze,
15355
15903
  [:search, String].freeze,
15356
15904
  ].freeze
@@ -15398,6 +15946,9 @@ module OvirtSDK4
15398
15946
  # account. The default value is `true`, which means that case is taken into account. If you want to search
15399
15947
  # ignoring case set it to `false`.
15400
15948
  #
15949
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
15950
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
15951
+ #
15401
15952
  # @option opts [Integer] :max Sets the maximum number of networks to return. If not specified all the networks are returned.
15402
15953
  #
15403
15954
  # @option opts [String] :search A query string used to restrict the returned networks.
@@ -15460,6 +16011,7 @@ module OvirtSDK4
15460
16011
  class NicNetworkFilterParameterService < Service
15461
16012
 
15462
16013
  GET = [
16014
+ [:follow, String].freeze,
15463
16015
  ].freeze
15464
16016
 
15465
16017
  private_constant :GET
@@ -15469,6 +16021,9 @@ module OvirtSDK4
15469
16021
  #
15470
16022
  # @param opts [Hash] Additional options.
15471
16023
  #
16024
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
16025
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
16026
+ #
15472
16027
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
15473
16028
  #
15474
16029
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -15632,6 +16187,7 @@ module OvirtSDK4
15632
16187
  end
15633
16188
 
15634
16189
  LIST = [
16190
+ [:follow, String].freeze,
15635
16191
  ].freeze
15636
16192
 
15637
16193
  private_constant :LIST
@@ -15643,6 +16199,9 @@ module OvirtSDK4
15643
16199
  #
15644
16200
  # @param opts [Hash] Additional options.
15645
16201
  #
16202
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
16203
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
16204
+ #
15646
16205
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
15647
16206
  #
15648
16207
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -15701,6 +16260,7 @@ module OvirtSDK4
15701
16260
  class OpenstackImageService < Service
15702
16261
 
15703
16262
  GET = [
16263
+ [:follow, String].freeze,
15704
16264
  ].freeze
15705
16265
 
15706
16266
  private_constant :GET
@@ -15710,6 +16270,9 @@ module OvirtSDK4
15710
16270
  #
15711
16271
  # @param opts [Hash] Additional options.
15712
16272
  #
16273
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
16274
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
16275
+ #
15713
16276
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
15714
16277
  #
15715
16278
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -15817,6 +16380,7 @@ module OvirtSDK4
15817
16380
  class OpenstackImageProviderService < ExternalProviderService
15818
16381
 
15819
16382
  GET = [
16383
+ [:follow, String].freeze,
15820
16384
  ].freeze
15821
16385
 
15822
16386
  private_constant :GET
@@ -15826,6 +16390,9 @@ module OvirtSDK4
15826
16390
  #
15827
16391
  # @param opts [Hash] Additional options.
15828
16392
  #
16393
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
16394
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
16395
+ #
15829
16396
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
15830
16397
  #
15831
16398
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -16038,6 +16605,7 @@ module OvirtSDK4
16038
16605
  end
16039
16606
 
16040
16607
  LIST = [
16608
+ [:follow, String].freeze,
16041
16609
  [:max, Integer].freeze,
16042
16610
  ].freeze
16043
16611
 
@@ -16050,6 +16618,9 @@ module OvirtSDK4
16050
16618
  #
16051
16619
  # @param opts [Hash] Additional options.
16052
16620
  #
16621
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
16622
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
16623
+ #
16053
16624
  # @option opts [Integer] :max Sets the maximum number of providers to return. If not specified all the providers are returned.
16054
16625
  #
16055
16626
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -16110,6 +16681,7 @@ module OvirtSDK4
16110
16681
  class OpenstackImagesService < Service
16111
16682
 
16112
16683
  LIST = [
16684
+ [:follow, String].freeze,
16113
16685
  [:max, Integer].freeze,
16114
16686
  ].freeze
16115
16687
 
@@ -16122,6 +16694,9 @@ module OvirtSDK4
16122
16694
  #
16123
16695
  # @param opts [Hash] Additional options.
16124
16696
  #
16697
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
16698
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
16699
+ #
16125
16700
  # @option opts [Integer] :max Sets the maximum number of images to return. If not specified all the images are returned.
16126
16701
  #
16127
16702
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -16182,6 +16757,7 @@ module OvirtSDK4
16182
16757
  class OpenstackNetworkService < Service
16183
16758
 
16184
16759
  GET = [
16760
+ [:follow, String].freeze,
16185
16761
  ].freeze
16186
16762
 
16187
16763
  private_constant :GET
@@ -16191,6 +16767,9 @@ module OvirtSDK4
16191
16767
  #
16192
16768
  # @param opts [Hash] Additional options.
16193
16769
  #
16770
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
16771
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
16772
+ #
16194
16773
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
16195
16774
  #
16196
16775
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -16282,6 +16861,7 @@ module OvirtSDK4
16282
16861
  class OpenstackNetworkProviderService < ExternalProviderService
16283
16862
 
16284
16863
  GET = [
16864
+ [:follow, String].freeze,
16285
16865
  ].freeze
16286
16866
 
16287
16867
  private_constant :GET
@@ -16298,6 +16878,9 @@ module OvirtSDK4
16298
16878
  #
16299
16879
  # @param opts [Hash] Additional options.
16300
16880
  #
16881
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
16882
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
16883
+ #
16301
16884
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
16302
16885
  #
16303
16886
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -16539,6 +17122,7 @@ module OvirtSDK4
16539
17122
  end
16540
17123
 
16541
17124
  LIST = [
17125
+ [:follow, String].freeze,
16542
17126
  [:max, Integer].freeze,
16543
17127
  ].freeze
16544
17128
 
@@ -16551,6 +17135,9 @@ module OvirtSDK4
16551
17135
  #
16552
17136
  # @param opts [Hash] Additional options.
16553
17137
  #
17138
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
17139
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
17140
+ #
16554
17141
  # @option opts [Integer] :max Sets the maximum number of providers to return. If not specified all the providers are returned.
16555
17142
  #
16556
17143
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -16611,6 +17198,7 @@ module OvirtSDK4
16611
17198
  class OpenstackNetworksService < Service
16612
17199
 
16613
17200
  LIST = [
17201
+ [:follow, String].freeze,
16614
17202
  [:max, Integer].freeze,
16615
17203
  ].freeze
16616
17204
 
@@ -16623,6 +17211,9 @@ module OvirtSDK4
16623
17211
  #
16624
17212
  # @param opts [Hash] Additional options.
16625
17213
  #
17214
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
17215
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
17216
+ #
16626
17217
  # @option opts [Integer] :max Sets the maximum number of networks to return. If not specified all the networks are returned.
16627
17218
  #
16628
17219
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -16683,6 +17274,7 @@ module OvirtSDK4
16683
17274
  class OpenstackSubnetService < Service
16684
17275
 
16685
17276
  GET = [
17277
+ [:follow, String].freeze,
16686
17278
  ].freeze
16687
17279
 
16688
17280
  private_constant :GET
@@ -16692,6 +17284,9 @@ module OvirtSDK4
16692
17284
  #
16693
17285
  # @param opts [Hash] Additional options.
16694
17286
  #
17287
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
17288
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
17289
+ #
16695
17290
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
16696
17291
  #
16697
17292
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -16787,6 +17382,7 @@ module OvirtSDK4
16787
17382
  end
16788
17383
 
16789
17384
  LIST = [
17385
+ [:follow, String].freeze,
16790
17386
  [:max, Integer].freeze,
16791
17387
  ].freeze
16792
17388
 
@@ -16799,6 +17395,9 @@ module OvirtSDK4
16799
17395
  #
16800
17396
  # @param opts [Hash] Additional options.
16801
17397
  #
17398
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
17399
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
17400
+ #
16802
17401
  # @option opts [Integer] :max Sets the maximum number of sub-networks to return. If not specified all the sub-networks are returned.
16803
17402
  #
16804
17403
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -16859,6 +17458,7 @@ module OvirtSDK4
16859
17458
  class OpenstackVolumeAuthenticationKeyService < Service
16860
17459
 
16861
17460
  GET = [
17461
+ [:follow, String].freeze,
16862
17462
  ].freeze
16863
17463
 
16864
17464
  private_constant :GET
@@ -16868,6 +17468,9 @@ module OvirtSDK4
16868
17468
  #
16869
17469
  # @param opts [Hash] Additional options.
16870
17470
  #
17471
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
17472
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
17473
+ #
16871
17474
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
16872
17475
  #
16873
17476
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -16989,6 +17592,7 @@ module OvirtSDK4
16989
17592
  end
16990
17593
 
16991
17594
  LIST = [
17595
+ [:follow, String].freeze,
16992
17596
  [:max, Integer].freeze,
16993
17597
  ].freeze
16994
17598
 
@@ -17001,6 +17605,9 @@ module OvirtSDK4
17001
17605
  #
17002
17606
  # @param opts [Hash] Additional options.
17003
17607
  #
17608
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
17609
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
17610
+ #
17004
17611
  # @option opts [Integer] :max Sets the maximum number of keys to return. If not specified all the keys are returned.
17005
17612
  #
17006
17613
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -17061,6 +17668,7 @@ module OvirtSDK4
17061
17668
  class OpenstackVolumeProviderService < ExternalProviderService
17062
17669
 
17063
17670
  GET = [
17671
+ [:follow, String].freeze,
17064
17672
  ].freeze
17065
17673
 
17066
17674
  private_constant :GET
@@ -17070,6 +17678,9 @@ module OvirtSDK4
17070
17678
  #
17071
17679
  # @param opts [Hash] Additional options.
17072
17680
  #
17681
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
17682
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
17683
+ #
17073
17684
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
17074
17685
  #
17075
17686
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -17326,6 +17937,7 @@ module OvirtSDK4
17326
17937
  end
17327
17938
 
17328
17939
  LIST = [
17940
+ [:follow, String].freeze,
17329
17941
  [:max, Integer].freeze,
17330
17942
  ].freeze
17331
17943
 
@@ -17338,6 +17950,9 @@ module OvirtSDK4
17338
17950
  #
17339
17951
  # @param opts [Hash] Additional options.
17340
17952
  #
17953
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
17954
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
17955
+ #
17341
17956
  # @option opts [Integer] :max Sets the maximum number of providers to return. If not specified all the providers are returned.
17342
17957
  #
17343
17958
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -17398,6 +18013,7 @@ module OvirtSDK4
17398
18013
  class OpenstackVolumeTypeService < Service
17399
18014
 
17400
18015
  GET = [
18016
+ [:follow, String].freeze,
17401
18017
  ].freeze
17402
18018
 
17403
18019
  private_constant :GET
@@ -17407,6 +18023,9 @@ module OvirtSDK4
17407
18023
  #
17408
18024
  # @param opts [Hash] Additional options.
17409
18025
  #
18026
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18027
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18028
+ #
17410
18029
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
17411
18030
  #
17412
18031
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -17450,6 +18069,7 @@ module OvirtSDK4
17450
18069
  class OpenstackVolumeTypesService < Service
17451
18070
 
17452
18071
  LIST = [
18072
+ [:follow, String].freeze,
17453
18073
  [:max, Integer].freeze,
17454
18074
  ].freeze
17455
18075
 
@@ -17462,6 +18082,9 @@ module OvirtSDK4
17462
18082
  #
17463
18083
  # @param opts [Hash] Additional options.
17464
18084
  #
18085
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18086
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18087
+ #
17465
18088
  # @option opts [Integer] :max Sets the maximum number of volume types to return. If not specified all the volume types are returned.
17466
18089
  #
17467
18090
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -17522,6 +18145,7 @@ module OvirtSDK4
17522
18145
  class OperatingSystemService < Service
17523
18146
 
17524
18147
  GET = [
18148
+ [:follow, String].freeze,
17525
18149
  ].freeze
17526
18150
 
17527
18151
  private_constant :GET
@@ -17531,6 +18155,9 @@ module OvirtSDK4
17531
18155
  #
17532
18156
  # @param opts [Hash] Additional options.
17533
18157
  #
18158
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18159
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18160
+ #
17534
18161
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
17535
18162
  #
17536
18163
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -17574,6 +18201,7 @@ module OvirtSDK4
17574
18201
  class OperatingSystemsService < Service
17575
18202
 
17576
18203
  LIST = [
18204
+ [:follow, String].freeze,
17577
18205
  [:max, Integer].freeze,
17578
18206
  ].freeze
17579
18207
 
@@ -17586,6 +18214,9 @@ module OvirtSDK4
17586
18214
  #
17587
18215
  # @param opts [Hash] Additional options.
17588
18216
  #
18217
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18218
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18219
+ #
17589
18220
  # @option opts [Integer] :max Sets the maximum number of networks to return. If not specified all the networks are returned.
17590
18221
  #
17591
18222
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -17646,6 +18277,7 @@ module OvirtSDK4
17646
18277
  class PermissionService < Service
17647
18278
 
17648
18279
  GET = [
18280
+ [:follow, String].freeze,
17649
18281
  ].freeze
17650
18282
 
17651
18283
  private_constant :GET
@@ -17655,6 +18287,9 @@ module OvirtSDK4
17655
18287
  #
17656
18288
  # @param opts [Hash] Additional options.
17657
18289
  #
18290
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18291
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18292
+ #
17658
18293
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
17659
18294
  #
17660
18295
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -17723,6 +18358,7 @@ module OvirtSDK4
17723
18358
  class PermitService < Service
17724
18359
 
17725
18360
  GET = [
18361
+ [:follow, String].freeze,
17726
18362
  ].freeze
17727
18363
 
17728
18364
  private_constant :GET
@@ -17748,6 +18384,9 @@ module OvirtSDK4
17748
18384
  #
17749
18385
  # @param opts [Hash] Additional options.
17750
18386
  #
18387
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18388
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18389
+ #
17751
18390
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
17752
18391
  #
17753
18392
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -17864,6 +18503,7 @@ module OvirtSDK4
17864
18503
  end
17865
18504
 
17866
18505
  LIST = [
18506
+ [:follow, String].freeze,
17867
18507
  [:max, Integer].freeze,
17868
18508
  ].freeze
17869
18509
 
@@ -17898,6 +18538,9 @@ module OvirtSDK4
17898
18538
  #
17899
18539
  # @param opts [Hash] Additional options.
17900
18540
  #
18541
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18542
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18543
+ #
17901
18544
  # @option opts [Integer] :max Sets the maximum number of permits to return. If not specified all the permits are returned.
17902
18545
  #
17903
18546
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -17958,6 +18601,7 @@ module OvirtSDK4
17958
18601
  class QosService < Service
17959
18602
 
17960
18603
  GET = [
18604
+ [:follow, String].freeze,
17961
18605
  ].freeze
17962
18606
 
17963
18607
  private_constant :GET
@@ -17986,6 +18630,9 @@ module OvirtSDK4
17986
18630
  #
17987
18631
  # @param opts [Hash] Additional options.
17988
18632
  #
18633
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18634
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18635
+ #
17989
18636
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
17990
18637
  #
17991
18638
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -18161,6 +18808,7 @@ module OvirtSDK4
18161
18808
  end
18162
18809
 
18163
18810
  LIST = [
18811
+ [:follow, String].freeze,
18164
18812
  [:max, Integer].freeze,
18165
18813
  ].freeze
18166
18814
 
@@ -18189,6 +18837,9 @@ module OvirtSDK4
18189
18837
  #
18190
18838
  # @param opts [Hash] Additional options.
18191
18839
  #
18840
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18841
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18842
+ #
18192
18843
  # @option opts [Integer] :max Sets the maximum number of QoS descriptors to return. If not specified all the descriptors are returned.
18193
18844
  #
18194
18845
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -18249,6 +18900,7 @@ module OvirtSDK4
18249
18900
  class QuotaService < Service
18250
18901
 
18251
18902
  GET = [
18903
+ [:follow, String].freeze,
18252
18904
  ].freeze
18253
18905
 
18254
18906
  private_constant :GET
@@ -18277,6 +18929,9 @@ module OvirtSDK4
18277
18929
  #
18278
18930
  # @param opts [Hash] Additional options.
18279
18931
  #
18932
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
18933
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
18934
+ #
18280
18935
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
18281
18936
  #
18282
18937
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -18446,6 +19101,7 @@ module OvirtSDK4
18446
19101
  class QuotaClusterLimitService < Service
18447
19102
 
18448
19103
  GET = [
19104
+ [:follow, String].freeze,
18449
19105
  ].freeze
18450
19106
 
18451
19107
  private_constant :GET
@@ -18455,6 +19111,9 @@ module OvirtSDK4
18455
19111
  #
18456
19112
  # @param opts [Hash] Additional options.
18457
19113
  #
19114
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
19115
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
19116
+ #
18458
19117
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
18459
19118
  #
18460
19119
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -18550,6 +19209,7 @@ module OvirtSDK4
18550
19209
  end
18551
19210
 
18552
19211
  LIST = [
19212
+ [:follow, String].freeze,
18553
19213
  [:max, Integer].freeze,
18554
19214
  ].freeze
18555
19215
 
@@ -18562,6 +19222,9 @@ module OvirtSDK4
18562
19222
  #
18563
19223
  # @param opts [Hash] Additional options.
18564
19224
  #
19225
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
19226
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
19227
+ #
18565
19228
  # @option opts [Integer] :max Sets the maximum number of limits to return. If not specified all the limits are returned.
18566
19229
  #
18567
19230
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -18622,6 +19285,7 @@ module OvirtSDK4
18622
19285
  class QuotaStorageLimitService < Service
18623
19286
 
18624
19287
  GET = [
19288
+ [:follow, String].freeze,
18625
19289
  ].freeze
18626
19290
 
18627
19291
  private_constant :GET
@@ -18631,6 +19295,9 @@ module OvirtSDK4
18631
19295
  #
18632
19296
  # @param opts [Hash] Additional options.
18633
19297
  #
19298
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
19299
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
19300
+ #
18634
19301
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
18635
19302
  #
18636
19303
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -18759,6 +19426,7 @@ module OvirtSDK4
18759
19426
  end
18760
19427
 
18761
19428
  LIST = [
19429
+ [:follow, String].freeze,
18762
19430
  [:max, Integer].freeze,
18763
19431
  ].freeze
18764
19432
 
@@ -18771,6 +19439,9 @@ module OvirtSDK4
18771
19439
  #
18772
19440
  # @param opts [Hash] Additional options.
18773
19441
  #
19442
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
19443
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
19444
+ #
18774
19445
  # @option opts [Integer] :max Sets the maximum number of limits to return. If not specified, all the limits are returned.
18775
19446
  #
18776
19447
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -18873,6 +19544,7 @@ module OvirtSDK4
18873
19544
  end
18874
19545
 
18875
19546
  LIST = [
19547
+ [:follow, String].freeze,
18876
19548
  [:max, Integer].freeze,
18877
19549
  ].freeze
18878
19550
 
@@ -18885,6 +19557,9 @@ module OvirtSDK4
18885
19557
  #
18886
19558
  # @param opts [Hash] Additional options.
18887
19559
  #
19560
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
19561
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
19562
+ #
18888
19563
  # @option opts [Integer] :max Sets the maximum number of quota descriptors to return. If not specified all the descriptors are returned.
18889
19564
  #
18890
19565
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -18945,6 +19620,7 @@ module OvirtSDK4
18945
19620
  class RoleService < Service
18946
19621
 
18947
19622
  GET = [
19623
+ [:follow, String].freeze,
18948
19624
  ].freeze
18949
19625
 
18950
19626
  private_constant :GET
@@ -18972,6 +19648,9 @@ module OvirtSDK4
18972
19648
  #
18973
19649
  # @param opts [Hash] Additional options.
18974
19650
  #
19651
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
19652
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
19653
+ #
18975
19654
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
18976
19655
  #
18977
19656
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -19161,6 +19840,7 @@ module OvirtSDK4
19161
19840
  end
19162
19841
 
19163
19842
  LIST = [
19843
+ [:follow, String].freeze,
19164
19844
  [:max, Integer].freeze,
19165
19845
  ].freeze
19166
19846
 
@@ -19194,6 +19874,9 @@ module OvirtSDK4
19194
19874
  #
19195
19875
  # @param opts [Hash] Additional options.
19196
19876
  #
19877
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
19878
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
19879
+ #
19197
19880
  # @option opts [Integer] :max Sets the maximum number of roles to return. If not specified all the roles are returned.
19198
19881
  #
19199
19882
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -19282,6 +19965,7 @@ module OvirtSDK4
19282
19965
 
19283
19966
  LIST = [
19284
19967
  [:filter, TrueClass].freeze,
19968
+ [:follow, String].freeze,
19285
19969
  [:max, Integer].freeze,
19286
19970
  ].freeze
19287
19971
 
@@ -19296,6 +19980,9 @@ module OvirtSDK4
19296
19980
  #
19297
19981
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
19298
19982
  #
19983
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
19984
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
19985
+ #
19299
19986
  # @option opts [Integer] :max Sets the maximum number of policies to return. If not specified all the policies are returned.
19300
19987
  #
19301
19988
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -19357,6 +20044,7 @@ module OvirtSDK4
19357
20044
 
19358
20045
  GET = [
19359
20046
  [:filter, TrueClass].freeze,
20047
+ [:follow, String].freeze,
19360
20048
  ].freeze
19361
20049
 
19362
20050
  private_constant :GET
@@ -19368,6 +20056,9 @@ module OvirtSDK4
19368
20056
  #
19369
20057
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
19370
20058
  #
20059
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20060
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20061
+ #
19371
20062
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
19372
20063
  #
19373
20064
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -19511,6 +20202,7 @@ module OvirtSDK4
19511
20202
 
19512
20203
  GET = [
19513
20204
  [:filter, TrueClass].freeze,
20205
+ [:follow, String].freeze,
19514
20206
  ].freeze
19515
20207
 
19516
20208
  private_constant :GET
@@ -19522,6 +20214,9 @@ module OvirtSDK4
19522
20214
  #
19523
20215
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
19524
20216
  #
20217
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20218
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20219
+ #
19525
20220
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
19526
20221
  #
19527
20222
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -19591,6 +20286,7 @@ module OvirtSDK4
19591
20286
 
19592
20287
  LIST = [
19593
20288
  [:filter, TrueClass].freeze,
20289
+ [:follow, String].freeze,
19594
20290
  [:max, Integer].freeze,
19595
20291
  ].freeze
19596
20292
 
@@ -19605,6 +20301,9 @@ module OvirtSDK4
19605
20301
  #
19606
20302
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
19607
20303
  #
20304
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20305
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20306
+ #
19608
20307
  # @option opts [Integer] :max Sets the maximum number of policy units to return. If not specified all the policy units are returned.
19609
20308
  #
19610
20309
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -19665,6 +20364,7 @@ module OvirtSDK4
19665
20364
  class SnapshotService < Service
19666
20365
 
19667
20366
  GET = [
20367
+ [:follow, String].freeze,
19668
20368
  ].freeze
19669
20369
 
19670
20370
  private_constant :GET
@@ -19674,6 +20374,9 @@ module OvirtSDK4
19674
20374
  #
19675
20375
  # @param opts [Hash] Additional options.
19676
20376
  #
20377
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20378
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20379
+ #
19677
20380
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
19678
20381
  #
19679
20382
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -19845,6 +20548,7 @@ module OvirtSDK4
19845
20548
  class SnapshotCdromService < Service
19846
20549
 
19847
20550
  GET = [
20551
+ [:follow, String].freeze,
19848
20552
  ].freeze
19849
20553
 
19850
20554
  private_constant :GET
@@ -19854,6 +20558,9 @@ module OvirtSDK4
19854
20558
  #
19855
20559
  # @param opts [Hash] Additional options.
19856
20560
  #
20561
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20562
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20563
+ #
19857
20564
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
19858
20565
  #
19859
20566
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -19897,6 +20604,7 @@ module OvirtSDK4
19897
20604
  class SnapshotCdromsService < Service
19898
20605
 
19899
20606
  LIST = [
20607
+ [:follow, String].freeze,
19900
20608
  [:max, Integer].freeze,
19901
20609
  ].freeze
19902
20610
 
@@ -19909,6 +20617,9 @@ module OvirtSDK4
19909
20617
  #
19910
20618
  # @param opts [Hash] Additional options.
19911
20619
  #
20620
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20621
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20622
+ #
19912
20623
  # @option opts [Integer] :max Sets the maximum number of CDROMS to return. If not specified all the CDROMS are returned.
19913
20624
  #
19914
20625
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -19969,6 +20680,7 @@ module OvirtSDK4
19969
20680
  class SnapshotDiskService < Service
19970
20681
 
19971
20682
  GET = [
20683
+ [:follow, String].freeze,
19972
20684
  ].freeze
19973
20685
 
19974
20686
  private_constant :GET
@@ -19978,6 +20690,9 @@ module OvirtSDK4
19978
20690
  #
19979
20691
  # @param opts [Hash] Additional options.
19980
20692
  #
20693
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20694
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20695
+ #
19981
20696
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
19982
20697
  #
19983
20698
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -20021,6 +20736,7 @@ module OvirtSDK4
20021
20736
  class SnapshotDisksService < Service
20022
20737
 
20023
20738
  LIST = [
20739
+ [:follow, String].freeze,
20024
20740
  [:max, Integer].freeze,
20025
20741
  ].freeze
20026
20742
 
@@ -20033,6 +20749,9 @@ module OvirtSDK4
20033
20749
  #
20034
20750
  # @param opts [Hash] Additional options.
20035
20751
  #
20752
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20753
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20754
+ #
20036
20755
  # @option opts [Integer] :max Sets the maximum number of disks to return. If not specified all the disks are returned.
20037
20756
  #
20038
20757
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -20093,6 +20812,7 @@ module OvirtSDK4
20093
20812
  class SnapshotNicService < Service
20094
20813
 
20095
20814
  GET = [
20815
+ [:follow, String].freeze,
20096
20816
  ].freeze
20097
20817
 
20098
20818
  private_constant :GET
@@ -20102,6 +20822,9 @@ module OvirtSDK4
20102
20822
  #
20103
20823
  # @param opts [Hash] Additional options.
20104
20824
  #
20825
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20826
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20827
+ #
20105
20828
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
20106
20829
  #
20107
20830
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -20145,6 +20868,7 @@ module OvirtSDK4
20145
20868
  class SnapshotNicsService < Service
20146
20869
 
20147
20870
  LIST = [
20871
+ [:follow, String].freeze,
20148
20872
  [:max, Integer].freeze,
20149
20873
  ].freeze
20150
20874
 
@@ -20157,6 +20881,9 @@ module OvirtSDK4
20157
20881
  #
20158
20882
  # @param opts [Hash] Additional options.
20159
20883
  #
20884
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
20885
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
20886
+ #
20160
20887
  # @option opts [Integer] :max Sets the maximum number of NICs to return. If not specified all the NICs are returned.
20161
20888
  #
20162
20889
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -20303,6 +21030,7 @@ module OvirtSDK4
20303
21030
 
20304
21031
  LIST = [
20305
21032
  [:all_content, TrueClass].freeze,
21033
+ [:follow, String].freeze,
20306
21034
  [:max, Integer].freeze,
20307
21035
  ].freeze
20308
21036
 
@@ -20326,6 +21054,9 @@ module OvirtSDK4
20326
21054
  # GET /ovirt-engine/api/vms/123/snapshots?all_content=true
20327
21055
  # ....
20328
21056
  #
21057
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
21058
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
21059
+ #
20329
21060
  # @option opts [Integer] :max Sets the maximum number of snapshots to return. If not specified all the snapshots are returned.
20330
21061
  #
20331
21062
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -20386,6 +21117,7 @@ module OvirtSDK4
20386
21117
  class SshPublicKeyService < Service
20387
21118
 
20388
21119
  GET = [
21120
+ [:follow, String].freeze,
20389
21121
  ].freeze
20390
21122
 
20391
21123
  private_constant :GET
@@ -20395,6 +21127,9 @@ module OvirtSDK4
20395
21127
  #
20396
21128
  # @param opts [Hash] Additional options.
20397
21129
  #
21130
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
21131
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
21132
+ #
20398
21133
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
20399
21134
  #
20400
21135
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -20519,6 +21254,7 @@ module OvirtSDK4
20519
21254
  end
20520
21255
 
20521
21256
  LIST = [
21257
+ [:follow, String].freeze,
20522
21258
  [:max, Integer].freeze,
20523
21259
  ].freeze
20524
21260
 
@@ -20570,6 +21306,9 @@ module OvirtSDK4
20570
21306
  #
20571
21307
  # @param opts [Hash] Additional options.
20572
21308
  #
21309
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
21310
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
21311
+ #
20573
21312
  # @option opts [Integer] :max Sets the maximum number of keys to return. If not specified all the keys are returned.
20574
21313
  #
20575
21314
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -20630,6 +21369,7 @@ module OvirtSDK4
20630
21369
  class StatisticService < Service
20631
21370
 
20632
21371
  GET = [
21372
+ [:follow, String].freeze,
20633
21373
  ].freeze
20634
21374
 
20635
21375
  private_constant :GET
@@ -20639,6 +21379,9 @@ module OvirtSDK4
20639
21379
  #
20640
21380
  # @param opts [Hash] Additional options.
20641
21381
  #
21382
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
21383
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
21384
+ #
20642
21385
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
20643
21386
  #
20644
21387
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -20682,6 +21425,7 @@ module OvirtSDK4
20682
21425
  class StatisticsService < Service
20683
21426
 
20684
21427
  LIST = [
21428
+ [:follow, String].freeze,
20685
21429
  [:max, Integer].freeze,
20686
21430
  ].freeze
20687
21431
 
@@ -20750,6 +21494,9 @@ module OvirtSDK4
20750
21494
  #
20751
21495
  # @param opts [Hash] Additional options.
20752
21496
  #
21497
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
21498
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
21499
+ #
20753
21500
  # @option opts [Integer] :max Sets the maximum number of statistics to return. If not specified all the statistics are returned.
20754
21501
  #
20755
21502
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -20862,6 +21609,7 @@ module OvirtSDK4
20862
21609
  end
20863
21610
 
20864
21611
  GET = [
21612
+ [:follow, String].freeze,
20865
21613
  ].freeze
20866
21614
 
20867
21615
  private_constant :GET
@@ -20895,6 +21643,9 @@ module OvirtSDK4
20895
21643
  #
20896
21644
  # @param opts [Hash] Additional options.
20897
21645
  #
21646
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
21647
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
21648
+ #
20898
21649
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
20899
21650
  #
20900
21651
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -21019,6 +21770,7 @@ module OvirtSDK4
21019
21770
  end
21020
21771
 
21021
21772
  LIST = [
21773
+ [:follow, String].freeze,
21022
21774
  [:max, Integer].freeze,
21023
21775
  ].freeze
21024
21776
 
@@ -21058,6 +21810,9 @@ module OvirtSDK4
21058
21810
  #
21059
21811
  # @param opts [Hash] Additional options.
21060
21812
  #
21813
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
21814
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
21815
+ #
21061
21816
  # @option opts [Integer] :max Sets the maximum number of steps to return. If not specified all the steps are returned.
21062
21817
  #
21063
21818
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -21118,6 +21873,7 @@ module OvirtSDK4
21118
21873
  class StorageService < Service
21119
21874
 
21120
21875
  GET = [
21876
+ [:follow, String].freeze,
21121
21877
  [:report_status, TrueClass].freeze,
21122
21878
  ].freeze
21123
21879
 
@@ -21128,6 +21884,9 @@ module OvirtSDK4
21128
21884
  #
21129
21885
  # @param opts [Hash] Additional options.
21130
21886
  #
21887
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
21888
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
21889
+ #
21131
21890
  # @option opts [Boolean] :report_status Indicates if the status of the LUNs in the storage should be checked.
21132
21891
  # Checking the status of the LUN is an heavy weight operation and
21133
21892
  # this data is not always needed by the user.
@@ -21222,6 +21981,7 @@ module OvirtSDK4
21222
21981
 
21223
21982
  GET = [
21224
21983
  [:filter, TrueClass].freeze,
21984
+ [:follow, String].freeze,
21225
21985
  ].freeze
21226
21986
 
21227
21987
  private_constant :GET
@@ -21233,6 +21993,9 @@ module OvirtSDK4
21233
21993
  #
21234
21994
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
21235
21995
  #
21996
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
21997
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
21998
+ #
21236
21999
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
21237
22000
  #
21238
22001
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -21711,6 +22474,7 @@ module OvirtSDK4
21711
22474
 
21712
22475
  GET = [
21713
22476
  [:filter, TrueClass].freeze,
22477
+ [:follow, String].freeze,
21714
22478
  ].freeze
21715
22479
 
21716
22480
  private_constant :GET
@@ -21722,6 +22486,9 @@ module OvirtSDK4
21722
22486
  #
21723
22487
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
21724
22488
  #
22489
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
22490
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
22491
+ #
21725
22492
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
21726
22493
  #
21727
22494
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -21766,6 +22533,7 @@ module OvirtSDK4
21766
22533
 
21767
22534
  LIST = [
21768
22535
  [:case_sensitive, TrueClass].freeze,
22536
+ [:follow, String].freeze,
21769
22537
  [:max, Integer].freeze,
21770
22538
  [:search, String].freeze,
21771
22539
  ].freeze
@@ -21784,6 +22552,9 @@ module OvirtSDK4
21784
22552
  # account. The default value is `true`, which means that case is taken into account. If you want to search
21785
22553
  # ignoring case set it to `false`.
21786
22554
  #
22555
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
22556
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
22557
+ #
21787
22558
  # @option opts [Integer] :max Sets the maximum number of disks to return. If not specified all the disks are returned.
21788
22559
  #
21789
22560
  # @option opts [String] :search A query string used to restrict the returned disks.
@@ -21909,6 +22680,7 @@ module OvirtSDK4
21909
22680
  end
21910
22681
 
21911
22682
  GET = [
22683
+ [:follow, String].freeze,
21912
22684
  ].freeze
21913
22685
 
21914
22686
  private_constant :GET
@@ -21918,6 +22690,9 @@ module OvirtSDK4
21918
22690
  #
21919
22691
  # @param opts [Hash] Additional options.
21920
22692
  #
22693
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
22694
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
22695
+ #
21921
22696
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
21922
22697
  #
21923
22698
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -22184,6 +22959,7 @@ module OvirtSDK4
22184
22959
  end
22185
22960
 
22186
22961
  LIST = [
22962
+ [:follow, String].freeze,
22187
22963
  [:max, Integer].freeze,
22188
22964
  [:unregistered, TrueClass].freeze,
22189
22965
  ].freeze
@@ -22197,6 +22973,9 @@ module OvirtSDK4
22197
22973
  #
22198
22974
  # @param opts [Hash] Additional options.
22199
22975
  #
22976
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
22977
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
22978
+ #
22200
22979
  # @option opts [Integer] :max Sets the maximum number of disks to return. If not specified, all the disks are returned.
22201
22980
  #
22202
22981
  # @option opts [Boolean] :unregistered Indicates whether to retrieve a list of registered or unregistered disks in the storage domain.
@@ -22268,6 +23047,7 @@ module OvirtSDK4
22268
23047
  class StorageDomainServerConnectionService < Service
22269
23048
 
22270
23049
  GET = [
23050
+ [:follow, String].freeze,
22271
23051
  ].freeze
22272
23052
 
22273
23053
  private_constant :GET
@@ -22277,6 +23057,9 @@ module OvirtSDK4
22277
23057
  #
22278
23058
  # @param opts [Hash] Additional options.
22279
23059
  #
23060
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
23061
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
23062
+ #
22280
23063
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
22281
23064
  #
22282
23065
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -22372,6 +23155,7 @@ module OvirtSDK4
22372
23155
  end
22373
23156
 
22374
23157
  LIST = [
23158
+ [:follow, String].freeze,
22375
23159
  [:max, Integer].freeze,
22376
23160
  ].freeze
22377
23161
 
@@ -22384,6 +23168,9 @@ module OvirtSDK4
22384
23168
  #
22385
23169
  # @param opts [Hash] Additional options.
22386
23170
  #
23171
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
23172
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
23173
+ #
22387
23174
  # @option opts [Integer] :max Sets the maximum number of connections to return. If not specified all the connections are returned.
22388
23175
  #
22389
23176
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -22444,6 +23231,7 @@ module OvirtSDK4
22444
23231
  class StorageDomainTemplateService < Service
22445
23232
 
22446
23233
  GET = [
23234
+ [:follow, String].freeze,
22447
23235
  ].freeze
22448
23236
 
22449
23237
  private_constant :GET
@@ -22453,6 +23241,9 @@ module OvirtSDK4
22453
23241
  #
22454
23242
  # @param opts [Hash] Additional options.
22455
23243
  #
23244
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
23245
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
23246
+ #
22456
23247
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
22457
23248
  #
22458
23249
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -22661,6 +23452,7 @@ module OvirtSDK4
22661
23452
  class StorageDomainTemplatesService < Service
22662
23453
 
22663
23454
  LIST = [
23455
+ [:follow, String].freeze,
22664
23456
  [:max, Integer].freeze,
22665
23457
  [:unregistered, TrueClass].freeze,
22666
23458
  ].freeze
@@ -22674,6 +23466,9 @@ module OvirtSDK4
22674
23466
  #
22675
23467
  # @param opts [Hash] Additional options.
22676
23468
  #
23469
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
23470
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
23471
+ #
22677
23472
  # @option opts [Integer] :max Sets the maximum number of templates to return. If not specified all the templates are returned.
22678
23473
  #
22679
23474
  # @option opts [Boolean] :unregistered Indicates whether to retrieve a list of registered or unregistered templates which contain disks on the storage domain.
@@ -22745,6 +23540,7 @@ module OvirtSDK4
22745
23540
  class StorageDomainVmService < Service
22746
23541
 
22747
23542
  GET = [
23543
+ [:follow, String].freeze,
22748
23544
  ].freeze
22749
23545
 
22750
23546
  private_constant :GET
@@ -22754,6 +23550,9 @@ module OvirtSDK4
22754
23550
  #
22755
23551
  # @param opts [Hash] Additional options.
22756
23552
  #
23553
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
23554
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
23555
+ #
22757
23556
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
22758
23557
  #
22759
23558
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -23035,6 +23834,7 @@ module OvirtSDK4
23035
23834
  class StorageDomainVmDiskAttachmentService < Service
23036
23835
 
23037
23836
  GET = [
23837
+ [:follow, String].freeze,
23038
23838
  ].freeze
23039
23839
 
23040
23840
  private_constant :GET
@@ -23044,6 +23844,9 @@ module OvirtSDK4
23044
23844
  #
23045
23845
  # @param opts [Hash] Additional options.
23046
23846
  #
23847
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
23848
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
23849
+ #
23047
23850
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
23048
23851
  #
23049
23852
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -23087,6 +23890,7 @@ module OvirtSDK4
23087
23890
  class StorageDomainVmDiskAttachmentsService < Service
23088
23891
 
23089
23892
  LIST = [
23893
+ [:follow, String].freeze,
23090
23894
  ].freeze
23091
23895
 
23092
23896
  private_constant :LIST
@@ -23098,6 +23902,9 @@ module OvirtSDK4
23098
23902
  #
23099
23903
  # @param opts [Hash] Additional options.
23100
23904
  #
23905
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
23906
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
23907
+ #
23101
23908
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
23102
23909
  #
23103
23910
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -23156,6 +23963,7 @@ module OvirtSDK4
23156
23963
  class StorageDomainVmsService < Service
23157
23964
 
23158
23965
  LIST = [
23966
+ [:follow, String].freeze,
23159
23967
  [:max, Integer].freeze,
23160
23968
  [:unregistered, TrueClass].freeze,
23161
23969
  ].freeze
@@ -23169,6 +23977,9 @@ module OvirtSDK4
23169
23977
  #
23170
23978
  # @param opts [Hash] Additional options.
23171
23979
  #
23980
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
23981
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
23982
+ #
23172
23983
  # @option opts [Integer] :max Sets the maximum number of virtual machines to return. If not specified all the virtual machines are
23173
23984
  # returned.
23174
23985
  #
@@ -23341,6 +24152,7 @@ module OvirtSDK4
23341
24152
  LIST = [
23342
24153
  [:case_sensitive, TrueClass].freeze,
23343
24154
  [:filter, TrueClass].freeze,
24155
+ [:follow, String].freeze,
23344
24156
  [:max, Integer].freeze,
23345
24157
  [:search, String].freeze,
23346
24158
  ].freeze
@@ -23361,6 +24173,9 @@ module OvirtSDK4
23361
24173
  #
23362
24174
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
23363
24175
  #
24176
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
24177
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
24178
+ #
23364
24179
  # @option opts [Integer] :max Sets the maximum number of storage domains to return. If not specified all the storage domains are returned.
23365
24180
  #
23366
24181
  # @option opts [String] :search A query string used to restrict the returned storage domains.
@@ -23423,6 +24238,7 @@ module OvirtSDK4
23423
24238
  class StorageServerConnectionService < Service
23424
24239
 
23425
24240
  GET = [
24241
+ [:follow, String].freeze,
23426
24242
  ].freeze
23427
24243
 
23428
24244
  private_constant :GET
@@ -23432,6 +24248,9 @@ module OvirtSDK4
23432
24248
  #
23433
24249
  # @param opts [Hash] Additional options.
23434
24250
  #
24251
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
24252
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
24253
+ #
23435
24254
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
23436
24255
  #
23437
24256
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -23568,6 +24387,7 @@ module OvirtSDK4
23568
24387
  class StorageServerConnectionExtensionService < Service
23569
24388
 
23570
24389
  GET = [
24390
+ [:follow, String].freeze,
23571
24391
  ].freeze
23572
24392
 
23573
24393
  private_constant :GET
@@ -23577,6 +24397,9 @@ module OvirtSDK4
23577
24397
  #
23578
24398
  # @param opts [Hash] Additional options.
23579
24399
  #
24400
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
24401
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
24402
+ #
23580
24403
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
23581
24404
  #
23582
24405
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -23739,6 +24562,7 @@ module OvirtSDK4
23739
24562
  end
23740
24563
 
23741
24564
  LIST = [
24565
+ [:follow, String].freeze,
23742
24566
  [:max, Integer].freeze,
23743
24567
  ].freeze
23744
24568
 
@@ -23751,6 +24575,9 @@ module OvirtSDK4
23751
24575
  #
23752
24576
  # @param opts [Hash] Additional options.
23753
24577
  #
24578
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
24579
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
24580
+ #
23754
24581
  # @option opts [Integer] :max Sets the maximum number of extensions to return. If not specified all the extensions are returned.
23755
24582
  #
23756
24583
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -23860,6 +24687,7 @@ module OvirtSDK4
23860
24687
  end
23861
24688
 
23862
24689
  LIST = [
24690
+ [:follow, String].freeze,
23863
24691
  [:max, Integer].freeze,
23864
24692
  ].freeze
23865
24693
 
@@ -23872,6 +24700,9 @@ module OvirtSDK4
23872
24700
  #
23873
24701
  # @param opts [Hash] Additional options.
23874
24702
  #
24703
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
24704
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
24705
+ #
23875
24706
  # @option opts [Integer] :max Sets the maximum number of connections to return. If not specified all the connections are returned.
23876
24707
  #
23877
24708
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -23932,6 +24763,7 @@ module OvirtSDK4
23932
24763
  class SystemService < Service
23933
24764
 
23934
24765
  GET = [
24766
+ [:follow, String].freeze,
23935
24767
  ].freeze
23936
24768
 
23937
24769
  private_constant :GET
@@ -24019,6 +24851,9 @@ module OvirtSDK4
24019
24851
  #
24020
24852
  # @param opts [Hash] Additional options.
24021
24853
  #
24854
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
24855
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
24856
+ #
24022
24857
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
24023
24858
  #
24024
24859
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -24927,6 +25762,7 @@ module OvirtSDK4
24927
25762
  end
24928
25763
 
24929
25764
  LIST = [
25765
+ [:follow, String].freeze,
24930
25766
  ].freeze
24931
25767
 
24932
25768
  private_constant :LIST
@@ -24960,6 +25796,9 @@ module OvirtSDK4
24960
25796
  #
24961
25797
  # @param opts [Hash] Additional options.
24962
25798
  #
25799
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
25800
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
25801
+ #
24963
25802
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
24964
25803
  #
24965
25804
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -25019,6 +25858,7 @@ module OvirtSDK4
25019
25858
  class TagService < Service
25020
25859
 
25021
25860
  GET = [
25861
+ [:follow, String].freeze,
25022
25862
  ].freeze
25023
25863
 
25024
25864
  private_constant :GET
@@ -25042,6 +25882,9 @@ module OvirtSDK4
25042
25882
  #
25043
25883
  # @param opts [Hash] Additional options.
25044
25884
  #
25885
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
25886
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
25887
+ #
25045
25888
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
25046
25889
  #
25047
25890
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -25229,6 +26072,7 @@ module OvirtSDK4
25229
26072
  end
25230
26073
 
25231
26074
  LIST = [
26075
+ [:follow, String].freeze,
25232
26076
  [:max, Integer].freeze,
25233
26077
  ].freeze
25234
26078
 
@@ -25274,6 +26118,9 @@ module OvirtSDK4
25274
26118
  #
25275
26119
  # @param opts [Hash] Additional options.
25276
26120
  #
26121
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
26122
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
26123
+ #
25277
26124
  # @option opts [Integer] :max Sets the maximum number of tags to return. If not specified all the tags are returned.
25278
26125
  #
25279
26126
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -25384,6 +26231,7 @@ module OvirtSDK4
25384
26231
 
25385
26232
  GET = [
25386
26233
  [:filter, TrueClass].freeze,
26234
+ [:follow, String].freeze,
25387
26235
  ].freeze
25388
26236
 
25389
26237
  private_constant :GET
@@ -25395,6 +26243,9 @@ module OvirtSDK4
25395
26243
  #
25396
26244
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
25397
26245
  #
26246
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
26247
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
26248
+ #
25398
26249
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
25399
26250
  #
25400
26251
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -25634,6 +26485,7 @@ module OvirtSDK4
25634
26485
  class TemplateCdromService < Service
25635
26486
 
25636
26487
  GET = [
26488
+ [:follow, String].freeze,
25637
26489
  ].freeze
25638
26490
 
25639
26491
  private_constant :GET
@@ -25650,6 +26502,9 @@ module OvirtSDK4
25650
26502
  #
25651
26503
  # @param opts [Hash] Additional options.
25652
26504
  #
26505
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
26506
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
26507
+ #
25653
26508
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
25654
26509
  #
25655
26510
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -25693,6 +26548,7 @@ module OvirtSDK4
25693
26548
  class TemplateCdromsService < Service
25694
26549
 
25695
26550
  LIST = [
26551
+ [:follow, String].freeze,
25696
26552
  [:max, Integer].freeze,
25697
26553
  ].freeze
25698
26554
 
@@ -25705,6 +26561,9 @@ module OvirtSDK4
25705
26561
  #
25706
26562
  # @param opts [Hash] Additional options.
25707
26563
  #
26564
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
26565
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
26566
+ #
25708
26567
  # @option opts [Integer] :max Sets the maximum number of CD-ROMs to return. If not specified all the CD-ROMs are returned.
25709
26568
  #
25710
26569
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -25829,6 +26688,7 @@ module OvirtSDK4
25829
26688
  end
25830
26689
 
25831
26690
  GET = [
26691
+ [:follow, String].freeze,
25832
26692
  ].freeze
25833
26693
 
25834
26694
  private_constant :GET
@@ -25838,6 +26698,9 @@ module OvirtSDK4
25838
26698
  #
25839
26699
  # @param opts [Hash] Additional options.
25840
26700
  #
26701
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
26702
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
26703
+ #
25841
26704
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
25842
26705
  #
25843
26706
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -25906,6 +26769,7 @@ module OvirtSDK4
25906
26769
  class TemplateDiskAttachmentService < Service
25907
26770
 
25908
26771
  GET = [
26772
+ [:follow, String].freeze,
25909
26773
  ].freeze
25910
26774
 
25911
26775
  private_constant :GET
@@ -25915,6 +26779,9 @@ module OvirtSDK4
25915
26779
  #
25916
26780
  # @param opts [Hash] Additional options.
25917
26781
  #
26782
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
26783
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
26784
+ #
25918
26785
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
25919
26786
  #
25920
26787
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -25994,6 +26861,7 @@ module OvirtSDK4
25994
26861
  class TemplateDiskAttachmentsService < Service
25995
26862
 
25996
26863
  LIST = [
26864
+ [:follow, String].freeze,
25997
26865
  ].freeze
25998
26866
 
25999
26867
  private_constant :LIST
@@ -26005,6 +26873,9 @@ module OvirtSDK4
26005
26873
  #
26006
26874
  # @param opts [Hash] Additional options.
26007
26875
  #
26876
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
26877
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
26878
+ #
26008
26879
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
26009
26880
  #
26010
26881
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -26063,6 +26934,7 @@ module OvirtSDK4
26063
26934
  class TemplateDisksService < Service
26064
26935
 
26065
26936
  LIST = [
26937
+ [:follow, String].freeze,
26066
26938
  [:max, Integer].freeze,
26067
26939
  ].freeze
26068
26940
 
@@ -26075,6 +26947,9 @@ module OvirtSDK4
26075
26947
  #
26076
26948
  # @param opts [Hash] Additional options.
26077
26949
  #
26950
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
26951
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
26952
+ #
26078
26953
  # @option opts [Integer] :max Sets the maximum number of disks to return. If not specified all the disks are returned.
26079
26954
  #
26080
26955
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -26135,6 +27010,7 @@ module OvirtSDK4
26135
27010
  class TemplateGraphicsConsoleService < Service
26136
27011
 
26137
27012
  GET = [
27013
+ [:follow, String].freeze,
26138
27014
  ].freeze
26139
27015
 
26140
27016
  private_constant :GET
@@ -26144,6 +27020,9 @@ module OvirtSDK4
26144
27020
  #
26145
27021
  # @param opts [Hash] Additional options.
26146
27022
  #
27023
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
27024
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
27025
+ #
26147
27026
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
26148
27027
  #
26149
27028
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -26239,6 +27118,7 @@ module OvirtSDK4
26239
27118
  end
26240
27119
 
26241
27120
  LIST = [
27121
+ [:follow, String].freeze,
26242
27122
  [:max, Integer].freeze,
26243
27123
  ].freeze
26244
27124
 
@@ -26251,6 +27131,9 @@ module OvirtSDK4
26251
27131
  #
26252
27132
  # @param opts [Hash] Additional options.
26253
27133
  #
27134
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
27135
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
27136
+ #
26254
27137
  # @option opts [Integer] :max Sets the maximum number of consoles to return. If not specified all the consoles are returned.
26255
27138
  #
26256
27139
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -26311,6 +27194,7 @@ module OvirtSDK4
26311
27194
  class TemplateNicService < Service
26312
27195
 
26313
27196
  GET = [
27197
+ [:follow, String].freeze,
26314
27198
  ].freeze
26315
27199
 
26316
27200
  private_constant :GET
@@ -26320,6 +27204,9 @@ module OvirtSDK4
26320
27204
  #
26321
27205
  # @param opts [Hash] Additional options.
26322
27206
  #
27207
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
27208
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
27209
+ #
26323
27210
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
26324
27211
  #
26325
27212
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -26444,6 +27331,7 @@ module OvirtSDK4
26444
27331
  end
26445
27332
 
26446
27333
  LIST = [
27334
+ [:follow, String].freeze,
26447
27335
  [:max, Integer].freeze,
26448
27336
  ].freeze
26449
27337
 
@@ -26456,6 +27344,9 @@ module OvirtSDK4
26456
27344
  #
26457
27345
  # @param opts [Hash] Additional options.
26458
27346
  #
27347
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
27348
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
27349
+ #
26459
27350
  # @option opts [Integer] :max Sets the maximum number of NICs to return. If not specified all the NICs are returned.
26460
27351
  #
26461
27352
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -26516,6 +27407,7 @@ module OvirtSDK4
26516
27407
  class TemplateWatchdogService < Service
26517
27408
 
26518
27409
  GET = [
27410
+ [:follow, String].freeze,
26519
27411
  ].freeze
26520
27412
 
26521
27413
  private_constant :GET
@@ -26525,6 +27417,9 @@ module OvirtSDK4
26525
27417
  #
26526
27418
  # @param opts [Hash] Additional options.
26527
27419
  #
27420
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
27421
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
27422
+ #
26528
27423
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
26529
27424
  #
26530
27425
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -26649,6 +27544,7 @@ module OvirtSDK4
26649
27544
  end
26650
27545
 
26651
27546
  LIST = [
27547
+ [:follow, String].freeze,
26652
27548
  [:max, Integer].freeze,
26653
27549
  ].freeze
26654
27550
 
@@ -26661,6 +27557,9 @@ module OvirtSDK4
26661
27557
  #
26662
27558
  # @param opts [Hash] Additional options.
26663
27559
  #
27560
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
27561
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
27562
+ #
26664
27563
  # @option opts [Integer] :max Sets the maximum number of watchdogs to return. If not specified all the watchdogs are returned.
26665
27564
  #
26666
27565
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -26893,6 +27792,7 @@ module OvirtSDK4
26893
27792
  LIST = [
26894
27793
  [:case_sensitive, TrueClass].freeze,
26895
27794
  [:filter, TrueClass].freeze,
27795
+ [:follow, String].freeze,
26896
27796
  [:max, Integer].freeze,
26897
27797
  [:search, String].freeze,
26898
27798
  ].freeze
@@ -26921,6 +27821,9 @@ module OvirtSDK4
26921
27821
  #
26922
27822
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
26923
27823
  #
27824
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
27825
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
27826
+ #
26924
27827
  # @option opts [Integer] :max Sets the maximum number of templates to return. If not specified, all the templates are returned.
26925
27828
  #
26926
27829
  # @option opts [String] :search A query string used to restrict the returned templates.
@@ -26983,6 +27886,7 @@ module OvirtSDK4
26983
27886
  class UnmanagedNetworkService < Service
26984
27887
 
26985
27888
  GET = [
27889
+ [:follow, String].freeze,
26986
27890
  ].freeze
26987
27891
 
26988
27892
  private_constant :GET
@@ -26992,6 +27896,9 @@ module OvirtSDK4
26992
27896
  #
26993
27897
  # @param opts [Hash] Additional options.
26994
27898
  #
27899
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
27900
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
27901
+ #
26995
27902
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
26996
27903
  #
26997
27904
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -27060,6 +27967,7 @@ module OvirtSDK4
27060
27967
  class UnmanagedNetworksService < Service
27061
27968
 
27062
27969
  LIST = [
27970
+ [:follow, String].freeze,
27063
27971
  [:max, Integer].freeze,
27064
27972
  ].freeze
27065
27973
 
@@ -27072,6 +27980,9 @@ module OvirtSDK4
27072
27980
  #
27073
27981
  # @param opts [Hash] Additional options.
27074
27982
  #
27983
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
27984
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
27985
+ #
27075
27986
  # @option opts [Integer] :max Sets the maximum number of networks to return. If not specified all the networks are returned.
27076
27987
  #
27077
27988
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -27132,6 +28043,7 @@ module OvirtSDK4
27132
28043
  class UserService < Service
27133
28044
 
27134
28045
  GET = [
28046
+ [:follow, String].freeze,
27135
28047
  ].freeze
27136
28048
 
27137
28049
  private_constant :GET
@@ -27170,6 +28082,9 @@ module OvirtSDK4
27170
28082
  #
27171
28083
  # @param opts [Hash] Additional options.
27172
28084
  #
28085
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
28086
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
28087
+ #
27173
28088
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
27174
28089
  #
27175
28090
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -27370,6 +28285,7 @@ module OvirtSDK4
27370
28285
 
27371
28286
  LIST = [
27372
28287
  [:case_sensitive, TrueClass].freeze,
28288
+ [:follow, String].freeze,
27373
28289
  [:max, Integer].freeze,
27374
28290
  [:search, String].freeze,
27375
28291
  ].freeze
@@ -27415,6 +28331,9 @@ module OvirtSDK4
27415
28331
  # account. The default value is `true`, which means that case is taken into account. If you want to search
27416
28332
  # ignoring case set it to `false`.
27417
28333
  #
28334
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
28335
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
28336
+ #
27418
28337
  # @option opts [Integer] :max Sets the maximum number of users to return. If not specified all the users are returned.
27419
28338
  #
27420
28339
  # @option opts [String] :search A query string used to restrict the returned users.
@@ -27477,6 +28396,7 @@ module OvirtSDK4
27477
28396
  class VirtualFunctionAllowedNetworkService < Service
27478
28397
 
27479
28398
  GET = [
28399
+ [:follow, String].freeze,
27480
28400
  ].freeze
27481
28401
 
27482
28402
  private_constant :GET
@@ -27486,6 +28406,9 @@ module OvirtSDK4
27486
28406
  #
27487
28407
  # @param opts [Hash] Additional options.
27488
28408
  #
28409
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
28410
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
28411
+ #
27489
28412
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
27490
28413
  #
27491
28414
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -27581,6 +28504,7 @@ module OvirtSDK4
27581
28504
  end
27582
28505
 
27583
28506
  LIST = [
28507
+ [:follow, String].freeze,
27584
28508
  [:max, Integer].freeze,
27585
28509
  ].freeze
27586
28510
 
@@ -27593,6 +28517,9 @@ module OvirtSDK4
27593
28517
  #
27594
28518
  # @param opts [Hash] Additional options.
27595
28519
  #
28520
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
28521
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
28522
+ #
27596
28523
  # @option opts [Integer] :max Sets the maximum number of networks to return. If not specified all the networks are returned.
27597
28524
  #
27598
28525
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -27889,6 +28816,7 @@ module OvirtSDK4
27889
28816
  GET = [
27890
28817
  [:all_content, TrueClass].freeze,
27891
28818
  [:filter, TrueClass].freeze,
28819
+ [:follow, String].freeze,
27892
28820
  [:next_run, TrueClass].freeze,
27893
28821
  ].freeze
27894
28822
 
@@ -27920,6 +28848,9 @@ module OvirtSDK4
27920
28848
  #
27921
28849
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
27922
28850
  #
28851
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
28852
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
28853
+ #
27923
28854
  # @option opts [Boolean] :next_run Indicates if the returned result describes the virtual machine as it is currently running or if describes
27924
28855
  # the virtual machine with the modifications that have already been performed but that will only come into
27925
28856
  # effect when the virtual machine is restarted. By default the value is `false`.
@@ -28903,6 +29834,7 @@ module OvirtSDK4
28903
29834
 
28904
29835
  GET = [
28905
29836
  [:filter, TrueClass].freeze,
29837
+ [:follow, String].freeze,
28906
29838
  ].freeze
28907
29839
 
28908
29840
  private_constant :GET
@@ -28914,6 +29846,9 @@ module OvirtSDK4
28914
29846
  #
28915
29847
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
28916
29848
  #
29849
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
29850
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
29851
+ #
28917
29852
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
28918
29853
  #
28919
29854
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -28958,6 +29893,7 @@ module OvirtSDK4
28958
29893
 
28959
29894
  LIST = [
28960
29895
  [:filter, TrueClass].freeze,
29896
+ [:follow, String].freeze,
28961
29897
  [:max, Integer].freeze,
28962
29898
  ].freeze
28963
29899
 
@@ -28972,6 +29908,9 @@ module OvirtSDK4
28972
29908
  #
28973
29909
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
28974
29910
  #
29911
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
29912
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
29913
+ #
28975
29914
  # @option opts [Integer] :max Sets the maximum number of applications to return. If not specified all the applications are returned.
28976
29915
  #
28977
29916
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -29033,6 +29972,7 @@ module OvirtSDK4
29033
29972
 
29034
29973
  GET = [
29035
29974
  [:current, TrueClass].freeze,
29975
+ [:follow, String].freeze,
29036
29976
  ].freeze
29037
29977
 
29038
29978
  private_constant :GET
@@ -29067,6 +30007,9 @@ module OvirtSDK4
29067
30007
  # @option opts [Boolean] :current Indicates if the operation should return the information for the currently running virtual machine. This
29068
30008
  # parameter is optional, and the default value is `false`.
29069
30009
  #
30010
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
30011
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
30012
+ #
29070
30013
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
29071
30014
  #
29072
30015
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -29219,6 +30162,7 @@ module OvirtSDK4
29219
30162
  end
29220
30163
 
29221
30164
  LIST = [
30165
+ [:follow, String].freeze,
29222
30166
  [:max, Integer].freeze,
29223
30167
  ].freeze
29224
30168
 
@@ -29231,6 +30175,9 @@ module OvirtSDK4
29231
30175
  #
29232
30176
  # @param opts [Hash] Additional options.
29233
30177
  #
30178
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
30179
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
30180
+ #
29234
30181
  # @option opts [Integer] :max Sets the maximum number of CDROMs to return. If not specified all the CDROMs are returned.
29235
30182
  #
29236
30183
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -29372,6 +30319,7 @@ module OvirtSDK4
29372
30319
  end
29373
30320
 
29374
30321
  GET = [
30322
+ [:follow, String].freeze,
29375
30323
  ].freeze
29376
30324
 
29377
30325
  private_constant :GET
@@ -29381,6 +30329,9 @@ module OvirtSDK4
29381
30329
  #
29382
30330
  # @param opts [Hash] Additional options.
29383
30331
  #
30332
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
30333
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
30334
+ #
29384
30335
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
29385
30336
  #
29386
30337
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -29568,6 +30519,7 @@ module OvirtSDK4
29568
30519
  end
29569
30520
 
29570
30521
  LIST = [
30522
+ [:follow, String].freeze,
29571
30523
  [:max, Integer].freeze,
29572
30524
  ].freeze
29573
30525
 
@@ -29580,6 +30532,9 @@ module OvirtSDK4
29580
30532
  #
29581
30533
  # @param opts [Hash] Additional options.
29582
30534
  #
30535
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
30536
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
30537
+ #
29583
30538
  # @option opts [Integer] :max Sets the maximum number of disks to return. If not specified all the disks are returned.
29584
30539
  #
29585
30540
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -29641,6 +30596,7 @@ module OvirtSDK4
29641
30596
 
29642
30597
  GET = [
29643
30598
  [:current, TrueClass].freeze,
30599
+ [:follow, String].freeze,
29644
30600
  ].freeze
29645
30601
 
29646
30602
  private_constant :GET
@@ -29673,6 +30629,9 @@ module OvirtSDK4
29673
30629
  #
29674
30630
  # The default value is `false`.
29675
30631
  #
30632
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
30633
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
30634
+ #
29676
30635
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
29677
30636
  #
29678
30637
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -29949,6 +30908,7 @@ module OvirtSDK4
29949
30908
 
29950
30909
  LIST = [
29951
30910
  [:current, TrueClass].freeze,
30911
+ [:follow, String].freeze,
29952
30912
  [:max, Integer].freeze,
29953
30913
  ].freeze
29954
30914
 
@@ -29984,6 +30944,9 @@ module OvirtSDK4
29984
30944
  #
29985
30945
  # The default value is `false`.
29986
30946
  #
30947
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
30948
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
30949
+ #
29987
30950
  # @option opts [Integer] :max Sets the maximum number of consoles to return. If not specified all the consoles are returned.
29988
30951
  #
29989
30952
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -30044,6 +31007,7 @@ module OvirtSDK4
30044
31007
  class VmHostDeviceService < Service
30045
31008
 
30046
31009
  GET = [
31010
+ [:follow, String].freeze,
30047
31011
  ].freeze
30048
31012
 
30049
31013
  private_constant :GET
@@ -30081,6 +31045,9 @@ module OvirtSDK4
30081
31045
  #
30082
31046
  # @param opts [Hash] Additional options.
30083
31047
  #
31048
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
31049
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
31050
+ #
30084
31051
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
30085
31052
  #
30086
31053
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -30210,6 +31177,7 @@ module OvirtSDK4
30210
31177
  end
30211
31178
 
30212
31179
  LIST = [
31180
+ [:follow, String].freeze,
30213
31181
  [:max, Integer].freeze,
30214
31182
  ].freeze
30215
31183
 
@@ -30222,6 +31190,9 @@ module OvirtSDK4
30222
31190
  #
30223
31191
  # @param opts [Hash] Additional options.
30224
31192
  #
31193
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
31194
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
31195
+ #
30225
31196
  # @option opts [Integer] :max Sets the maximum number of devices to return. If not specified all the devices are returned.
30226
31197
  #
30227
31198
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -30334,6 +31305,7 @@ module OvirtSDK4
30334
31305
  end
30335
31306
 
30336
31307
  GET = [
31308
+ [:follow, String].freeze,
30337
31309
  ].freeze
30338
31310
 
30339
31311
  private_constant :GET
@@ -30343,6 +31315,9 @@ module OvirtSDK4
30343
31315
  #
30344
31316
  # @param opts [Hash] Additional options.
30345
31317
  #
31318
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
31319
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
31320
+ #
30346
31321
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
30347
31322
  #
30348
31323
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -30611,6 +31586,7 @@ module OvirtSDK4
30611
31586
  end
30612
31587
 
30613
31588
  LIST = [
31589
+ [:follow, String].freeze,
30614
31590
  [:max, Integer].freeze,
30615
31591
  ].freeze
30616
31592
 
@@ -30623,6 +31599,9 @@ module OvirtSDK4
30623
31599
  #
30624
31600
  # @param opts [Hash] Additional options.
30625
31601
  #
31602
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
31603
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
31604
+ #
30626
31605
  # @option opts [Integer] :max Sets the maximum number of NICs to return. If not specified all the NICs are returned.
30627
31606
  #
30628
31607
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -30683,6 +31662,7 @@ module OvirtSDK4
30683
31662
  class VmNumaNodeService < Service
30684
31663
 
30685
31664
  GET = [
31665
+ [:follow, String].freeze,
30686
31666
  ].freeze
30687
31667
 
30688
31668
  private_constant :GET
@@ -30692,6 +31672,9 @@ module OvirtSDK4
30692
31672
  #
30693
31673
  # @param opts [Hash] Additional options.
30694
31674
  #
31675
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
31676
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
31677
+ #
30695
31678
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
30696
31679
  #
30697
31680
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -30867,6 +31850,7 @@ module OvirtSDK4
30867
31850
  end
30868
31851
 
30869
31852
  LIST = [
31853
+ [:follow, String].freeze,
30870
31854
  [:max, Integer].freeze,
30871
31855
  ].freeze
30872
31856
 
@@ -30879,6 +31863,9 @@ module OvirtSDK4
30879
31863
  #
30880
31864
  # @param opts [Hash] Additional options.
30881
31865
  #
31866
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
31867
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
31868
+ #
30882
31869
  # @option opts [Integer] :max Sets the maximum number of nodes to return. If not specified all the nodes are returned.
30883
31870
  #
30884
31871
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -30979,6 +31966,7 @@ module OvirtSDK4
30979
31966
 
30980
31967
  GET = [
30981
31968
  [:filter, TrueClass].freeze,
31969
+ [:follow, String].freeze,
30982
31970
  ].freeze
30983
31971
 
30984
31972
  private_constant :GET
@@ -31016,6 +32004,9 @@ module OvirtSDK4
31016
32004
  #
31017
32005
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
31018
32006
  #
32007
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
32008
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
32009
+ #
31019
32010
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
31020
32011
  #
31021
32012
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -31201,6 +32192,7 @@ module OvirtSDK4
31201
32192
  LIST = [
31202
32193
  [:case_sensitive, TrueClass].freeze,
31203
32194
  [:filter, TrueClass].freeze,
32195
+ [:follow, String].freeze,
31204
32196
  [:max, Integer].freeze,
31205
32197
  [:search, String].freeze,
31206
32198
  ].freeze
@@ -31238,6 +32230,9 @@ module OvirtSDK4
31238
32230
  #
31239
32231
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
31240
32232
  #
32233
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
32234
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
32235
+ #
31241
32236
  # @option opts [Integer] :max Sets the maximum number of pools to return. If this value is not specified, all of the pools are returned.
31242
32237
  #
31243
32238
  # @option opts [String] :search A query string used to restrict the returned pools.
@@ -31300,6 +32295,7 @@ module OvirtSDK4
31300
32295
  class VmReportedDeviceService < Service
31301
32296
 
31302
32297
  GET = [
32298
+ [:follow, String].freeze,
31303
32299
  ].freeze
31304
32300
 
31305
32301
  private_constant :GET
@@ -31309,6 +32305,9 @@ module OvirtSDK4
31309
32305
  #
31310
32306
  # @param opts [Hash] Additional options.
31311
32307
  #
32308
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
32309
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
32310
+ #
31312
32311
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
31313
32312
  #
31314
32313
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -31352,6 +32351,7 @@ module OvirtSDK4
31352
32351
  class VmReportedDevicesService < Service
31353
32352
 
31354
32353
  LIST = [
32354
+ [:follow, String].freeze,
31355
32355
  [:max, Integer].freeze,
31356
32356
  ].freeze
31357
32357
 
@@ -31364,6 +32364,9 @@ module OvirtSDK4
31364
32364
  #
31365
32365
  # @param opts [Hash] Additional options.
31366
32366
  #
32367
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
32368
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
32369
+ #
31367
32370
  # @option opts [Integer] :max Sets the maximum number of devices to return. If not specified all the devices are returned.
31368
32371
  #
31369
32372
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -31424,6 +32427,7 @@ module OvirtSDK4
31424
32427
  class VmSessionService < Service
31425
32428
 
31426
32429
  GET = [
32430
+ [:follow, String].freeze,
31427
32431
  ].freeze
31428
32432
 
31429
32433
  private_constant :GET
@@ -31433,6 +32437,9 @@ module OvirtSDK4
31433
32437
  #
31434
32438
  # @param opts [Hash] Additional options.
31435
32439
  #
32440
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
32441
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
32442
+ #
31436
32443
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
31437
32444
  #
31438
32445
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -31476,6 +32483,7 @@ module OvirtSDK4
31476
32483
  class VmSessionsService < Service
31477
32484
 
31478
32485
  LIST = [
32486
+ [:follow, String].freeze,
31479
32487
  [:max, Integer].freeze,
31480
32488
  ].freeze
31481
32489
 
@@ -31512,6 +32520,9 @@ module OvirtSDK4
31512
32520
  #
31513
32521
  # @param opts [Hash] Additional options.
31514
32522
  #
32523
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
32524
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
32525
+ #
31515
32526
  # @option opts [Integer] :max Sets the maximum number of sessions to return. If not specified all the sessions are returned.
31516
32527
  #
31517
32528
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -31572,6 +32583,7 @@ module OvirtSDK4
31572
32583
  class VmWatchdogService < Service
31573
32584
 
31574
32585
  GET = [
32586
+ [:follow, String].freeze,
31575
32587
  ].freeze
31576
32588
 
31577
32589
  private_constant :GET
@@ -31581,6 +32593,9 @@ module OvirtSDK4
31581
32593
  #
31582
32594
  # @param opts [Hash] Additional options.
31583
32595
  #
32596
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
32597
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
32598
+ #
31584
32599
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
31585
32600
  #
31586
32601
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -31765,6 +32780,7 @@ module OvirtSDK4
31765
32780
  end
31766
32781
 
31767
32782
  LIST = [
32783
+ [:follow, String].freeze,
31768
32784
  [:max, Integer].freeze,
31769
32785
  ].freeze
31770
32786
 
@@ -31777,6 +32793,9 @@ module OvirtSDK4
31777
32793
  #
31778
32794
  # @param opts [Hash] Additional options.
31779
32795
  #
32796
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
32797
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
32798
+ #
31780
32799
  # @option opts [Integer] :max Sets the maximum number of watchdogs to return. If not specified all the watchdogs are returned.
31781
32800
  #
31782
32801
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -32078,6 +33097,7 @@ module OvirtSDK4
32078
33097
  [:all_content, TrueClass].freeze,
32079
33098
  [:case_sensitive, TrueClass].freeze,
32080
33099
  [:filter, TrueClass].freeze,
33100
+ [:follow, String].freeze,
32081
33101
  [:max, Integer].freeze,
32082
33102
  [:search, String].freeze,
32083
33103
  ].freeze
@@ -32117,6 +33137,9 @@ module OvirtSDK4
32117
33137
  #
32118
33138
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
32119
33139
  #
33140
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
33141
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
33142
+ #
32120
33143
  # @option opts [Integer] :max The maximum number of results to return.
32121
33144
  #
32122
33145
  # @option opts [String] :search A query string used to restrict the returned virtual machines.
@@ -32179,6 +33202,7 @@ module OvirtSDK4
32179
33202
  class VnicProfileService < Service
32180
33203
 
32181
33204
  GET = [
33205
+ [:follow, String].freeze,
32182
33206
  ].freeze
32183
33207
 
32184
33208
  private_constant :GET
@@ -32188,6 +33212,9 @@ module OvirtSDK4
32188
33212
  #
32189
33213
  # @param opts [Hash] Additional options.
32190
33214
  #
33215
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
33216
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
33217
+ #
32191
33218
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
32192
33219
  #
32193
33220
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -32390,6 +33417,7 @@ module OvirtSDK4
32390
33417
  end
32391
33418
 
32392
33419
  LIST = [
33420
+ [:follow, String].freeze,
32393
33421
  [:max, Integer].freeze,
32394
33422
  ].freeze
32395
33423
 
@@ -32402,6 +33430,9 @@ module OvirtSDK4
32402
33430
  #
32403
33431
  # @param opts [Hash] Additional options.
32404
33432
  #
33433
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
33434
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
33435
+ #
32405
33436
  # @option opts [Integer] :max Sets the maximum number of profiles to return. If not specified all the profiles are returned.
32406
33437
  #
32407
33438
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -32463,6 +33494,7 @@ module OvirtSDK4
32463
33494
 
32464
33495
  GET = [
32465
33496
  [:filter, TrueClass].freeze,
33497
+ [:follow, String].freeze,
32466
33498
  ].freeze
32467
33499
 
32468
33500
  private_constant :GET
@@ -32474,6 +33506,9 @@ module OvirtSDK4
32474
33506
  #
32475
33507
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
32476
33508
  #
33509
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
33510
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
33511
+ #
32477
33512
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
32478
33513
  #
32479
33514
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -32570,6 +33605,7 @@ module OvirtSDK4
32570
33605
 
32571
33606
  LIST = [
32572
33607
  [:filter, TrueClass].freeze,
33608
+ [:follow, String].freeze,
32573
33609
  [:max, Integer].freeze,
32574
33610
  ].freeze
32575
33611
 
@@ -32584,6 +33620,9 @@ module OvirtSDK4
32584
33620
  #
32585
33621
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
32586
33622
  #
33623
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
33624
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
33625
+ #
32587
33626
  # @option opts [Integer] :max Sets the maximum number of weights to return. If not specified all the weights are returned.
32588
33627
  #
32589
33628
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -32707,6 +33746,7 @@ module OvirtSDK4
32707
33746
  end
32708
33747
 
32709
33748
  GET = [
33749
+ [:follow, String].freeze,
32710
33750
  ].freeze
32711
33751
 
32712
33752
  private_constant :GET
@@ -32716,6 +33756,9 @@ module OvirtSDK4
32716
33756
  #
32717
33757
  # @param opts [Hash] Additional options.
32718
33758
  #
33759
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
33760
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
33761
+ #
32719
33762
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
32720
33763
  #
32721
33764
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -32934,7 +33977,9 @@ module OvirtSDK4
32934
33977
  COPY = [
32935
33978
  [:async, TrueClass].freeze,
32936
33979
  [:disk, Disk].freeze,
33980
+ [:disk_profile, DiskProfile].freeze,
32937
33981
  [:filter, TrueClass].freeze,
33982
+ [:quota, Quota].freeze,
32938
33983
  [:storage_domain, StorageDomain].freeze,
32939
33984
  ].freeze
32940
33985
 
@@ -32962,14 +34007,42 @@ module OvirtSDK4
32962
34007
  # </action>
32963
34008
  # ----
32964
34009
  #
34010
+ # If the disk profile or the quota used currently by the disk aren't defined for the new storage domain, then they
34011
+ # can be explicitly specified. If they aren't then the first available disk profile and the default quota are used.
34012
+ #
34013
+ # For example, to explicitly use disk profile `987` and quota `753` send a request body like this:
34014
+ #
34015
+ # [source,xml]
34016
+ # ----
34017
+ # <action>
34018
+ # <storage_domain id="456"/>
34019
+ # <disk_profile id="987"/>
34020
+ # <quota id="753"/>
34021
+ # </action>
34022
+ # ----
34023
+ #
32965
34024
  # @param opts [Hash] Additional options.
32966
34025
  #
32967
34026
  # @option opts [Boolean] :async Indicates if the copy should be performed asynchronously.
32968
34027
  #
32969
34028
  # @option opts [Disk] :disk
32970
34029
  #
34030
+ # @option opts [DiskProfile] :disk_profile Disk profile for the disk in the new storage domain.
34031
+ #
34032
+ # Disk profiles are defined for storage domains,
34033
+ # so the old disk profile will not exist in the new storage domain.
34034
+ # If this parameter is not used, the first disk profile from the new storage domain
34035
+ # to which the user has permissions will be assigned to the disk.
34036
+ #
32971
34037
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
32972
34038
  #
34039
+ # @option opts [Quota] :quota Quota for the disk in the new storage domain.
34040
+ #
34041
+ # This optional parameter can be used to specify new quota for the disk,
34042
+ # because the current quota may not be defined for the new storage domain.
34043
+ # If this parameter is not used and the old quota is not defined for the new storage domain,
34044
+ # the default (unlimited) quota will be assigned to the disk.
34045
+ #
32973
34046
  # @option opts [StorageDomain] :storage_domain The storage domain where the new disk will be created. Can be specified using the `id` or `name`
32974
34047
  # attributes. For example, to copy a disk to the storage domain named `mydata` send a request like this:
32975
34048
  #
@@ -33034,6 +34107,7 @@ module OvirtSDK4
33034
34107
  end
33035
34108
 
33036
34109
  GET = [
34110
+ [:follow, String].freeze,
33037
34111
  ].freeze
33038
34112
 
33039
34113
  private_constant :GET
@@ -33043,6 +34117,9 @@ module OvirtSDK4
33043
34117
  #
33044
34118
  # @param opts [Hash] Additional options.
33045
34119
  #
34120
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
34121
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
34122
+ #
33046
34123
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
33047
34124
  #
33048
34125
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -33060,7 +34137,9 @@ module OvirtSDK4
33060
34137
 
33061
34138
  MOVE = [
33062
34139
  [:async, TrueClass].freeze,
34140
+ [:disk_profile, DiskProfile].freeze,
33063
34141
  [:filter, TrueClass].freeze,
34142
+ [:quota, Quota].freeze,
33064
34143
  [:storage_domain, StorageDomain].freeze,
33065
34144
  ].freeze
33066
34145
 
@@ -33086,12 +34165,44 @@ module OvirtSDK4
33086
34165
  # </action>
33087
34166
  # ----
33088
34167
  #
34168
+ # If the disk profile or the quota used currently by
34169
+ # the disk aren't defined for the new storage domain,
34170
+ # then they can be explicitly specified. If they aren't
34171
+ # then the first available disk profile and the default
34172
+ # quota are used.
34173
+ #
34174
+ # For example, to explicitly use disk profile `987` and
34175
+ # quota `753` send a request body like this:
34176
+ #
34177
+ # [source,xml]
34178
+ # ----
34179
+ # <action>
34180
+ # <storage_domain id="456"/>
34181
+ # <disk_profile id="987"/>
34182
+ # <quota id="753"/>
34183
+ # </action>
34184
+ # ----
34185
+ #
33089
34186
  # @param opts [Hash] Additional options.
33090
34187
  #
33091
34188
  # @option opts [Boolean] :async Indicates if the move should be performed asynchronously.
33092
34189
  #
34190
+ # @option opts [DiskProfile] :disk_profile Disk profile for the disk in the new storage domain.
34191
+ #
34192
+ # Disk profiles are defined for storage domains,
34193
+ # so the old disk profile will not exist in the new storage domain.
34194
+ # If this parameter is not used, the first disk profile from the new storage domain
34195
+ # to which the user has permissions will be assigned to the disk.
34196
+ #
33093
34197
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
33094
34198
  #
34199
+ # @option opts [Quota] :quota Quota for the disk in the new storage domain.
34200
+ #
34201
+ # This optional parameter can be used to specify new quota for the disk,
34202
+ # because the current quota may not be defined for the new storage domain.
34203
+ # If this parameter is not used and the old quota is not defined for the new storage domain,
34204
+ # the default (unlimited) quota will be assigned to the disk.
34205
+ #
33095
34206
  # @option opts [StorageDomain] :storage_domain
33096
34207
  #
33097
34208
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -33313,6 +34424,7 @@ module OvirtSDK4
33313
34424
  class EngineKatelloErrataService < KatelloErrataService
33314
34425
 
33315
34426
  LIST = [
34427
+ [:follow, String].freeze,
33316
34428
  [:max, Integer].freeze,
33317
34429
  ].freeze
33318
34430
 
@@ -33354,6 +34466,9 @@ module OvirtSDK4
33354
34466
  #
33355
34467
  # @param opts [Hash] Additional options.
33356
34468
  #
34469
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
34470
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
34471
+ #
33357
34472
  # @option opts [Integer] :max Sets the maximum number of errata to return. If not specified all the errata are returned.
33358
34473
  #
33359
34474
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
@@ -33415,6 +34530,7 @@ module OvirtSDK4
33415
34530
  class ExternalHostProviderService < ExternalProviderService
33416
34531
 
33417
34532
  GET = [
34533
+ [:follow, String].freeze,
33418
34534
  ].freeze
33419
34535
 
33420
34536
  private_constant :GET
@@ -33445,6 +34561,9 @@ module OvirtSDK4
33445
34561
  #
33446
34562
  # @param opts [Hash] Additional options.
33447
34563
  #
34564
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
34565
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
34566
+ #
33448
34567
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
33449
34568
  #
33450
34569
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -33675,6 +34794,7 @@ module OvirtSDK4
33675
34794
  class GlusterBrickService < MeasurableService
33676
34795
 
33677
34796
  GET = [
34797
+ [:follow, String].freeze,
33678
34798
  ].freeze
33679
34799
 
33680
34800
  private_constant :GET
@@ -33731,6 +34851,9 @@ module OvirtSDK4
33731
34851
  #
33732
34852
  # @param opts [Hash] Additional options.
33733
34853
  #
34854
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
34855
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
34856
+ #
33734
34857
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
33735
34858
  #
33736
34859
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -33858,6 +34981,7 @@ module OvirtSDK4
33858
34981
  class GlusterVolumeService < MeasurableService
33859
34982
 
33860
34983
  GET = [
34984
+ [:follow, String].freeze,
33861
34985
  ].freeze
33862
34986
 
33863
34987
  private_constant :GET
@@ -33907,6 +35031,9 @@ module OvirtSDK4
33907
35031
  #
33908
35032
  # @param opts [Hash] Additional options.
33909
35033
  #
35034
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
35035
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
35036
+ #
33910
35037
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
33911
35038
  #
33912
35039
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -34661,6 +35788,7 @@ module OvirtSDK4
34661
35788
  GET = [
34662
35789
  [:all_content, TrueClass].freeze,
34663
35790
  [:filter, TrueClass].freeze,
35791
+ [:follow, String].freeze,
34664
35792
  ].freeze
34665
35793
 
34666
35794
  private_constant :GET
@@ -34693,6 +35821,9 @@ module OvirtSDK4
34693
35821
  #
34694
35822
  # @option opts [Boolean] :filter Indicates if the results should be filtered according to the permissions of the user.
34695
35823
  #
35824
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
35825
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
35826
+ #
34696
35827
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
34697
35828
  #
34698
35829
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -35541,6 +36672,7 @@ module OvirtSDK4
35541
36672
  class HostNicService < MeasurableService
35542
36673
 
35543
36674
  GET = [
36675
+ [:follow, String].freeze,
35544
36676
  ].freeze
35545
36677
 
35546
36678
  private_constant :GET
@@ -35550,6 +36682,9 @@ module OvirtSDK4
35550
36682
  #
35551
36683
  # @param opts [Hash] Additional options.
35552
36684
  #
36685
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
36686
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
36687
+ #
35553
36688
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
35554
36689
  #
35555
36690
  # @option opts [Hash] :query ({}) Additional URL query parameters.
@@ -35720,6 +36855,7 @@ module OvirtSDK4
35720
36855
  class HostNumaNodeService < MeasurableService
35721
36856
 
35722
36857
  GET = [
36858
+ [:follow, String].freeze,
35723
36859
  ].freeze
35724
36860
 
35725
36861
  private_constant :GET
@@ -35729,6 +36865,9 @@ module OvirtSDK4
35729
36865
  #
35730
36866
  # @param opts [Hash] Additional options.
35731
36867
  #
36868
+ # @option opts [String] :follow Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
36869
+ # of the current request. See <<documents/003_common_concepts/follow, here>> for details.
36870
+ #
35732
36871
  # @option opts [Hash] :headers ({}) Additional HTTP headers.
35733
36872
  #
35734
36873
  # @option opts [Hash] :query ({}) Additional URL query parameters.