foreman_api 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/doc/ForemanApi.html +3 -3
- data/doc/ForemanApi/Resources.html +4 -4
- data/doc/ForemanApi/Resources/Architecture.html +7 -7
- data/doc/ForemanApi/Resources/Audit.html +5 -5
- data/doc/ForemanApi/Resources/AuthSourceLdap.html +15 -15
- data/doc/ForemanApi/Resources/Bookmark.html +3 -3
- data/doc/ForemanApi/Resources/CommonParameter.html +5 -5
- data/doc/ForemanApi/Resources/ComputeResource.html +167 -24
- data/doc/ForemanApi/Resources/ConfigTemplate.html +14 -14
- data/doc/ForemanApi/Resources/Dashboard.html +2 -2
- data/doc/ForemanApi/Resources/Domain.html +14 -14
- data/doc/ForemanApi/Resources/Environment.html +199 -25
- data/doc/ForemanApi/Resources/FactValue.html +5 -5
- data/doc/ForemanApi/Resources/Home.html +1 -1
- data/doc/ForemanApi/Resources/Host.html +509 -10
- data/doc/ForemanApi/Resources/HostClass.html +5 -5
- data/doc/ForemanApi/Resources/Hostgroup.html +5 -5
- data/doc/ForemanApi/Resources/HostgroupClass.html +5 -5
- data/doc/ForemanApi/Resources/Image.html +5 -5
- data/doc/ForemanApi/Resources/Interface.html +1045 -0
- data/doc/ForemanApi/Resources/Location.html +5 -5
- data/doc/ForemanApi/Resources/LookupKey.html +62 -811
- data/doc/ForemanApi/Resources/Medium.html +13 -13
- data/doc/ForemanApi/Resources/Model.html +5 -5
- data/doc/ForemanApi/Resources/OperatingSystem.html +5 -5
- data/doc/ForemanApi/Resources/Organization.html +5 -5
- data/doc/ForemanApi/Resources/OverrideValue.html +1060 -0
- data/doc/ForemanApi/Resources/Parameter.html +26 -26
- data/doc/ForemanApi/Resources/Ptable.html +5 -5
- data/doc/ForemanApi/Resources/Puppetclass.html +80 -28
- data/doc/ForemanApi/Resources/Report.html +164 -6
- data/doc/ForemanApi/Resources/Role.html +3 -3
- data/doc/ForemanApi/Resources/Setting.html +5 -5
- data/doc/ForemanApi/Resources/SmartClassParameter.html +747 -0
- data/doc/ForemanApi/Resources/SmartProxy.html +341 -24
- data/doc/ForemanApi/Resources/SmartVariable.html +1043 -0
- data/doc/ForemanApi/Resources/Statistic.html +330 -0
- data/doc/ForemanApi/Resources/Subnet.html +33 -33
- data/doc/ForemanApi/Resources/TemplateCombination.html +3 -3
- data/doc/ForemanApi/Resources/TemplateKind.html +3 -3
- data/doc/ForemanApi/Resources/User.html +7 -7
- data/doc/ForemanApi/Resources/Usergroup.html +5 -5
- data/doc/_index.html +36 -1
- data/doc/class_list.html +1 -1
- data/doc/file.MIT-LICENSE.html +1 -1
- data/doc/file.README.html +1 -1
- data/doc/index.html +1 -1
- data/doc/method_list.html +515 -347
- data/doc/top-level-namespace.html +1 -1
- data/lib/foreman_api/base.rb +2 -1
- data/lib/foreman_api/documentation.json +1 -1
- data/lib/foreman_api/resources/architecture.rb +6 -6
- data/lib/foreman_api/resources/audit.rb +4 -4
- data/lib/foreman_api/resources/auth_source_ldap.rb +14 -14
- data/lib/foreman_api/resources/bookmark.rb +2 -2
- data/lib/foreman_api/resources/common_parameter.rb +4 -4
- data/lib/foreman_api/resources/compute_resource.rb +29 -20
- data/lib/foreman_api/resources/config_template.rb +13 -13
- data/lib/foreman_api/resources/dashboard.rb +1 -1
- data/lib/foreman_api/resources/domain.rb +13 -13
- data/lib/foreman_api/resources/environment.rb +16 -4
- data/lib/foreman_api/resources/fact_value.rb +4 -4
- data/lib/foreman_api/resources/host.rb +40 -8
- data/lib/foreman_api/resources/host_class.rb +4 -4
- data/lib/foreman_api/resources/hostgroup.rb +4 -4
- data/lib/foreman_api/resources/hostgroup_class.rb +4 -4
- data/lib/foreman_api/resources/image.rb +4 -4
- data/lib/foreman_api/resources/interface.rb +80 -0
- data/lib/foreman_api/resources/location.rb +4 -4
- data/lib/foreman_api/resources/lookup_key.rb +6 -65
- data/lib/foreman_api/resources/medium.rb +10 -10
- data/lib/foreman_api/resources/model.rb +4 -4
- data/lib/foreman_api/resources/operating_system.rb +4 -4
- data/lib/foreman_api/resources/organization.rb +4 -4
- data/lib/foreman_api/resources/override_value.rb +73 -0
- data/lib/foreman_api/resources/parameter.rb +25 -25
- data/lib/foreman_api/resources/ptable.rb +4 -4
- data/lib/foreman_api/resources/puppetclass.rb +11 -7
- data/lib/foreman_api/resources/report.rb +19 -4
- data/lib/foreman_api/resources/role.rb +2 -2
- data/lib/foreman_api/resources/setting.rb +4 -4
- data/lib/foreman_api/resources/smart_class_parameter.rb +55 -0
- data/lib/foreman_api/resources/smart_proxy.rb +24 -3
- data/lib/foreman_api/resources/smart_variable.rb +80 -0
- data/lib/foreman_api/resources/statistic.rb +18 -0
- data/lib/foreman_api/resources/subnet.rb +32 -32
- data/lib/foreman_api/resources/template_combination.rb +2 -2
- data/lib/foreman_api/resources/template_kind.rb +2 -2
- data/lib/foreman_api/resources/user.rb +6 -6
- data/lib/foreman_api/resources/usergroup.rb +4 -4
- data/lib/foreman_api/version.rb +1 -1
- metadata +13 -3
|
@@ -373,9 +373,9 @@
|
|
|
373
373
|
— <div class='inline'>
|
|
374
374
|
<p>allowed keys are:</p>
|
|
375
375
|
<ul><li>
|
|
376
|
-
<p>environment_id [String, nil]
|
|
376
|
+
<p>environment_id [String, nil] environment id</p>
|
|
377
377
|
</li><li>
|
|
378
|
-
<p>hostgroup_id [String, nil]
|
|
378
|
+
<p>hostgroup_id [String, nil] hostgroup id</p>
|
|
379
379
|
</li></ul>
|
|
380
380
|
</div>
|
|
381
381
|
|
|
@@ -788,7 +788,7 @@
|
|
|
788
788
|
</div>
|
|
789
789
|
|
|
790
790
|
<div id="footer">
|
|
791
|
-
Generated on Mon
|
|
791
|
+
Generated on Mon Oct 21 11:10:47 2013 by
|
|
792
792
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
793
793
|
0.8.7 (ruby-2.0.0).
|
|
794
794
|
</div>
|
|
@@ -290,7 +290,7 @@
|
|
|
290
290
|
</span>
|
|
291
291
|
|
|
292
292
|
— <div class='inline'>
|
|
293
|
-
<p>
|
|
293
|
+
<p>paginate results</p>
|
|
294
294
|
</div>
|
|
295
295
|
|
|
296
296
|
</li>
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
</span>
|
|
304
304
|
|
|
305
305
|
— <div class='inline'>
|
|
306
|
-
<p>
|
|
306
|
+
<p>number of entries per request</p>
|
|
307
307
|
</div>
|
|
308
308
|
|
|
309
309
|
</li>
|
|
@@ -358,7 +358,7 @@
|
|
|
358
358
|
</div>
|
|
359
359
|
|
|
360
360
|
<div id="footer">
|
|
361
|
-
Generated on Mon
|
|
361
|
+
Generated on Mon Oct 21 11:10:46 2013 by
|
|
362
362
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
363
363
|
0.8.7 (ruby-2.0.0).
|
|
364
364
|
</div>
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
<ul><li>
|
|
391
391
|
<p>auth_source_id [Numeric]</p>
|
|
392
392
|
</li><li>
|
|
393
|
-
<p>admin [String]
|
|
393
|
+
<p>admin [String] is an admin account?</p>
|
|
394
394
|
</li><li>
|
|
395
395
|
<p>firstname [String]</p>
|
|
396
396
|
</li><li>
|
|
@@ -643,7 +643,7 @@
|
|
|
643
643
|
</span>
|
|
644
644
|
|
|
645
645
|
— <div class='inline'>
|
|
646
|
-
<p>
|
|
646
|
+
<p>sort results</p>
|
|
647
647
|
</div>
|
|
648
648
|
|
|
649
649
|
</li>
|
|
@@ -656,7 +656,7 @@
|
|
|
656
656
|
</span>
|
|
657
657
|
|
|
658
658
|
— <div class='inline'>
|
|
659
|
-
<p>
|
|
659
|
+
<p>paginate results</p>
|
|
660
660
|
</div>
|
|
661
661
|
|
|
662
662
|
</li>
|
|
@@ -669,7 +669,7 @@
|
|
|
669
669
|
</span>
|
|
670
670
|
|
|
671
671
|
— <div class='inline'>
|
|
672
|
-
<p>
|
|
672
|
+
<p>number of entries per request</p>
|
|
673
673
|
</div>
|
|
674
674
|
|
|
675
675
|
</li>
|
|
@@ -682,7 +682,7 @@
|
|
|
682
682
|
</span>
|
|
683
683
|
|
|
684
684
|
— <div class='inline'>
|
|
685
|
-
<p>
|
|
685
|
+
<p>filter results</p>
|
|
686
686
|
</div>
|
|
687
687
|
|
|
688
688
|
</li>
|
|
@@ -935,7 +935,7 @@
|
|
|
935
935
|
— <div class='inline'>
|
|
936
936
|
<p>allowed keys are:</p>
|
|
937
937
|
<ul><li>
|
|
938
|
-
<p>admin [String]
|
|
938
|
+
<p>admin [String] is an admin account?</p>
|
|
939
939
|
</li><li>
|
|
940
940
|
<p>firstname [String, nil]</p>
|
|
941
941
|
</li><li>
|
|
@@ -1001,7 +1001,7 @@
|
|
|
1001
1001
|
</div>
|
|
1002
1002
|
|
|
1003
1003
|
<div id="footer">
|
|
1004
|
-
Generated on Mon
|
|
1004
|
+
Generated on Mon Oct 21 11:10:43 2013 by
|
|
1005
1005
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1006
1006
|
0.8.7 (ruby-2.0.0).
|
|
1007
1007
|
</div>
|
|
@@ -631,7 +631,7 @@
|
|
|
631
631
|
</span>
|
|
632
632
|
|
|
633
633
|
— <div class='inline'>
|
|
634
|
-
<p>
|
|
634
|
+
<p>sort results</p>
|
|
635
635
|
</div>
|
|
636
636
|
|
|
637
637
|
</li>
|
|
@@ -644,7 +644,7 @@
|
|
|
644
644
|
</span>
|
|
645
645
|
|
|
646
646
|
— <div class='inline'>
|
|
647
|
-
<p>
|
|
647
|
+
<p>paginate results</p>
|
|
648
648
|
</div>
|
|
649
649
|
|
|
650
650
|
</li>
|
|
@@ -657,7 +657,7 @@
|
|
|
657
657
|
</span>
|
|
658
658
|
|
|
659
659
|
— <div class='inline'>
|
|
660
|
-
<p>
|
|
660
|
+
<p>number of entries per request</p>
|
|
661
661
|
</div>
|
|
662
662
|
|
|
663
663
|
</li>
|
|
@@ -670,7 +670,7 @@
|
|
|
670
670
|
</span>
|
|
671
671
|
|
|
672
672
|
— <div class='inline'>
|
|
673
|
-
<p>
|
|
673
|
+
<p>filter results</p>
|
|
674
674
|
</div>
|
|
675
675
|
|
|
676
676
|
</li>
|
|
@@ -979,7 +979,7 @@
|
|
|
979
979
|
</div>
|
|
980
980
|
|
|
981
981
|
<div id="footer">
|
|
982
|
-
Generated on Mon
|
|
982
|
+
Generated on Mon Oct 21 11:10:45 2013 by
|
|
983
983
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
984
984
|
0.8.7 (ruby-2.0.0).
|
|
985
985
|
</div>
|
data/doc/_index.html
CHANGED
|
@@ -270,6 +270,13 @@
|
|
|
270
270
|
|
|
271
271
|
</li>
|
|
272
272
|
|
|
273
|
+
<li>
|
|
274
|
+
<span class='object_link'><a href="ForemanApi/Resources/Interface.html" title="ForemanApi::Resources::Interface (class)">Interface</a></span>
|
|
275
|
+
|
|
276
|
+
<small>(ForemanApi::Resources)</small>
|
|
277
|
+
|
|
278
|
+
</li>
|
|
279
|
+
|
|
273
280
|
</ul>
|
|
274
281
|
</ul>
|
|
275
282
|
|
|
@@ -336,6 +343,13 @@
|
|
|
336
343
|
|
|
337
344
|
</li>
|
|
338
345
|
|
|
346
|
+
<li>
|
|
347
|
+
<span class='object_link'><a href="ForemanApi/Resources/OverrideValue.html" title="ForemanApi::Resources::OverrideValue (class)">OverrideValue</a></span>
|
|
348
|
+
|
|
349
|
+
<small>(ForemanApi::Resources)</small>
|
|
350
|
+
|
|
351
|
+
</li>
|
|
352
|
+
|
|
339
353
|
</ul>
|
|
340
354
|
</ul>
|
|
341
355
|
|
|
@@ -409,6 +423,13 @@
|
|
|
409
423
|
|
|
410
424
|
</li>
|
|
411
425
|
|
|
426
|
+
<li>
|
|
427
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartClassParameter.html" title="ForemanApi::Resources::SmartClassParameter (class)">SmartClassParameter</a></span>
|
|
428
|
+
|
|
429
|
+
<small>(ForemanApi::Resources)</small>
|
|
430
|
+
|
|
431
|
+
</li>
|
|
432
|
+
|
|
412
433
|
<li>
|
|
413
434
|
<span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html" title="ForemanApi::Resources::SmartProxy (class)">SmartProxy</a></span>
|
|
414
435
|
|
|
@@ -416,6 +437,20 @@
|
|
|
416
437
|
|
|
417
438
|
</li>
|
|
418
439
|
|
|
440
|
+
<li>
|
|
441
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartVariable.html" title="ForemanApi::Resources::SmartVariable (class)">SmartVariable</a></span>
|
|
442
|
+
|
|
443
|
+
<small>(ForemanApi::Resources)</small>
|
|
444
|
+
|
|
445
|
+
</li>
|
|
446
|
+
|
|
447
|
+
<li>
|
|
448
|
+
<span class='object_link'><a href="ForemanApi/Resources/Statistic.html" title="ForemanApi::Resources::Statistic (class)">Statistic</a></span>
|
|
449
|
+
|
|
450
|
+
<small>(ForemanApi::Resources)</small>
|
|
451
|
+
|
|
452
|
+
</li>
|
|
453
|
+
|
|
419
454
|
<li>
|
|
420
455
|
<span class='object_link'><a href="ForemanApi/Resources/Subnet.html" title="ForemanApi::Resources::Subnet (class)">Subnet</a></span>
|
|
421
456
|
|
|
@@ -482,7 +517,7 @@
|
|
|
482
517
|
</div>
|
|
483
518
|
|
|
484
519
|
<div id="footer">
|
|
485
|
-
Generated on Mon
|
|
520
|
+
Generated on Mon Oct 21 11:10:42 2013 by
|
|
486
521
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
487
522
|
0.8.7 (ruby-2.0.0).
|
|
488
523
|
</div>
|
data/doc/class_list.html
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
|
|
47
47
|
<ul id="full_list" class="class">
|
|
48
48
|
<li><span class='object_link'><a href="top-level-namespace.html" title="Top Level Namespace (root)">Top Level Namespace</a></span></li>
|
|
49
|
-
<li><a class='toggle'></a> <span class='object_link'><a href="ForemanApi.html" title="ForemanApi (module)">ForemanApi</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><a class='toggle'></a> <span class='object_link'><a href="ForemanApi/Resources.html" title="ForemanApi::Resources (module)">Resources</a></span><small class='search_info'>ForemanApi</small></li><ul><li><span class='object_link'><a href="ForemanApi/Resources/Architecture.html" title="ForemanApi::Resources::Architecture (class)">Architecture</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Audit.html" title="ForemanApi::Resources::Audit (class)">Audit</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/AuthSourceLdap.html" title="ForemanApi::Resources::AuthSourceLdap (class)">AuthSourceLdap</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Bookmark.html" title="ForemanApi::Resources::Bookmark (class)">Bookmark</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/CommonParameter.html" title="ForemanApi::Resources::CommonParameter (class)">CommonParameter</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/ComputeResource.html" title="ForemanApi::Resources::ComputeResource (class)">ComputeResource</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/ConfigTemplate.html" title="ForemanApi::Resources::ConfigTemplate (class)">ConfigTemplate</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Dashboard.html" title="ForemanApi::Resources::Dashboard (class)">Dashboard</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Domain.html" title="ForemanApi::Resources::Domain (class)">Domain</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Environment.html" title="ForemanApi::Resources::Environment (class)">Environment</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/FactValue.html" title="ForemanApi::Resources::FactValue (class)">FactValue</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Home.html" title="ForemanApi::Resources::Home (class)">Home</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Host.html" title="ForemanApi::Resources::Host (class)">Host</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/HostClass.html" title="ForemanApi::Resources::HostClass (class)">HostClass</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Hostgroup.html" title="ForemanApi::Resources::Hostgroup (class)">Hostgroup</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/HostgroupClass.html" title="ForemanApi::Resources::HostgroupClass (class)">HostgroupClass</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Image.html" title="ForemanApi::Resources::Image (class)">Image</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Location.html" title="ForemanApi::Resources::Location (class)">Location</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/LookupKey.html" title="ForemanApi::Resources::LookupKey (class)">LookupKey</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Medium.html" title="ForemanApi::Resources::Medium (class)">Medium</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Model.html" title="ForemanApi::Resources::Model (class)">Model</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/OperatingSystem.html" title="ForemanApi::Resources::OperatingSystem (class)">OperatingSystem</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Organization.html" title="ForemanApi::Resources::Organization (class)">Organization</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Parameter.html" title="ForemanApi::Resources::Parameter (class)">Parameter</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Ptable.html" title="ForemanApi::Resources::Ptable (class)">Ptable</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Puppetclass.html" title="ForemanApi::Resources::Puppetclass (class)">Puppetclass</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Report.html" title="ForemanApi::Resources::Report (class)">Report</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Role.html" title="ForemanApi::Resources::Role (class)">Role</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Setting.html" title="ForemanApi::Resources::Setting (class)">Setting</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html" title="ForemanApi::Resources::SmartProxy (class)">SmartProxy</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Subnet.html" title="ForemanApi::Resources::Subnet (class)">Subnet</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/TemplateCombination.html" title="ForemanApi::Resources::TemplateCombination (class)">TemplateCombination</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/TemplateKind.html" title="ForemanApi::Resources::TemplateKind (class)">TemplateKind</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/User.html" title="ForemanApi::Resources::User (class)">User</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Usergroup.html" title="ForemanApi::Resources::Usergroup (class)">Usergroup</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li></ul></ul>
|
|
49
|
+
<li><a class='toggle'></a> <span class='object_link'><a href="ForemanApi.html" title="ForemanApi (module)">ForemanApi</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><a class='toggle'></a> <span class='object_link'><a href="ForemanApi/Resources.html" title="ForemanApi::Resources (module)">Resources</a></span><small class='search_info'>ForemanApi</small></li><ul><li><span class='object_link'><a href="ForemanApi/Resources/Architecture.html" title="ForemanApi::Resources::Architecture (class)">Architecture</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Audit.html" title="ForemanApi::Resources::Audit (class)">Audit</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/AuthSourceLdap.html" title="ForemanApi::Resources::AuthSourceLdap (class)">AuthSourceLdap</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Bookmark.html" title="ForemanApi::Resources::Bookmark (class)">Bookmark</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/CommonParameter.html" title="ForemanApi::Resources::CommonParameter (class)">CommonParameter</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/ComputeResource.html" title="ForemanApi::Resources::ComputeResource (class)">ComputeResource</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/ConfigTemplate.html" title="ForemanApi::Resources::ConfigTemplate (class)">ConfigTemplate</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Dashboard.html" title="ForemanApi::Resources::Dashboard (class)">Dashboard</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Domain.html" title="ForemanApi::Resources::Domain (class)">Domain</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Environment.html" title="ForemanApi::Resources::Environment (class)">Environment</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/FactValue.html" title="ForemanApi::Resources::FactValue (class)">FactValue</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Home.html" title="ForemanApi::Resources::Home (class)">Home</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Host.html" title="ForemanApi::Resources::Host (class)">Host</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/HostClass.html" title="ForemanApi::Resources::HostClass (class)">HostClass</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Hostgroup.html" title="ForemanApi::Resources::Hostgroup (class)">Hostgroup</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/HostgroupClass.html" title="ForemanApi::Resources::HostgroupClass (class)">HostgroupClass</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Image.html" title="ForemanApi::Resources::Image (class)">Image</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Interface.html" title="ForemanApi::Resources::Interface (class)">Interface</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Location.html" title="ForemanApi::Resources::Location (class)">Location</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/LookupKey.html" title="ForemanApi::Resources::LookupKey (class)">LookupKey</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Medium.html" title="ForemanApi::Resources::Medium (class)">Medium</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Model.html" title="ForemanApi::Resources::Model (class)">Model</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/OperatingSystem.html" title="ForemanApi::Resources::OperatingSystem (class)">OperatingSystem</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Organization.html" title="ForemanApi::Resources::Organization (class)">Organization</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/OverrideValue.html" title="ForemanApi::Resources::OverrideValue (class)">OverrideValue</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Parameter.html" title="ForemanApi::Resources::Parameter (class)">Parameter</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Ptable.html" title="ForemanApi::Resources::Ptable (class)">Ptable</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Puppetclass.html" title="ForemanApi::Resources::Puppetclass (class)">Puppetclass</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Report.html" title="ForemanApi::Resources::Report (class)">Report</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Role.html" title="ForemanApi::Resources::Role (class)">Role</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Setting.html" title="ForemanApi::Resources::Setting (class)">Setting</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/SmartClassParameter.html" title="ForemanApi::Resources::SmartClassParameter (class)">SmartClassParameter</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html" title="ForemanApi::Resources::SmartProxy (class)">SmartProxy</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/SmartVariable.html" title="ForemanApi::Resources::SmartVariable (class)">SmartVariable</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Statistic.html" title="ForemanApi::Resources::Statistic (class)">Statistic</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Subnet.html" title="ForemanApi::Resources::Subnet (class)">Subnet</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/TemplateCombination.html" title="ForemanApi::Resources::TemplateCombination (class)">TemplateCombination</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/TemplateKind.html" title="ForemanApi::Resources::TemplateKind (class)">TemplateKind</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/User.html" title="ForemanApi::Resources::User (class)">User</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li><li><span class='object_link'><a href="ForemanApi/Resources/Usergroup.html" title="ForemanApi::Resources::Usergroup (class)">Usergroup</a></span> < Base<small class='search_info'>ForemanApi::Resources</small></li></ul></ul>
|
|
50
50
|
|
|
51
51
|
</ul>
|
|
52
52
|
</div>
|
data/doc/file.MIT-LICENSE.html
CHANGED
|
@@ -84,7 +84,7 @@ DEALINGS IN THE SOFTWARE.</p>
|
|
|
84
84
|
</div></div>
|
|
85
85
|
|
|
86
86
|
<div id="footer">
|
|
87
|
-
Generated on Mon
|
|
87
|
+
Generated on Mon Oct 21 11:10:42 2013 by
|
|
88
88
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
89
89
|
0.8.7 (ruby-2.0.0).
|
|
90
90
|
</div>
|
data/doc/file.README.html
CHANGED
|
@@ -142,7 +142,7 @@ otherwise request can be refused with 401.</p>
|
|
|
142
142
|
</div></div>
|
|
143
143
|
|
|
144
144
|
<div id="footer">
|
|
145
|
-
Generated on Mon
|
|
145
|
+
Generated on Mon Oct 21 11:10:42 2013 by
|
|
146
146
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
147
147
|
0.8.7 (ruby-2.0.0).
|
|
148
148
|
</div>
|
data/doc/index.html
CHANGED
|
@@ -142,7 +142,7 @@ otherwise request can be refused with 401.</p>
|
|
|
142
142
|
</div></div>
|
|
143
143
|
|
|
144
144
|
<div id="footer">
|
|
145
|
-
Generated on Mon
|
|
145
|
+
Generated on Mon Oct 21 11:10:42 2013 by
|
|
146
146
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
147
147
|
0.8.7 (ruby-2.0.0).
|
|
148
148
|
</div>
|
data/doc/method_list.html
CHANGED
|
@@ -48,110 +48,110 @@
|
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
<li class="r1 ">
|
|
51
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
52
|
-
<small>ForemanApi::Resources::
|
|
51
|
+
<span class='object_link'><a href="ForemanApi/Resources/ComputeResource.html#available_images-instance_method" title="ForemanApi::Resources::ComputeResource#available_images (method)">#available_images</a></span>
|
|
52
|
+
<small>ForemanApi::Resources::ComputeResource</small>
|
|
53
53
|
</li>
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
<li class="r2 ">
|
|
57
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
58
|
-
<small>ForemanApi::Resources::
|
|
57
|
+
<span class='object_link'><a href="ForemanApi/Resources/Host.html#boot-instance_method" title="ForemanApi::Resources::Host#boot (method)">#boot</a></span>
|
|
58
|
+
<small>ForemanApi::Resources::Host</small>
|
|
59
59
|
</li>
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
<li class="r1 ">
|
|
63
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
64
|
-
<small>ForemanApi::Resources::
|
|
63
|
+
<span class='object_link'><a href="ForemanApi/Resources/OperatingSystem.html#bootfiles-instance_method" title="ForemanApi::Resources::OperatingSystem#bootfiles (method)">#bootfiles</a></span>
|
|
64
|
+
<small>ForemanApi::Resources::OperatingSystem</small>
|
|
65
65
|
</li>
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
<li class="r2 ">
|
|
69
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
70
|
-
<small>ForemanApi::Resources::
|
|
69
|
+
<span class='object_link'><a href="ForemanApi/Resources/ConfigTemplate.html#build_pxe_default-instance_method" title="ForemanApi::Resources::ConfigTemplate#build_pxe_default (method)">#build_pxe_default</a></span>
|
|
70
|
+
<small>ForemanApi::Resources::ConfigTemplate</small>
|
|
71
71
|
</li>
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
<li class="r1 ">
|
|
75
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
76
|
-
<small>ForemanApi::Resources::
|
|
75
|
+
<span class='object_link'><a href="ForemanApi/Resources/ConfigTemplate.html#create-instance_method" title="ForemanApi::Resources::ConfigTemplate#create (method)">#create</a></span>
|
|
76
|
+
<small>ForemanApi::Resources::ConfigTemplate</small>
|
|
77
77
|
</li>
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
<li class="r2 ">
|
|
81
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
82
|
-
<small>ForemanApi::Resources::
|
|
81
|
+
<span class='object_link'><a href="ForemanApi/Resources/OverrideValue.html#create-instance_method" title="ForemanApi::Resources::OverrideValue#create (method)">#create</a></span>
|
|
82
|
+
<small>ForemanApi::Resources::OverrideValue</small>
|
|
83
83
|
</li>
|
|
84
84
|
|
|
85
85
|
|
|
86
86
|
<li class="r1 ">
|
|
87
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
88
|
-
<small>ForemanApi::Resources::
|
|
87
|
+
<span class='object_link'><a href="ForemanApi/Resources/Role.html#create-instance_method" title="ForemanApi::Resources::Role#create (method)">#create</a></span>
|
|
88
|
+
<small>ForemanApi::Resources::Role</small>
|
|
89
89
|
</li>
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
<li class="r2 ">
|
|
93
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
94
|
-
<small>ForemanApi::Resources::
|
|
93
|
+
<span class='object_link'><a href="ForemanApi/Resources/HostgroupClass.html#create-instance_method" title="ForemanApi::Resources::HostgroupClass#create (method)">#create</a></span>
|
|
94
|
+
<small>ForemanApi::Resources::HostgroupClass</small>
|
|
95
95
|
</li>
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
<li class="r1 ">
|
|
99
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
100
|
-
<small>ForemanApi::Resources::
|
|
99
|
+
<span class='object_link'><a href="ForemanApi/Resources/Subnet.html#create-instance_method" title="ForemanApi::Resources::Subnet#create (method)">#create</a></span>
|
|
100
|
+
<small>ForemanApi::Resources::Subnet</small>
|
|
101
101
|
</li>
|
|
102
102
|
|
|
103
103
|
|
|
104
104
|
<li class="r2 ">
|
|
105
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
106
|
-
<small>ForemanApi::Resources::
|
|
105
|
+
<span class='object_link'><a href="ForemanApi/Resources/Bookmark.html#create-instance_method" title="ForemanApi::Resources::Bookmark#create (method)">#create</a></span>
|
|
106
|
+
<small>ForemanApi::Resources::Bookmark</small>
|
|
107
107
|
</li>
|
|
108
108
|
|
|
109
109
|
|
|
110
110
|
<li class="r1 ">
|
|
111
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
112
|
-
<small>ForemanApi::Resources::
|
|
111
|
+
<span class='object_link'><a href="ForemanApi/Resources/Organization.html#create-instance_method" title="ForemanApi::Resources::Organization#create (method)">#create</a></span>
|
|
112
|
+
<small>ForemanApi::Resources::Organization</small>
|
|
113
113
|
</li>
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
<li class="r2 ">
|
|
117
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
118
|
-
<small>ForemanApi::Resources::
|
|
117
|
+
<span class='object_link'><a href="ForemanApi/Resources/TemplateCombination.html#create-instance_method" title="ForemanApi::Resources::TemplateCombination#create (method)">#create</a></span>
|
|
118
|
+
<small>ForemanApi::Resources::TemplateCombination</small>
|
|
119
119
|
</li>
|
|
120
120
|
|
|
121
121
|
|
|
122
122
|
<li class="r1 ">
|
|
123
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
124
|
-
<small>ForemanApi::Resources::
|
|
123
|
+
<span class='object_link'><a href="ForemanApi/Resources/User.html#create-instance_method" title="ForemanApi::Resources::User#create (method)">#create</a></span>
|
|
124
|
+
<small>ForemanApi::Resources::User</small>
|
|
125
125
|
</li>
|
|
126
126
|
|
|
127
127
|
|
|
128
128
|
<li class="r2 ">
|
|
129
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
130
|
-
<small>ForemanApi::Resources::
|
|
129
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html#create-instance_method" title="ForemanApi::Resources::SmartProxy#create (method)">#create</a></span>
|
|
130
|
+
<small>ForemanApi::Resources::SmartProxy</small>
|
|
131
131
|
</li>
|
|
132
132
|
|
|
133
133
|
|
|
134
134
|
<li class="r1 ">
|
|
135
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
136
|
-
<small>ForemanApi::Resources::
|
|
135
|
+
<span class='object_link'><a href="ForemanApi/Resources/Report.html#create-instance_method" title="ForemanApi::Resources::Report#create (method)">#create</a></span>
|
|
136
|
+
<small>ForemanApi::Resources::Report</small>
|
|
137
137
|
</li>
|
|
138
138
|
|
|
139
139
|
|
|
140
140
|
<li class="r2 ">
|
|
141
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
142
|
-
<small>ForemanApi::Resources::
|
|
141
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartVariable.html#create-instance_method" title="ForemanApi::Resources::SmartVariable#create (method)">#create</a></span>
|
|
142
|
+
<small>ForemanApi::Resources::SmartVariable</small>
|
|
143
143
|
</li>
|
|
144
144
|
|
|
145
145
|
|
|
146
146
|
<li class="r1 ">
|
|
147
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
148
|
-
<small>ForemanApi::Resources::
|
|
147
|
+
<span class='object_link'><a href="ForemanApi/Resources/Interface.html#create-instance_method" title="ForemanApi::Resources::Interface#create (method)">#create</a></span>
|
|
148
|
+
<small>ForemanApi::Resources::Interface</small>
|
|
149
149
|
</li>
|
|
150
150
|
|
|
151
151
|
|
|
152
152
|
<li class="r2 ">
|
|
153
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
154
|
-
<small>ForemanApi::Resources::
|
|
153
|
+
<span class='object_link'><a href="ForemanApi/Resources/AuthSourceLdap.html#create-instance_method" title="ForemanApi::Resources::AuthSourceLdap#create (method)">#create</a></span>
|
|
154
|
+
<small>ForemanApi::Resources::AuthSourceLdap</small>
|
|
155
155
|
</li>
|
|
156
156
|
|
|
157
157
|
|
|
@@ -162,110 +162,122 @@
|
|
|
162
162
|
|
|
163
163
|
|
|
164
164
|
<li class="r2 ">
|
|
165
|
+
<span class='object_link'><a href="ForemanApi/Resources/Parameter.html#create-instance_method" title="ForemanApi::Resources::Parameter#create (method)">#create</a></span>
|
|
166
|
+
<small>ForemanApi::Resources::Parameter</small>
|
|
167
|
+
</li>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
<li class="r1 ">
|
|
165
171
|
<span class='object_link'><a href="ForemanApi/Resources/OperatingSystem.html#create-instance_method" title="ForemanApi::Resources::OperatingSystem#create (method)">#create</a></span>
|
|
166
172
|
<small>ForemanApi::Resources::OperatingSystem</small>
|
|
167
173
|
</li>
|
|
168
174
|
|
|
169
175
|
|
|
176
|
+
<li class="r2 ">
|
|
177
|
+
<span class='object_link'><a href="ForemanApi/Resources/Environment.html#create-instance_method" title="ForemanApi::Resources::Environment#create (method)">#create</a></span>
|
|
178
|
+
<small>ForemanApi::Resources::Environment</small>
|
|
179
|
+
</li>
|
|
180
|
+
|
|
181
|
+
|
|
170
182
|
<li class="r1 ">
|
|
171
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
172
|
-
<small>ForemanApi::Resources::
|
|
183
|
+
<span class='object_link'><a href="ForemanApi/Resources/ComputeResource.html#create-instance_method" title="ForemanApi::Resources::ComputeResource#create (method)">#create</a></span>
|
|
184
|
+
<small>ForemanApi::Resources::ComputeResource</small>
|
|
173
185
|
</li>
|
|
174
186
|
|
|
175
187
|
|
|
176
188
|
<li class="r2 ">
|
|
177
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
178
|
-
<small>ForemanApi::Resources::
|
|
189
|
+
<span class='object_link'><a href="ForemanApi/Resources/Usergroup.html#create-instance_method" title="ForemanApi::Resources::Usergroup#create (method)">#create</a></span>
|
|
190
|
+
<small>ForemanApi::Resources::Usergroup</small>
|
|
179
191
|
</li>
|
|
180
192
|
|
|
181
193
|
|
|
182
194
|
<li class="r1 ">
|
|
183
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
184
|
-
<small>ForemanApi::Resources::
|
|
195
|
+
<span class='object_link'><a href="ForemanApi/Resources/Domain.html#create-instance_method" title="ForemanApi::Resources::Domain#create (method)">#create</a></span>
|
|
196
|
+
<small>ForemanApi::Resources::Domain</small>
|
|
185
197
|
</li>
|
|
186
198
|
|
|
187
199
|
|
|
188
200
|
<li class="r2 ">
|
|
189
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
190
|
-
<small>ForemanApi::Resources::
|
|
201
|
+
<span class='object_link'><a href="ForemanApi/Resources/HostClass.html#create-instance_method" title="ForemanApi::Resources::HostClass#create (method)">#create</a></span>
|
|
202
|
+
<small>ForemanApi::Resources::HostClass</small>
|
|
191
203
|
</li>
|
|
192
204
|
|
|
193
205
|
|
|
194
206
|
<li class="r1 ">
|
|
195
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
196
|
-
<small>ForemanApi::Resources::
|
|
207
|
+
<span class='object_link'><a href="ForemanApi/Resources/Medium.html#create-instance_method" title="ForemanApi::Resources::Medium#create (method)">#create</a></span>
|
|
208
|
+
<small>ForemanApi::Resources::Medium</small>
|
|
197
209
|
</li>
|
|
198
210
|
|
|
199
211
|
|
|
200
212
|
<li class="r2 ">
|
|
201
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
202
|
-
<small>ForemanApi::Resources::
|
|
213
|
+
<span class='object_link'><a href="ForemanApi/Resources/Puppetclass.html#create-instance_method" title="ForemanApi::Resources::Puppetclass#create (method)">#create</a></span>
|
|
214
|
+
<small>ForemanApi::Resources::Puppetclass</small>
|
|
203
215
|
</li>
|
|
204
216
|
|
|
205
217
|
|
|
206
218
|
<li class="r1 ">
|
|
207
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
208
|
-
<small>ForemanApi::Resources::
|
|
219
|
+
<span class='object_link'><a href="ForemanApi/Resources/Hostgroup.html#create-instance_method" title="ForemanApi::Resources::Hostgroup#create (method)">#create</a></span>
|
|
220
|
+
<small>ForemanApi::Resources::Hostgroup</small>
|
|
209
221
|
</li>
|
|
210
222
|
|
|
211
223
|
|
|
212
224
|
<li class="r2 ">
|
|
213
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
214
|
-
<small>ForemanApi::Resources::
|
|
225
|
+
<span class='object_link'><a href="ForemanApi/Resources/LookupKey.html#create-instance_method" title="ForemanApi::Resources::LookupKey#create (method)">#create</a></span>
|
|
226
|
+
<small>ForemanApi::Resources::LookupKey</small>
|
|
215
227
|
</li>
|
|
216
228
|
|
|
217
229
|
|
|
218
230
|
<li class="r1 ">
|
|
219
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
220
|
-
<small>ForemanApi::Resources::
|
|
231
|
+
<span class='object_link'><a href="ForemanApi/Resources/Architecture.html#create-instance_method" title="ForemanApi::Resources::Architecture#create (method)">#create</a></span>
|
|
232
|
+
<small>ForemanApi::Resources::Architecture</small>
|
|
221
233
|
</li>
|
|
222
234
|
|
|
223
235
|
|
|
224
236
|
<li class="r2 ">
|
|
225
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
226
|
-
<small>ForemanApi::Resources::
|
|
237
|
+
<span class='object_link'><a href="ForemanApi/Resources/Location.html#create-instance_method" title="ForemanApi::Resources::Location#create (method)">#create</a></span>
|
|
238
|
+
<small>ForemanApi::Resources::Location</small>
|
|
227
239
|
</li>
|
|
228
240
|
|
|
229
241
|
|
|
230
242
|
<li class="r1 ">
|
|
231
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
232
|
-
<small>ForemanApi::Resources::
|
|
243
|
+
<span class='object_link'><a href="ForemanApi/Resources/Model.html#create-instance_method" title="ForemanApi::Resources::Model#create (method)">#create</a></span>
|
|
244
|
+
<small>ForemanApi::Resources::Model</small>
|
|
233
245
|
</li>
|
|
234
246
|
|
|
235
247
|
|
|
236
248
|
<li class="r2 ">
|
|
237
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
238
|
-
<small>ForemanApi::Resources::
|
|
249
|
+
<span class='object_link'><a href="ForemanApi/Resources/CommonParameter.html#create-instance_method" title="ForemanApi::Resources::CommonParameter#create (method)">#create</a></span>
|
|
250
|
+
<small>ForemanApi::Resources::CommonParameter</small>
|
|
239
251
|
</li>
|
|
240
252
|
|
|
241
253
|
|
|
242
254
|
<li class="r1 ">
|
|
243
|
-
<span class='object_link'><a href="ForemanApi/Resources/Image.html#
|
|
255
|
+
<span class='object_link'><a href="ForemanApi/Resources/Image.html#create-instance_method" title="ForemanApi::Resources::Image#create (method)">#create</a></span>
|
|
244
256
|
<small>ForemanApi::Resources::Image</small>
|
|
245
257
|
</li>
|
|
246
258
|
|
|
247
259
|
|
|
248
260
|
<li class="r2 ">
|
|
249
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
250
|
-
<small>ForemanApi::Resources::
|
|
261
|
+
<span class='object_link'><a href="ForemanApi/Resources/Ptable.html#create-instance_method" title="ForemanApi::Resources::Ptable#create (method)">#create</a></span>
|
|
262
|
+
<small>ForemanApi::Resources::Ptable</small>
|
|
251
263
|
</li>
|
|
252
264
|
|
|
253
265
|
|
|
254
266
|
<li class="r1 ">
|
|
255
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
256
|
-
<small>ForemanApi::Resources::
|
|
267
|
+
<span class='object_link'><a href="ForemanApi/Resources/Location.html#destroy-instance_method" title="ForemanApi::Resources::Location#destroy (method)">#destroy</a></span>
|
|
268
|
+
<small>ForemanApi::Resources::Location</small>
|
|
257
269
|
</li>
|
|
258
270
|
|
|
259
271
|
|
|
260
272
|
<li class="r2 ">
|
|
261
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
262
|
-
<small>ForemanApi::Resources::
|
|
273
|
+
<span class='object_link'><a href="ForemanApi/Resources/Environment.html#destroy-instance_method" title="ForemanApi::Resources::Environment#destroy (method)">#destroy</a></span>
|
|
274
|
+
<small>ForemanApi::Resources::Environment</small>
|
|
263
275
|
</li>
|
|
264
276
|
|
|
265
277
|
|
|
266
278
|
<li class="r1 ">
|
|
267
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
268
|
-
<small>ForemanApi::Resources::
|
|
279
|
+
<span class='object_link'><a href="ForemanApi/Resources/Model.html#destroy-instance_method" title="ForemanApi::Resources::Model#destroy (method)">#destroy</a></span>
|
|
280
|
+
<small>ForemanApi::Resources::Model</small>
|
|
269
281
|
</li>
|
|
270
282
|
|
|
271
283
|
|
|
@@ -276,56 +288,56 @@
|
|
|
276
288
|
|
|
277
289
|
|
|
278
290
|
<li class="r1 ">
|
|
279
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
280
|
-
<small>ForemanApi::Resources::
|
|
291
|
+
<span class='object_link'><a href="ForemanApi/Resources/Image.html#destroy-instance_method" title="ForemanApi::Resources::Image#destroy (method)">#destroy</a></span>
|
|
292
|
+
<small>ForemanApi::Resources::Image</small>
|
|
281
293
|
</li>
|
|
282
294
|
|
|
283
295
|
|
|
284
296
|
<li class="r2 ">
|
|
285
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
286
|
-
<small>ForemanApi::Resources::
|
|
297
|
+
<span class='object_link'><a href="ForemanApi/Resources/ConfigTemplate.html#destroy-instance_method" title="ForemanApi::Resources::ConfigTemplate#destroy (method)">#destroy</a></span>
|
|
298
|
+
<small>ForemanApi::Resources::ConfigTemplate</small>
|
|
287
299
|
</li>
|
|
288
300
|
|
|
289
301
|
|
|
290
302
|
<li class="r1 ">
|
|
291
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
292
|
-
<small>ForemanApi::Resources::
|
|
303
|
+
<span class='object_link'><a href="ForemanApi/Resources/Architecture.html#destroy-instance_method" title="ForemanApi::Resources::Architecture#destroy (method)">#destroy</a></span>
|
|
304
|
+
<small>ForemanApi::Resources::Architecture</small>
|
|
293
305
|
</li>
|
|
294
306
|
|
|
295
307
|
|
|
296
308
|
<li class="r2 ">
|
|
297
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
298
|
-
<small>ForemanApi::Resources::
|
|
309
|
+
<span class='object_link'><a href="ForemanApi/Resources/Usergroup.html#destroy-instance_method" title="ForemanApi::Resources::Usergroup#destroy (method)">#destroy</a></span>
|
|
310
|
+
<small>ForemanApi::Resources::Usergroup</small>
|
|
299
311
|
</li>
|
|
300
312
|
|
|
301
313
|
|
|
302
314
|
<li class="r1 ">
|
|
303
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
304
|
-
<small>ForemanApi::Resources::
|
|
315
|
+
<span class='object_link'><a href="ForemanApi/Resources/Hostgroup.html#destroy-instance_method" title="ForemanApi::Resources::Hostgroup#destroy (method)">#destroy</a></span>
|
|
316
|
+
<small>ForemanApi::Resources::Hostgroup</small>
|
|
305
317
|
</li>
|
|
306
318
|
|
|
307
319
|
|
|
308
320
|
<li class="r2 ">
|
|
309
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
310
|
-
<small>ForemanApi::Resources::
|
|
321
|
+
<span class='object_link'><a href="ForemanApi/Resources/OperatingSystem.html#destroy-instance_method" title="ForemanApi::Resources::OperatingSystem#destroy (method)">#destroy</a></span>
|
|
322
|
+
<small>ForemanApi::Resources::OperatingSystem</small>
|
|
311
323
|
</li>
|
|
312
324
|
|
|
313
325
|
|
|
314
326
|
<li class="r1 ">
|
|
315
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
316
|
-
<small>ForemanApi::Resources::
|
|
327
|
+
<span class='object_link'><a href="ForemanApi/Resources/Medium.html#destroy-instance_method" title="ForemanApi::Resources::Medium#destroy (method)">#destroy</a></span>
|
|
328
|
+
<small>ForemanApi::Resources::Medium</small>
|
|
317
329
|
</li>
|
|
318
330
|
|
|
319
331
|
|
|
320
332
|
<li class="r2 ">
|
|
321
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
322
|
-
<small>ForemanApi::Resources::
|
|
333
|
+
<span class='object_link'><a href="ForemanApi/Resources/Puppetclass.html#destroy-instance_method" title="ForemanApi::Resources::Puppetclass#destroy (method)">#destroy</a></span>
|
|
334
|
+
<small>ForemanApi::Resources::Puppetclass</small>
|
|
323
335
|
</li>
|
|
324
336
|
|
|
325
337
|
|
|
326
338
|
<li class="r1 ">
|
|
327
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
328
|
-
<small>ForemanApi::Resources::
|
|
339
|
+
<span class='object_link'><a href="ForemanApi/Resources/ComputeResource.html#destroy-instance_method" title="ForemanApi::Resources::ComputeResource#destroy (method)">#destroy</a></span>
|
|
340
|
+
<small>ForemanApi::Resources::ComputeResource</small>
|
|
329
341
|
</li>
|
|
330
342
|
|
|
331
343
|
|
|
@@ -336,56 +348,68 @@
|
|
|
336
348
|
|
|
337
349
|
|
|
338
350
|
<li class="r1 ">
|
|
339
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
340
|
-
<small>ForemanApi::Resources::
|
|
351
|
+
<span class='object_link'><a href="ForemanApi/Resources/Report.html#destroy-instance_method" title="ForemanApi::Resources::Report#destroy (method)">#destroy</a></span>
|
|
352
|
+
<small>ForemanApi::Resources::Report</small>
|
|
341
353
|
</li>
|
|
342
354
|
|
|
343
355
|
|
|
344
356
|
<li class="r2 ">
|
|
345
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
346
|
-
<small>ForemanApi::Resources::
|
|
357
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartVariable.html#destroy-instance_method" title="ForemanApi::Resources::SmartVariable#destroy (method)">#destroy</a></span>
|
|
358
|
+
<small>ForemanApi::Resources::SmartVariable</small>
|
|
347
359
|
</li>
|
|
348
360
|
|
|
349
361
|
|
|
350
362
|
<li class="r1 ">
|
|
351
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
352
|
-
<small>ForemanApi::Resources::
|
|
363
|
+
<span class='object_link'><a href="ForemanApi/Resources/User.html#destroy-instance_method" title="ForemanApi::Resources::User#destroy (method)">#destroy</a></span>
|
|
364
|
+
<small>ForemanApi::Resources::User</small>
|
|
353
365
|
</li>
|
|
354
366
|
|
|
355
367
|
|
|
356
368
|
<li class="r2 ">
|
|
357
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
358
|
-
<small>ForemanApi::Resources::
|
|
369
|
+
<span class='object_link'><a href="ForemanApi/Resources/Organization.html#destroy-instance_method" title="ForemanApi::Resources::Organization#destroy (method)">#destroy</a></span>
|
|
370
|
+
<small>ForemanApi::Resources::Organization</small>
|
|
359
371
|
</li>
|
|
360
372
|
|
|
361
373
|
|
|
362
374
|
<li class="r1 ">
|
|
363
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
364
|
-
<small>ForemanApi::Resources::
|
|
375
|
+
<span class='object_link'><a href="ForemanApi/Resources/Interface.html#destroy-instance_method" title="ForemanApi::Resources::Interface#destroy (method)">#destroy</a></span>
|
|
376
|
+
<small>ForemanApi::Resources::Interface</small>
|
|
365
377
|
</li>
|
|
366
378
|
|
|
367
379
|
|
|
368
380
|
<li class="r2 ">
|
|
369
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
370
|
-
<small>ForemanApi::Resources::
|
|
381
|
+
<span class='object_link'><a href="ForemanApi/Resources/HostClass.html#destroy-instance_method" title="ForemanApi::Resources::HostClass#destroy (method)">#destroy</a></span>
|
|
382
|
+
<small>ForemanApi::Resources::HostClass</small>
|
|
371
383
|
</li>
|
|
372
384
|
|
|
373
385
|
|
|
374
386
|
<li class="r1 ">
|
|
375
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
376
|
-
<small>ForemanApi::Resources::
|
|
387
|
+
<span class='object_link'><a href="ForemanApi/Resources/Role.html#destroy-instance_method" title="ForemanApi::Resources::Role#destroy (method)">#destroy</a></span>
|
|
388
|
+
<small>ForemanApi::Resources::Role</small>
|
|
377
389
|
</li>
|
|
378
390
|
|
|
379
391
|
|
|
380
392
|
<li class="r2 ">
|
|
393
|
+
<span class='object_link'><a href="ForemanApi/Resources/AuthSourceLdap.html#destroy-instance_method" title="ForemanApi::Resources::AuthSourceLdap#destroy (method)">#destroy</a></span>
|
|
394
|
+
<small>ForemanApi::Resources::AuthSourceLdap</small>
|
|
395
|
+
</li>
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
<li class="r1 ">
|
|
381
399
|
<span class='object_link'><a href="ForemanApi/Resources/Subnet.html#destroy-instance_method" title="ForemanApi::Resources::Subnet#destroy (method)">#destroy</a></span>
|
|
382
400
|
<small>ForemanApi::Resources::Subnet</small>
|
|
383
401
|
</li>
|
|
384
402
|
|
|
385
403
|
|
|
404
|
+
<li class="r2 ">
|
|
405
|
+
<span class='object_link'><a href="ForemanApi/Resources/TemplateCombination.html#destroy-instance_method" title="ForemanApi::Resources::TemplateCombination#destroy (method)">#destroy</a></span>
|
|
406
|
+
<small>ForemanApi::Resources::TemplateCombination</small>
|
|
407
|
+
</li>
|
|
408
|
+
|
|
409
|
+
|
|
386
410
|
<li class="r1 ">
|
|
387
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
388
|
-
<small>ForemanApi::Resources::
|
|
411
|
+
<span class='object_link'><a href="ForemanApi/Resources/LookupKey.html#destroy-instance_method" title="ForemanApi::Resources::LookupKey#destroy (method)">#destroy</a></span>
|
|
412
|
+
<small>ForemanApi::Resources::LookupKey</small>
|
|
389
413
|
</li>
|
|
390
414
|
|
|
391
415
|
|
|
@@ -396,56 +420,56 @@
|
|
|
396
420
|
|
|
397
421
|
|
|
398
422
|
<li class="r1 ">
|
|
399
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
400
|
-
<small>ForemanApi::Resources::
|
|
423
|
+
<span class='object_link'><a href="ForemanApi/Resources/Parameter.html#destroy-instance_method" title="ForemanApi::Resources::Parameter#destroy (method)">#destroy</a></span>
|
|
424
|
+
<small>ForemanApi::Resources::Parameter</small>
|
|
401
425
|
</li>
|
|
402
426
|
|
|
403
427
|
|
|
404
428
|
<li class="r2 ">
|
|
405
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
406
|
-
<small>ForemanApi::Resources::
|
|
429
|
+
<span class='object_link'><a href="ForemanApi/Resources/OverrideValue.html#destroy-instance_method" title="ForemanApi::Resources::OverrideValue#destroy (method)">#destroy</a></span>
|
|
430
|
+
<small>ForemanApi::Resources::OverrideValue</small>
|
|
407
431
|
</li>
|
|
408
432
|
|
|
409
433
|
|
|
410
434
|
<li class="r1 ">
|
|
411
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
412
|
-
<small>ForemanApi::Resources::
|
|
435
|
+
<span class='object_link'><a href="ForemanApi/Resources/Domain.html#destroy-instance_method" title="ForemanApi::Resources::Domain#destroy (method)">#destroy</a></span>
|
|
436
|
+
<small>ForemanApi::Resources::Domain</small>
|
|
413
437
|
</li>
|
|
414
438
|
|
|
415
439
|
|
|
416
440
|
<li class="r2 ">
|
|
417
|
-
<span class='object_link'><a href="ForemanApi/Resources/Ptable.html#
|
|
441
|
+
<span class='object_link'><a href="ForemanApi/Resources/Ptable.html#destroy-instance_method" title="ForemanApi::Resources::Ptable#destroy (method)">#destroy</a></span>
|
|
418
442
|
<small>ForemanApi::Resources::Ptable</small>
|
|
419
443
|
</li>
|
|
420
444
|
|
|
421
445
|
|
|
422
446
|
<li class="r1 ">
|
|
423
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
424
|
-
<small>ForemanApi::Resources::
|
|
447
|
+
<span class='object_link'><a href="ForemanApi/Resources/HostgroupClass.html#destroy-instance_method" title="ForemanApi::Resources::HostgroupClass#destroy (method)">#destroy</a></span>
|
|
448
|
+
<small>ForemanApi::Resources::HostgroupClass</small>
|
|
425
449
|
</li>
|
|
426
450
|
|
|
427
451
|
|
|
428
452
|
<li class="r2 ">
|
|
429
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
430
|
-
<small>ForemanApi::Resources::
|
|
453
|
+
<span class='object_link'><a href="ForemanApi/Resources/Bookmark.html#destroy-instance_method" title="ForemanApi::Resources::Bookmark#destroy (method)">#destroy</a></span>
|
|
454
|
+
<small>ForemanApi::Resources::Bookmark</small>
|
|
431
455
|
</li>
|
|
432
456
|
|
|
433
457
|
|
|
434
458
|
<li class="r1 ">
|
|
435
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
436
|
-
<small>ForemanApi::Resources::
|
|
459
|
+
<span class='object_link'><a href="ForemanApi/Resources/Subnet.html#doc-class_method" title="ForemanApi::Resources::Subnet.doc (method)">doc</a></span>
|
|
460
|
+
<small>ForemanApi::Resources::Subnet</small>
|
|
437
461
|
</li>
|
|
438
462
|
|
|
439
463
|
|
|
440
464
|
<li class="r2 ">
|
|
441
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
442
|
-
<small>ForemanApi::Resources::
|
|
465
|
+
<span class='object_link'><a href="ForemanApi/Resources/OverrideValue.html#doc-class_method" title="ForemanApi::Resources::OverrideValue.doc (method)">doc</a></span>
|
|
466
|
+
<small>ForemanApi::Resources::OverrideValue</small>
|
|
443
467
|
</li>
|
|
444
468
|
|
|
445
469
|
|
|
446
470
|
<li class="r1 ">
|
|
447
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
448
|
-
<small>ForemanApi::Resources::
|
|
471
|
+
<span class='object_link'><a href="ForemanApi/Resources/Ptable.html#doc-class_method" title="ForemanApi::Resources::Ptable.doc (method)">doc</a></span>
|
|
472
|
+
<small>ForemanApi::Resources::Ptable</small>
|
|
449
473
|
</li>
|
|
450
474
|
|
|
451
475
|
|
|
@@ -456,128 +480,140 @@
|
|
|
456
480
|
|
|
457
481
|
|
|
458
482
|
<li class="r1 ">
|
|
459
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
460
|
-
<small>ForemanApi::Resources::
|
|
483
|
+
<span class='object_link'><a href="ForemanApi/Resources/LookupKey.html#doc-class_method" title="ForemanApi::Resources::LookupKey.doc (method)">doc</a></span>
|
|
484
|
+
<small>ForemanApi::Resources::LookupKey</small>
|
|
461
485
|
</li>
|
|
462
486
|
|
|
463
487
|
|
|
464
488
|
<li class="r2 ">
|
|
465
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
466
|
-
<small>ForemanApi::Resources::
|
|
489
|
+
<span class='object_link'><a href="ForemanApi/Resources/Domain.html#doc-class_method" title="ForemanApi::Resources::Domain.doc (method)">doc</a></span>
|
|
490
|
+
<small>ForemanApi::Resources::Domain</small>
|
|
467
491
|
</li>
|
|
468
492
|
|
|
469
493
|
|
|
470
494
|
<li class="r1 ">
|
|
471
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
472
|
-
<small>ForemanApi::Resources::
|
|
495
|
+
<span class='object_link'><a href="ForemanApi/Resources/FactValue.html#doc-class_method" title="ForemanApi::Resources::FactValue.doc (method)">doc</a></span>
|
|
496
|
+
<small>ForemanApi::Resources::FactValue</small>
|
|
473
497
|
</li>
|
|
474
498
|
|
|
475
499
|
|
|
476
500
|
<li class="r2 ">
|
|
477
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
478
|
-
<small>ForemanApi::Resources::
|
|
501
|
+
<span class='object_link'><a href="ForemanApi/Resources/Statistic.html#doc-class_method" title="ForemanApi::Resources::Statistic.doc (method)">doc</a></span>
|
|
502
|
+
<small>ForemanApi::Resources::Statistic</small>
|
|
479
503
|
</li>
|
|
480
504
|
|
|
481
505
|
|
|
482
506
|
<li class="r1 ">
|
|
483
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
484
|
-
<small>ForemanApi::Resources::
|
|
507
|
+
<span class='object_link'><a href="ForemanApi/Resources/OperatingSystem.html#doc-class_method" title="ForemanApi::Resources::OperatingSystem.doc (method)">doc</a></span>
|
|
508
|
+
<small>ForemanApi::Resources::OperatingSystem</small>
|
|
485
509
|
</li>
|
|
486
510
|
|
|
487
511
|
|
|
488
512
|
<li class="r2 ">
|
|
489
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
490
|
-
<small>ForemanApi::Resources::
|
|
513
|
+
<span class='object_link'><a href="ForemanApi/Resources/HostgroupClass.html#doc-class_method" title="ForemanApi::Resources::HostgroupClass.doc (method)">doc</a></span>
|
|
514
|
+
<small>ForemanApi::Resources::HostgroupClass</small>
|
|
491
515
|
</li>
|
|
492
516
|
|
|
493
517
|
|
|
494
518
|
<li class="r1 ">
|
|
495
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
496
|
-
<small>ForemanApi::Resources::
|
|
519
|
+
<span class='object_link'><a href="ForemanApi/Resources/Environment.html#doc-class_method" title="ForemanApi::Resources::Environment.doc (method)">doc</a></span>
|
|
520
|
+
<small>ForemanApi::Resources::Environment</small>
|
|
497
521
|
</li>
|
|
498
522
|
|
|
499
523
|
|
|
500
524
|
<li class="r2 ">
|
|
501
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
502
|
-
<small>ForemanApi::Resources::
|
|
525
|
+
<span class='object_link'><a href="ForemanApi/Resources/AuthSourceLdap.html#doc-class_method" title="ForemanApi::Resources::AuthSourceLdap.doc (method)">doc</a></span>
|
|
526
|
+
<small>ForemanApi::Resources::AuthSourceLdap</small>
|
|
503
527
|
</li>
|
|
504
528
|
|
|
505
529
|
|
|
506
530
|
<li class="r1 ">
|
|
507
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
508
|
-
<small>ForemanApi::Resources::
|
|
531
|
+
<span class='object_link'><a href="ForemanApi/Resources/TemplateKind.html#doc-class_method" title="ForemanApi::Resources::TemplateKind.doc (method)">doc</a></span>
|
|
532
|
+
<small>ForemanApi::Resources::TemplateKind</small>
|
|
509
533
|
</li>
|
|
510
534
|
|
|
511
535
|
|
|
512
536
|
<li class="r2 ">
|
|
513
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
514
|
-
<small>ForemanApi::Resources::
|
|
537
|
+
<span class='object_link'><a href="ForemanApi/Resources/Location.html#doc-class_method" title="ForemanApi::Resources::Location.doc (method)">doc</a></span>
|
|
538
|
+
<small>ForemanApi::Resources::Location</small>
|
|
515
539
|
</li>
|
|
516
540
|
|
|
517
541
|
|
|
518
542
|
<li class="r1 ">
|
|
519
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
520
|
-
<small>ForemanApi::Resources::
|
|
543
|
+
<span class='object_link'><a href="ForemanApi/Resources/Report.html#doc-class_method" title="ForemanApi::Resources::Report.doc (method)">doc</a></span>
|
|
544
|
+
<small>ForemanApi::Resources::Report</small>
|
|
521
545
|
</li>
|
|
522
546
|
|
|
523
547
|
|
|
524
548
|
<li class="r2 ">
|
|
525
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
526
|
-
<small>ForemanApi::Resources::
|
|
549
|
+
<span class='object_link'><a href="ForemanApi/Resources/Medium.html#doc-class_method" title="ForemanApi::Resources::Medium.doc (method)">doc</a></span>
|
|
550
|
+
<small>ForemanApi::Resources::Medium</small>
|
|
527
551
|
</li>
|
|
528
552
|
|
|
529
553
|
|
|
530
554
|
<li class="r1 ">
|
|
531
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
532
|
-
<small>ForemanApi::Resources::
|
|
555
|
+
<span class='object_link'><a href="ForemanApi/Resources/CommonParameter.html#doc-class_method" title="ForemanApi::Resources::CommonParameter.doc (method)">doc</a></span>
|
|
556
|
+
<small>ForemanApi::Resources::CommonParameter</small>
|
|
533
557
|
</li>
|
|
534
558
|
|
|
535
559
|
|
|
536
560
|
<li class="r2 ">
|
|
537
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
538
|
-
<small>ForemanApi::Resources::
|
|
561
|
+
<span class='object_link'><a href="ForemanApi/Resources/Puppetclass.html#doc-class_method" title="ForemanApi::Resources::Puppetclass.doc (method)">doc</a></span>
|
|
562
|
+
<small>ForemanApi::Resources::Puppetclass</small>
|
|
539
563
|
</li>
|
|
540
564
|
|
|
541
565
|
|
|
542
566
|
<li class="r1 ">
|
|
543
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
544
|
-
<small>ForemanApi::Resources::
|
|
567
|
+
<span class='object_link'><a href="ForemanApi/Resources/Image.html#doc-class_method" title="ForemanApi::Resources::Image.doc (method)">doc</a></span>
|
|
568
|
+
<small>ForemanApi::Resources::Image</small>
|
|
545
569
|
</li>
|
|
546
570
|
|
|
547
571
|
|
|
548
572
|
<li class="r2 ">
|
|
549
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
550
|
-
<small>ForemanApi::Resources::
|
|
573
|
+
<span class='object_link'><a href="ForemanApi/Resources/Hostgroup.html#doc-class_method" title="ForemanApi::Resources::Hostgroup.doc (method)">doc</a></span>
|
|
574
|
+
<small>ForemanApi::Resources::Hostgroup</small>
|
|
551
575
|
</li>
|
|
552
576
|
|
|
553
577
|
|
|
554
578
|
<li class="r1 ">
|
|
555
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
556
|
-
<small>ForemanApi::Resources::
|
|
579
|
+
<span class='object_link'><a href="ForemanApi/Resources/HostClass.html#doc-class_method" title="ForemanApi::Resources::HostClass.doc (method)">doc</a></span>
|
|
580
|
+
<small>ForemanApi::Resources::HostClass</small>
|
|
557
581
|
</li>
|
|
558
582
|
|
|
559
583
|
|
|
560
584
|
<li class="r2 ">
|
|
561
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
562
|
-
<small>ForemanApi::Resources::
|
|
585
|
+
<span class='object_link'><a href="ForemanApi/Resources/Model.html#doc-class_method" title="ForemanApi::Resources::Model.doc (method)">doc</a></span>
|
|
586
|
+
<small>ForemanApi::Resources::Model</small>
|
|
563
587
|
</li>
|
|
564
588
|
|
|
565
589
|
|
|
566
590
|
<li class="r1 ">
|
|
567
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
568
|
-
<small>ForemanApi::Resources::
|
|
591
|
+
<span class='object_link'><a href="ForemanApi/Resources/ComputeResource.html#doc-class_method" title="ForemanApi::Resources::ComputeResource.doc (method)">doc</a></span>
|
|
592
|
+
<small>ForemanApi::Resources::ComputeResource</small>
|
|
569
593
|
</li>
|
|
570
594
|
|
|
571
595
|
|
|
572
596
|
<li class="r2 ">
|
|
597
|
+
<span class='object_link'><a href="ForemanApi/Resources/ConfigTemplate.html#doc-class_method" title="ForemanApi::Resources::ConfigTemplate.doc (method)">doc</a></span>
|
|
598
|
+
<small>ForemanApi::Resources::ConfigTemplate</small>
|
|
599
|
+
</li>
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
<li class="r1 ">
|
|
573
603
|
<span class='object_link'><a href="ForemanApi/Resources/Audit.html#doc-class_method" title="ForemanApi::Resources::Audit.doc (method)">doc</a></span>
|
|
574
604
|
<small>ForemanApi::Resources::Audit</small>
|
|
575
605
|
</li>
|
|
576
606
|
|
|
577
607
|
|
|
608
|
+
<li class="r2 ">
|
|
609
|
+
<span class='object_link'><a href="ForemanApi/Resources/Interface.html#doc-class_method" title="ForemanApi::Resources::Interface.doc (method)">doc</a></span>
|
|
610
|
+
<small>ForemanApi::Resources::Interface</small>
|
|
611
|
+
</li>
|
|
612
|
+
|
|
613
|
+
|
|
578
614
|
<li class="r1 ">
|
|
579
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
580
|
-
<small>ForemanApi::Resources::
|
|
615
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html#doc-class_method" title="ForemanApi::Resources::SmartProxy.doc (method)">doc</a></span>
|
|
616
|
+
<small>ForemanApi::Resources::SmartProxy</small>
|
|
581
617
|
</li>
|
|
582
618
|
|
|
583
619
|
|
|
@@ -588,80 +624,92 @@
|
|
|
588
624
|
|
|
589
625
|
|
|
590
626
|
<li class="r1 ">
|
|
591
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
592
|
-
<small>ForemanApi::Resources::
|
|
627
|
+
<span class='object_link'><a href="ForemanApi/Resources/Architecture.html#doc-class_method" title="ForemanApi::Resources::Architecture.doc (method)">doc</a></span>
|
|
628
|
+
<small>ForemanApi::Resources::Architecture</small>
|
|
593
629
|
</li>
|
|
594
630
|
|
|
595
631
|
|
|
596
632
|
<li class="r2 ">
|
|
597
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
598
|
-
<small>ForemanApi::Resources::
|
|
633
|
+
<span class='object_link'><a href="ForemanApi/Resources/Host.html#doc-class_method" title="ForemanApi::Resources::Host.doc (method)">doc</a></span>
|
|
634
|
+
<small>ForemanApi::Resources::Host</small>
|
|
599
635
|
</li>
|
|
600
636
|
|
|
601
637
|
|
|
602
638
|
<li class="r1 ">
|
|
603
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
604
|
-
<small>ForemanApi::Resources::
|
|
639
|
+
<span class='object_link'><a href="ForemanApi/Resources/User.html#doc-class_method" title="ForemanApi::Resources::User.doc (method)">doc</a></span>
|
|
640
|
+
<small>ForemanApi::Resources::User</small>
|
|
605
641
|
</li>
|
|
606
642
|
|
|
607
643
|
|
|
608
644
|
<li class="r2 ">
|
|
609
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
610
|
-
<small>ForemanApi::Resources::
|
|
645
|
+
<span class='object_link'><a href="ForemanApi/Resources/Parameter.html#doc-class_method" title="ForemanApi::Resources::Parameter.doc (method)">doc</a></span>
|
|
646
|
+
<small>ForemanApi::Resources::Parameter</small>
|
|
611
647
|
</li>
|
|
612
648
|
|
|
613
649
|
|
|
614
650
|
<li class="r1 ">
|
|
615
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
616
|
-
<small>ForemanApi::Resources::
|
|
651
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartClassParameter.html#doc-class_method" title="ForemanApi::Resources::SmartClassParameter.doc (method)">doc</a></span>
|
|
652
|
+
<small>ForemanApi::Resources::SmartClassParameter</small>
|
|
617
653
|
</li>
|
|
618
654
|
|
|
619
655
|
|
|
620
656
|
<li class="r2 ">
|
|
621
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
622
|
-
<small>ForemanApi::Resources::
|
|
657
|
+
<span class='object_link'><a href="ForemanApi/Resources/Usergroup.html#doc-class_method" title="ForemanApi::Resources::Usergroup.doc (method)">doc</a></span>
|
|
658
|
+
<small>ForemanApi::Resources::Usergroup</small>
|
|
623
659
|
</li>
|
|
624
660
|
|
|
625
661
|
|
|
626
662
|
<li class="r1 ">
|
|
627
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
628
|
-
<small>ForemanApi::Resources::
|
|
663
|
+
<span class='object_link'><a href="ForemanApi/Resources/Role.html#doc-class_method" title="ForemanApi::Resources::Role.doc (method)">doc</a></span>
|
|
664
|
+
<small>ForemanApi::Resources::Role</small>
|
|
629
665
|
</li>
|
|
630
666
|
|
|
631
667
|
|
|
632
668
|
<li class="r2 ">
|
|
633
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
634
|
-
<small>ForemanApi::Resources::
|
|
669
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartVariable.html#doc-class_method" title="ForemanApi::Resources::SmartVariable.doc (method)">doc</a></span>
|
|
670
|
+
<small>ForemanApi::Resources::SmartVariable</small>
|
|
635
671
|
</li>
|
|
636
672
|
|
|
637
673
|
|
|
638
674
|
<li class="r1 ">
|
|
639
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
640
|
-
<small>ForemanApi::Resources::
|
|
675
|
+
<span class='object_link'><a href="ForemanApi/Resources/Home.html#doc-class_method" title="ForemanApi::Resources::Home.doc (method)">doc</a></span>
|
|
676
|
+
<small>ForemanApi::Resources::Home</small>
|
|
641
677
|
</li>
|
|
642
678
|
|
|
643
679
|
|
|
644
680
|
<li class="r2 ">
|
|
645
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
646
|
-
<small>ForemanApi::Resources::
|
|
681
|
+
<span class='object_link'><a href="ForemanApi/Resources/Organization.html#doc-class_method" title="ForemanApi::Resources::Organization.doc (method)">doc</a></span>
|
|
682
|
+
<small>ForemanApi::Resources::Organization</small>
|
|
647
683
|
</li>
|
|
648
684
|
|
|
649
685
|
|
|
650
686
|
<li class="r1 ">
|
|
651
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
652
|
-
<small>ForemanApi::Resources::
|
|
687
|
+
<span class='object_link'><a href="ForemanApi/Resources/Dashboard.html#doc-class_method" title="ForemanApi::Resources::Dashboard.doc (method)">doc</a></span>
|
|
688
|
+
<small>ForemanApi::Resources::Dashboard</small>
|
|
653
689
|
</li>
|
|
654
690
|
|
|
655
691
|
|
|
656
692
|
<li class="r2 ">
|
|
657
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
658
|
-
<small>ForemanApi::Resources::
|
|
693
|
+
<span class='object_link'><a href="ForemanApi/Resources/Bookmark.html#doc-class_method" title="ForemanApi::Resources::Bookmark.doc (method)">doc</a></span>
|
|
694
|
+
<small>ForemanApi::Resources::Bookmark</small>
|
|
659
695
|
</li>
|
|
660
696
|
|
|
661
697
|
|
|
662
698
|
<li class="r1 ">
|
|
663
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
664
|
-
<small>ForemanApi::Resources::
|
|
699
|
+
<span class='object_link'><a href="ForemanApi/Resources/Host.html#facts-instance_method" title="ForemanApi::Resources::Host#facts (method)">#facts</a></span>
|
|
700
|
+
<small>ForemanApi::Resources::Host</small>
|
|
701
|
+
</li>
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
<li class="r2 ">
|
|
705
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html#import_puppetclasses-instance_method" title="ForemanApi::Resources::SmartProxy#import_puppetclasses (method)">#import_puppetclasses</a></span>
|
|
706
|
+
<small>ForemanApi::Resources::SmartProxy</small>
|
|
707
|
+
</li>
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
<li class="r1 ">
|
|
711
|
+
<span class='object_link'><a href="ForemanApi/Resources/Environment.html#import_puppetclasses-instance_method" title="ForemanApi::Resources::Environment#import_puppetclasses (method)">#import_puppetclasses</a></span>
|
|
712
|
+
<small>ForemanApi::Resources::Environment</small>
|
|
665
713
|
</li>
|
|
666
714
|
|
|
667
715
|
|
|
@@ -678,38 +726,62 @@
|
|
|
678
726
|
|
|
679
727
|
|
|
680
728
|
<li class="r2 ">
|
|
681
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
682
|
-
<small>ForemanApi::Resources::
|
|
729
|
+
<span class='object_link'><a href="ForemanApi/Resources/Interface.html#index-instance_method" title="ForemanApi::Resources::Interface#index (method)">#index</a></span>
|
|
730
|
+
<small>ForemanApi::Resources::Interface</small>
|
|
683
731
|
</li>
|
|
684
732
|
|
|
685
733
|
|
|
686
734
|
<li class="r1 ">
|
|
687
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
688
|
-
<small>ForemanApi::Resources::
|
|
735
|
+
<span class='object_link'><a href="ForemanApi/Resources/OverrideValue.html#index-instance_method" title="ForemanApi::Resources::OverrideValue#index (method)">#index</a></span>
|
|
736
|
+
<small>ForemanApi::Resources::OverrideValue</small>
|
|
689
737
|
</li>
|
|
690
738
|
|
|
691
739
|
|
|
692
740
|
<li class="r2 ">
|
|
693
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
694
|
-
<small>ForemanApi::Resources::
|
|
741
|
+
<span class='object_link'><a href="ForemanApi/Resources/ConfigTemplate.html#index-instance_method" title="ForemanApi::Resources::ConfigTemplate#index (method)">#index</a></span>
|
|
742
|
+
<small>ForemanApi::Resources::ConfigTemplate</small>
|
|
695
743
|
</li>
|
|
696
744
|
|
|
697
745
|
|
|
698
746
|
<li class="r1 ">
|
|
699
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
700
|
-
<small>ForemanApi::Resources::
|
|
747
|
+
<span class='object_link'><a href="ForemanApi/Resources/Hostgroup.html#index-instance_method" title="ForemanApi::Resources::Hostgroup#index (method)">#index</a></span>
|
|
748
|
+
<small>ForemanApi::Resources::Hostgroup</small>
|
|
701
749
|
</li>
|
|
702
750
|
|
|
703
751
|
|
|
704
752
|
<li class="r2 ">
|
|
753
|
+
<span class='object_link'><a href="ForemanApi/Resources/HostClass.html#index-instance_method" title="ForemanApi::Resources::HostClass#index (method)">#index</a></span>
|
|
754
|
+
<small>ForemanApi::Resources::HostClass</small>
|
|
755
|
+
</li>
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
<li class="r1 ">
|
|
705
759
|
<span class='object_link'><a href="ForemanApi/Resources/Location.html#index-instance_method" title="ForemanApi::Resources::Location#index (method)">#index</a></span>
|
|
706
760
|
<small>ForemanApi::Resources::Location</small>
|
|
707
761
|
</li>
|
|
708
762
|
|
|
709
763
|
|
|
764
|
+
<li class="r2 ">
|
|
765
|
+
<span class='object_link'><a href="ForemanApi/Resources/Bookmark.html#index-instance_method" title="ForemanApi::Resources::Bookmark#index (method)">#index</a></span>
|
|
766
|
+
<small>ForemanApi::Resources::Bookmark</small>
|
|
767
|
+
</li>
|
|
768
|
+
|
|
769
|
+
|
|
710
770
|
<li class="r1 ">
|
|
711
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
712
|
-
<small>ForemanApi::Resources::
|
|
771
|
+
<span class='object_link'><a href="ForemanApi/Resources/HostgroupClass.html#index-instance_method" title="ForemanApi::Resources::HostgroupClass#index (method)">#index</a></span>
|
|
772
|
+
<small>ForemanApi::Resources::HostgroupClass</small>
|
|
773
|
+
</li>
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
<li class="r2 ">
|
|
777
|
+
<span class='object_link'><a href="ForemanApi/Resources/FactValue.html#index-instance_method" title="ForemanApi::Resources::FactValue#index (method)">#index</a></span>
|
|
778
|
+
<small>ForemanApi::Resources::FactValue</small>
|
|
779
|
+
</li>
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
<li class="r1 ">
|
|
783
|
+
<span class='object_link'><a href="ForemanApi/Resources/Setting.html#index-instance_method" title="ForemanApi::Resources::Setting#index (method)">#index</a></span>
|
|
784
|
+
<small>ForemanApi::Resources::Setting</small>
|
|
713
785
|
</li>
|
|
714
786
|
|
|
715
787
|
|
|
@@ -720,8 +792,8 @@
|
|
|
720
792
|
|
|
721
793
|
|
|
722
794
|
<li class="r1 ">
|
|
723
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
724
|
-
<small>ForemanApi::Resources::
|
|
795
|
+
<span class='object_link'><a href="ForemanApi/Resources/Ptable.html#index-instance_method" title="ForemanApi::Resources::Ptable#index (method)">#index</a></span>
|
|
796
|
+
<small>ForemanApi::Resources::Ptable</small>
|
|
725
797
|
</li>
|
|
726
798
|
|
|
727
799
|
|
|
@@ -732,272 +804,380 @@
|
|
|
732
804
|
|
|
733
805
|
|
|
734
806
|
<li class="r1 ">
|
|
735
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
736
|
-
<small>ForemanApi::Resources::
|
|
807
|
+
<span class='object_link'><a href="ForemanApi/Resources/TemplateKind.html#index-instance_method" title="ForemanApi::Resources::TemplateKind#index (method)">#index</a></span>
|
|
808
|
+
<small>ForemanApi::Resources::TemplateKind</small>
|
|
737
809
|
</li>
|
|
738
810
|
|
|
739
811
|
|
|
740
812
|
<li class="r2 ">
|
|
813
|
+
<span class='object_link'><a href="ForemanApi/Resources/Domain.html#index-instance_method" title="ForemanApi::Resources::Domain#index (method)">#index</a></span>
|
|
814
|
+
<small>ForemanApi::Resources::Domain</small>
|
|
815
|
+
</li>
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
<li class="r1 ">
|
|
741
819
|
<span class='object_link'><a href="ForemanApi/Resources/Subnet.html#index-instance_method" title="ForemanApi::Resources::Subnet#index (method)">#index</a></span>
|
|
742
820
|
<small>ForemanApi::Resources::Subnet</small>
|
|
743
821
|
</li>
|
|
744
822
|
|
|
745
823
|
|
|
746
|
-
<li class="
|
|
824
|
+
<li class="r2 ">
|
|
747
825
|
<span class='object_link'><a href="ForemanApi/Resources/Organization.html#index-instance_method" title="ForemanApi::Resources::Organization#index (method)">#index</a></span>
|
|
748
826
|
<small>ForemanApi::Resources::Organization</small>
|
|
749
827
|
</li>
|
|
750
828
|
|
|
751
829
|
|
|
830
|
+
<li class="r1 ">
|
|
831
|
+
<span class='object_link'><a href="ForemanApi/Resources/Environment.html#index-instance_method" title="ForemanApi::Resources::Environment#index (method)">#index</a></span>
|
|
832
|
+
<small>ForemanApi::Resources::Environment</small>
|
|
833
|
+
</li>
|
|
834
|
+
|
|
835
|
+
|
|
752
836
|
<li class="r2 ">
|
|
753
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
754
|
-
<small>ForemanApi::Resources::
|
|
837
|
+
<span class='object_link'><a href="ForemanApi/Resources/OperatingSystem.html#index-instance_method" title="ForemanApi::Resources::OperatingSystem#index (method)">#index</a></span>
|
|
838
|
+
<small>ForemanApi::Resources::OperatingSystem</small>
|
|
755
839
|
</li>
|
|
756
840
|
|
|
757
841
|
|
|
758
842
|
<li class="r1 ">
|
|
843
|
+
<span class='object_link'><a href="ForemanApi/Resources/Report.html#index-instance_method" title="ForemanApi::Resources::Report#index (method)">#index</a></span>
|
|
844
|
+
<small>ForemanApi::Resources::Report</small>
|
|
845
|
+
</li>
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
<li class="r2 ">
|
|
849
|
+
<span class='object_link'><a href="ForemanApi/Resources/Medium.html#index-instance_method" title="ForemanApi::Resources::Medium#index (method)">#index</a></span>
|
|
850
|
+
<small>ForemanApi::Resources::Medium</small>
|
|
851
|
+
</li>
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
<li class="r1 ">
|
|
855
|
+
<span class='object_link'><a href="ForemanApi/Resources/CommonParameter.html#index-instance_method" title="ForemanApi::Resources::CommonParameter#index (method)">#index</a></span>
|
|
856
|
+
<small>ForemanApi::Resources::CommonParameter</small>
|
|
857
|
+
</li>
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
<li class="r2 ">
|
|
861
|
+
<span class='object_link'><a href="ForemanApi/Resources/Image.html#index-instance_method" title="ForemanApi::Resources::Image#index (method)">#index</a></span>
|
|
862
|
+
<small>ForemanApi::Resources::Image</small>
|
|
863
|
+
</li>
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
<li class="r1 ">
|
|
867
|
+
<span class='object_link'><a href="ForemanApi/Resources/Puppetclass.html#index-instance_method" title="ForemanApi::Resources::Puppetclass#index (method)">#index</a></span>
|
|
868
|
+
<small>ForemanApi::Resources::Puppetclass</small>
|
|
869
|
+
</li>
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
<li class="r2 ">
|
|
873
|
+
<span class='object_link'><a href="ForemanApi/Resources/Model.html#index-instance_method" title="ForemanApi::Resources::Model#index (method)">#index</a></span>
|
|
874
|
+
<small>ForemanApi::Resources::Model</small>
|
|
875
|
+
</li>
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
<li class="r1 ">
|
|
879
|
+
<span class='object_link'><a href="ForemanApi/Resources/Audit.html#index-instance_method" title="ForemanApi::Resources::Audit#index (method)">#index</a></span>
|
|
880
|
+
<small>ForemanApi::Resources::Audit</small>
|
|
881
|
+
</li>
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
<li class="r2 ">
|
|
885
|
+
<span class='object_link'><a href="ForemanApi/Resources/Architecture.html#index-instance_method" title="ForemanApi::Resources::Architecture#index (method)">#index</a></span>
|
|
886
|
+
<small>ForemanApi::Resources::Architecture</small>
|
|
887
|
+
</li>
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
<li class="r1 ">
|
|
891
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartVariable.html#index-instance_method" title="ForemanApi::Resources::SmartVariable#index (method)">#index</a></span>
|
|
892
|
+
<small>ForemanApi::Resources::SmartVariable</small>
|
|
893
|
+
</li>
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
<li class="r2 ">
|
|
897
|
+
<span class='object_link'><a href="ForemanApi/Resources/ComputeResource.html#index-instance_method" title="ForemanApi::Resources::ComputeResource#index (method)">#index</a></span>
|
|
898
|
+
<small>ForemanApi::Resources::ComputeResource</small>
|
|
899
|
+
</li>
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
<li class="r1 ">
|
|
903
|
+
<span class='object_link'><a href="ForemanApi/Resources/Statistic.html#index-instance_method" title="ForemanApi::Resources::Statistic#index (method)">#index</a></span>
|
|
904
|
+
<small>ForemanApi::Resources::Statistic</small>
|
|
905
|
+
</li>
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
<li class="r2 ">
|
|
759
909
|
<span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html#index-instance_method" title="ForemanApi::Resources::SmartProxy#index (method)">#index</a></span>
|
|
760
910
|
<small>ForemanApi::Resources::SmartProxy</small>
|
|
761
911
|
</li>
|
|
762
912
|
|
|
763
913
|
|
|
914
|
+
<li class="r1 ">
|
|
915
|
+
<span class='object_link'><a href="ForemanApi/Resources/Host.html#index-instance_method" title="ForemanApi::Resources::Host#index (method)">#index</a></span>
|
|
916
|
+
<small>ForemanApi::Resources::Host</small>
|
|
917
|
+
</li>
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
<li class="r2 ">
|
|
921
|
+
<span class='object_link'><a href="ForemanApi/Resources/TemplateCombination.html#index-instance_method" title="ForemanApi::Resources::TemplateCombination#index (method)">#index</a></span>
|
|
922
|
+
<small>ForemanApi::Resources::TemplateCombination</small>
|
|
923
|
+
</li>
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
<li class="r1 ">
|
|
927
|
+
<span class='object_link'><a href="ForemanApi/Resources/User.html#index-instance_method" title="ForemanApi::Resources::User#index (method)">#index</a></span>
|
|
928
|
+
<small>ForemanApi::Resources::User</small>
|
|
929
|
+
</li>
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
<li class="r2 ">
|
|
933
|
+
<span class='object_link'><a href="ForemanApi/Resources/Role.html#index-instance_method" title="ForemanApi::Resources::Role#index (method)">#index</a></span>
|
|
934
|
+
<small>ForemanApi::Resources::Role</small>
|
|
935
|
+
</li>
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
<li class="r1 ">
|
|
939
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartClassParameter.html#index-instance_method" title="ForemanApi::Resources::SmartClassParameter#index (method)">#index</a></span>
|
|
940
|
+
<small>ForemanApi::Resources::SmartClassParameter</small>
|
|
941
|
+
</li>
|
|
942
|
+
|
|
943
|
+
|
|
764
944
|
<li class="r2 ">
|
|
765
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
766
|
-
<small>ForemanApi::Resources::
|
|
945
|
+
<span class='object_link'><a href="ForemanApi/Resources/Home.html#index-instance_method" title="ForemanApi::Resources::Home#index (method)">#index</a></span>
|
|
946
|
+
<small>ForemanApi::Resources::Home</small>
|
|
767
947
|
</li>
|
|
768
948
|
|
|
769
949
|
|
|
770
950
|
<li class="r1 ">
|
|
771
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
772
|
-
<small>ForemanApi::Resources::
|
|
951
|
+
<span class='object_link'><a href="ForemanApi/Resources/Usergroup.html#index-instance_method" title="ForemanApi::Resources::Usergroup#index (method)">#index</a></span>
|
|
952
|
+
<small>ForemanApi::Resources::Usergroup</small>
|
|
773
953
|
</li>
|
|
774
954
|
|
|
775
955
|
|
|
776
956
|
<li class="r2 ">
|
|
777
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
778
|
-
<small>ForemanApi::Resources::
|
|
957
|
+
<span class='object_link'><a href="ForemanApi/Resources/Report.html#last-instance_method" title="ForemanApi::Resources::Report#last (method)">#last</a></span>
|
|
958
|
+
<small>ForemanApi::Resources::Report</small>
|
|
779
959
|
</li>
|
|
780
960
|
|
|
781
961
|
|
|
782
962
|
<li class="r1 ">
|
|
783
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
784
|
-
<small>ForemanApi::Resources::
|
|
963
|
+
<span class='object_link'><a href="ForemanApi/Resources/Host.html#power-instance_method" title="ForemanApi::Resources::Host#power (method)">#power</a></span>
|
|
964
|
+
<small>ForemanApi::Resources::Host</small>
|
|
785
965
|
</li>
|
|
786
966
|
|
|
787
967
|
|
|
788
968
|
<li class="r2 ">
|
|
789
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
790
|
-
<small>ForemanApi::Resources::
|
|
969
|
+
<span class='object_link'><a href="ForemanApi/Resources/Host.html#puppetrun-instance_method" title="ForemanApi::Resources::Host#puppetrun (method)">#puppetrun</a></span>
|
|
970
|
+
<small>ForemanApi::Resources::Host</small>
|
|
791
971
|
</li>
|
|
792
972
|
|
|
793
973
|
|
|
794
974
|
<li class="r1 ">
|
|
795
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
796
|
-
<small>ForemanApi::Resources::
|
|
975
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html#refresh-instance_method" title="ForemanApi::Resources::SmartProxy#refresh (method)">#refresh</a></span>
|
|
976
|
+
<small>ForemanApi::Resources::SmartProxy</small>
|
|
797
977
|
</li>
|
|
798
978
|
|
|
799
979
|
|
|
800
980
|
<li class="r2 ">
|
|
801
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
802
|
-
<small>ForemanApi::Resources::
|
|
981
|
+
<span class='object_link'><a href="ForemanApi/Resources/Parameter.html#reset-instance_method" title="ForemanApi::Resources::Parameter#reset (method)">#reset</a></span>
|
|
982
|
+
<small>ForemanApi::Resources::Parameter</small>
|
|
803
983
|
</li>
|
|
804
984
|
|
|
805
985
|
|
|
806
986
|
<li class="r1 ">
|
|
807
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
808
|
-
<small>ForemanApi::Resources::
|
|
987
|
+
<span class='object_link'><a href="ForemanApi/Resources/ConfigTemplate.html#revision-instance_method" title="ForemanApi::Resources::ConfigTemplate#revision (method)">#revision</a></span>
|
|
988
|
+
<small>ForemanApi::Resources::ConfigTemplate</small>
|
|
809
989
|
</li>
|
|
810
990
|
|
|
811
991
|
|
|
812
992
|
<li class="r2 ">
|
|
813
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
814
|
-
<small>ForemanApi::Resources::
|
|
993
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartVariable.html#show-instance_method" title="ForemanApi::Resources::SmartVariable#show (method)">#show</a></span>
|
|
994
|
+
<small>ForemanApi::Resources::SmartVariable</small>
|
|
815
995
|
</li>
|
|
816
996
|
|
|
817
997
|
|
|
818
998
|
<li class="r1 ">
|
|
819
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
820
|
-
<small>ForemanApi::Resources::
|
|
999
|
+
<span class='object_link'><a href="ForemanApi/Resources/Puppetclass.html#show-instance_method" title="ForemanApi::Resources::Puppetclass#show (method)">#show</a></span>
|
|
1000
|
+
<small>ForemanApi::Resources::Puppetclass</small>
|
|
821
1001
|
</li>
|
|
822
1002
|
|
|
823
1003
|
|
|
824
1004
|
<li class="r2 ">
|
|
825
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
826
|
-
<small>ForemanApi::Resources::
|
|
1005
|
+
<span class='object_link'><a href="ForemanApi/Resources/TemplateCombination.html#show-instance_method" title="ForemanApi::Resources::TemplateCombination#show (method)">#show</a></span>
|
|
1006
|
+
<small>ForemanApi::Resources::TemplateCombination</small>
|
|
827
1007
|
</li>
|
|
828
1008
|
|
|
829
1009
|
|
|
830
1010
|
<li class="r1 ">
|
|
831
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
832
|
-
<small>ForemanApi::Resources::
|
|
1011
|
+
<span class='object_link'><a href="ForemanApi/Resources/User.html#show-instance_method" title="ForemanApi::Resources::User#show (method)">#show</a></span>
|
|
1012
|
+
<small>ForemanApi::Resources::User</small>
|
|
833
1013
|
</li>
|
|
834
1014
|
|
|
835
1015
|
|
|
836
1016
|
<li class="r2 ">
|
|
837
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
838
|
-
<small>ForemanApi::Resources::
|
|
1017
|
+
<span class='object_link'><a href="ForemanApi/Resources/Environment.html#show-instance_method" title="ForemanApi::Resources::Environment#show (method)">#show</a></span>
|
|
1018
|
+
<small>ForemanApi::Resources::Environment</small>
|
|
839
1019
|
</li>
|
|
840
1020
|
|
|
841
1021
|
|
|
842
1022
|
<li class="r1 ">
|
|
843
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
844
|
-
<small>ForemanApi::Resources::
|
|
1023
|
+
<span class='object_link'><a href="ForemanApi/Resources/Host.html#show-instance_method" title="ForemanApi::Resources::Host#show (method)">#show</a></span>
|
|
1024
|
+
<small>ForemanApi::Resources::Host</small>
|
|
845
1025
|
</li>
|
|
846
1026
|
|
|
847
1027
|
|
|
848
1028
|
<li class="r2 ">
|
|
849
|
-
<span class='object_link'><a href="ForemanApi/Resources/LookupKey.html#
|
|
1029
|
+
<span class='object_link'><a href="ForemanApi/Resources/LookupKey.html#show-instance_method" title="ForemanApi::Resources::LookupKey#show (method)">#show</a></span>
|
|
850
1030
|
<small>ForemanApi::Resources::LookupKey</small>
|
|
851
1031
|
</li>
|
|
852
1032
|
|
|
853
1033
|
|
|
854
1034
|
<li class="r1 ">
|
|
855
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
856
|
-
<small>ForemanApi::Resources::
|
|
1035
|
+
<span class='object_link'><a href="ForemanApi/Resources/Subnet.html#show-instance_method" title="ForemanApi::Resources::Subnet#show (method)">#show</a></span>
|
|
1036
|
+
<small>ForemanApi::Resources::Subnet</small>
|
|
857
1037
|
</li>
|
|
858
1038
|
|
|
859
1039
|
|
|
860
1040
|
<li class="r2 ">
|
|
861
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
862
|
-
<small>ForemanApi::Resources::
|
|
1041
|
+
<span class='object_link'><a href="ForemanApi/Resources/OverrideValue.html#show-instance_method" title="ForemanApi::Resources::OverrideValue#show (method)">#show</a></span>
|
|
1042
|
+
<small>ForemanApi::Resources::OverrideValue</small>
|
|
863
1043
|
</li>
|
|
864
1044
|
|
|
865
1045
|
|
|
866
1046
|
<li class="r1 ">
|
|
867
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
868
|
-
<small>ForemanApi::Resources::
|
|
1047
|
+
<span class='object_link'><a href="ForemanApi/Resources/Usergroup.html#show-instance_method" title="ForemanApi::Resources::Usergroup#show (method)">#show</a></span>
|
|
1048
|
+
<small>ForemanApi::Resources::Usergroup</small>
|
|
869
1049
|
</li>
|
|
870
1050
|
|
|
871
1051
|
|
|
872
1052
|
<li class="r2 ">
|
|
873
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
874
|
-
<small>ForemanApi::Resources::
|
|
1053
|
+
<span class='object_link'><a href="ForemanApi/Resources/Role.html#show-instance_method" title="ForemanApi::Resources::Role#show (method)">#show</a></span>
|
|
1054
|
+
<small>ForemanApi::Resources::Role</small>
|
|
875
1055
|
</li>
|
|
876
1056
|
|
|
877
1057
|
|
|
878
1058
|
<li class="r1 ">
|
|
879
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
880
|
-
<small>ForemanApi::Resources::
|
|
1059
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html#show-instance_method" title="ForemanApi::Resources::SmartProxy#show (method)">#show</a></span>
|
|
1060
|
+
<small>ForemanApi::Resources::SmartProxy</small>
|
|
881
1061
|
</li>
|
|
882
1062
|
|
|
883
1063
|
|
|
884
1064
|
<li class="r2 ">
|
|
885
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
886
|
-
<small>ForemanApi::Resources::
|
|
1065
|
+
<span class='object_link'><a href="ForemanApi/Resources/ComputeResource.html#show-instance_method" title="ForemanApi::Resources::ComputeResource#show (method)">#show</a></span>
|
|
1066
|
+
<small>ForemanApi::Resources::ComputeResource</small>
|
|
887
1067
|
</li>
|
|
888
1068
|
|
|
889
1069
|
|
|
890
1070
|
<li class="r1 ">
|
|
891
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
892
|
-
<small>ForemanApi::Resources::
|
|
1071
|
+
<span class='object_link'><a href="ForemanApi/Resources/Parameter.html#show-instance_method" title="ForemanApi::Resources::Parameter#show (method)">#show</a></span>
|
|
1072
|
+
<small>ForemanApi::Resources::Parameter</small>
|
|
893
1073
|
</li>
|
|
894
1074
|
|
|
895
1075
|
|
|
896
1076
|
<li class="r2 ">
|
|
897
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
898
|
-
<small>ForemanApi::Resources::
|
|
1077
|
+
<span class='object_link'><a href="ForemanApi/Resources/Architecture.html#show-instance_method" title="ForemanApi::Resources::Architecture#show (method)">#show</a></span>
|
|
1078
|
+
<small>ForemanApi::Resources::Architecture</small>
|
|
899
1079
|
</li>
|
|
900
1080
|
|
|
901
1081
|
|
|
902
1082
|
<li class="r1 ">
|
|
903
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
904
|
-
<small>ForemanApi::Resources::
|
|
1083
|
+
<span class='object_link'><a href="ForemanApi/Resources/Domain.html#show-instance_method" title="ForemanApi::Resources::Domain#show (method)">#show</a></span>
|
|
1084
|
+
<small>ForemanApi::Resources::Domain</small>
|
|
905
1085
|
</li>
|
|
906
1086
|
|
|
907
1087
|
|
|
908
1088
|
<li class="r2 ">
|
|
909
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
910
|
-
<small>ForemanApi::Resources::
|
|
1089
|
+
<span class='object_link'><a href="ForemanApi/Resources/Audit.html#show-instance_method" title="ForemanApi::Resources::Audit#show (method)">#show</a></span>
|
|
1090
|
+
<small>ForemanApi::Resources::Audit</small>
|
|
911
1091
|
</li>
|
|
912
1092
|
|
|
913
1093
|
|
|
914
1094
|
<li class="r1 ">
|
|
915
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
916
|
-
<small>ForemanApi::Resources::
|
|
1095
|
+
<span class='object_link'><a href="ForemanApi/Resources/Interface.html#show-instance_method" title="ForemanApi::Resources::Interface#show (method)">#show</a></span>
|
|
1096
|
+
<small>ForemanApi::Resources::Interface</small>
|
|
917
1097
|
</li>
|
|
918
1098
|
|
|
919
1099
|
|
|
920
1100
|
<li class="r2 ">
|
|
921
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
922
|
-
<small>ForemanApi::Resources::
|
|
1101
|
+
<span class='object_link'><a href="ForemanApi/Resources/AuthSourceLdap.html#show-instance_method" title="ForemanApi::Resources::AuthSourceLdap#show (method)">#show</a></span>
|
|
1102
|
+
<small>ForemanApi::Resources::AuthSourceLdap</small>
|
|
923
1103
|
</li>
|
|
924
1104
|
|
|
925
1105
|
|
|
926
1106
|
<li class="r1 ">
|
|
927
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
928
|
-
<small>ForemanApi::Resources::
|
|
1107
|
+
<span class='object_link'><a href="ForemanApi/Resources/Hostgroup.html#show-instance_method" title="ForemanApi::Resources::Hostgroup#show (method)">#show</a></span>
|
|
1108
|
+
<small>ForemanApi::Resources::Hostgroup</small>
|
|
929
1109
|
</li>
|
|
930
1110
|
|
|
931
1111
|
|
|
932
1112
|
<li class="r2 ">
|
|
933
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
934
|
-
<small>ForemanApi::Resources::
|
|
1113
|
+
<span class='object_link'><a href="ForemanApi/Resources/ConfigTemplate.html#show-instance_method" title="ForemanApi::Resources::ConfigTemplate#show (method)">#show</a></span>
|
|
1114
|
+
<small>ForemanApi::Resources::ConfigTemplate</small>
|
|
935
1115
|
</li>
|
|
936
1116
|
|
|
937
1117
|
|
|
938
1118
|
<li class="r1 ">
|
|
939
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
940
|
-
<small>ForemanApi::Resources::
|
|
1119
|
+
<span class='object_link'><a href="ForemanApi/Resources/CommonParameter.html#show-instance_method" title="ForemanApi::Resources::CommonParameter#show (method)">#show</a></span>
|
|
1120
|
+
<small>ForemanApi::Resources::CommonParameter</small>
|
|
941
1121
|
</li>
|
|
942
1122
|
|
|
943
1123
|
|
|
944
1124
|
<li class="r2 ">
|
|
945
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
946
|
-
<small>ForemanApi::Resources::
|
|
1125
|
+
<span class='object_link'><a href="ForemanApi/Resources/Image.html#show-instance_method" title="ForemanApi::Resources::Image#show (method)">#show</a></span>
|
|
1126
|
+
<small>ForemanApi::Resources::Image</small>
|
|
947
1127
|
</li>
|
|
948
1128
|
|
|
949
1129
|
|
|
950
1130
|
<li class="r1 ">
|
|
951
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
952
|
-
<small>ForemanApi::Resources::
|
|
1131
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartClassParameter.html#show-instance_method" title="ForemanApi::Resources::SmartClassParameter#show (method)">#show</a></span>
|
|
1132
|
+
<small>ForemanApi::Resources::SmartClassParameter</small>
|
|
953
1133
|
</li>
|
|
954
1134
|
|
|
955
1135
|
|
|
956
1136
|
<li class="r2 ">
|
|
957
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
958
|
-
<small>ForemanApi::Resources::
|
|
1137
|
+
<span class='object_link'><a href="ForemanApi/Resources/Location.html#show-instance_method" title="ForemanApi::Resources::Location#show (method)">#show</a></span>
|
|
1138
|
+
<small>ForemanApi::Resources::Location</small>
|
|
959
1139
|
</li>
|
|
960
1140
|
|
|
961
1141
|
|
|
962
1142
|
<li class="r1 ">
|
|
963
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
964
|
-
<small>ForemanApi::Resources::
|
|
1143
|
+
<span class='object_link'><a href="ForemanApi/Resources/Medium.html#show-instance_method" title="ForemanApi::Resources::Medium#show (method)">#show</a></span>
|
|
1144
|
+
<small>ForemanApi::Resources::Medium</small>
|
|
965
1145
|
</li>
|
|
966
1146
|
|
|
967
1147
|
|
|
968
1148
|
<li class="r2 ">
|
|
969
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
970
|
-
<small>ForemanApi::Resources::
|
|
1149
|
+
<span class='object_link'><a href="ForemanApi/Resources/Bookmark.html#show-instance_method" title="ForemanApi::Resources::Bookmark#show (method)">#show</a></span>
|
|
1150
|
+
<small>ForemanApi::Resources::Bookmark</small>
|
|
971
1151
|
</li>
|
|
972
1152
|
|
|
973
1153
|
|
|
974
1154
|
<li class="r1 ">
|
|
975
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
976
|
-
<small>ForemanApi::Resources::
|
|
1155
|
+
<span class='object_link'><a href="ForemanApi/Resources/Report.html#show-instance_method" title="ForemanApi::Resources::Report#show (method)">#show</a></span>
|
|
1156
|
+
<small>ForemanApi::Resources::Report</small>
|
|
977
1157
|
</li>
|
|
978
1158
|
|
|
979
1159
|
|
|
980
1160
|
<li class="r2 ">
|
|
981
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
982
|
-
<small>ForemanApi::Resources::
|
|
1161
|
+
<span class='object_link'><a href="ForemanApi/Resources/Setting.html#show-instance_method" title="ForemanApi::Resources::Setting#show (method)">#show</a></span>
|
|
1162
|
+
<small>ForemanApi::Resources::Setting</small>
|
|
983
1163
|
</li>
|
|
984
1164
|
|
|
985
1165
|
|
|
986
1166
|
<li class="r1 ">
|
|
987
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
988
|
-
<small>ForemanApi::Resources::
|
|
1167
|
+
<span class='object_link'><a href="ForemanApi/Resources/OperatingSystem.html#show-instance_method" title="ForemanApi::Resources::OperatingSystem#show (method)">#show</a></span>
|
|
1168
|
+
<small>ForemanApi::Resources::OperatingSystem</small>
|
|
989
1169
|
</li>
|
|
990
1170
|
|
|
991
1171
|
|
|
992
1172
|
<li class="r2 ">
|
|
993
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
994
|
-
<small>ForemanApi::Resources::
|
|
1173
|
+
<span class='object_link'><a href="ForemanApi/Resources/Ptable.html#show-instance_method" title="ForemanApi::Resources::Ptable#show (method)">#show</a></span>
|
|
1174
|
+
<small>ForemanApi::Resources::Ptable</small>
|
|
995
1175
|
</li>
|
|
996
1176
|
|
|
997
1177
|
|
|
998
1178
|
<li class="r1 ">
|
|
999
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1000
|
-
<small>ForemanApi::Resources::
|
|
1179
|
+
<span class='object_link'><a href="ForemanApi/Resources/Organization.html#show-instance_method" title="ForemanApi::Resources::Organization#show (method)">#show</a></span>
|
|
1180
|
+
<small>ForemanApi::Resources::Organization</small>
|
|
1001
1181
|
</li>
|
|
1002
1182
|
|
|
1003
1183
|
|
|
@@ -1008,56 +1188,56 @@
|
|
|
1008
1188
|
|
|
1009
1189
|
|
|
1010
1190
|
<li class="r1 ">
|
|
1011
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1012
|
-
<small>ForemanApi::Resources::
|
|
1191
|
+
<span class='object_link'><a href="ForemanApi/Resources/Home.html#status-instance_method" title="ForemanApi::Resources::Home#status (method)">#status</a></span>
|
|
1192
|
+
<small>ForemanApi::Resources::Home</small>
|
|
1013
1193
|
</li>
|
|
1014
1194
|
|
|
1015
1195
|
|
|
1016
1196
|
<li class="r2 ">
|
|
1017
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1018
|
-
<small>ForemanApi::Resources::
|
|
1197
|
+
<span class='object_link'><a href="ForemanApi/Resources/Host.html#status-instance_method" title="ForemanApi::Resources::Host#status (method)">#status</a></span>
|
|
1198
|
+
<small>ForemanApi::Resources::Host</small>
|
|
1019
1199
|
</li>
|
|
1020
1200
|
|
|
1021
1201
|
|
|
1022
1202
|
<li class="r1 ">
|
|
1023
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1024
|
-
<small>ForemanApi::Resources::
|
|
1203
|
+
<span class='object_link'><a href="ForemanApi/Resources/Model.html#update-instance_method" title="ForemanApi::Resources::Model#update (method)">#update</a></span>
|
|
1204
|
+
<small>ForemanApi::Resources::Model</small>
|
|
1025
1205
|
</li>
|
|
1026
1206
|
|
|
1027
1207
|
|
|
1028
1208
|
<li class="r2 ">
|
|
1029
|
-
<span class='object_link'><a href="ForemanApi/Resources/AuthSourceLdap.html#
|
|
1209
|
+
<span class='object_link'><a href="ForemanApi/Resources/AuthSourceLdap.html#update-instance_method" title="ForemanApi::Resources::AuthSourceLdap#update (method)">#update</a></span>
|
|
1030
1210
|
<small>ForemanApi::Resources::AuthSourceLdap</small>
|
|
1031
1211
|
</li>
|
|
1032
1212
|
|
|
1033
1213
|
|
|
1034
1214
|
<li class="r1 ">
|
|
1035
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1036
|
-
<small>ForemanApi::Resources::
|
|
1215
|
+
<span class='object_link'><a href="ForemanApi/Resources/Domain.html#update-instance_method" title="ForemanApi::Resources::Domain#update (method)">#update</a></span>
|
|
1216
|
+
<small>ForemanApi::Resources::Domain</small>
|
|
1037
1217
|
</li>
|
|
1038
1218
|
|
|
1039
1219
|
|
|
1040
1220
|
<li class="r2 ">
|
|
1041
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1042
|
-
<small>ForemanApi::Resources::
|
|
1221
|
+
<span class='object_link'><a href="ForemanApi/Resources/Ptable.html#update-instance_method" title="ForemanApi::Resources::Ptable#update (method)">#update</a></span>
|
|
1222
|
+
<small>ForemanApi::Resources::Ptable</small>
|
|
1043
1223
|
</li>
|
|
1044
1224
|
|
|
1045
1225
|
|
|
1046
1226
|
<li class="r1 ">
|
|
1047
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1048
|
-
<small>ForemanApi::Resources::
|
|
1227
|
+
<span class='object_link'><a href="ForemanApi/Resources/Setting.html#update-instance_method" title="ForemanApi::Resources::Setting#update (method)">#update</a></span>
|
|
1228
|
+
<small>ForemanApi::Resources::Setting</small>
|
|
1049
1229
|
</li>
|
|
1050
1230
|
|
|
1051
1231
|
|
|
1052
1232
|
<li class="r2 ">
|
|
1053
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1054
|
-
<small>ForemanApi::Resources::
|
|
1233
|
+
<span class='object_link'><a href="ForemanApi/Resources/OperatingSystem.html#update-instance_method" title="ForemanApi::Resources::OperatingSystem#update (method)">#update</a></span>
|
|
1234
|
+
<small>ForemanApi::Resources::OperatingSystem</small>
|
|
1055
1235
|
</li>
|
|
1056
1236
|
|
|
1057
1237
|
|
|
1058
1238
|
<li class="r1 ">
|
|
1059
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1060
|
-
<small>ForemanApi::Resources::
|
|
1239
|
+
<span class='object_link'><a href="ForemanApi/Resources/Medium.html#update-instance_method" title="ForemanApi::Resources::Medium#update (method)">#update</a></span>
|
|
1240
|
+
<small>ForemanApi::Resources::Medium</small>
|
|
1061
1241
|
</li>
|
|
1062
1242
|
|
|
1063
1243
|
|
|
@@ -1080,68 +1260,68 @@
|
|
|
1080
1260
|
|
|
1081
1261
|
|
|
1082
1262
|
<li class="r1 ">
|
|
1083
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1084
|
-
<small>ForemanApi::Resources::
|
|
1263
|
+
<span class='object_link'><a href="ForemanApi/Resources/Location.html#update-instance_method" title="ForemanApi::Resources::Location#update (method)">#update</a></span>
|
|
1264
|
+
<small>ForemanApi::Resources::Location</small>
|
|
1085
1265
|
</li>
|
|
1086
1266
|
|
|
1087
1267
|
|
|
1088
1268
|
<li class="r2 ">
|
|
1089
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1090
|
-
<small>ForemanApi::Resources::
|
|
1269
|
+
<span class='object_link'><a href="ForemanApi/Resources/Subnet.html#update-instance_method" title="ForemanApi::Resources::Subnet#update (method)">#update</a></span>
|
|
1270
|
+
<small>ForemanApi::Resources::Subnet</small>
|
|
1091
1271
|
</li>
|
|
1092
1272
|
|
|
1093
1273
|
|
|
1094
1274
|
<li class="r1 ">
|
|
1095
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1096
|
-
<small>ForemanApi::Resources::
|
|
1275
|
+
<span class='object_link'><a href="ForemanApi/Resources/CommonParameter.html#update-instance_method" title="ForemanApi::Resources::CommonParameter#update (method)">#update</a></span>
|
|
1276
|
+
<small>ForemanApi::Resources::CommonParameter</small>
|
|
1097
1277
|
</li>
|
|
1098
1278
|
|
|
1099
1279
|
|
|
1100
1280
|
<li class="r2 ">
|
|
1101
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1102
|
-
<small>ForemanApi::Resources::
|
|
1281
|
+
<span class='object_link'><a href="ForemanApi/Resources/Hostgroup.html#update-instance_method" title="ForemanApi::Resources::Hostgroup#update (method)">#update</a></span>
|
|
1282
|
+
<small>ForemanApi::Resources::Hostgroup</small>
|
|
1103
1283
|
</li>
|
|
1104
1284
|
|
|
1105
1285
|
|
|
1106
1286
|
<li class="r1 ">
|
|
1107
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1108
|
-
<small>ForemanApi::Resources::
|
|
1287
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartVariable.html#update-instance_method" title="ForemanApi::Resources::SmartVariable#update (method)">#update</a></span>
|
|
1288
|
+
<small>ForemanApi::Resources::SmartVariable</small>
|
|
1109
1289
|
</li>
|
|
1110
1290
|
|
|
1111
1291
|
|
|
1112
1292
|
<li class="r2 ">
|
|
1113
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1114
|
-
<small>ForemanApi::Resources::
|
|
1293
|
+
<span class='object_link'><a href="ForemanApi/Resources/Interface.html#update-instance_method" title="ForemanApi::Resources::Interface#update (method)">#update</a></span>
|
|
1294
|
+
<small>ForemanApi::Resources::Interface</small>
|
|
1115
1295
|
</li>
|
|
1116
1296
|
|
|
1117
1297
|
|
|
1118
1298
|
<li class="r1 ">
|
|
1119
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1120
|
-
<small>ForemanApi::Resources::
|
|
1299
|
+
<span class='object_link'><a href="ForemanApi/Resources/Parameter.html#update-instance_method" title="ForemanApi::Resources::Parameter#update (method)">#update</a></span>
|
|
1300
|
+
<small>ForemanApi::Resources::Parameter</small>
|
|
1121
1301
|
</li>
|
|
1122
1302
|
|
|
1123
1303
|
|
|
1124
1304
|
<li class="r2 ">
|
|
1125
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1126
|
-
<small>ForemanApi::Resources::
|
|
1305
|
+
<span class='object_link'><a href="ForemanApi/Resources/OverrideValue.html#update-instance_method" title="ForemanApi::Resources::OverrideValue#update (method)">#update</a></span>
|
|
1306
|
+
<small>ForemanApi::Resources::OverrideValue</small>
|
|
1127
1307
|
</li>
|
|
1128
1308
|
|
|
1129
1309
|
|
|
1130
1310
|
<li class="r1 ">
|
|
1131
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1132
|
-
<small>ForemanApi::Resources::
|
|
1311
|
+
<span class='object_link'><a href="ForemanApi/Resources/ComputeResource.html#update-instance_method" title="ForemanApi::Resources::ComputeResource#update (method)">#update</a></span>
|
|
1312
|
+
<small>ForemanApi::Resources::ComputeResource</small>
|
|
1133
1313
|
</li>
|
|
1134
1314
|
|
|
1135
1315
|
|
|
1136
1316
|
<li class="r2 ">
|
|
1137
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1138
|
-
<small>ForemanApi::Resources::
|
|
1317
|
+
<span class='object_link'><a href="ForemanApi/Resources/Usergroup.html#update-instance_method" title="ForemanApi::Resources::Usergroup#update (method)">#update</a></span>
|
|
1318
|
+
<small>ForemanApi::Resources::Usergroup</small>
|
|
1139
1319
|
</li>
|
|
1140
1320
|
|
|
1141
1321
|
|
|
1142
1322
|
<li class="r1 ">
|
|
1143
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1144
|
-
<small>ForemanApi::Resources::
|
|
1323
|
+
<span class='object_link'><a href="ForemanApi/Resources/Host.html#update-instance_method" title="ForemanApi::Resources::Host#update (method)">#update</a></span>
|
|
1324
|
+
<small>ForemanApi::Resources::Host</small>
|
|
1145
1325
|
</li>
|
|
1146
1326
|
|
|
1147
1327
|
|
|
@@ -1152,62 +1332,50 @@
|
|
|
1152
1332
|
|
|
1153
1333
|
|
|
1154
1334
|
<li class="r1 ">
|
|
1155
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1156
|
-
<small>ForemanApi::Resources::
|
|
1335
|
+
<span class='object_link'><a href="ForemanApi/Resources/User.html#update-instance_method" title="ForemanApi::Resources::User#update (method)">#update</a></span>
|
|
1336
|
+
<small>ForemanApi::Resources::User</small>
|
|
1157
1337
|
</li>
|
|
1158
1338
|
|
|
1159
1339
|
|
|
1160
1340
|
<li class="r2 ">
|
|
1161
|
-
<span class='object_link'><a href="ForemanApi/Resources/Domain.html#update-instance_method" title="ForemanApi::Resources::Domain#update (method)">#update</a></span>
|
|
1162
|
-
<small>ForemanApi::Resources::Domain</small>
|
|
1163
|
-
</li>
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
<li class="r1 ">
|
|
1167
1341
|
<span class='object_link'><a href="ForemanApi/Resources/Environment.html#update-instance_method" title="ForemanApi::Resources::Environment#update (method)">#update</a></span>
|
|
1168
1342
|
<small>ForemanApi::Resources::Environment</small>
|
|
1169
1343
|
</li>
|
|
1170
1344
|
|
|
1171
1345
|
|
|
1172
|
-
<li class="r2 ">
|
|
1173
|
-
<span class='object_link'><a href="ForemanApi/Resources/CommonParameter.html#update-instance_method" title="ForemanApi::Resources::CommonParameter#update (method)">#update</a></span>
|
|
1174
|
-
<small>ForemanApi::Resources::CommonParameter</small>
|
|
1175
|
-
</li>
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
1346
|
<li class="r1 ">
|
|
1179
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1180
|
-
<small>ForemanApi::Resources::
|
|
1347
|
+
<span class='object_link'><a href="ForemanApi/Resources/Architecture.html#update-instance_method" title="ForemanApi::Resources::Architecture#update (method)">#update</a></span>
|
|
1348
|
+
<small>ForemanApi::Resources::Architecture</small>
|
|
1181
1349
|
</li>
|
|
1182
1350
|
|
|
1183
1351
|
|
|
1184
1352
|
<li class="r2 ">
|
|
1185
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1186
|
-
<small>ForemanApi::Resources::
|
|
1353
|
+
<span class='object_link'><a href="ForemanApi/Resources/Role.html#update-instance_method" title="ForemanApi::Resources::Role#update (method)">#update</a></span>
|
|
1354
|
+
<small>ForemanApi::Resources::Role</small>
|
|
1187
1355
|
</li>
|
|
1188
1356
|
|
|
1189
1357
|
|
|
1190
1358
|
<li class="r1 ">
|
|
1191
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1192
|
-
<small>ForemanApi::Resources::
|
|
1359
|
+
<span class='object_link'><a href="ForemanApi/Resources/Puppetclass.html#update-instance_method" title="ForemanApi::Resources::Puppetclass#update (method)">#update</a></span>
|
|
1360
|
+
<small>ForemanApi::Resources::Puppetclass</small>
|
|
1193
1361
|
</li>
|
|
1194
1362
|
|
|
1195
1363
|
|
|
1196
1364
|
<li class="r2 ">
|
|
1197
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1198
|
-
<small>ForemanApi::Resources::
|
|
1365
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartProxy.html#update-instance_method" title="ForemanApi::Resources::SmartProxy#update (method)">#update</a></span>
|
|
1366
|
+
<small>ForemanApi::Resources::SmartProxy</small>
|
|
1199
1367
|
</li>
|
|
1200
1368
|
|
|
1201
1369
|
|
|
1202
1370
|
<li class="r1 ">
|
|
1203
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1204
|
-
<small>ForemanApi::Resources::
|
|
1371
|
+
<span class='object_link'><a href="ForemanApi/Resources/Organization.html#update-instance_method" title="ForemanApi::Resources::Organization#update (method)">#update</a></span>
|
|
1372
|
+
<small>ForemanApi::Resources::Organization</small>
|
|
1205
1373
|
</li>
|
|
1206
1374
|
|
|
1207
1375
|
|
|
1208
1376
|
<li class="r2 ">
|
|
1209
|
-
<span class='object_link'><a href="ForemanApi/Resources/
|
|
1210
|
-
<small>ForemanApi::Resources::
|
|
1377
|
+
<span class='object_link'><a href="ForemanApi/Resources/SmartClassParameter.html#update-instance_method" title="ForemanApi::Resources::SmartClassParameter#update (method)">#update</a></span>
|
|
1378
|
+
<small>ForemanApi::Resources::SmartClassParameter</small>
|
|
1211
1379
|
</li>
|
|
1212
1380
|
|
|
1213
1381
|
|