@redhat-cloud-services/compliance-client 0.2.0 → 0.2.2

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/AssignRule/index.d.ts +1 -1
  3. package/dist/DeleteReport/index.d.ts +1 -1
  4. package/dist/DeleteReport/index.js +1 -1
  5. package/dist/PolicySystems/index.d.ts +1 -1
  6. package/dist/PolicySystemsOS/index.d.ts +33 -0
  7. package/dist/PolicySystemsOS/index.js +56 -0
  8. package/dist/PolicySystemsOS/index.js.map +1 -0
  9. package/dist/Profile/index.d.ts +1 -1
  10. package/dist/ProfileRule/index.d.ts +1 -1
  11. package/dist/ProfileRules/index.d.ts +1 -1
  12. package/dist/ReportRuleResults/index.d.ts +56 -0
  13. package/dist/ReportRuleResults/index.js +65 -0
  14. package/dist/ReportRuleResults/index.js.map +1 -0
  15. package/dist/ReportStats/index.d.ts +27 -0
  16. package/dist/ReportStats/index.js +53 -0
  17. package/dist/ReportStats/index.js.map +1 -0
  18. package/dist/ReportSystems/index.d.ts +1 -1
  19. package/dist/ReportSystemsOS/index.d.ts +33 -0
  20. package/dist/ReportSystemsOS/index.js +56 -0
  21. package/dist/ReportSystemsOS/index.js.map +1 -0
  22. package/dist/ReportTestResults/index.d.ts +1 -1
  23. package/dist/ReportTestResultsOS/index.d.ts +33 -0
  24. package/dist/ReportTestResultsOS/index.js +56 -0
  25. package/dist/ReportTestResultsOS/index.js.map +1 -0
  26. package/dist/ReportsOS/index.d.ts +27 -0
  27. package/dist/ReportsOS/index.js +55 -0
  28. package/dist/ReportsOS/index.js.map +1 -0
  29. package/dist/Rule/index.d.ts +1 -1
  30. package/dist/Rules/index.d.ts +1 -1
  31. package/dist/SecurityGuides/index.d.ts +1 -1
  32. package/dist/SecurityGuidesOS/index.d.ts +27 -0
  33. package/dist/SecurityGuidesOS/index.js +55 -0
  34. package/dist/SecurityGuidesOS/index.js.map +1 -0
  35. package/dist/SystemReports/index.d.ts +50 -0
  36. package/dist/SystemReports/index.js +64 -0
  37. package/dist/SystemReports/index.js.map +1 -0
  38. package/dist/Systems/index.d.ts +1 -1
  39. package/dist/SystemsOS/index.d.ts +27 -0
  40. package/dist/SystemsOS/index.js +55 -0
  41. package/dist/SystemsOS/index.js.map +1 -0
  42. package/dist/TailoringRules/index.d.ts +1 -1
  43. package/dist/UnassignRule/index.d.ts +1 -1
  44. package/dist/api.d.ts +1272 -1457
  45. package/dist/api.js +2411 -896
  46. package/dist/api.js.map +1 -1
  47. package/dist/index.d.ts +9 -0
  48. package/dist/index.js +28 -1
  49. package/dist/index.js.map +1 -1
  50. package/dist/types/index.d.ts +206 -5
  51. package/dist/types/index.js +15 -1
  52. package/dist/types/index.js.map +1 -1
  53. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -413,31 +413,37 @@ export interface Report {
413
413
  */
414
414
  'profile_title'?: any;
415
415
  /**
416
- * The number of Systems assigned to this Report
416
+ * Describes percentage of compliant systems
417
+ * @type {any}
418
+ * @memberof Report
419
+ */
420
+ 'percent_compliant'?: any;
421
+ /**
422
+ * The number of Systems assigned to this Report. Not visible under the Systems endpoint.
417
423
  * @type {any}
418
424
  * @memberof Report
419
425
  */
420
426
  'assigned_system_count'?: any;
421
427
  /**
422
- * The number of compliant Systems in this Report
428
+ * The number of compliant Systems in this Report. Inconsistent under the Systems endpoint.
423
429
  * @type {any}
424
430
  * @memberof Report
425
431
  */
426
432
  'compliant_system_count'?: any;
427
433
  /**
428
- * Informs if the user has access to all the Systems under the Report
434
+ * Informs if the user has access to all the Systems under the Report. \\ Inconsistent under the Systems endpoint.
429
435
  * @type {any}
430
436
  * @memberof Report
431
437
  */
432
438
  'all_systems_exposed'?: any;
433
439
  /**
434
- * The number of unsupported Systems in this Report
440
+ * The number of unsupported Systems in this Report. \\ Inconsistent under the Systems endpoint.
435
441
  * @type {any}
436
442
  * @memberof Report
437
443
  */
438
444
  'unsupported_system_count'?: any;
439
445
  /**
440
- * The number of Systems in this Report that have Test Results available
446
+ * The number of Systems in this Report that have Test Results available. \\ Inconsistent under the Systems endpoint.
441
447
  * @type {any}
442
448
  * @memberof Report
443
449
  */
@@ -473,6 +479,57 @@ export interface Report200ResponseData {
473
479
  */
474
480
  'schema'?: Report;
475
481
  }
482
+ /**
483
+ *
484
+ * @export
485
+ * @interface ReportRuleResults200Response
486
+ */
487
+ export interface ReportRuleResults200Response {
488
+ /**
489
+ *
490
+ * @type {Metadata}
491
+ * @memberof ReportRuleResults200Response
492
+ */
493
+ 'meta'?: Metadata;
494
+ /**
495
+ *
496
+ * @type {Links}
497
+ * @memberof ReportRuleResults200Response
498
+ */
499
+ 'links'?: Links;
500
+ /**
501
+ *
502
+ * @type {any}
503
+ * @memberof ReportRuleResults200Response
504
+ */
505
+ 'data'?: any;
506
+ }
507
+ /**
508
+ *
509
+ * @export
510
+ * @interface ReportStats200Response
511
+ */
512
+ export interface ReportStats200Response {
513
+ /**
514
+ *
515
+ * @type {ReportStats200ResponseData}
516
+ * @memberof ReportStats200Response
517
+ */
518
+ 'data'?: ReportStats200ResponseData;
519
+ }
520
+ /**
521
+ *
522
+ * @export
523
+ * @interface ReportStats200ResponseData
524
+ */
525
+ export interface ReportStats200ResponseData {
526
+ /**
527
+ *
528
+ * @type {any}
529
+ * @memberof ReportStats200ResponseData
530
+ */
531
+ 'schema'?: any;
532
+ }
476
533
  /**
477
534
  *
478
535
  * @export
@@ -577,6 +634,24 @@ export interface Rule {
577
634
  * @memberof Rule
578
635
  */
579
636
  'severity'?: any;
637
+ /**
638
+ *
639
+ * @type {RuleIdentifier}
640
+ * @memberof Rule
641
+ */
642
+ 'identifier'?: RuleIdentifier;
643
+ /**
644
+ * Array of the Rule References
645
+ * @type {any}
646
+ * @memberof Rule
647
+ */
648
+ 'references'?: any;
649
+ /**
650
+ * Whether or not a remediation is available for the given rule.
651
+ * @type {any}
652
+ * @memberof Rule
653
+ */
654
+ 'remediation_available'?: any;
580
655
  /**
581
656
  * The idenfitier of the remediation associated to this rule, only available under profiles.
582
657
  * @type {any}
@@ -718,6 +793,120 @@ export interface RuleGroups200Response {
718
793
  */
719
794
  'data'?: any;
720
795
  }
796
+ /**
797
+ * Identifier of the Rule
798
+ * @export
799
+ * @interface RuleIdentifier
800
+ */
801
+ export interface RuleIdentifier {
802
+ /**
803
+ *
804
+ * @type {any}
805
+ * @memberof RuleIdentifier
806
+ */
807
+ 'label'?: any;
808
+ /**
809
+ *
810
+ * @type {any}
811
+ * @memberof RuleIdentifier
812
+ */
813
+ 'system'?: any;
814
+ }
815
+ /**
816
+ *
817
+ * @export
818
+ * @interface RuleResult
819
+ */
820
+ export interface RuleResult {
821
+ /**
822
+ *
823
+ * @type {any}
824
+ * @memberof RuleResult
825
+ */
826
+ 'id'?: any;
827
+ /**
828
+ *
829
+ * @type {any}
830
+ * @memberof RuleResult
831
+ */
832
+ 'type'?: RuleResultTypeEnum;
833
+ /**
834
+ * Status of the Rule Result
835
+ * @type {any}
836
+ * @memberof RuleResult
837
+ */
838
+ 'result'?: RuleResultResultEnum;
839
+ /**
840
+ * UUID of the affected Rule
841
+ * @type {any}
842
+ * @memberof RuleResult
843
+ */
844
+ 'rule_id'?: any;
845
+ /**
846
+ * UUID of the affected System
847
+ * @type {any}
848
+ * @memberof RuleResult
849
+ */
850
+ 'system_id'?: any;
851
+ /**
852
+ * Identificator of the Rule
853
+ * @type {any}
854
+ * @memberof RuleResult
855
+ */
856
+ 'ref_id'?: any;
857
+ /**
858
+ * Short title of the Rule
859
+ * @type {any}
860
+ * @memberof RuleResult
861
+ */
862
+ 'title'?: any;
863
+ /**
864
+ * Rationale of the Rule
865
+ * @type {any}
866
+ * @memberof RuleResult
867
+ */
868
+ 'rationale'?: any;
869
+ /**
870
+ * Longer description of the Rule
871
+ * @type {any}
872
+ * @memberof RuleResult
873
+ */
874
+ 'description'?: any;
875
+ /**
876
+ * The original sorting precedence of the Rule in the Security Guide
877
+ * @type {any}
878
+ * @memberof RuleResult
879
+ */
880
+ 'precedence'?: any;
881
+ /**
882
+ * The severity of the Rule
883
+ * @type {any}
884
+ * @memberof RuleResult
885
+ */
886
+ 'severity'?: any;
887
+ /**
888
+ * The idenfitier of the remediation associated to this rule, only available under profiles.
889
+ * @type {any}
890
+ * @memberof RuleResult
891
+ */
892
+ 'remediation_issue_id'?: any;
893
+ }
894
+ export declare const RuleResultTypeEnum: {
895
+ readonly Rule: "rule";
896
+ };
897
+ export type RuleResultTypeEnum = typeof RuleResultTypeEnum[keyof typeof RuleResultTypeEnum];
898
+ export declare const RuleResultResultEnum: {
899
+ readonly Pass: "pass";
900
+ readonly Fail: "fail";
901
+ readonly Error: "error";
902
+ readonly Unknown: "unknown";
903
+ readonly Fixed: "fixed";
904
+ readonly Notapplicable: "notapplicable";
905
+ readonly Notchecked: "notchecked";
906
+ readonly Informational: "informational";
907
+ readonly Notselected: "notselected";
908
+ };
909
+ export type RuleResultResultEnum = typeof RuleResultResultEnum[keyof typeof RuleResultResultEnum];
721
910
  /**
722
911
  *
723
912
  * @export
@@ -1101,6 +1290,12 @@ export interface Tailoring {
1101
1290
  * @memberof Tailoring
1102
1291
  */
1103
1292
  'security_guide_id'?: any;
1293
+ /**
1294
+ * Version of the Security Guide that contains the parent Profile
1295
+ * @type {any}
1296
+ * @memberof Tailoring
1297
+ */
1298
+ 'security_guide_version'?: any;
1104
1299
  /**
1105
1300
  * Major version of the Operating System that the Tailoring covers
1106
1301
  * @type {any}
@@ -1249,6 +1444,12 @@ export interface TestResult {
1249
1444
  * @memberof TestResult
1250
1445
  */
1251
1446
  'compliant'?: any;
1447
+ /**
1448
+ * Compliance Score of the System within a given Report.
1449
+ * @type {any}
1450
+ * @memberof TestResult
1451
+ */
1452
+ 'score'?: any;
1252
1453
  /**
1253
1454
  * Whether the System is supported or not by a Profile within a given Policy.
1254
1455
  * @type {any}
@@ -1386,7 +1587,7 @@ export declare const AssignRuleApiAxiosParamCreator: (configuration?: Configurat
1386
1587
  * @summary Assign a Rule to a Tailoring
1387
1588
  * @param {any} policyId
1388
1589
  * @param {any} tailoringId
1389
- * @param {any} ruleId UUID or ref_id
1590
+ * @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
1390
1591
  * @param {any} [xRHIDENTITY] For internal use only
1391
1592
  * @param {*} [options] Override http request option.
1392
1593
  * @throws {RequiredError}
@@ -1403,7 +1604,7 @@ export declare const AssignRuleApiFp: (configuration?: Configuration) => {
1403
1604
  * @summary Assign a Rule to a Tailoring
1404
1605
  * @param {any} policyId
1405
1606
  * @param {any} tailoringId
1406
- * @param {any} ruleId UUID or ref_id
1607
+ * @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
1407
1608
  * @param {any} [xRHIDENTITY] For internal use only
1408
1609
  * @param {*} [options] Override http request option.
1409
1610
  * @throws {RequiredError}
@@ -1418,43 +1619,15 @@ export declare const AssignRuleApiFactory: (configuration?: Configuration, baseP
1418
1619
  /**
1419
1620
  * Assigns a Rule to a Tailoring
1420
1621
  * @summary Assign a Rule to a Tailoring
1421
- * @param {AssignRuleApiAssignRuleRequest} requestParameters Request parameters.
1622
+ * @param {any} policyId
1623
+ * @param {any} tailoringId
1624
+ * @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
1625
+ * @param {any} [xRHIDENTITY] For internal use only
1422
1626
  * @param {*} [options] Override http request option.
1423
1627
  * @throws {RequiredError}
1424
1628
  */
1425
- assignRule(requestParameters: AssignRuleApiAssignRuleRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
1629
+ assignRule(policyId: any, tailoringId: any, ruleId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<void>;
1426
1630
  };
1427
- /**
1428
- * Request parameters for assignRule operation in AssignRuleApi.
1429
- * @export
1430
- * @interface AssignRuleApiAssignRuleRequest
1431
- */
1432
- export interface AssignRuleApiAssignRuleRequest {
1433
- /**
1434
- *
1435
- * @type {any}
1436
- * @memberof AssignRuleApiAssignRule
1437
- */
1438
- readonly policyId: any;
1439
- /**
1440
- *
1441
- * @type {any}
1442
- * @memberof AssignRuleApiAssignRule
1443
- */
1444
- readonly tailoringId: any;
1445
- /**
1446
- * UUID or ref_id
1447
- * @type {any}
1448
- * @memberof AssignRuleApiAssignRule
1449
- */
1450
- readonly ruleId: any;
1451
- /**
1452
- * For internal use only
1453
- * @type {any}
1454
- * @memberof AssignRuleApiAssignRule
1455
- */
1456
- readonly xRHIDENTITY?: any;
1457
- }
1458
1631
  /**
1459
1632
  * AssignRuleApi - object-oriented interface
1460
1633
  * @export
@@ -1465,12 +1638,15 @@ export declare class AssignRuleApi extends BaseAPI {
1465
1638
  /**
1466
1639
  * Assigns a Rule to a Tailoring
1467
1640
  * @summary Assign a Rule to a Tailoring
1468
- * @param {AssignRuleApiAssignRuleRequest} requestParameters Request parameters.
1641
+ * @param {any} policyId
1642
+ * @param {any} tailoringId
1643
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
1644
+ * @param {any} [xRHIDENTITY] For internal use only
1469
1645
  * @param {*} [options] Override http request option.
1470
1646
  * @throws {RequiredError}
1471
1647
  * @memberof AssignRuleApi
1472
1648
  */
1473
- assignRule(requestParameters: AssignRuleApiAssignRuleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1649
+ assignRule(policyId: any, tailoringId: any, ruleId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1474
1650
  }
1475
1651
  /**
1476
1652
  * AssignRulesApi - axios parameter creator
@@ -1516,44 +1692,16 @@ export declare const AssignRulesApiFactory: (configuration?: Configuration, base
1516
1692
  /**
1517
1693
  * This feature is exclusively used by the frontend
1518
1694
  * @summary Bulk assign Rules to a Tailoring
1519
- * @param {AssignRulesApiAssignRulesRequest} requestParameters Request parameters.
1695
+ * @param {any} policyId
1696
+ * @param {any} tailoringId
1697
+ * @param {any} [xRHIDENTITY] For internal use only
1698
+ * @param {AssignRulesRequest} [assignRulesRequest]
1520
1699
  * @param {*} [options] Override http request option.
1521
1700
  * @deprecated
1522
1701
  * @throws {RequiredError}
1523
1702
  */
1524
- assignRules(requestParameters: AssignRulesApiAssignRulesRequest, options?: AxiosRequestConfig): AxiosPromise<Rules200Response>;
1703
+ assignRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, assignRulesRequest?: AssignRulesRequest, options?: any): AxiosPromise<Rules200Response>;
1525
1704
  };
1526
- /**
1527
- * Request parameters for assignRules operation in AssignRulesApi.
1528
- * @export
1529
- * @interface AssignRulesApiAssignRulesRequest
1530
- */
1531
- export interface AssignRulesApiAssignRulesRequest {
1532
- /**
1533
- *
1534
- * @type {any}
1535
- * @memberof AssignRulesApiAssignRules
1536
- */
1537
- readonly policyId: any;
1538
- /**
1539
- *
1540
- * @type {any}
1541
- * @memberof AssignRulesApiAssignRules
1542
- */
1543
- readonly tailoringId: any;
1544
- /**
1545
- * For internal use only
1546
- * @type {any}
1547
- * @memberof AssignRulesApiAssignRules
1548
- */
1549
- readonly xRHIDENTITY?: any;
1550
- /**
1551
- *
1552
- * @type {AssignRulesRequest}
1553
- * @memberof AssignRulesApiAssignRules
1554
- */
1555
- readonly assignRulesRequest?: AssignRulesRequest;
1556
- }
1557
1705
  /**
1558
1706
  * AssignRulesApi - object-oriented interface
1559
1707
  * @export
@@ -1564,13 +1712,16 @@ export declare class AssignRulesApi extends BaseAPI {
1564
1712
  /**
1565
1713
  * This feature is exclusively used by the frontend
1566
1714
  * @summary Bulk assign Rules to a Tailoring
1567
- * @param {AssignRulesApiAssignRulesRequest} requestParameters Request parameters.
1715
+ * @param {any} policyId
1716
+ * @param {any} tailoringId
1717
+ * @param {any} [xRHIDENTITY] For internal use only
1718
+ * @param {AssignRulesRequest} [assignRulesRequest]
1568
1719
  * @param {*} [options] Override http request option.
1569
1720
  * @deprecated
1570
1721
  * @throws {RequiredError}
1571
1722
  * @memberof AssignRulesApi
1572
1723
  */
1573
- assignRules(requestParameters: AssignRulesApiAssignRulesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
1724
+ assignRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, assignRulesRequest?: AssignRulesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
1574
1725
  }
1575
1726
  /**
1576
1727
  * AssignSystemApi - axios parameter creator
@@ -1612,37 +1763,14 @@ export declare const AssignSystemApiFactory: (configuration?: Configuration, bas
1612
1763
  /**
1613
1764
  * Assigns a System to a Policy
1614
1765
  * @summary Assign a System to a Policy
1615
- * @param {AssignSystemApiAssignSystemRequest} requestParameters Request parameters.
1766
+ * @param {any} systemId
1767
+ * @param {any} policyId
1768
+ * @param {any} [xRHIDENTITY] For internal use only
1616
1769
  * @param {*} [options] Override http request option.
1617
1770
  * @throws {RequiredError}
1618
1771
  */
1619
- assignSystem(requestParameters: AssignSystemApiAssignSystemRequest, options?: AxiosRequestConfig): AxiosPromise<System200Response>;
1772
+ assignSystem(systemId: any, policyId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
1620
1773
  };
1621
- /**
1622
- * Request parameters for assignSystem operation in AssignSystemApi.
1623
- * @export
1624
- * @interface AssignSystemApiAssignSystemRequest
1625
- */
1626
- export interface AssignSystemApiAssignSystemRequest {
1627
- /**
1628
- *
1629
- * @type {any}
1630
- * @memberof AssignSystemApiAssignSystem
1631
- */
1632
- readonly systemId: any;
1633
- /**
1634
- *
1635
- * @type {any}
1636
- * @memberof AssignSystemApiAssignSystem
1637
- */
1638
- readonly policyId: any;
1639
- /**
1640
- * For internal use only
1641
- * @type {any}
1642
- * @memberof AssignSystemApiAssignSystem
1643
- */
1644
- readonly xRHIDENTITY?: any;
1645
- }
1646
1774
  /**
1647
1775
  * AssignSystemApi - object-oriented interface
1648
1776
  * @export
@@ -1653,12 +1781,14 @@ export declare class AssignSystemApi extends BaseAPI {
1653
1781
  /**
1654
1782
  * Assigns a System to a Policy
1655
1783
  * @summary Assign a System to a Policy
1656
- * @param {AssignSystemApiAssignSystemRequest} requestParameters Request parameters.
1784
+ * @param {any} systemId
1785
+ * @param {any} policyId
1786
+ * @param {any} [xRHIDENTITY] For internal use only
1657
1787
  * @param {*} [options] Override http request option.
1658
1788
  * @throws {RequiredError}
1659
1789
  * @memberof AssignSystemApi
1660
1790
  */
1661
- assignSystem(requestParameters: AssignSystemApiAssignSystemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
1791
+ assignSystem(systemId: any, policyId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
1662
1792
  }
1663
1793
  /**
1664
1794
  * AssignSystemsApi - axios parameter creator
@@ -1702,38 +1832,15 @@ export declare const AssignSystemsApiFactory: (configuration?: Configuration, ba
1702
1832
  /**
1703
1833
  * This feature is exclusively used by the frontend
1704
1834
  * @summary Bulk assign Systems to a Policy
1705
- * @param {AssignSystemsApiAssignSystemsRequest} requestParameters Request parameters.
1835
+ * @param {any} policyId
1836
+ * @param {any} [xRHIDENTITY] For internal use only
1837
+ * @param {AssignRulesRequest} [assignRulesRequest]
1706
1838
  * @param {*} [options] Override http request option.
1707
1839
  * @deprecated
1708
1840
  * @throws {RequiredError}
1709
1841
  */
1710
- assignSystems(requestParameters: AssignSystemsApiAssignSystemsRequest, options?: AxiosRequestConfig): AxiosPromise<Systems200Response>;
1842
+ assignSystems(policyId: any, xRHIDENTITY?: any, assignRulesRequest?: AssignRulesRequest, options?: any): AxiosPromise<Systems200Response>;
1711
1843
  };
1712
- /**
1713
- * Request parameters for assignSystems operation in AssignSystemsApi.
1714
- * @export
1715
- * @interface AssignSystemsApiAssignSystemsRequest
1716
- */
1717
- export interface AssignSystemsApiAssignSystemsRequest {
1718
- /**
1719
- *
1720
- * @type {any}
1721
- * @memberof AssignSystemsApiAssignSystems
1722
- */
1723
- readonly policyId: any;
1724
- /**
1725
- * For internal use only
1726
- * @type {any}
1727
- * @memberof AssignSystemsApiAssignSystems
1728
- */
1729
- readonly xRHIDENTITY?: any;
1730
- /**
1731
- *
1732
- * @type {AssignRulesRequest}
1733
- * @memberof AssignSystemsApiAssignSystems
1734
- */
1735
- readonly assignRulesRequest?: AssignRulesRequest;
1736
- }
1737
1844
  /**
1738
1845
  * AssignSystemsApi - object-oriented interface
1739
1846
  * @export
@@ -1744,13 +1851,15 @@ export declare class AssignSystemsApi extends BaseAPI {
1744
1851
  /**
1745
1852
  * This feature is exclusively used by the frontend
1746
1853
  * @summary Bulk assign Systems to a Policy
1747
- * @param {AssignSystemsApiAssignSystemsRequest} requestParameters Request parameters.
1854
+ * @param {any} policyId
1855
+ * @param {any} [xRHIDENTITY] For internal use only
1856
+ * @param {AssignRulesRequest} [assignRulesRequest]
1748
1857
  * @param {*} [options] Override http request option.
1749
1858
  * @deprecated
1750
1859
  * @throws {RequiredError}
1751
1860
  * @memberof AssignSystemsApi
1752
1861
  */
1753
- assignSystems(requestParameters: AssignSystemsApiAssignSystemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
1862
+ assignSystems(policyId: any, xRHIDENTITY?: any, assignRulesRequest?: AssignRulesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
1754
1863
  }
1755
1864
  /**
1756
1865
  * CreatePolicyApi - axios parameter creator
@@ -1790,31 +1899,13 @@ export declare const CreatePolicyApiFactory: (configuration?: Configuration, bas
1790
1899
  /**
1791
1900
  * Create a Policy with the provided attributes
1792
1901
  * @summary Create a Policy
1793
- * @param {CreatePolicyApiCreatePolicyRequest} requestParameters Request parameters.
1902
+ * @param {any} [xRHIDENTITY] For internal use only
1903
+ * @param {Policy} [policy]
1794
1904
  * @param {*} [options] Override http request option.
1795
1905
  * @throws {RequiredError}
1796
1906
  */
1797
- createPolicy(requestParameters?: CreatePolicyApiCreatePolicyRequest, options?: AxiosRequestConfig): AxiosPromise<CreatePolicy201Response>;
1907
+ createPolicy(xRHIDENTITY?: any, policy?: Policy, options?: any): AxiosPromise<CreatePolicy201Response>;
1798
1908
  };
1799
- /**
1800
- * Request parameters for createPolicy operation in CreatePolicyApi.
1801
- * @export
1802
- * @interface CreatePolicyApiCreatePolicyRequest
1803
- */
1804
- export interface CreatePolicyApiCreatePolicyRequest {
1805
- /**
1806
- * For internal use only
1807
- * @type {any}
1808
- * @memberof CreatePolicyApiCreatePolicy
1809
- */
1810
- readonly xRHIDENTITY?: any;
1811
- /**
1812
- *
1813
- * @type {Policy}
1814
- * @memberof CreatePolicyApiCreatePolicy
1815
- */
1816
- readonly policy?: Policy;
1817
- }
1818
1909
  /**
1819
1910
  * CreatePolicyApi - object-oriented interface
1820
1911
  * @export
@@ -1825,12 +1916,13 @@ export declare class CreatePolicyApi extends BaseAPI {
1825
1916
  /**
1826
1917
  * Create a Policy with the provided attributes
1827
1918
  * @summary Create a Policy
1828
- * @param {CreatePolicyApiCreatePolicyRequest} requestParameters Request parameters.
1919
+ * @param {any} [xRHIDENTITY] For internal use only
1920
+ * @param {Policy} [policy]
1829
1921
  * @param {*} [options] Override http request option.
1830
1922
  * @throws {RequiredError}
1831
1923
  * @memberof CreatePolicyApi
1832
1924
  */
1833
- createPolicy(requestParameters?: CreatePolicyApiCreatePolicyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
1925
+ createPolicy(xRHIDENTITY?: any, policy?: Policy, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
1834
1926
  }
1835
1927
  /**
1836
1928
  * DeletePolicyApi - axios parameter creator
@@ -1870,31 +1962,13 @@ export declare const DeletePolicyApiFactory: (configuration?: Configuration, bas
1870
1962
  /**
1871
1963
  * Deletes a Policy
1872
1964
  * @summary Delete a Policy
1873
- * @param {DeletePolicyApiDeletePolicyRequest} requestParameters Request parameters.
1965
+ * @param {any} policyId
1966
+ * @param {any} [xRHIDENTITY] For internal use only
1874
1967
  * @param {*} [options] Override http request option.
1875
1968
  * @throws {RequiredError}
1876
1969
  */
1877
- deletePolicy(requestParameters: DeletePolicyApiDeletePolicyRequest, options?: AxiosRequestConfig): AxiosPromise<CreatePolicy201Response>;
1970
+ deletePolicy(policyId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<CreatePolicy201Response>;
1878
1971
  };
1879
- /**
1880
- * Request parameters for deletePolicy operation in DeletePolicyApi.
1881
- * @export
1882
- * @interface DeletePolicyApiDeletePolicyRequest
1883
- */
1884
- export interface DeletePolicyApiDeletePolicyRequest {
1885
- /**
1886
- *
1887
- * @type {any}
1888
- * @memberof DeletePolicyApiDeletePolicy
1889
- */
1890
- readonly policyId: any;
1891
- /**
1892
- * For internal use only
1893
- * @type {any}
1894
- * @memberof DeletePolicyApiDeletePolicy
1895
- */
1896
- readonly xRHIDENTITY?: any;
1897
- }
1898
1972
  /**
1899
1973
  * DeletePolicyApi - object-oriented interface
1900
1974
  * @export
@@ -1905,12 +1979,13 @@ export declare class DeletePolicyApi extends BaseAPI {
1905
1979
  /**
1906
1980
  * Deletes a Policy
1907
1981
  * @summary Delete a Policy
1908
- * @param {DeletePolicyApiDeletePolicyRequest} requestParameters Request parameters.
1909
- * @param {*} [options] Override http request option.
1982
+ * @param {any} policyId
1983
+ * @param {any} [xRHIDENTITY] For internal use only
1984
+ * @param {*} [options] Override http request option.
1910
1985
  * @throws {RequiredError}
1911
1986
  * @memberof DeletePolicyApi
1912
1987
  */
1913
- deletePolicy(requestParameters: DeletePolicyApiDeletePolicyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
1988
+ deletePolicy(policyId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
1914
1989
  }
1915
1990
  /**
1916
1991
  * DeleteReportApi - axios parameter creator
@@ -1918,7 +1993,7 @@ export declare class DeletePolicyApi extends BaseAPI {
1918
1993
  */
1919
1994
  export declare const DeleteReportApiAxiosParamCreator: (configuration?: Configuration) => {
1920
1995
  /**
1921
- * Deletes a Report results
1996
+ * Deletes Report\'s test results
1922
1997
  * @summary Delete a Report results
1923
1998
  * @param {any} reportId
1924
1999
  * @param {any} [xRHIDENTITY] For internal use only
@@ -1933,7 +2008,7 @@ export declare const DeleteReportApiAxiosParamCreator: (configuration?: Configur
1933
2008
  */
1934
2009
  export declare const DeleteReportApiFp: (configuration?: Configuration) => {
1935
2010
  /**
1936
- * Deletes a Report results
2011
+ * Deletes Report\'s test results
1937
2012
  * @summary Delete a Report results
1938
2013
  * @param {any} reportId
1939
2014
  * @param {any} [xRHIDENTITY] For internal use only
@@ -1948,33 +2023,15 @@ export declare const DeleteReportApiFp: (configuration?: Configuration) => {
1948
2023
  */
1949
2024
  export declare const DeleteReportApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1950
2025
  /**
1951
- * Deletes a Report results
2026
+ * Deletes Report\'s test results
1952
2027
  * @summary Delete a Report results
1953
- * @param {DeleteReportApiDeleteReportRequest} requestParameters Request parameters.
2028
+ * @param {any} reportId
2029
+ * @param {any} [xRHIDENTITY] For internal use only
1954
2030
  * @param {*} [options] Override http request option.
1955
2031
  * @throws {RequiredError}
1956
2032
  */
1957
- deleteReport(requestParameters: DeleteReportApiDeleteReportRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2033
+ deleteReport(reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<void>;
1958
2034
  };
1959
- /**
1960
- * Request parameters for deleteReport operation in DeleteReportApi.
1961
- * @export
1962
- * @interface DeleteReportApiDeleteReportRequest
1963
- */
1964
- export interface DeleteReportApiDeleteReportRequest {
1965
- /**
1966
- *
1967
- * @type {any}
1968
- * @memberof DeleteReportApiDeleteReport
1969
- */
1970
- readonly reportId: any;
1971
- /**
1972
- * For internal use only
1973
- * @type {any}
1974
- * @memberof DeleteReportApiDeleteReport
1975
- */
1976
- readonly xRHIDENTITY?: any;
1977
- }
1978
2035
  /**
1979
2036
  * DeleteReportApi - object-oriented interface
1980
2037
  * @export
@@ -1983,14 +2040,15 @@ export interface DeleteReportApiDeleteReportRequest {
1983
2040
  */
1984
2041
  export declare class DeleteReportApi extends BaseAPI {
1985
2042
  /**
1986
- * Deletes a Report results
2043
+ * Deletes Report\'s test results
1987
2044
  * @summary Delete a Report results
1988
- * @param {DeleteReportApiDeleteReportRequest} requestParameters Request parameters.
2045
+ * @param {any} reportId
2046
+ * @param {any} [xRHIDENTITY] For internal use only
1989
2047
  * @param {*} [options] Override http request option.
1990
2048
  * @throws {RequiredError}
1991
2049
  * @memberof DeleteReportApi
1992
2050
  */
1993
- deleteReport(requestParameters: DeleteReportApiDeleteReportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2051
+ deleteReport(reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1994
2052
  }
1995
2053
  /**
1996
2054
  * PoliciesApi - axios parameter creator
@@ -2036,49 +2094,16 @@ export declare const PoliciesApiFactory: (configuration?: Configuration, basePat
2036
2094
  /**
2037
2095
  * Lists Policies
2038
2096
  * @summary Request Policies
2039
- * @param {PoliciesApiPoliciesRequest} requestParameters Request parameters.
2097
+ * @param {any} [xRHIDENTITY] For internal use only
2098
+ * @param {any} [limit] Number of items to return per page
2099
+ * @param {any} [offset] Offset of first item of paginated response
2100
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2101
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2040
2102
  * @param {*} [options] Override http request option.
2041
2103
  * @throws {RequiredError}
2042
2104
  */
2043
- policies(requestParameters?: PoliciesApiPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<Policies200Response>;
2105
+ policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
2044
2106
  };
2045
- /**
2046
- * Request parameters for policies operation in PoliciesApi.
2047
- * @export
2048
- * @interface PoliciesApiPoliciesRequest
2049
- */
2050
- export interface PoliciesApiPoliciesRequest {
2051
- /**
2052
- * For internal use only
2053
- * @type {any}
2054
- * @memberof PoliciesApiPolicies
2055
- */
2056
- readonly xRHIDENTITY?: any;
2057
- /**
2058
- * Number of items to return per page
2059
- * @type {any}
2060
- * @memberof PoliciesApiPolicies
2061
- */
2062
- readonly limit?: any;
2063
- /**
2064
- * Offset of first item of paginated response
2065
- * @type {any}
2066
- * @memberof PoliciesApiPolicies
2067
- */
2068
- readonly offset?: any;
2069
- /**
2070
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2071
- * @type {any}
2072
- * @memberof PoliciesApiPolicies
2073
- */
2074
- readonly sortBy?: any;
2075
- /**
2076
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2077
- * @type {any}
2078
- * @memberof PoliciesApiPolicies
2079
- */
2080
- readonly filter?: any;
2081
- }
2082
2107
  /**
2083
2108
  * PoliciesApi - object-oriented interface
2084
2109
  * @export
@@ -2089,12 +2114,16 @@ export declare class PoliciesApi extends BaseAPI {
2089
2114
  /**
2090
2115
  * Lists Policies
2091
2116
  * @summary Request Policies
2092
- * @param {PoliciesApiPoliciesRequest} requestParameters Request parameters.
2117
+ * @param {any} [xRHIDENTITY] For internal use only
2118
+ * @param {any} [limit] Number of items to return per page
2119
+ * @param {any} [offset] Offset of first item of paginated response
2120
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2121
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2093
2122
  * @param {*} [options] Override http request option.
2094
2123
  * @throws {RequiredError}
2095
2124
  * @memberof PoliciesApi
2096
2125
  */
2097
- policies(requestParameters?: PoliciesApiPoliciesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
2126
+ policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
2098
2127
  }
2099
2128
  /**
2100
2129
  * PolicyApi - axios parameter creator
@@ -2134,31 +2163,13 @@ export declare const PolicyApiFactory: (configuration?: Configuration, basePath?
2134
2163
  /**
2135
2164
  * Returns a Policy
2136
2165
  * @summary Request a Policy
2137
- * @param {PolicyApiPolicyRequest} requestParameters Request parameters.
2166
+ * @param {any} policyId
2167
+ * @param {any} [xRHIDENTITY] For internal use only
2138
2168
  * @param {*} [options] Override http request option.
2139
2169
  * @throws {RequiredError}
2140
2170
  */
2141
- policy(requestParameters: PolicyApiPolicyRequest, options?: AxiosRequestConfig): AxiosPromise<CreatePolicy201Response>;
2171
+ policy(policyId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<CreatePolicy201Response>;
2142
2172
  };
2143
- /**
2144
- * Request parameters for policy operation in PolicyApi.
2145
- * @export
2146
- * @interface PolicyApiPolicyRequest
2147
- */
2148
- export interface PolicyApiPolicyRequest {
2149
- /**
2150
- *
2151
- * @type {any}
2152
- * @memberof PolicyApiPolicy
2153
- */
2154
- readonly policyId: any;
2155
- /**
2156
- * For internal use only
2157
- * @type {any}
2158
- * @memberof PolicyApiPolicy
2159
- */
2160
- readonly xRHIDENTITY?: any;
2161
- }
2162
2173
  /**
2163
2174
  * PolicyApi - object-oriented interface
2164
2175
  * @export
@@ -2169,12 +2180,13 @@ export declare class PolicyApi extends BaseAPI {
2169
2180
  /**
2170
2181
  * Returns a Policy
2171
2182
  * @summary Request a Policy
2172
- * @param {PolicyApiPolicyRequest} requestParameters Request parameters.
2183
+ * @param {any} policyId
2184
+ * @param {any} [xRHIDENTITY] For internal use only
2173
2185
  * @param {*} [options] Override http request option.
2174
2186
  * @throws {RequiredError}
2175
2187
  * @memberof PolicyApi
2176
2188
  */
2177
- policy(requestParameters: PolicyApiPolicyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
2189
+ policy(policyId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
2178
2190
  }
2179
2191
  /**
2180
2192
  * PolicySystemsApi - axios parameter creator
@@ -2189,7 +2201,7 @@ export declare const PolicySystemsApiAxiosParamCreator: (configuration?: Configu
2189
2201
  * @param {any} [limit] Number of items to return per page
2190
2202
  * @param {any} [offset] Offset of first item of paginated response
2191
2203
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2192
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, and &#x60;never_reported&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2204
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2193
2205
  * @param {*} [options] Override http request option.
2194
2206
  * @throws {RequiredError}
2195
2207
  */
@@ -2208,7 +2220,7 @@ export declare const PolicySystemsApiFp: (configuration?: Configuration) => {
2208
2220
  * @param {any} [limit] Number of items to return per page
2209
2221
  * @param {any} [offset] Offset of first item of paginated response
2210
2222
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2211
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, and &#x60;never_reported&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2223
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2212
2224
  * @param {*} [options] Override http request option.
2213
2225
  * @throws {RequiredError}
2214
2226
  */
@@ -2222,71 +2234,109 @@ export declare const PolicySystemsApiFactory: (configuration?: Configuration, ba
2222
2234
  /**
2223
2235
  * Lists Systems assigned to a Policy
2224
2236
  * @summary Request Systems assigned to a Policy
2225
- * @param {PolicySystemsApiPolicySystemsRequest} requestParameters Request parameters.
2237
+ * @param {any} policyId
2238
+ * @param {any} [xRHIDENTITY] For internal use only
2239
+ * @param {any} [limit] Number of items to return per page
2240
+ * @param {any} [offset] Offset of first item of paginated response
2241
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2242
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2226
2243
  * @param {*} [options] Override http request option.
2227
2244
  * @throws {RequiredError}
2228
2245
  */
2229
- policySystems(requestParameters: PolicySystemsApiPolicySystemsRequest, options?: AxiosRequestConfig): AxiosPromise<Systems200Response>;
2246
+ policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
2230
2247
  };
2231
2248
  /**
2232
- * Request parameters for policySystems operation in PolicySystemsApi.
2249
+ * PolicySystemsApi - object-oriented interface
2233
2250
  * @export
2234
- * @interface PolicySystemsApiPolicySystemsRequest
2251
+ * @class PolicySystemsApi
2252
+ * @extends {BaseAPI}
2235
2253
  */
2236
- export interface PolicySystemsApiPolicySystemsRequest {
2237
- /**
2238
- *
2239
- * @type {any}
2240
- * @memberof PolicySystemsApiPolicySystems
2241
- */
2242
- readonly policyId: any;
2243
- /**
2244
- * For internal use only
2245
- * @type {any}
2246
- * @memberof PolicySystemsApiPolicySystems
2247
- */
2248
- readonly xRHIDENTITY?: any;
2254
+ export declare class PolicySystemsApi extends BaseAPI {
2249
2255
  /**
2250
- * Number of items to return per page
2251
- * @type {any}
2252
- * @memberof PolicySystemsApiPolicySystems
2256
+ * Lists Systems assigned to a Policy
2257
+ * @summary Request Systems assigned to a Policy
2258
+ * @param {any} policyId
2259
+ * @param {any} [xRHIDENTITY] For internal use only
2260
+ * @param {any} [limit] Number of items to return per page
2261
+ * @param {any} [offset] Offset of first item of paginated response
2262
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2263
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2264
+ * @param {*} [options] Override http request option.
2265
+ * @throws {RequiredError}
2266
+ * @memberof PolicySystemsApi
2253
2267
  */
2254
- readonly limit?: any;
2268
+ policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
2269
+ }
2270
+ /**
2271
+ * PolicySystemsOSApi - axios parameter creator
2272
+ * @export
2273
+ */
2274
+ export declare const PolicySystemsOSApiAxiosParamCreator: (configuration?: Configuration) => {
2255
2275
  /**
2256
- * Offset of first item of paginated response
2257
- * @type {any}
2258
- * @memberof PolicySystemsApiPolicySystems
2276
+ * This feature is exclusively used by the frontend
2277
+ * @summary Request the list of available OS versions
2278
+ * @param {any} policyId
2279
+ * @param {any} [xRHIDENTITY] For internal use only
2280
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2281
+ * @param {*} [options] Override http request option.
2282
+ * @deprecated
2283
+ * @throws {RequiredError}
2259
2284
  */
2260
- readonly offset?: any;
2285
+ policySystemsOS: (policyId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2286
+ };
2287
+ /**
2288
+ * PolicySystemsOSApi - functional programming interface
2289
+ * @export
2290
+ */
2291
+ export declare const PolicySystemsOSApiFp: (configuration?: Configuration) => {
2261
2292
  /**
2262
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2263
- * @type {any}
2264
- * @memberof PolicySystemsApiPolicySystems
2293
+ * This feature is exclusively used by the frontend
2294
+ * @summary Request the list of available OS versions
2295
+ * @param {any} policyId
2296
+ * @param {any} [xRHIDENTITY] For internal use only
2297
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2298
+ * @param {*} [options] Override http request option.
2299
+ * @deprecated
2300
+ * @throws {RequiredError}
2265
2301
  */
2266
- readonly sortBy?: any;
2302
+ policySystemsOS(policyId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
2303
+ };
2304
+ /**
2305
+ * PolicySystemsOSApi - factory interface
2306
+ * @export
2307
+ */
2308
+ export declare const PolicySystemsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2267
2309
  /**
2268
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, and &#x60;never_reported&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2269
- * @type {any}
2270
- * @memberof PolicySystemsApiPolicySystems
2310
+ * This feature is exclusively used by the frontend
2311
+ * @summary Request the list of available OS versions
2312
+ * @param {any} policyId
2313
+ * @param {any} [xRHIDENTITY] For internal use only
2314
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2315
+ * @param {*} [options] Override http request option.
2316
+ * @deprecated
2317
+ * @throws {RequiredError}
2271
2318
  */
2272
- readonly filter?: any;
2273
- }
2319
+ policySystemsOS(policyId: any, xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
2320
+ };
2274
2321
  /**
2275
- * PolicySystemsApi - object-oriented interface
2322
+ * PolicySystemsOSApi - object-oriented interface
2276
2323
  * @export
2277
- * @class PolicySystemsApi
2324
+ * @class PolicySystemsOSApi
2278
2325
  * @extends {BaseAPI}
2279
2326
  */
2280
- export declare class PolicySystemsApi extends BaseAPI {
2327
+ export declare class PolicySystemsOSApi extends BaseAPI {
2281
2328
  /**
2282
- * Lists Systems assigned to a Policy
2283
- * @summary Request Systems assigned to a Policy
2284
- * @param {PolicySystemsApiPolicySystemsRequest} requestParameters Request parameters.
2329
+ * This feature is exclusively used by the frontend
2330
+ * @summary Request the list of available OS versions
2331
+ * @param {any} policyId
2332
+ * @param {any} [xRHIDENTITY] For internal use only
2333
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2285
2334
  * @param {*} [options] Override http request option.
2335
+ * @deprecated
2286
2336
  * @throws {RequiredError}
2287
- * @memberof PolicySystemsApi
2337
+ * @memberof PolicySystemsOSApi
2288
2338
  */
2289
- policySystems(requestParameters: PolicySystemsApiPolicySystemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
2339
+ policySystemsOS(policyId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
2290
2340
  }
2291
2341
  /**
2292
2342
  * ProfileApi - axios parameter creator
@@ -2297,7 +2347,7 @@ export declare const ProfileApiAxiosParamCreator: (configuration?: Configuration
2297
2347
  * Returns a Profile
2298
2348
  * @summary Request a Profile
2299
2349
  * @param {any} securityGuideId
2300
- * @param {any} profileId UUID or ref_id
2350
+ * @param {any} profileId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
2301
2351
  * @param {any} [xRHIDENTITY] For internal use only
2302
2352
  * @param {*} [options] Override http request option.
2303
2353
  * @throws {RequiredError}
@@ -2313,7 +2363,7 @@ export declare const ProfileApiFp: (configuration?: Configuration) => {
2313
2363
  * Returns a Profile
2314
2364
  * @summary Request a Profile
2315
2365
  * @param {any} securityGuideId
2316
- * @param {any} profileId UUID or ref_id
2366
+ * @param {any} profileId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
2317
2367
  * @param {any} [xRHIDENTITY] For internal use only
2318
2368
  * @param {*} [options] Override http request option.
2319
2369
  * @throws {RequiredError}
@@ -2328,37 +2378,14 @@ export declare const ProfileApiFactory: (configuration?: Configuration, basePath
2328
2378
  /**
2329
2379
  * Returns a Profile
2330
2380
  * @summary Request a Profile
2331
- * @param {ProfileApiProfileRequest} requestParameters Request parameters.
2381
+ * @param {any} securityGuideId
2382
+ * @param {any} profileId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
2383
+ * @param {any} [xRHIDENTITY] For internal use only
2332
2384
  * @param {*} [options] Override http request option.
2333
2385
  * @throws {RequiredError}
2334
2386
  */
2335
- profile(requestParameters: ProfileApiProfileRequest, options?: AxiosRequestConfig): AxiosPromise<Profile200Response>;
2387
+ profile(securityGuideId: any, profileId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Profile200Response>;
2336
2388
  };
2337
- /**
2338
- * Request parameters for profile operation in ProfileApi.
2339
- * @export
2340
- * @interface ProfileApiProfileRequest
2341
- */
2342
- export interface ProfileApiProfileRequest {
2343
- /**
2344
- *
2345
- * @type {any}
2346
- * @memberof ProfileApiProfile
2347
- */
2348
- readonly securityGuideId: any;
2349
- /**
2350
- * UUID or ref_id
2351
- * @type {any}
2352
- * @memberof ProfileApiProfile
2353
- */
2354
- readonly profileId: any;
2355
- /**
2356
- * For internal use only
2357
- * @type {any}
2358
- * @memberof ProfileApiProfile
2359
- */
2360
- readonly xRHIDENTITY?: any;
2361
- }
2362
2389
  /**
2363
2390
  * ProfileApi - object-oriented interface
2364
2391
  * @export
@@ -2369,12 +2396,14 @@ export declare class ProfileApi extends BaseAPI {
2369
2396
  /**
2370
2397
  * Returns a Profile
2371
2398
  * @summary Request a Profile
2372
- * @param {ProfileApiProfileRequest} requestParameters Request parameters.
2399
+ * @param {any} securityGuideId
2400
+ * @param {any} profileId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
2401
+ * @param {any} [xRHIDENTITY] For internal use only
2373
2402
  * @param {*} [options] Override http request option.
2374
2403
  * @throws {RequiredError}
2375
2404
  * @memberof ProfileApi
2376
2405
  */
2377
- profile(requestParameters: ProfileApiProfileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profile200Response, any>>;
2406
+ profile(securityGuideId: any, profileId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profile200Response, any>>;
2378
2407
  }
2379
2408
  /**
2380
2409
  * ProfileRuleApi - axios parameter creator
@@ -2386,7 +2415,7 @@ export declare const ProfileRuleApiAxiosParamCreator: (configuration?: Configura
2386
2415
  * @summary Request a Rule assigned to a Profile
2387
2416
  * @param {any} securityGuideId
2388
2417
  * @param {any} profileId
2389
- * @param {any} ruleId UUID or ref_id
2418
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
2390
2419
  * @param {any} [xRHIDENTITY] For internal use only
2391
2420
  * @param {*} [options] Override http request option.
2392
2421
  * @throws {RequiredError}
@@ -2403,7 +2432,7 @@ export declare const ProfileRuleApiFp: (configuration?: Configuration) => {
2403
2432
  * @summary Request a Rule assigned to a Profile
2404
2433
  * @param {any} securityGuideId
2405
2434
  * @param {any} profileId
2406
- * @param {any} ruleId UUID or ref_id
2435
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
2407
2436
  * @param {any} [xRHIDENTITY] For internal use only
2408
2437
  * @param {*} [options] Override http request option.
2409
2438
  * @throws {RequiredError}
@@ -2418,43 +2447,15 @@ export declare const ProfileRuleApiFactory: (configuration?: Configuration, base
2418
2447
  /**
2419
2448
  * Returns a Rule assigned to a Profile
2420
2449
  * @summary Request a Rule assigned to a Profile
2421
- * @param {ProfileRuleApiProfileRuleRequest} requestParameters Request parameters.
2450
+ * @param {any} securityGuideId
2451
+ * @param {any} profileId
2452
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
2453
+ * @param {any} [xRHIDENTITY] For internal use only
2422
2454
  * @param {*} [options] Override http request option.
2423
2455
  * @throws {RequiredError}
2424
2456
  */
2425
- profileRule(requestParameters: ProfileRuleApiProfileRuleRequest, options?: AxiosRequestConfig): AxiosPromise<Rule200Response>;
2457
+ profileRule(securityGuideId: any, profileId: any, ruleId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Rule200Response>;
2426
2458
  };
2427
- /**
2428
- * Request parameters for profileRule operation in ProfileRuleApi.
2429
- * @export
2430
- * @interface ProfileRuleApiProfileRuleRequest
2431
- */
2432
- export interface ProfileRuleApiProfileRuleRequest {
2433
- /**
2434
- *
2435
- * @type {any}
2436
- * @memberof ProfileRuleApiProfileRule
2437
- */
2438
- readonly securityGuideId: any;
2439
- /**
2440
- *
2441
- * @type {any}
2442
- * @memberof ProfileRuleApiProfileRule
2443
- */
2444
- readonly profileId: any;
2445
- /**
2446
- * UUID or ref_id
2447
- * @type {any}
2448
- * @memberof ProfileRuleApiProfileRule
2449
- */
2450
- readonly ruleId: any;
2451
- /**
2452
- * For internal use only
2453
- * @type {any}
2454
- * @memberof ProfileRuleApiProfileRule
2455
- */
2456
- readonly xRHIDENTITY?: any;
2457
- }
2458
2459
  /**
2459
2460
  * ProfileRuleApi - object-oriented interface
2460
2461
  * @export
@@ -2465,12 +2466,15 @@ export declare class ProfileRuleApi extends BaseAPI {
2465
2466
  /**
2466
2467
  * Returns a Rule assigned to a Profile
2467
2468
  * @summary Request a Rule assigned to a Profile
2468
- * @param {ProfileRuleApiProfileRuleRequest} requestParameters Request parameters.
2469
+ * @param {any} securityGuideId
2470
+ * @param {any} profileId
2471
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
2472
+ * @param {any} [xRHIDENTITY] For internal use only
2469
2473
  * @param {*} [options] Override http request option.
2470
2474
  * @throws {RequiredError}
2471
2475
  * @memberof ProfileRuleApi
2472
2476
  */
2473
- profileRule(requestParameters: ProfileRuleApiProfileRuleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rule200Response, any>>;
2477
+ profileRule(securityGuideId: any, profileId: any, ruleId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rule200Response, any>>;
2474
2478
  }
2475
2479
  /**
2476
2480
  * ProfileRulesApi - axios parameter creator
@@ -2486,7 +2490,7 @@ export declare const ProfileRulesApiAxiosParamCreator: (configuration?: Configur
2486
2490
  * @param {any} [limit] Number of items to return per page
2487
2491
  * @param {any} [offset] Offset of first item of paginated response
2488
2492
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2489
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60; and &#x60;severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2493
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2490
2494
  * @param {*} [options] Override http request option.
2491
2495
  * @throws {RequiredError}
2492
2496
  */
@@ -2506,7 +2510,7 @@ export declare const ProfileRulesApiFp: (configuration?: Configuration) => {
2506
2510
  * @param {any} [limit] Number of items to return per page
2507
2511
  * @param {any} [offset] Offset of first item of paginated response
2508
2512
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2509
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60; and &#x60;severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2513
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2510
2514
  * @param {*} [options] Override http request option.
2511
2515
  * @throws {RequiredError}
2512
2516
  */
@@ -2520,61 +2524,18 @@ export declare const ProfileRulesApiFactory: (configuration?: Configuration, bas
2520
2524
  /**
2521
2525
  * Lists Rules assigned to a Profile
2522
2526
  * @summary Request Rules assigned to a Profile
2523
- * @param {ProfileRulesApiProfileRulesRequest} requestParameters Request parameters.
2527
+ * @param {any} securityGuideId
2528
+ * @param {any} profileId
2529
+ * @param {any} [xRHIDENTITY] For internal use only
2530
+ * @param {any} [limit] Number of items to return per page
2531
+ * @param {any} [offset] Offset of first item of paginated response
2532
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2533
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2524
2534
  * @param {*} [options] Override http request option.
2525
2535
  * @throws {RequiredError}
2526
2536
  */
2527
- profileRules(requestParameters: ProfileRulesApiProfileRulesRequest, options?: AxiosRequestConfig): AxiosPromise<Rules200Response>;
2537
+ profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
2528
2538
  };
2529
- /**
2530
- * Request parameters for profileRules operation in ProfileRulesApi.
2531
- * @export
2532
- * @interface ProfileRulesApiProfileRulesRequest
2533
- */
2534
- export interface ProfileRulesApiProfileRulesRequest {
2535
- /**
2536
- *
2537
- * @type {any}
2538
- * @memberof ProfileRulesApiProfileRules
2539
- */
2540
- readonly securityGuideId: any;
2541
- /**
2542
- *
2543
- * @type {any}
2544
- * @memberof ProfileRulesApiProfileRules
2545
- */
2546
- readonly profileId: any;
2547
- /**
2548
- * For internal use only
2549
- * @type {any}
2550
- * @memberof ProfileRulesApiProfileRules
2551
- */
2552
- readonly xRHIDENTITY?: any;
2553
- /**
2554
- * Number of items to return per page
2555
- * @type {any}
2556
- * @memberof ProfileRulesApiProfileRules
2557
- */
2558
- readonly limit?: any;
2559
- /**
2560
- * Offset of first item of paginated response
2561
- * @type {any}
2562
- * @memberof ProfileRulesApiProfileRules
2563
- */
2564
- readonly offset?: any;
2565
- /**
2566
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2567
- * @type {any}
2568
- * @memberof ProfileRulesApiProfileRules
2569
- */
2570
- readonly sortBy?: any;
2571
- /**
2572
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60; and &#x60;severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2573
- * @type {any}
2574
- * @memberof ProfileRulesApiProfileRules
2575
- */
2576
- readonly filter?: any;
2577
- }
2578
2539
  /**
2579
2540
  * ProfileRulesApi - object-oriented interface
2580
2541
  * @export
@@ -2585,12 +2546,18 @@ export declare class ProfileRulesApi extends BaseAPI {
2585
2546
  /**
2586
2547
  * Lists Rules assigned to a Profile
2587
2548
  * @summary Request Rules assigned to a Profile
2588
- * @param {ProfileRulesApiProfileRulesRequest} requestParameters Request parameters.
2549
+ * @param {any} securityGuideId
2550
+ * @param {any} profileId
2551
+ * @param {any} [xRHIDENTITY] For internal use only
2552
+ * @param {any} [limit] Number of items to return per page
2553
+ * @param {any} [offset] Offset of first item of paginated response
2554
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2555
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2589
2556
  * @param {*} [options] Override http request option.
2590
2557
  * @throws {RequiredError}
2591
2558
  * @memberof ProfileRulesApi
2592
2559
  */
2593
- profileRules(requestParameters: ProfileRulesApiProfileRulesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
2560
+ profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
2594
2561
  }
2595
2562
  /**
2596
2563
  * ProfilesApi - axios parameter creator
@@ -2638,55 +2605,17 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
2638
2605
  /**
2639
2606
  * Lists Profiles
2640
2607
  * @summary Request Profiles
2641
- * @param {ProfilesApiProfilesRequest} requestParameters Request parameters.
2608
+ * @param {any} securityGuideId
2609
+ * @param {any} [xRHIDENTITY] For internal use only
2610
+ * @param {any} [limit] Number of items to return per page
2611
+ * @param {any} [offset] Offset of first item of paginated response
2612
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2613
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Profiles are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2642
2614
  * @param {*} [options] Override http request option.
2643
2615
  * @throws {RequiredError}
2644
2616
  */
2645
- profiles(requestParameters: ProfilesApiProfilesRequest, options?: AxiosRequestConfig): AxiosPromise<Profiles200Response>;
2617
+ profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Profiles200Response>;
2646
2618
  };
2647
- /**
2648
- * Request parameters for profiles operation in ProfilesApi.
2649
- * @export
2650
- * @interface ProfilesApiProfilesRequest
2651
- */
2652
- export interface ProfilesApiProfilesRequest {
2653
- /**
2654
- *
2655
- * @type {any}
2656
- * @memberof ProfilesApiProfiles
2657
- */
2658
- readonly securityGuideId: any;
2659
- /**
2660
- * For internal use only
2661
- * @type {any}
2662
- * @memberof ProfilesApiProfiles
2663
- */
2664
- readonly xRHIDENTITY?: any;
2665
- /**
2666
- * Number of items to return per page
2667
- * @type {any}
2668
- * @memberof ProfilesApiProfiles
2669
- */
2670
- readonly limit?: any;
2671
- /**
2672
- * Offset of first item of paginated response
2673
- * @type {any}
2674
- * @memberof ProfilesApiProfiles
2675
- */
2676
- readonly offset?: any;
2677
- /**
2678
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2679
- * @type {any}
2680
- * @memberof ProfilesApiProfiles
2681
- */
2682
- readonly sortBy?: any;
2683
- /**
2684
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Profiles are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2685
- * @type {any}
2686
- * @memberof ProfilesApiProfiles
2687
- */
2688
- readonly filter?: any;
2689
- }
2690
2619
  /**
2691
2620
  * ProfilesApi - object-oriented interface
2692
2621
  * @export
@@ -2697,12 +2626,17 @@ export declare class ProfilesApi extends BaseAPI {
2697
2626
  /**
2698
2627
  * Lists Profiles
2699
2628
  * @summary Request Profiles
2700
- * @param {ProfilesApiProfilesRequest} requestParameters Request parameters.
2629
+ * @param {any} securityGuideId
2630
+ * @param {any} [xRHIDENTITY] For internal use only
2631
+ * @param {any} [limit] Number of items to return per page
2632
+ * @param {any} [offset] Offset of first item of paginated response
2633
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2634
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Profiles are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2701
2635
  * @param {*} [options] Override http request option.
2702
2636
  * @throws {RequiredError}
2703
2637
  * @memberof ProfilesApi
2704
2638
  */
2705
- profiles(requestParameters: ProfilesApiProfilesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profiles200Response, any>>;
2639
+ profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profiles200Response, any>>;
2706
2640
  }
2707
2641
  /**
2708
2642
  * ReportApi - axios parameter creator
@@ -2742,47 +2676,180 @@ export declare const ReportApiFactory: (configuration?: Configuration, basePath?
2742
2676
  /**
2743
2677
  * Returns a Report
2744
2678
  * @summary Request a Report
2745
- * @param {ReportApiReportRequest} requestParameters Request parameters.
2679
+ * @param {any} reportId
2680
+ * @param {any} [xRHIDENTITY] For internal use only
2746
2681
  * @param {*} [options] Override http request option.
2747
2682
  * @throws {RequiredError}
2748
2683
  */
2749
- report(requestParameters: ReportApiReportRequest, options?: AxiosRequestConfig): AxiosPromise<Report200Response>;
2684
+ report(reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Report200Response>;
2750
2685
  };
2751
2686
  /**
2752
- * Request parameters for report operation in ReportApi.
2687
+ * ReportApi - object-oriented interface
2753
2688
  * @export
2754
- * @interface ReportApiReportRequest
2689
+ * @class ReportApi
2690
+ * @extends {BaseAPI}
2755
2691
  */
2756
- export interface ReportApiReportRequest {
2692
+ export declare class ReportApi extends BaseAPI {
2757
2693
  /**
2758
- *
2759
- * @type {any}
2760
- * @memberof ReportApiReport
2694
+ * Returns a Report
2695
+ * @summary Request a Report
2696
+ * @param {any} reportId
2697
+ * @param {any} [xRHIDENTITY] For internal use only
2698
+ * @param {*} [options] Override http request option.
2699
+ * @throws {RequiredError}
2700
+ * @memberof ReportApi
2761
2701
  */
2762
- readonly reportId: any;
2702
+ report(reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Report200Response, any>>;
2703
+ }
2704
+ /**
2705
+ * ReportRuleResultsApi - axios parameter creator
2706
+ * @export
2707
+ */
2708
+ export declare const ReportRuleResultsApiAxiosParamCreator: (configuration?: Configuration) => {
2763
2709
  /**
2764
- * For internal use only
2765
- * @type {any}
2766
- * @memberof ReportApiReport
2710
+ * Lists Rule Results under a Report
2711
+ * @summary Request Rule Results under a Report
2712
+ * @param {any} testResultId
2713
+ * @param {any} reportId
2714
+ * @param {any} [xRHIDENTITY] For internal use only
2715
+ * @param {any} [limit] Number of items to return per page
2716
+ * @param {any} [offset] Offset of first item of paginated response
2717
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2718
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Results are searchable using attributes &#x60;result&#x60;, &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2719
+ * @param {*} [options] Override http request option.
2720
+ * @throws {RequiredError}
2721
+ */
2722
+ reportRuleResults: (testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2723
+ };
2724
+ /**
2725
+ * ReportRuleResultsApi - functional programming interface
2726
+ * @export
2727
+ */
2728
+ export declare const ReportRuleResultsApiFp: (configuration?: Configuration) => {
2729
+ /**
2730
+ * Lists Rule Results under a Report
2731
+ * @summary Request Rule Results under a Report
2732
+ * @param {any} testResultId
2733
+ * @param {any} reportId
2734
+ * @param {any} [xRHIDENTITY] For internal use only
2735
+ * @param {any} [limit] Number of items to return per page
2736
+ * @param {any} [offset] Offset of first item of paginated response
2737
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2738
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Results are searchable using attributes &#x60;result&#x60;, &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2739
+ * @param {*} [options] Override http request option.
2740
+ * @throws {RequiredError}
2767
2741
  */
2768
- readonly xRHIDENTITY?: any;
2742
+ reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportRuleResults200Response>>;
2743
+ };
2744
+ /**
2745
+ * ReportRuleResultsApi - factory interface
2746
+ * @export
2747
+ */
2748
+ export declare const ReportRuleResultsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2749
+ /**
2750
+ * Lists Rule Results under a Report
2751
+ * @summary Request Rule Results under a Report
2752
+ * @param {any} testResultId
2753
+ * @param {any} reportId
2754
+ * @param {any} [xRHIDENTITY] For internal use only
2755
+ * @param {any} [limit] Number of items to return per page
2756
+ * @param {any} [offset] Offset of first item of paginated response
2757
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2758
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Results are searchable using attributes &#x60;result&#x60;, &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2759
+ * @param {*} [options] Override http request option.
2760
+ * @throws {RequiredError}
2761
+ */
2762
+ reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportRuleResults200Response>;
2763
+ };
2764
+ /**
2765
+ * ReportRuleResultsApi - object-oriented interface
2766
+ * @export
2767
+ * @class ReportRuleResultsApi
2768
+ * @extends {BaseAPI}
2769
+ */
2770
+ export declare class ReportRuleResultsApi extends BaseAPI {
2771
+ /**
2772
+ * Lists Rule Results under a Report
2773
+ * @summary Request Rule Results under a Report
2774
+ * @param {any} testResultId
2775
+ * @param {any} reportId
2776
+ * @param {any} [xRHIDENTITY] For internal use only
2777
+ * @param {any} [limit] Number of items to return per page
2778
+ * @param {any} [offset] Offset of first item of paginated response
2779
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2780
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Results are searchable using attributes &#x60;result&#x60;, &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2781
+ * @param {*} [options] Override http request option.
2782
+ * @throws {RequiredError}
2783
+ * @memberof ReportRuleResultsApi
2784
+ */
2785
+ reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportRuleResults200Response, any>>;
2769
2786
  }
2770
2787
  /**
2771
- * ReportApi - object-oriented interface
2788
+ * ReportStatsApi - axios parameter creator
2772
2789
  * @export
2773
- * @class ReportApi
2790
+ */
2791
+ export declare const ReportStatsApiAxiosParamCreator: (configuration?: Configuration) => {
2792
+ /**
2793
+ * Returns detailed stats for a Report
2794
+ * @summary Request detailed stats for a Report
2795
+ * @param {any} reportId
2796
+ * @param {any} [xRHIDENTITY] For internal use only
2797
+ * @param {*} [options] Override http request option.
2798
+ * @deprecated
2799
+ * @throws {RequiredError}
2800
+ */
2801
+ reportStats: (reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2802
+ };
2803
+ /**
2804
+ * ReportStatsApi - functional programming interface
2805
+ * @export
2806
+ */
2807
+ export declare const ReportStatsApiFp: (configuration?: Configuration) => {
2808
+ /**
2809
+ * Returns detailed stats for a Report
2810
+ * @summary Request detailed stats for a Report
2811
+ * @param {any} reportId
2812
+ * @param {any} [xRHIDENTITY] For internal use only
2813
+ * @param {*} [options] Override http request option.
2814
+ * @deprecated
2815
+ * @throws {RequiredError}
2816
+ */
2817
+ reportStats(reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportStats200Response>>;
2818
+ };
2819
+ /**
2820
+ * ReportStatsApi - factory interface
2821
+ * @export
2822
+ */
2823
+ export declare const ReportStatsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2824
+ /**
2825
+ * Returns detailed stats for a Report
2826
+ * @summary Request detailed stats for a Report
2827
+ * @param {any} reportId
2828
+ * @param {any} [xRHIDENTITY] For internal use only
2829
+ * @param {*} [options] Override http request option.
2830
+ * @deprecated
2831
+ * @throws {RequiredError}
2832
+ */
2833
+ reportStats(reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<ReportStats200Response>;
2834
+ };
2835
+ /**
2836
+ * ReportStatsApi - object-oriented interface
2837
+ * @export
2838
+ * @class ReportStatsApi
2774
2839
  * @extends {BaseAPI}
2775
2840
  */
2776
- export declare class ReportApi extends BaseAPI {
2841
+ export declare class ReportStatsApi extends BaseAPI {
2777
2842
  /**
2778
- * Returns a Report
2779
- * @summary Request a Report
2780
- * @param {ReportApiReportRequest} requestParameters Request parameters.
2843
+ * Returns detailed stats for a Report
2844
+ * @summary Request detailed stats for a Report
2845
+ * @param {any} reportId
2846
+ * @param {any} [xRHIDENTITY] For internal use only
2781
2847
  * @param {*} [options] Override http request option.
2848
+ * @deprecated
2782
2849
  * @throws {RequiredError}
2783
- * @memberof ReportApi
2850
+ * @memberof ReportStatsApi
2784
2851
  */
2785
- report(requestParameters: ReportApiReportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Report200Response, any>>;
2852
+ reportStats(reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportStats200Response, any>>;
2786
2853
  }
2787
2854
  /**
2788
2855
  * ReportSystemApi - axios parameter creator
@@ -2824,37 +2891,14 @@ export declare const ReportSystemApiFactory: (configuration?: Configuration, bas
2824
2891
  /**
2825
2892
  * Returns a System under a Report
2826
2893
  * @summary Request a System
2827
- * @param {ReportSystemApiReportSystemRequest} requestParameters Request parameters.
2894
+ * @param {any} systemId
2895
+ * @param {any} reportId
2896
+ * @param {any} [xRHIDENTITY] For internal use only
2828
2897
  * @param {*} [options] Override http request option.
2829
2898
  * @throws {RequiredError}
2830
2899
  */
2831
- reportSystem(requestParameters: ReportSystemApiReportSystemRequest, options?: AxiosRequestConfig): AxiosPromise<System200Response>;
2900
+ reportSystem(systemId: any, reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
2832
2901
  };
2833
- /**
2834
- * Request parameters for reportSystem operation in ReportSystemApi.
2835
- * @export
2836
- * @interface ReportSystemApiReportSystemRequest
2837
- */
2838
- export interface ReportSystemApiReportSystemRequest {
2839
- /**
2840
- *
2841
- * @type {any}
2842
- * @memberof ReportSystemApiReportSystem
2843
- */
2844
- readonly systemId: any;
2845
- /**
2846
- *
2847
- * @type {any}
2848
- * @memberof ReportSystemApiReportSystem
2849
- */
2850
- readonly reportId: any;
2851
- /**
2852
- * For internal use only
2853
- * @type {any}
2854
- * @memberof ReportSystemApiReportSystem
2855
- */
2856
- readonly xRHIDENTITY?: any;
2857
- }
2858
2902
  /**
2859
2903
  * ReportSystemApi - object-oriented interface
2860
2904
  * @export
@@ -2865,12 +2909,14 @@ export declare class ReportSystemApi extends BaseAPI {
2865
2909
  /**
2866
2910
  * Returns a System under a Report
2867
2911
  * @summary Request a System
2868
- * @param {ReportSystemApiReportSystemRequest} requestParameters Request parameters.
2912
+ * @param {any} systemId
2913
+ * @param {any} reportId
2914
+ * @param {any} [xRHIDENTITY] For internal use only
2869
2915
  * @param {*} [options] Override http request option.
2870
2916
  * @throws {RequiredError}
2871
2917
  * @memberof ReportSystemApi
2872
2918
  */
2873
- reportSystem(requestParameters: ReportSystemApiReportSystemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
2919
+ reportSystem(systemId: any, reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
2874
2920
  }
2875
2921
  /**
2876
2922
  * ReportSystemsApi - axios parameter creator
@@ -2885,7 +2931,7 @@ export declare const ReportSystemsApiAxiosParamCreator: (configuration?: Configu
2885
2931
  * @param {any} [limit] Number of items to return per page
2886
2932
  * @param {any} [offset] Offset of first item of paginated response
2887
2933
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2888
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, and &#x60;never_reported&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2934
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2889
2935
  * @param {*} [options] Override http request option.
2890
2936
  * @throws {RequiredError}
2891
2937
  */
@@ -2904,7 +2950,7 @@ export declare const ReportSystemsApiFp: (configuration?: Configuration) => {
2904
2950
  * @param {any} [limit] Number of items to return per page
2905
2951
  * @param {any} [offset] Offset of first item of paginated response
2906
2952
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2907
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, and &#x60;never_reported&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2953
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2908
2954
  * @param {*} [options] Override http request option.
2909
2955
  * @throws {RequiredError}
2910
2956
  */
@@ -2918,71 +2964,109 @@ export declare const ReportSystemsApiFactory: (configuration?: Configuration, ba
2918
2964
  /**
2919
2965
  * Lists Systems assigned to a Report
2920
2966
  * @summary Request Systems assigned to a Report
2921
- * @param {ReportSystemsApiReportSystemsRequest} requestParameters Request parameters.
2967
+ * @param {any} reportId
2968
+ * @param {any} [xRHIDENTITY] For internal use only
2969
+ * @param {any} [limit] Number of items to return per page
2970
+ * @param {any} [offset] Offset of first item of paginated response
2971
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2972
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2922
2973
  * @param {*} [options] Override http request option.
2923
2974
  * @throws {RequiredError}
2924
2975
  */
2925
- reportSystems(requestParameters: ReportSystemsApiReportSystemsRequest, options?: AxiosRequestConfig): AxiosPromise<Systems200Response>;
2976
+ reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
2926
2977
  };
2927
2978
  /**
2928
- * Request parameters for reportSystems operation in ReportSystemsApi.
2979
+ * ReportSystemsApi - object-oriented interface
2929
2980
  * @export
2930
- * @interface ReportSystemsApiReportSystemsRequest
2981
+ * @class ReportSystemsApi
2982
+ * @extends {BaseAPI}
2931
2983
  */
2932
- export interface ReportSystemsApiReportSystemsRequest {
2933
- /**
2934
- *
2935
- * @type {any}
2936
- * @memberof ReportSystemsApiReportSystems
2937
- */
2938
- readonly reportId: any;
2939
- /**
2940
- * For internal use only
2941
- * @type {any}
2942
- * @memberof ReportSystemsApiReportSystems
2943
- */
2944
- readonly xRHIDENTITY?: any;
2984
+ export declare class ReportSystemsApi extends BaseAPI {
2945
2985
  /**
2946
- * Number of items to return per page
2947
- * @type {any}
2948
- * @memberof ReportSystemsApiReportSystems
2986
+ * Lists Systems assigned to a Report
2987
+ * @summary Request Systems assigned to a Report
2988
+ * @param {any} reportId
2989
+ * @param {any} [xRHIDENTITY] For internal use only
2990
+ * @param {any} [limit] Number of items to return per page
2991
+ * @param {any} [offset] Offset of first item of paginated response
2992
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2993
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2994
+ * @param {*} [options] Override http request option.
2995
+ * @throws {RequiredError}
2996
+ * @memberof ReportSystemsApi
2949
2997
  */
2950
- readonly limit?: any;
2998
+ reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
2999
+ }
3000
+ /**
3001
+ * ReportSystemsOSApi - axios parameter creator
3002
+ * @export
3003
+ */
3004
+ export declare const ReportSystemsOSApiAxiosParamCreator: (configuration?: Configuration) => {
2951
3005
  /**
2952
- * Offset of first item of paginated response
2953
- * @type {any}
2954
- * @memberof ReportSystemsApiReportSystems
3006
+ * This feature is exclusively used by the frontend
3007
+ * @summary Request the list of available OS versions
3008
+ * @param {any} reportId
3009
+ * @param {any} [xRHIDENTITY] For internal use only
3010
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3011
+ * @param {*} [options] Override http request option.
3012
+ * @deprecated
3013
+ * @throws {RequiredError}
2955
3014
  */
2956
- readonly offset?: any;
3015
+ reportSystemsOS: (reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3016
+ };
3017
+ /**
3018
+ * ReportSystemsOSApi - functional programming interface
3019
+ * @export
3020
+ */
3021
+ export declare const ReportSystemsOSApiFp: (configuration?: Configuration) => {
2957
3022
  /**
2958
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2959
- * @type {any}
2960
- * @memberof ReportSystemsApiReportSystems
3023
+ * This feature is exclusively used by the frontend
3024
+ * @summary Request the list of available OS versions
3025
+ * @param {any} reportId
3026
+ * @param {any} [xRHIDENTITY] For internal use only
3027
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3028
+ * @param {*} [options] Override http request option.
3029
+ * @deprecated
3030
+ * @throws {RequiredError}
2961
3031
  */
2962
- readonly sortBy?: any;
3032
+ reportSystemsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
3033
+ };
3034
+ /**
3035
+ * ReportSystemsOSApi - factory interface
3036
+ * @export
3037
+ */
3038
+ export declare const ReportSystemsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2963
3039
  /**
2964
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, and &#x60;never_reported&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2965
- * @type {any}
2966
- * @memberof ReportSystemsApiReportSystems
3040
+ * This feature is exclusively used by the frontend
3041
+ * @summary Request the list of available OS versions
3042
+ * @param {any} reportId
3043
+ * @param {any} [xRHIDENTITY] For internal use only
3044
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3045
+ * @param {*} [options] Override http request option.
3046
+ * @deprecated
3047
+ * @throws {RequiredError}
2967
3048
  */
2968
- readonly filter?: any;
2969
- }
3049
+ reportSystemsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
3050
+ };
2970
3051
  /**
2971
- * ReportSystemsApi - object-oriented interface
3052
+ * ReportSystemsOSApi - object-oriented interface
2972
3053
  * @export
2973
- * @class ReportSystemsApi
3054
+ * @class ReportSystemsOSApi
2974
3055
  * @extends {BaseAPI}
2975
3056
  */
2976
- export declare class ReportSystemsApi extends BaseAPI {
3057
+ export declare class ReportSystemsOSApi extends BaseAPI {
2977
3058
  /**
2978
- * Lists Systems assigned to a Report
2979
- * @summary Request Systems assigned to a Report
2980
- * @param {ReportSystemsApiReportSystemsRequest} requestParameters Request parameters.
3059
+ * This feature is exclusively used by the frontend
3060
+ * @summary Request the list of available OS versions
3061
+ * @param {any} reportId
3062
+ * @param {any} [xRHIDENTITY] For internal use only
3063
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2981
3064
  * @param {*} [options] Override http request option.
3065
+ * @deprecated
2982
3066
  * @throws {RequiredError}
2983
- * @memberof ReportSystemsApi
3067
+ * @memberof ReportSystemsOSApi
2984
3068
  */
2985
- reportSystems(requestParameters: ReportSystemsApiReportSystemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
3069
+ reportSystemsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
2986
3070
  }
2987
3071
  /**
2988
3072
  * ReportTestResultApi - axios parameter creator
@@ -3024,37 +3108,14 @@ export declare const ReportTestResultApiFactory: (configuration?: Configuration,
3024
3108
  /**
3025
3109
  * Returns a Test Result under a Report
3026
3110
  * @summary Request a Test Result
3027
- * @param {ReportTestResultApiReportTestResultRequest} requestParameters Request parameters.
3111
+ * @param {any} testResultId
3112
+ * @param {any} reportId
3113
+ * @param {any} [xRHIDENTITY] For internal use only
3028
3114
  * @param {*} [options] Override http request option.
3029
3115
  * @throws {RequiredError}
3030
3116
  */
3031
- reportTestResult(requestParameters: ReportTestResultApiReportTestResultRequest, options?: AxiosRequestConfig): AxiosPromise<System200Response>;
3117
+ reportTestResult(testResultId: any, reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
3032
3118
  };
3033
- /**
3034
- * Request parameters for reportTestResult operation in ReportTestResultApi.
3035
- * @export
3036
- * @interface ReportTestResultApiReportTestResultRequest
3037
- */
3038
- export interface ReportTestResultApiReportTestResultRequest {
3039
- /**
3040
- *
3041
- * @type {any}
3042
- * @memberof ReportTestResultApiReportTestResult
3043
- */
3044
- readonly testResultId: any;
3045
- /**
3046
- *
3047
- * @type {any}
3048
- * @memberof ReportTestResultApiReportTestResult
3049
- */
3050
- readonly reportId: any;
3051
- /**
3052
- * For internal use only
3053
- * @type {any}
3054
- * @memberof ReportTestResultApiReportTestResult
3055
- */
3056
- readonly xRHIDENTITY?: any;
3057
- }
3058
3119
  /**
3059
3120
  * ReportTestResultApi - object-oriented interface
3060
3121
  * @export
@@ -3065,12 +3126,14 @@ export declare class ReportTestResultApi extends BaseAPI {
3065
3126
  /**
3066
3127
  * Returns a Test Result under a Report
3067
3128
  * @summary Request a Test Result
3068
- * @param {ReportTestResultApiReportTestResultRequest} requestParameters Request parameters.
3129
+ * @param {any} testResultId
3130
+ * @param {any} reportId
3131
+ * @param {any} [xRHIDENTITY] For internal use only
3069
3132
  * @param {*} [options] Override http request option.
3070
3133
  * @throws {RequiredError}
3071
3134
  * @memberof ReportTestResultApi
3072
3135
  */
3073
- reportTestResult(requestParameters: ReportTestResultApiReportTestResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
3136
+ reportTestResult(testResultId: any, reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
3074
3137
  }
3075
3138
  /**
3076
3139
  * ReportTestResultsApi - axios parameter creator
@@ -3085,7 +3148,7 @@ export declare const ReportTestResultsApiAxiosParamCreator: (configuration?: Con
3085
3148
  * @param {any} [limit] Number of items to return per page
3086
3149
  * @param {any} [offset] Offset of first item of paginated response
3087
3150
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3088
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, and &#x60;compliant&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3151
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3089
3152
  * @param {*} [options] Override http request option.
3090
3153
  * @throws {RequiredError}
3091
3154
  */
@@ -3104,7 +3167,7 @@ export declare const ReportTestResultsApiFp: (configuration?: Configuration) =>
3104
3167
  * @param {any} [limit] Number of items to return per page
3105
3168
  * @param {any} [offset] Offset of first item of paginated response
3106
3169
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3107
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, and &#x60;compliant&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3170
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3108
3171
  * @param {*} [options] Override http request option.
3109
3172
  * @throws {RequiredError}
3110
3173
  */
@@ -3118,71 +3181,109 @@ export declare const ReportTestResultsApiFactory: (configuration?: Configuration
3118
3181
  /**
3119
3182
  * Lists Test Results under a Report
3120
3183
  * @summary Request Test Results under a Report
3121
- * @param {ReportTestResultsApiReportTestResultsRequest} requestParameters Request parameters.
3184
+ * @param {any} reportId
3185
+ * @param {any} [xRHIDENTITY] For internal use only
3186
+ * @param {any} [limit] Number of items to return per page
3187
+ * @param {any} [offset] Offset of first item of paginated response
3188
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3189
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3122
3190
  * @param {*} [options] Override http request option.
3123
3191
  * @throws {RequiredError}
3124
3192
  */
3125
- reportTestResults(requestParameters: ReportTestResultsApiReportTestResultsRequest, options?: AxiosRequestConfig): AxiosPromise<ReportTestResults200Response>;
3193
+ reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportTestResults200Response>;
3126
3194
  };
3127
3195
  /**
3128
- * Request parameters for reportTestResults operation in ReportTestResultsApi.
3196
+ * ReportTestResultsApi - object-oriented interface
3129
3197
  * @export
3130
- * @interface ReportTestResultsApiReportTestResultsRequest
3198
+ * @class ReportTestResultsApi
3199
+ * @extends {BaseAPI}
3131
3200
  */
3132
- export interface ReportTestResultsApiReportTestResultsRequest {
3133
- /**
3134
- *
3135
- * @type {any}
3136
- * @memberof ReportTestResultsApiReportTestResults
3137
- */
3138
- readonly reportId: any;
3139
- /**
3140
- * For internal use only
3141
- * @type {any}
3142
- * @memberof ReportTestResultsApiReportTestResults
3143
- */
3144
- readonly xRHIDENTITY?: any;
3201
+ export declare class ReportTestResultsApi extends BaseAPI {
3145
3202
  /**
3146
- * Number of items to return per page
3147
- * @type {any}
3148
- * @memberof ReportTestResultsApiReportTestResults
3203
+ * Lists Test Results under a Report
3204
+ * @summary Request Test Results under a Report
3205
+ * @param {any} reportId
3206
+ * @param {any} [xRHIDENTITY] For internal use only
3207
+ * @param {any} [limit] Number of items to return per page
3208
+ * @param {any} [offset] Offset of first item of paginated response
3209
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3210
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3211
+ * @param {*} [options] Override http request option.
3212
+ * @throws {RequiredError}
3213
+ * @memberof ReportTestResultsApi
3149
3214
  */
3150
- readonly limit?: any;
3215
+ reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportTestResults200Response, any>>;
3216
+ }
3217
+ /**
3218
+ * ReportTestResultsOSApi - axios parameter creator
3219
+ * @export
3220
+ */
3221
+ export declare const ReportTestResultsOSApiAxiosParamCreator: (configuration?: Configuration) => {
3151
3222
  /**
3152
- * Offset of first item of paginated response
3153
- * @type {any}
3154
- * @memberof ReportTestResultsApiReportTestResults
3223
+ * This feature is exclusively used by the frontend
3224
+ * @summary Request the list of available OS versions
3225
+ * @param {any} reportId
3226
+ * @param {any} [xRHIDENTITY] For internal use only
3227
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3228
+ * @param {*} [options] Override http request option.
3229
+ * @deprecated
3230
+ * @throws {RequiredError}
3155
3231
  */
3156
- readonly offset?: any;
3232
+ reportTestResultsOS: (reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3233
+ };
3234
+ /**
3235
+ * ReportTestResultsOSApi - functional programming interface
3236
+ * @export
3237
+ */
3238
+ export declare const ReportTestResultsOSApiFp: (configuration?: Configuration) => {
3157
3239
  /**
3158
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3159
- * @type {any}
3160
- * @memberof ReportTestResultsApiReportTestResults
3240
+ * This feature is exclusively used by the frontend
3241
+ * @summary Request the list of available OS versions
3242
+ * @param {any} reportId
3243
+ * @param {any} [xRHIDENTITY] For internal use only
3244
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3245
+ * @param {*} [options] Override http request option.
3246
+ * @deprecated
3247
+ * @throws {RequiredError}
3161
3248
  */
3162
- readonly sortBy?: any;
3249
+ reportTestResultsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
3250
+ };
3251
+ /**
3252
+ * ReportTestResultsOSApi - factory interface
3253
+ * @export
3254
+ */
3255
+ export declare const ReportTestResultsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3163
3256
  /**
3164
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, and &#x60;compliant&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3165
- * @type {any}
3166
- * @memberof ReportTestResultsApiReportTestResults
3257
+ * This feature is exclusively used by the frontend
3258
+ * @summary Request the list of available OS versions
3259
+ * @param {any} reportId
3260
+ * @param {any} [xRHIDENTITY] For internal use only
3261
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3262
+ * @param {*} [options] Override http request option.
3263
+ * @deprecated
3264
+ * @throws {RequiredError}
3167
3265
  */
3168
- readonly filter?: any;
3169
- }
3266
+ reportTestResultsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
3267
+ };
3170
3268
  /**
3171
- * ReportTestResultsApi - object-oriented interface
3269
+ * ReportTestResultsOSApi - object-oriented interface
3172
3270
  * @export
3173
- * @class ReportTestResultsApi
3271
+ * @class ReportTestResultsOSApi
3174
3272
  * @extends {BaseAPI}
3175
3273
  */
3176
- export declare class ReportTestResultsApi extends BaseAPI {
3274
+ export declare class ReportTestResultsOSApi extends BaseAPI {
3177
3275
  /**
3178
- * Lists Test Results under a Report
3179
- * @summary Request Test Results under a Report
3180
- * @param {ReportTestResultsApiReportTestResultsRequest} requestParameters Request parameters.
3276
+ * This feature is exclusively used by the frontend
3277
+ * @summary Request the list of available OS versions
3278
+ * @param {any} reportId
3279
+ * @param {any} [xRHIDENTITY] For internal use only
3280
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3181
3281
  * @param {*} [options] Override http request option.
3282
+ * @deprecated
3182
3283
  * @throws {RequiredError}
3183
- * @memberof ReportTestResultsApi
3284
+ * @memberof ReportTestResultsOSApi
3184
3285
  */
3185
- reportTestResults(requestParameters: ReportTestResultsApiReportTestResultsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportTestResults200Response, any>>;
3286
+ reportTestResultsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
3186
3287
  }
3187
3288
  /**
3188
3289
  * ReportsApi - axios parameter creator
@@ -3228,65 +3329,103 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
3228
3329
  /**
3229
3330
  * Lists Reports
3230
3331
  * @summary Request Reports
3231
- * @param {ReportsApiReportsRequest} requestParameters Request parameters.
3332
+ * @param {any} [xRHIDENTITY] For internal use only
3333
+ * @param {any} [limit] Number of items to return per page
3334
+ * @param {any} [offset] Offset of first item of paginated response
3335
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3336
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3232
3337
  * @param {*} [options] Override http request option.
3233
3338
  * @throws {RequiredError}
3234
3339
  */
3235
- reports(requestParameters?: ReportsApiReportsRequest, options?: AxiosRequestConfig): AxiosPromise<Reports200Response>;
3340
+ reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
3236
3341
  };
3237
3342
  /**
3238
- * Request parameters for reports operation in ReportsApi.
3343
+ * ReportsApi - object-oriented interface
3239
3344
  * @export
3240
- * @interface ReportsApiReportsRequest
3345
+ * @class ReportsApi
3346
+ * @extends {BaseAPI}
3241
3347
  */
3242
- export interface ReportsApiReportsRequest {
3243
- /**
3244
- * For internal use only
3245
- * @type {any}
3246
- * @memberof ReportsApiReports
3247
- */
3248
- readonly xRHIDENTITY?: any;
3348
+ export declare class ReportsApi extends BaseAPI {
3249
3349
  /**
3250
- * Number of items to return per page
3251
- * @type {any}
3252
- * @memberof ReportsApiReports
3350
+ * Lists Reports
3351
+ * @summary Request Reports
3352
+ * @param {any} [xRHIDENTITY] For internal use only
3353
+ * @param {any} [limit] Number of items to return per page
3354
+ * @param {any} [offset] Offset of first item of paginated response
3355
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3356
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3357
+ * @param {*} [options] Override http request option.
3358
+ * @throws {RequiredError}
3359
+ * @memberof ReportsApi
3253
3360
  */
3254
- readonly limit?: any;
3361
+ reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
3362
+ }
3363
+ /**
3364
+ * ReportsOSApi - axios parameter creator
3365
+ * @export
3366
+ */
3367
+ export declare const ReportsOSApiAxiosParamCreator: (configuration?: Configuration) => {
3255
3368
  /**
3256
- * Offset of first item of paginated response
3257
- * @type {any}
3258
- * @memberof ReportsApiReports
3369
+ * This feature is exclusively used by the frontend
3370
+ * @summary Request the list of available OS versions
3371
+ * @param {any} [xRHIDENTITY] For internal use only
3372
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3373
+ * @param {*} [options] Override http request option.
3374
+ * @deprecated
3375
+ * @throws {RequiredError}
3259
3376
  */
3260
- readonly offset?: any;
3377
+ reportsOS: (xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3378
+ };
3379
+ /**
3380
+ * ReportsOSApi - functional programming interface
3381
+ * @export
3382
+ */
3383
+ export declare const ReportsOSApiFp: (configuration?: Configuration) => {
3261
3384
  /**
3262
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3263
- * @type {any}
3264
- * @memberof ReportsApiReports
3385
+ * This feature is exclusively used by the frontend
3386
+ * @summary Request the list of available OS versions
3387
+ * @param {any} [xRHIDENTITY] For internal use only
3388
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3389
+ * @param {*} [options] Override http request option.
3390
+ * @deprecated
3391
+ * @throws {RequiredError}
3265
3392
  */
3266
- readonly sortBy?: any;
3393
+ reportsOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
3394
+ };
3395
+ /**
3396
+ * ReportsOSApi - factory interface
3397
+ * @export
3398
+ */
3399
+ export declare const ReportsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3267
3400
  /**
3268
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3269
- * @type {any}
3270
- * @memberof ReportsApiReports
3401
+ * This feature is exclusively used by the frontend
3402
+ * @summary Request the list of available OS versions
3403
+ * @param {any} [xRHIDENTITY] For internal use only
3404
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3405
+ * @param {*} [options] Override http request option.
3406
+ * @deprecated
3407
+ * @throws {RequiredError}
3271
3408
  */
3272
- readonly filter?: any;
3273
- }
3409
+ reportsOS(xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
3410
+ };
3274
3411
  /**
3275
- * ReportsApi - object-oriented interface
3412
+ * ReportsOSApi - object-oriented interface
3276
3413
  * @export
3277
- * @class ReportsApi
3414
+ * @class ReportsOSApi
3278
3415
  * @extends {BaseAPI}
3279
3416
  */
3280
- export declare class ReportsApi extends BaseAPI {
3417
+ export declare class ReportsOSApi extends BaseAPI {
3281
3418
  /**
3282
- * Lists Reports
3283
- * @summary Request Reports
3284
- * @param {ReportsApiReportsRequest} requestParameters Request parameters.
3419
+ * This feature is exclusively used by the frontend
3420
+ * @summary Request the list of available OS versions
3421
+ * @param {any} [xRHIDENTITY] For internal use only
3422
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3285
3423
  * @param {*} [options] Override http request option.
3424
+ * @deprecated
3286
3425
  * @throws {RequiredError}
3287
- * @memberof ReportsApi
3426
+ * @memberof ReportsOSApi
3288
3427
  */
3289
- reports(requestParameters?: ReportsApiReportsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
3428
+ reportsOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
3290
3429
  }
3291
3430
  /**
3292
3431
  * RuleApi - axios parameter creator
@@ -3297,7 +3436,7 @@ export declare const RuleApiAxiosParamCreator: (configuration?: Configuration) =
3297
3436
  * Returns a Rule
3298
3437
  * @summary Request a Rule
3299
3438
  * @param {any} securityGuideId
3300
- * @param {any} ruleId UUID or ref_id
3439
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
3301
3440
  * @param {any} [xRHIDENTITY] For internal use only
3302
3441
  * @param {*} [options] Override http request option.
3303
3442
  * @throws {RequiredError}
@@ -3313,7 +3452,7 @@ export declare const RuleApiFp: (configuration?: Configuration) => {
3313
3452
  * Returns a Rule
3314
3453
  * @summary Request a Rule
3315
3454
  * @param {any} securityGuideId
3316
- * @param {any} ruleId UUID or ref_id
3455
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
3317
3456
  * @param {any} [xRHIDENTITY] For internal use only
3318
3457
  * @param {*} [options] Override http request option.
3319
3458
  * @throws {RequiredError}
@@ -3328,37 +3467,14 @@ export declare const RuleApiFactory: (configuration?: Configuration, basePath?:
3328
3467
  /**
3329
3468
  * Returns a Rule
3330
3469
  * @summary Request a Rule
3331
- * @param {RuleApiRuleRequest} requestParameters Request parameters.
3470
+ * @param {any} securityGuideId
3471
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
3472
+ * @param {any} [xRHIDENTITY] For internal use only
3332
3473
  * @param {*} [options] Override http request option.
3333
3474
  * @throws {RequiredError}
3334
3475
  */
3335
- rule(requestParameters: RuleApiRuleRequest, options?: AxiosRequestConfig): AxiosPromise<Rule200Response>;
3476
+ rule(securityGuideId: any, ruleId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Rule200Response>;
3336
3477
  };
3337
- /**
3338
- * Request parameters for rule operation in RuleApi.
3339
- * @export
3340
- * @interface RuleApiRuleRequest
3341
- */
3342
- export interface RuleApiRuleRequest {
3343
- /**
3344
- *
3345
- * @type {any}
3346
- * @memberof RuleApiRule
3347
- */
3348
- readonly securityGuideId: any;
3349
- /**
3350
- * UUID or ref_id
3351
- * @type {any}
3352
- * @memberof RuleApiRule
3353
- */
3354
- readonly ruleId: any;
3355
- /**
3356
- * For internal use only
3357
- * @type {any}
3358
- * @memberof RuleApiRule
3359
- */
3360
- readonly xRHIDENTITY?: any;
3361
- }
3362
3478
  /**
3363
3479
  * RuleApi - object-oriented interface
3364
3480
  * @export
@@ -3369,12 +3485,14 @@ export declare class RuleApi extends BaseAPI {
3369
3485
  /**
3370
3486
  * Returns a Rule
3371
3487
  * @summary Request a Rule
3372
- * @param {RuleApiRuleRequest} requestParameters Request parameters.
3488
+ * @param {any} securityGuideId
3489
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
3490
+ * @param {any} [xRHIDENTITY] For internal use only
3373
3491
  * @param {*} [options] Override http request option.
3374
3492
  * @throws {RequiredError}
3375
3493
  * @memberof RuleApi
3376
3494
  */
3377
- rule(requestParameters: RuleApiRuleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rule200Response, any>>;
3495
+ rule(securityGuideId: any, ruleId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rule200Response, any>>;
3378
3496
  }
3379
3497
  /**
3380
3498
  * RuleGroupApi - axios parameter creator
@@ -3416,37 +3534,14 @@ export declare const RuleGroupApiFactory: (configuration?: Configuration, basePa
3416
3534
  /**
3417
3535
  * Returns a Rule Group
3418
3536
  * @summary Request a Rule Group
3419
- * @param {RuleGroupApiRuleGroupRequest} requestParameters Request parameters.
3537
+ * @param {any} securityGuideId
3538
+ * @param {any} ruleGroupId
3539
+ * @param {any} [xRHIDENTITY] For internal use only
3420
3540
  * @param {*} [options] Override http request option.
3421
3541
  * @throws {RequiredError}
3422
3542
  */
3423
- ruleGroup(requestParameters: RuleGroupApiRuleGroupRequest, options?: AxiosRequestConfig): AxiosPromise<RuleGroup200Response>;
3543
+ ruleGroup(securityGuideId: any, ruleGroupId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<RuleGroup200Response>;
3424
3544
  };
3425
- /**
3426
- * Request parameters for ruleGroup operation in RuleGroupApi.
3427
- * @export
3428
- * @interface RuleGroupApiRuleGroupRequest
3429
- */
3430
- export interface RuleGroupApiRuleGroupRequest {
3431
- /**
3432
- *
3433
- * @type {any}
3434
- * @memberof RuleGroupApiRuleGroup
3435
- */
3436
- readonly securityGuideId: any;
3437
- /**
3438
- *
3439
- * @type {any}
3440
- * @memberof RuleGroupApiRuleGroup
3441
- */
3442
- readonly ruleGroupId: any;
3443
- /**
3444
- * For internal use only
3445
- * @type {any}
3446
- * @memberof RuleGroupApiRuleGroup
3447
- */
3448
- readonly xRHIDENTITY?: any;
3449
- }
3450
3545
  /**
3451
3546
  * RuleGroupApi - object-oriented interface
3452
3547
  * @export
@@ -3457,12 +3552,14 @@ export declare class RuleGroupApi extends BaseAPI {
3457
3552
  /**
3458
3553
  * Returns a Rule Group
3459
3554
  * @summary Request a Rule Group
3460
- * @param {RuleGroupApiRuleGroupRequest} requestParameters Request parameters.
3555
+ * @param {any} securityGuideId
3556
+ * @param {any} ruleGroupId
3557
+ * @param {any} [xRHIDENTITY] For internal use only
3461
3558
  * @param {*} [options] Override http request option.
3462
3559
  * @throws {RequiredError}
3463
3560
  * @memberof RuleGroupApi
3464
3561
  */
3465
- ruleGroup(requestParameters: RuleGroupApiRuleGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroup200Response, any>>;
3562
+ ruleGroup(securityGuideId: any, ruleGroupId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroup200Response, any>>;
3466
3563
  }
3467
3564
  /**
3468
3565
  * RuleGroupsApi - axios parameter creator
@@ -3510,55 +3607,17 @@ export declare const RuleGroupsApiFactory: (configuration?: Configuration, baseP
3510
3607
  /**
3511
3608
  * Lists Rule Groups
3512
3609
  * @summary Request Rule Groups
3513
- * @param {RuleGroupsApiRuleGroupsRequest} requestParameters Request parameters.
3610
+ * @param {any} securityGuideId
3611
+ * @param {any} [xRHIDENTITY] For internal use only
3612
+ * @param {any} [limit] Number of items to return per page
3613
+ * @param {any} [offset] Offset of first item of paginated response
3614
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3615
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Groups are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3514
3616
  * @param {*} [options] Override http request option.
3515
3617
  * @throws {RequiredError}
3516
3618
  */
3517
- ruleGroups(requestParameters: RuleGroupsApiRuleGroupsRequest, options?: AxiosRequestConfig): AxiosPromise<RuleGroups200Response>;
3619
+ ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<RuleGroups200Response>;
3518
3620
  };
3519
- /**
3520
- * Request parameters for ruleGroups operation in RuleGroupsApi.
3521
- * @export
3522
- * @interface RuleGroupsApiRuleGroupsRequest
3523
- */
3524
- export interface RuleGroupsApiRuleGroupsRequest {
3525
- /**
3526
- *
3527
- * @type {any}
3528
- * @memberof RuleGroupsApiRuleGroups
3529
- */
3530
- readonly securityGuideId: any;
3531
- /**
3532
- * For internal use only
3533
- * @type {any}
3534
- * @memberof RuleGroupsApiRuleGroups
3535
- */
3536
- readonly xRHIDENTITY?: any;
3537
- /**
3538
- * Number of items to return per page
3539
- * @type {any}
3540
- * @memberof RuleGroupsApiRuleGroups
3541
- */
3542
- readonly limit?: any;
3543
- /**
3544
- * Offset of first item of paginated response
3545
- * @type {any}
3546
- * @memberof RuleGroupsApiRuleGroups
3547
- */
3548
- readonly offset?: any;
3549
- /**
3550
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3551
- * @type {any}
3552
- * @memberof RuleGroupsApiRuleGroups
3553
- */
3554
- readonly sortBy?: any;
3555
- /**
3556
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Groups are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3557
- * @type {any}
3558
- * @memberof RuleGroupsApiRuleGroups
3559
- */
3560
- readonly filter?: any;
3561
- }
3562
3621
  /**
3563
3622
  * RuleGroupsApi - object-oriented interface
3564
3623
  * @export
@@ -3569,12 +3628,17 @@ export declare class RuleGroupsApi extends BaseAPI {
3569
3628
  /**
3570
3629
  * Lists Rule Groups
3571
3630
  * @summary Request Rule Groups
3572
- * @param {RuleGroupsApiRuleGroupsRequest} requestParameters Request parameters.
3631
+ * @param {any} securityGuideId
3632
+ * @param {any} [xRHIDENTITY] For internal use only
3633
+ * @param {any} [limit] Number of items to return per page
3634
+ * @param {any} [offset] Offset of first item of paginated response
3635
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3636
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Groups are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3573
3637
  * @param {*} [options] Override http request option.
3574
3638
  * @throws {RequiredError}
3575
3639
  * @memberof RuleGroupsApi
3576
3640
  */
3577
- ruleGroups(requestParameters: RuleGroupsApiRuleGroupsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroups200Response, any>>;
3641
+ ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroups200Response, any>>;
3578
3642
  }
3579
3643
  /**
3580
3644
  * RulesApi - axios parameter creator
@@ -3589,7 +3653,7 @@ export declare const RulesApiAxiosParamCreator: (configuration?: Configuration)
3589
3653
  * @param {any} [limit] Number of items to return per page
3590
3654
  * @param {any} [offset] Offset of first item of paginated response
3591
3655
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3592
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60; and &#x60;severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3656
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3593
3657
  * @param {*} [options] Override http request option.
3594
3658
  * @throws {RequiredError}
3595
3659
  */
@@ -3608,7 +3672,7 @@ export declare const RulesApiFp: (configuration?: Configuration) => {
3608
3672
  * @param {any} [limit] Number of items to return per page
3609
3673
  * @param {any} [offset] Offset of first item of paginated response
3610
3674
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3611
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60; and &#x60;severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3675
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3612
3676
  * @param {*} [options] Override http request option.
3613
3677
  * @throws {RequiredError}
3614
3678
  */
@@ -3622,55 +3686,17 @@ export declare const RulesApiFactory: (configuration?: Configuration, basePath?:
3622
3686
  /**
3623
3687
  * Lists Rules assigned
3624
3688
  * @summary Request Rules
3625
- * @param {RulesApiRulesRequest} requestParameters Request parameters.
3689
+ * @param {any} securityGuideId
3690
+ * @param {any} [xRHIDENTITY] For internal use only
3691
+ * @param {any} [limit] Number of items to return per page
3692
+ * @param {any} [offset] Offset of first item of paginated response
3693
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3694
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3626
3695
  * @param {*} [options] Override http request option.
3627
3696
  * @throws {RequiredError}
3628
3697
  */
3629
- rules(requestParameters: RulesApiRulesRequest, options?: AxiosRequestConfig): AxiosPromise<Rules200Response>;
3698
+ rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
3630
3699
  };
3631
- /**
3632
- * Request parameters for rules operation in RulesApi.
3633
- * @export
3634
- * @interface RulesApiRulesRequest
3635
- */
3636
- export interface RulesApiRulesRequest {
3637
- /**
3638
- *
3639
- * @type {any}
3640
- * @memberof RulesApiRules
3641
- */
3642
- readonly securityGuideId: any;
3643
- /**
3644
- * For internal use only
3645
- * @type {any}
3646
- * @memberof RulesApiRules
3647
- */
3648
- readonly xRHIDENTITY?: any;
3649
- /**
3650
- * Number of items to return per page
3651
- * @type {any}
3652
- * @memberof RulesApiRules
3653
- */
3654
- readonly limit?: any;
3655
- /**
3656
- * Offset of first item of paginated response
3657
- * @type {any}
3658
- * @memberof RulesApiRules
3659
- */
3660
- readonly offset?: any;
3661
- /**
3662
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3663
- * @type {any}
3664
- * @memberof RulesApiRules
3665
- */
3666
- readonly sortBy?: any;
3667
- /**
3668
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60; and &#x60;severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3669
- * @type {any}
3670
- * @memberof RulesApiRules
3671
- */
3672
- readonly filter?: any;
3673
- }
3674
3700
  /**
3675
3701
  * RulesApi - object-oriented interface
3676
3702
  * @export
@@ -3681,12 +3707,17 @@ export declare class RulesApi extends BaseAPI {
3681
3707
  /**
3682
3708
  * Lists Rules assigned
3683
3709
  * @summary Request Rules
3684
- * @param {RulesApiRulesRequest} requestParameters Request parameters.
3710
+ * @param {any} securityGuideId
3711
+ * @param {any} [xRHIDENTITY] For internal use only
3712
+ * @param {any} [limit] Number of items to return per page
3713
+ * @param {any} [offset] Offset of first item of paginated response
3714
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3715
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3685
3716
  * @param {*} [options] Override http request option.
3686
3717
  * @throws {RequiredError}
3687
3718
  * @memberof RulesApi
3688
3719
  */
3689
- rules(requestParameters: RulesApiRulesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
3720
+ rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
3690
3721
  }
3691
3722
  /**
3692
3723
  * SecurityGuideApi - axios parameter creator
@@ -3726,31 +3757,13 @@ export declare const SecurityGuideApiFactory: (configuration?: Configuration, ba
3726
3757
  /**
3727
3758
  * Returns a Security Guide
3728
3759
  * @summary Request a Security Guide
3729
- * @param {SecurityGuideApiSecurityGuideRequest} requestParameters Request parameters.
3760
+ * @param {any} securityGuideId
3761
+ * @param {any} [xRHIDENTITY] For internal use only
3730
3762
  * @param {*} [options] Override http request option.
3731
3763
  * @throws {RequiredError}
3732
3764
  */
3733
- securityGuide(requestParameters: SecurityGuideApiSecurityGuideRequest, options?: AxiosRequestConfig): AxiosPromise<SecurityGuide200Response>;
3765
+ securityGuide(securityGuideId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<SecurityGuide200Response>;
3734
3766
  };
3735
- /**
3736
- * Request parameters for securityGuide operation in SecurityGuideApi.
3737
- * @export
3738
- * @interface SecurityGuideApiSecurityGuideRequest
3739
- */
3740
- export interface SecurityGuideApiSecurityGuideRequest {
3741
- /**
3742
- *
3743
- * @type {any}
3744
- * @memberof SecurityGuideApiSecurityGuide
3745
- */
3746
- readonly securityGuideId: any;
3747
- /**
3748
- * For internal use only
3749
- * @type {any}
3750
- * @memberof SecurityGuideApiSecurityGuide
3751
- */
3752
- readonly xRHIDENTITY?: any;
3753
- }
3754
3767
  /**
3755
3768
  * SecurityGuideApi - object-oriented interface
3756
3769
  * @export
@@ -3761,12 +3774,13 @@ export declare class SecurityGuideApi extends BaseAPI {
3761
3774
  /**
3762
3775
  * Returns a Security Guide
3763
3776
  * @summary Request a Security Guide
3764
- * @param {SecurityGuideApiSecurityGuideRequest} requestParameters Request parameters.
3777
+ * @param {any} securityGuideId
3778
+ * @param {any} [xRHIDENTITY] For internal use only
3765
3779
  * @param {*} [options] Override http request option.
3766
3780
  * @throws {RequiredError}
3767
3781
  * @memberof SecurityGuideApi
3768
3782
  */
3769
- securityGuide(requestParameters: SecurityGuideApiSecurityGuideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuide200Response, any>>;
3783
+ securityGuide(securityGuideId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuide200Response, any>>;
3770
3784
  }
3771
3785
  /**
3772
3786
  * SecurityGuideRuleTreeApi - axios parameter creator
@@ -3806,31 +3820,13 @@ export declare const SecurityGuideRuleTreeApiFactory: (configuration?: Configura
3806
3820
  /**
3807
3821
  * Returns the Rule Tree of a Security Guide
3808
3822
  * @summary Request the Rule Tree of a Security Guide
3809
- * @param {SecurityGuideRuleTreeApiSecurityGuideRuleTreeRequest} requestParameters Request parameters.
3823
+ * @param {any} securityGuideId
3824
+ * @param {any} [xRHIDENTITY] For internal use only
3810
3825
  * @param {*} [options] Override http request option.
3811
3826
  * @throws {RequiredError}
3812
3827
  */
3813
- securityGuideRuleTree(requestParameters: SecurityGuideRuleTreeApiSecurityGuideRuleTreeRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
3828
+ securityGuideRuleTree(securityGuideId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<any>;
3814
3829
  };
3815
- /**
3816
- * Request parameters for securityGuideRuleTree operation in SecurityGuideRuleTreeApi.
3817
- * @export
3818
- * @interface SecurityGuideRuleTreeApiSecurityGuideRuleTreeRequest
3819
- */
3820
- export interface SecurityGuideRuleTreeApiSecurityGuideRuleTreeRequest {
3821
- /**
3822
- *
3823
- * @type {any}
3824
- * @memberof SecurityGuideRuleTreeApiSecurityGuideRuleTree
3825
- */
3826
- readonly securityGuideId: any;
3827
- /**
3828
- * For internal use only
3829
- * @type {any}
3830
- * @memberof SecurityGuideRuleTreeApiSecurityGuideRuleTree
3831
- */
3832
- readonly xRHIDENTITY?: any;
3833
- }
3834
3830
  /**
3835
3831
  * SecurityGuideRuleTreeApi - object-oriented interface
3836
3832
  * @export
@@ -3841,12 +3837,13 @@ export declare class SecurityGuideRuleTreeApi extends BaseAPI {
3841
3837
  /**
3842
3838
  * Returns the Rule Tree of a Security Guide
3843
3839
  * @summary Request the Rule Tree of a Security Guide
3844
- * @param {SecurityGuideRuleTreeApiSecurityGuideRuleTreeRequest} requestParameters Request parameters.
3840
+ * @param {any} securityGuideId
3841
+ * @param {any} [xRHIDENTITY] For internal use only
3845
3842
  * @param {*} [options] Override http request option.
3846
3843
  * @throws {RequiredError}
3847
3844
  * @memberof SecurityGuideRuleTreeApi
3848
3845
  */
3849
- securityGuideRuleTree(requestParameters: SecurityGuideRuleTreeApiSecurityGuideRuleTreeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
3846
+ securityGuideRuleTree(securityGuideId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
3850
3847
  }
3851
3848
  /**
3852
3849
  * SecurityGuidesApi - axios parameter creator
@@ -3860,7 +3857,7 @@ export declare const SecurityGuidesApiAxiosParamCreator: (configuration?: Config
3860
3857
  * @param {any} [limit] Number of items to return per page
3861
3858
  * @param {any} [offset] Offset of first item of paginated response
3862
3859
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3863
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, and &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3860
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, &#x60;os_major_version&#x60;, &#x60;profile_ref_id&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3864
3861
  * @param {*} [options] Override http request option.
3865
3862
  * @throws {RequiredError}
3866
3863
  */
@@ -3878,7 +3875,7 @@ export declare const SecurityGuidesApiFp: (configuration?: Configuration) => {
3878
3875
  * @param {any} [limit] Number of items to return per page
3879
3876
  * @param {any} [offset] Offset of first item of paginated response
3880
3877
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3881
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, and &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3878
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, &#x60;os_major_version&#x60;, &#x60;profile_ref_id&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3882
3879
  * @param {*} [options] Override http request option.
3883
3880
  * @throws {RequiredError}
3884
3881
  */
@@ -3892,65 +3889,103 @@ export declare const SecurityGuidesApiFactory: (configuration?: Configuration, b
3892
3889
  /**
3893
3890
  * Lists Security Guides
3894
3891
  * @summary Request Security Guides
3895
- * @param {SecurityGuidesApiSecurityGuidesRequest} requestParameters Request parameters.
3892
+ * @param {any} [xRHIDENTITY] For internal use only
3893
+ * @param {any} [limit] Number of items to return per page
3894
+ * @param {any} [offset] Offset of first item of paginated response
3895
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3896
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, &#x60;os_major_version&#x60;, &#x60;profile_ref_id&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3897
+ * @param {*} [options] Override http request option.
3898
+ * @throws {RequiredError}
3899
+ */
3900
+ securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SecurityGuides200Response>;
3901
+ };
3902
+ /**
3903
+ * SecurityGuidesApi - object-oriented interface
3904
+ * @export
3905
+ * @class SecurityGuidesApi
3906
+ * @extends {BaseAPI}
3907
+ */
3908
+ export declare class SecurityGuidesApi extends BaseAPI {
3909
+ /**
3910
+ * Lists Security Guides
3911
+ * @summary Request Security Guides
3912
+ * @param {any} [xRHIDENTITY] For internal use only
3913
+ * @param {any} [limit] Number of items to return per page
3914
+ * @param {any} [offset] Offset of first item of paginated response
3915
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3916
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, &#x60;os_major_version&#x60;, &#x60;profile_ref_id&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3917
+ * @param {*} [options] Override http request option.
3918
+ * @throws {RequiredError}
3919
+ * @memberof SecurityGuidesApi
3920
+ */
3921
+ securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuides200Response, any>>;
3922
+ }
3923
+ /**
3924
+ * SecurityGuidesOSApi - axios parameter creator
3925
+ * @export
3926
+ */
3927
+ export declare const SecurityGuidesOSApiAxiosParamCreator: (configuration?: Configuration) => {
3928
+ /**
3929
+ * This feature is exclusively used by the frontend
3930
+ * @summary Request the list of available OS versions
3931
+ * @param {any} [xRHIDENTITY] For internal use only
3932
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3933
+ * @param {*} [options] Override http request option.
3934
+ * @deprecated
3935
+ * @throws {RequiredError}
3936
+ */
3937
+ securityGuidesOS: (xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3938
+ };
3939
+ /**
3940
+ * SecurityGuidesOSApi - functional programming interface
3941
+ * @export
3942
+ */
3943
+ export declare const SecurityGuidesOSApiFp: (configuration?: Configuration) => {
3944
+ /**
3945
+ * This feature is exclusively used by the frontend
3946
+ * @summary Request the list of available OS versions
3947
+ * @param {any} [xRHIDENTITY] For internal use only
3948
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3896
3949
  * @param {*} [options] Override http request option.
3950
+ * @deprecated
3897
3951
  * @throws {RequiredError}
3898
3952
  */
3899
- securityGuides(requestParameters?: SecurityGuidesApiSecurityGuidesRequest, options?: AxiosRequestConfig): AxiosPromise<SecurityGuides200Response>;
3953
+ securityGuidesOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
3900
3954
  };
3901
3955
  /**
3902
- * Request parameters for securityGuides operation in SecurityGuidesApi.
3956
+ * SecurityGuidesOSApi - factory interface
3903
3957
  * @export
3904
- * @interface SecurityGuidesApiSecurityGuidesRequest
3905
3958
  */
3906
- export interface SecurityGuidesApiSecurityGuidesRequest {
3907
- /**
3908
- * For internal use only
3909
- * @type {any}
3910
- * @memberof SecurityGuidesApiSecurityGuides
3911
- */
3912
- readonly xRHIDENTITY?: any;
3913
- /**
3914
- * Number of items to return per page
3915
- * @type {any}
3916
- * @memberof SecurityGuidesApiSecurityGuides
3917
- */
3918
- readonly limit?: any;
3919
- /**
3920
- * Offset of first item of paginated response
3921
- * @type {any}
3922
- * @memberof SecurityGuidesApiSecurityGuides
3923
- */
3924
- readonly offset?: any;
3925
- /**
3926
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3927
- * @type {any}
3928
- * @memberof SecurityGuidesApiSecurityGuides
3929
- */
3930
- readonly sortBy?: any;
3959
+ export declare const SecurityGuidesOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3931
3960
  /**
3932
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, and &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3933
- * @type {any}
3934
- * @memberof SecurityGuidesApiSecurityGuides
3961
+ * This feature is exclusively used by the frontend
3962
+ * @summary Request the list of available OS versions
3963
+ * @param {any} [xRHIDENTITY] For internal use only
3964
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3965
+ * @param {*} [options] Override http request option.
3966
+ * @deprecated
3967
+ * @throws {RequiredError}
3935
3968
  */
3936
- readonly filter?: any;
3937
- }
3969
+ securityGuidesOS(xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
3970
+ };
3938
3971
  /**
3939
- * SecurityGuidesApi - object-oriented interface
3972
+ * SecurityGuidesOSApi - object-oriented interface
3940
3973
  * @export
3941
- * @class SecurityGuidesApi
3974
+ * @class SecurityGuidesOSApi
3942
3975
  * @extends {BaseAPI}
3943
3976
  */
3944
- export declare class SecurityGuidesApi extends BaseAPI {
3977
+ export declare class SecurityGuidesOSApi extends BaseAPI {
3945
3978
  /**
3946
- * Lists Security Guides
3947
- * @summary Request Security Guides
3948
- * @param {SecurityGuidesApiSecurityGuidesRequest} requestParameters Request parameters.
3979
+ * This feature is exclusively used by the frontend
3980
+ * @summary Request the list of available OS versions
3981
+ * @param {any} [xRHIDENTITY] For internal use only
3982
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3949
3983
  * @param {*} [options] Override http request option.
3984
+ * @deprecated
3950
3985
  * @throws {RequiredError}
3951
- * @memberof SecurityGuidesApi
3986
+ * @memberof SecurityGuidesOSApi
3952
3987
  */
3953
- securityGuides(requestParameters?: SecurityGuidesApiSecurityGuidesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuides200Response, any>>;
3988
+ securityGuidesOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
3954
3989
  }
3955
3990
  /**
3956
3991
  * SupportedProfilesApi - axios parameter creator
@@ -3996,49 +4031,16 @@ export declare const SupportedProfilesApiFactory: (configuration?: Configuration
3996
4031
  /**
3997
4032
  * Lists Supported Profiles
3998
4033
  * @summary Request Supported Profiles
3999
- * @param {SupportedProfilesApiSupportedProfilesRequest} requestParameters Request parameters.
4034
+ * @param {any} [xRHIDENTITY] For internal use only
4035
+ * @param {any} [limit] Number of items to return per page
4036
+ * @param {any} [offset] Offset of first item of paginated response
4037
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4038
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Supported Profiles are searchable using attributes &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4000
4039
  * @param {*} [options] Override http request option.
4001
4040
  * @throws {RequiredError}
4002
4041
  */
4003
- supportedProfiles(requestParameters?: SupportedProfilesApiSupportedProfilesRequest, options?: AxiosRequestConfig): AxiosPromise<SupportedProfiles200Response>;
4042
+ supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SupportedProfiles200Response>;
4004
4043
  };
4005
- /**
4006
- * Request parameters for supportedProfiles operation in SupportedProfilesApi.
4007
- * @export
4008
- * @interface SupportedProfilesApiSupportedProfilesRequest
4009
- */
4010
- export interface SupportedProfilesApiSupportedProfilesRequest {
4011
- /**
4012
- * For internal use only
4013
- * @type {any}
4014
- * @memberof SupportedProfilesApiSupportedProfiles
4015
- */
4016
- readonly xRHIDENTITY?: any;
4017
- /**
4018
- * Number of items to return per page
4019
- * @type {any}
4020
- * @memberof SupportedProfilesApiSupportedProfiles
4021
- */
4022
- readonly limit?: any;
4023
- /**
4024
- * Offset of first item of paginated response
4025
- * @type {any}
4026
- * @memberof SupportedProfilesApiSupportedProfiles
4027
- */
4028
- readonly offset?: any;
4029
- /**
4030
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4031
- * @type {any}
4032
- * @memberof SupportedProfilesApiSupportedProfiles
4033
- */
4034
- readonly sortBy?: any;
4035
- /**
4036
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Supported Profiles are searchable using attributes &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4037
- * @type {any}
4038
- * @memberof SupportedProfilesApiSupportedProfiles
4039
- */
4040
- readonly filter?: any;
4041
- }
4042
4044
  /**
4043
4045
  * SupportedProfilesApi - object-oriented interface
4044
4046
  * @export
@@ -4049,12 +4051,16 @@ export declare class SupportedProfilesApi extends BaseAPI {
4049
4051
  /**
4050
4052
  * Lists Supported Profiles
4051
4053
  * @summary Request Supported Profiles
4052
- * @param {SupportedProfilesApiSupportedProfilesRequest} requestParameters Request parameters.
4054
+ * @param {any} [xRHIDENTITY] For internal use only
4055
+ * @param {any} [limit] Number of items to return per page
4056
+ * @param {any} [offset] Offset of first item of paginated response
4057
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4058
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Supported Profiles are searchable using attributes &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4053
4059
  * @param {*} [options] Override http request option.
4054
4060
  * @throws {RequiredError}
4055
4061
  * @memberof SupportedProfilesApi
4056
4062
  */
4057
- supportedProfiles(requestParameters?: SupportedProfilesApiSupportedProfilesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportedProfiles200Response, any>>;
4063
+ supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportedProfiles200Response, any>>;
4058
4064
  }
4059
4065
  /**
4060
4066
  * SystemApi - axios parameter creator
@@ -4094,47 +4100,109 @@ export declare const SystemApiFactory: (configuration?: Configuration, basePath?
4094
4100
  /**
4095
4101
  * Returns a System
4096
4102
  * @summary Request a System
4097
- * @param {SystemApiSystemRequest} requestParameters Request parameters.
4103
+ * @param {any} systemId
4104
+ * @param {any} [xRHIDENTITY] For internal use only
4105
+ * @param {*} [options] Override http request option.
4106
+ * @throws {RequiredError}
4107
+ */
4108
+ system(systemId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
4109
+ };
4110
+ /**
4111
+ * SystemApi - object-oriented interface
4112
+ * @export
4113
+ * @class SystemApi
4114
+ * @extends {BaseAPI}
4115
+ */
4116
+ export declare class SystemApi extends BaseAPI {
4117
+ /**
4118
+ * Returns a System
4119
+ * @summary Request a System
4120
+ * @param {any} systemId
4121
+ * @param {any} [xRHIDENTITY] For internal use only
4122
+ * @param {*} [options] Override http request option.
4123
+ * @throws {RequiredError}
4124
+ * @memberof SystemApi
4125
+ */
4126
+ system(systemId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
4127
+ }
4128
+ /**
4129
+ * SystemReportsApi - axios parameter creator
4130
+ * @export
4131
+ */
4132
+ export declare const SystemReportsApiAxiosParamCreator: (configuration?: Configuration) => {
4133
+ /**
4134
+ * Lists Reports
4135
+ * @summary Request Reports
4136
+ * @param {any} systemId
4137
+ * @param {any} [xRHIDENTITY] For internal use only
4138
+ * @param {any} [limit] Number of items to return per page
4139
+ * @param {any} [offset] Offset of first item of paginated response
4140
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4141
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4098
4142
  * @param {*} [options] Override http request option.
4099
4143
  * @throws {RequiredError}
4100
4144
  */
4101
- system(requestParameters: SystemApiSystemRequest, options?: AxiosRequestConfig): AxiosPromise<System200Response>;
4145
+ systemReports: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4102
4146
  };
4103
4147
  /**
4104
- * Request parameters for system operation in SystemApi.
4148
+ * SystemReportsApi - functional programming interface
4105
4149
  * @export
4106
- * @interface SystemApiSystemRequest
4107
4150
  */
4108
- export interface SystemApiSystemRequest {
4151
+ export declare const SystemReportsApiFp: (configuration?: Configuration) => {
4109
4152
  /**
4110
- *
4111
- * @type {any}
4112
- * @memberof SystemApiSystem
4153
+ * Lists Reports
4154
+ * @summary Request Reports
4155
+ * @param {any} systemId
4156
+ * @param {any} [xRHIDENTITY] For internal use only
4157
+ * @param {any} [limit] Number of items to return per page
4158
+ * @param {any} [offset] Offset of first item of paginated response
4159
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4160
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4161
+ * @param {*} [options] Override http request option.
4162
+ * @throws {RequiredError}
4113
4163
  */
4114
- readonly systemId: any;
4164
+ systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
4165
+ };
4166
+ /**
4167
+ * SystemReportsApi - factory interface
4168
+ * @export
4169
+ */
4170
+ export declare const SystemReportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4115
4171
  /**
4116
- * For internal use only
4117
- * @type {any}
4118
- * @memberof SystemApiSystem
4172
+ * Lists Reports
4173
+ * @summary Request Reports
4174
+ * @param {any} systemId
4175
+ * @param {any} [xRHIDENTITY] For internal use only
4176
+ * @param {any} [limit] Number of items to return per page
4177
+ * @param {any} [offset] Offset of first item of paginated response
4178
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4179
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4180
+ * @param {*} [options] Override http request option.
4181
+ * @throws {RequiredError}
4119
4182
  */
4120
- readonly xRHIDENTITY?: any;
4121
- }
4183
+ systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
4184
+ };
4122
4185
  /**
4123
- * SystemApi - object-oriented interface
4186
+ * SystemReportsApi - object-oriented interface
4124
4187
  * @export
4125
- * @class SystemApi
4188
+ * @class SystemReportsApi
4126
4189
  * @extends {BaseAPI}
4127
4190
  */
4128
- export declare class SystemApi extends BaseAPI {
4191
+ export declare class SystemReportsApi extends BaseAPI {
4129
4192
  /**
4130
- * Returns a System
4131
- * @summary Request a System
4132
- * @param {SystemApiSystemRequest} requestParameters Request parameters.
4193
+ * Lists Reports
4194
+ * @summary Request Reports
4195
+ * @param {any} systemId
4196
+ * @param {any} [xRHIDENTITY] For internal use only
4197
+ * @param {any} [limit] Number of items to return per page
4198
+ * @param {any} [offset] Offset of first item of paginated response
4199
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4200
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4133
4201
  * @param {*} [options] Override http request option.
4134
4202
  * @throws {RequiredError}
4135
- * @memberof SystemApi
4203
+ * @memberof SystemReportsApi
4136
4204
  */
4137
- system(requestParameters: SystemApiSystemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
4205
+ systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
4138
4206
  }
4139
4207
  /**
4140
4208
  * SystemsApi - axios parameter creator
@@ -4148,7 +4216,7 @@ export declare const SystemsApiAxiosParamCreator: (configuration?: Configuration
4148
4216
  * @param {any} [limit] Number of items to return per page
4149
4217
  * @param {any} [offset] Offset of first item of paginated response
4150
4218
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4151
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, and &#x60;never_reported&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4219
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4152
4220
  * @param {*} [options] Override http request option.
4153
4221
  * @throws {RequiredError}
4154
4222
  */
@@ -4166,7 +4234,7 @@ export declare const SystemsApiFp: (configuration?: Configuration) => {
4166
4234
  * @param {any} [limit] Number of items to return per page
4167
4235
  * @param {any} [offset] Offset of first item of paginated response
4168
4236
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4169
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, and &#x60;never_reported&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4237
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4170
4238
  * @param {*} [options] Override http request option.
4171
4239
  * @throws {RequiredError}
4172
4240
  */
@@ -4180,65 +4248,103 @@ export declare const SystemsApiFactory: (configuration?: Configuration, basePath
4180
4248
  /**
4181
4249
  * Lists Systems
4182
4250
  * @summary Request Systems
4183
- * @param {SystemsApiSystemsRequest} requestParameters Request parameters.
4251
+ * @param {any} [xRHIDENTITY] For internal use only
4252
+ * @param {any} [limit] Number of items to return per page
4253
+ * @param {any} [offset] Offset of first item of paginated response
4254
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4255
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4184
4256
  * @param {*} [options] Override http request option.
4185
4257
  * @throws {RequiredError}
4186
4258
  */
4187
- systems(requestParameters?: SystemsApiSystemsRequest, options?: AxiosRequestConfig): AxiosPromise<Systems200Response>;
4259
+ systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
4188
4260
  };
4189
4261
  /**
4190
- * Request parameters for systems operation in SystemsApi.
4262
+ * SystemsApi - object-oriented interface
4191
4263
  * @export
4192
- * @interface SystemsApiSystemsRequest
4264
+ * @class SystemsApi
4265
+ * @extends {BaseAPI}
4193
4266
  */
4194
- export interface SystemsApiSystemsRequest {
4195
- /**
4196
- * For internal use only
4197
- * @type {any}
4198
- * @memberof SystemsApiSystems
4199
- */
4200
- readonly xRHIDENTITY?: any;
4267
+ export declare class SystemsApi extends BaseAPI {
4201
4268
  /**
4202
- * Number of items to return per page
4203
- * @type {any}
4204
- * @memberof SystemsApiSystems
4269
+ * Lists Systems
4270
+ * @summary Request Systems
4271
+ * @param {any} [xRHIDENTITY] For internal use only
4272
+ * @param {any} [limit] Number of items to return per page
4273
+ * @param {any} [offset] Offset of first item of paginated response
4274
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4275
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4276
+ * @param {*} [options] Override http request option.
4277
+ * @throws {RequiredError}
4278
+ * @memberof SystemsApi
4205
4279
  */
4206
- readonly limit?: any;
4280
+ systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
4281
+ }
4282
+ /**
4283
+ * SystemsOSApi - axios parameter creator
4284
+ * @export
4285
+ */
4286
+ export declare const SystemsOSApiAxiosParamCreator: (configuration?: Configuration) => {
4207
4287
  /**
4208
- * Offset of first item of paginated response
4209
- * @type {any}
4210
- * @memberof SystemsApiSystems
4288
+ * This feature is exclusively used by the frontend
4289
+ * @summary Request the list of available OS versions
4290
+ * @param {any} [xRHIDENTITY] For internal use only
4291
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4292
+ * @param {*} [options] Override http request option.
4293
+ * @deprecated
4294
+ * @throws {RequiredError}
4211
4295
  */
4212
- readonly offset?: any;
4296
+ systemsOS: (xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4297
+ };
4298
+ /**
4299
+ * SystemsOSApi - functional programming interface
4300
+ * @export
4301
+ */
4302
+ export declare const SystemsOSApiFp: (configuration?: Configuration) => {
4213
4303
  /**
4214
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4215
- * @type {any}
4216
- * @memberof SystemsApiSystems
4304
+ * This feature is exclusively used by the frontend
4305
+ * @summary Request the list of available OS versions
4306
+ * @param {any} [xRHIDENTITY] For internal use only
4307
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4308
+ * @param {*} [options] Override http request option.
4309
+ * @deprecated
4310
+ * @throws {RequiredError}
4217
4311
  */
4218
- readonly sortBy?: any;
4312
+ systemsOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
4313
+ };
4314
+ /**
4315
+ * SystemsOSApi - factory interface
4316
+ * @export
4317
+ */
4318
+ export declare const SystemsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4219
4319
  /**
4220
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, and &#x60;never_reported&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4221
- * @type {any}
4222
- * @memberof SystemsApiSystems
4320
+ * This feature is exclusively used by the frontend
4321
+ * @summary Request the list of available OS versions
4322
+ * @param {any} [xRHIDENTITY] For internal use only
4323
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4324
+ * @param {*} [options] Override http request option.
4325
+ * @deprecated
4326
+ * @throws {RequiredError}
4223
4327
  */
4224
- readonly filter?: any;
4225
- }
4328
+ systemsOS(xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
4329
+ };
4226
4330
  /**
4227
- * SystemsApi - object-oriented interface
4331
+ * SystemsOSApi - object-oriented interface
4228
4332
  * @export
4229
- * @class SystemsApi
4333
+ * @class SystemsOSApi
4230
4334
  * @extends {BaseAPI}
4231
4335
  */
4232
- export declare class SystemsApi extends BaseAPI {
4336
+ export declare class SystemsOSApi extends BaseAPI {
4233
4337
  /**
4234
- * Lists Systems
4235
- * @summary Request Systems
4236
- * @param {SystemsApiSystemsRequest} requestParameters Request parameters.
4338
+ * This feature is exclusively used by the frontend
4339
+ * @summary Request the list of available OS versions
4340
+ * @param {any} [xRHIDENTITY] For internal use only
4341
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4237
4342
  * @param {*} [options] Override http request option.
4343
+ * @deprecated
4238
4344
  * @throws {RequiredError}
4239
- * @memberof SystemsApi
4345
+ * @memberof SystemsOSApi
4240
4346
  */
4241
- systems(requestParameters?: SystemsApiSystemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
4347
+ systemsOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
4242
4348
  }
4243
4349
  /**
4244
4350
  * SystemsPoliciesApi - axios parameter creator
@@ -4286,55 +4392,17 @@ export declare const SystemsPoliciesApiFactory: (configuration?: Configuration,
4286
4392
  /**
4287
4393
  * Lists Policies under a System
4288
4394
  * @summary Request Policies assigned to a System
4289
- * @param {SystemsPoliciesApiSystemsPoliciesRequest} requestParameters Request parameters.
4395
+ * @param {any} systemId
4396
+ * @param {any} [xRHIDENTITY] For internal use only
4397
+ * @param {any} [limit] Number of items to return per page
4398
+ * @param {any} [offset] Offset of first item of paginated response
4399
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4400
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4290
4401
  * @param {*} [options] Override http request option.
4291
4402
  * @throws {RequiredError}
4292
4403
  */
4293
- systemsPolicies(requestParameters: SystemsPoliciesApiSystemsPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<Policies200Response>;
4404
+ systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
4294
4405
  };
4295
- /**
4296
- * Request parameters for systemsPolicies operation in SystemsPoliciesApi.
4297
- * @export
4298
- * @interface SystemsPoliciesApiSystemsPoliciesRequest
4299
- */
4300
- export interface SystemsPoliciesApiSystemsPoliciesRequest {
4301
- /**
4302
- *
4303
- * @type {any}
4304
- * @memberof SystemsPoliciesApiSystemsPolicies
4305
- */
4306
- readonly systemId: any;
4307
- /**
4308
- * For internal use only
4309
- * @type {any}
4310
- * @memberof SystemsPoliciesApiSystemsPolicies
4311
- */
4312
- readonly xRHIDENTITY?: any;
4313
- /**
4314
- * Number of items to return per page
4315
- * @type {any}
4316
- * @memberof SystemsPoliciesApiSystemsPolicies
4317
- */
4318
- readonly limit?: any;
4319
- /**
4320
- * Offset of first item of paginated response
4321
- * @type {any}
4322
- * @memberof SystemsPoliciesApiSystemsPolicies
4323
- */
4324
- readonly offset?: any;
4325
- /**
4326
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4327
- * @type {any}
4328
- * @memberof SystemsPoliciesApiSystemsPolicies
4329
- */
4330
- readonly sortBy?: any;
4331
- /**
4332
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4333
- * @type {any}
4334
- * @memberof SystemsPoliciesApiSystemsPolicies
4335
- */
4336
- readonly filter?: any;
4337
- }
4338
4406
  /**
4339
4407
  * SystemsPoliciesApi - object-oriented interface
4340
4408
  * @export
@@ -4345,12 +4413,17 @@ export declare class SystemsPoliciesApi extends BaseAPI {
4345
4413
  /**
4346
4414
  * Lists Policies under a System
4347
4415
  * @summary Request Policies assigned to a System
4348
- * @param {SystemsPoliciesApiSystemsPoliciesRequest} requestParameters Request parameters.
4416
+ * @param {any} systemId
4417
+ * @param {any} [xRHIDENTITY] For internal use only
4418
+ * @param {any} [limit] Number of items to return per page
4419
+ * @param {any} [offset] Offset of first item of paginated response
4420
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4421
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4349
4422
  * @param {*} [options] Override http request option.
4350
4423
  * @throws {RequiredError}
4351
4424
  * @memberof SystemsPoliciesApi
4352
4425
  */
4353
- systemsPolicies(requestParameters: SystemsPoliciesApiSystemsPoliciesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
4426
+ systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
4354
4427
  }
4355
4428
  /**
4356
4429
  * TailoringApi - axios parameter creator
@@ -4387,42 +4460,19 @@ export declare const TailoringApiFp: (configuration?: Configuration) => {
4387
4460
  /**
4388
4461
  * TailoringApi - factory interface
4389
4462
  * @export
4390
- */
4391
- export declare const TailoringApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4392
- /**
4393
- * Returns a Tailoring
4394
- * @summary Request a Tailoring
4395
- * @param {TailoringApiTailoringRequest} requestParameters Request parameters.
4396
- * @param {*} [options] Override http request option.
4397
- * @throws {RequiredError}
4398
- */
4399
- tailoring(requestParameters: TailoringApiTailoringRequest, options?: AxiosRequestConfig): AxiosPromise<Tailoring200Response>;
4400
- };
4401
- /**
4402
- * Request parameters for tailoring operation in TailoringApi.
4403
- * @export
4404
- * @interface TailoringApiTailoringRequest
4405
- */
4406
- export interface TailoringApiTailoringRequest {
4407
- /**
4408
- *
4409
- * @type {any}
4410
- * @memberof TailoringApiTailoring
4411
- */
4412
- readonly policyId: any;
4413
- /**
4414
- * UUID or OS minor version number
4415
- * @type {any}
4416
- * @memberof TailoringApiTailoring
4417
- */
4418
- readonly tailoringId: any;
4463
+ */
4464
+ export declare const TailoringApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4419
4465
  /**
4420
- * For internal use only
4421
- * @type {any}
4422
- * @memberof TailoringApiTailoring
4466
+ * Returns a Tailoring
4467
+ * @summary Request a Tailoring
4468
+ * @param {any} policyId
4469
+ * @param {any} tailoringId UUID or OS minor version number
4470
+ * @param {any} [xRHIDENTITY] For internal use only
4471
+ * @param {*} [options] Override http request option.
4472
+ * @throws {RequiredError}
4423
4473
  */
4424
- readonly xRHIDENTITY?: any;
4425
- }
4474
+ tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Tailoring200Response>;
4475
+ };
4426
4476
  /**
4427
4477
  * TailoringApi - object-oriented interface
4428
4478
  * @export
@@ -4433,12 +4483,14 @@ export declare class TailoringApi extends BaseAPI {
4433
4483
  /**
4434
4484
  * Returns a Tailoring
4435
4485
  * @summary Request a Tailoring
4436
- * @param {TailoringApiTailoringRequest} requestParameters Request parameters.
4486
+ * @param {any} policyId
4487
+ * @param {any} tailoringId UUID or OS minor version number
4488
+ * @param {any} [xRHIDENTITY] For internal use only
4437
4489
  * @param {*} [options] Override http request option.
4438
4490
  * @throws {RequiredError}
4439
4491
  * @memberof TailoringApi
4440
4492
  */
4441
- tailoring(requestParameters: TailoringApiTailoringRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailoring200Response, any>>;
4493
+ tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailoring200Response, any>>;
4442
4494
  }
4443
4495
  /**
4444
4496
  * TailoringFileApi - axios parameter creator
@@ -4480,37 +4532,14 @@ export declare const TailoringFileApiFactory: (configuration?: Configuration, ba
4480
4532
  /**
4481
4533
  * Returns a Tailoring File
4482
4534
  * @summary Request a Tailoring file
4483
- * @param {TailoringFileApiTailoringFileRequest} requestParameters Request parameters.
4535
+ * @param {any} policyId
4536
+ * @param {any} tailoringId UUID or OS minor version number
4537
+ * @param {any} [xRHIDENTITY] For internal use only
4484
4538
  * @param {*} [options] Override http request option.
4485
4539
  * @throws {RequiredError}
4486
4540
  */
4487
- tailoringFile(requestParameters: TailoringFileApiTailoringFileRequest, options?: AxiosRequestConfig): AxiosPromise<TailoringFile>;
4541
+ tailoringFile(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<TailoringFile>;
4488
4542
  };
4489
- /**
4490
- * Request parameters for tailoringFile operation in TailoringFileApi.
4491
- * @export
4492
- * @interface TailoringFileApiTailoringFileRequest
4493
- */
4494
- export interface TailoringFileApiTailoringFileRequest {
4495
- /**
4496
- *
4497
- * @type {any}
4498
- * @memberof TailoringFileApiTailoringFile
4499
- */
4500
- readonly policyId: any;
4501
- /**
4502
- * UUID or OS minor version number
4503
- * @type {any}
4504
- * @memberof TailoringFileApiTailoringFile
4505
- */
4506
- readonly tailoringId: any;
4507
- /**
4508
- * For internal use only
4509
- * @type {any}
4510
- * @memberof TailoringFileApiTailoringFile
4511
- */
4512
- readonly xRHIDENTITY?: any;
4513
- }
4514
4543
  /**
4515
4544
  * TailoringFileApi - object-oriented interface
4516
4545
  * @export
@@ -4521,12 +4550,14 @@ export declare class TailoringFileApi extends BaseAPI {
4521
4550
  /**
4522
4551
  * Returns a Tailoring File
4523
4552
  * @summary Request a Tailoring file
4524
- * @param {TailoringFileApiTailoringFileRequest} requestParameters Request parameters.
4553
+ * @param {any} policyId
4554
+ * @param {any} tailoringId UUID or OS minor version number
4555
+ * @param {any} [xRHIDENTITY] For internal use only
4525
4556
  * @param {*} [options] Override http request option.
4526
4557
  * @throws {RequiredError}
4527
4558
  * @memberof TailoringFileApi
4528
4559
  */
4529
- tailoringFile(requestParameters: TailoringFileApiTailoringFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TailoringFile, any>>;
4560
+ tailoringFile(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TailoringFile, any>>;
4530
4561
  }
4531
4562
  /**
4532
4563
  * TailoringRulesApi - axios parameter creator
@@ -4542,7 +4573,7 @@ export declare const TailoringRulesApiAxiosParamCreator: (configuration?: Config
4542
4573
  * @param {any} [limit] Number of items to return per page
4543
4574
  * @param {any} [offset] Offset of first item of paginated response
4544
4575
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4545
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60; and &#x60;severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4576
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4546
4577
  * @param {*} [options] Override http request option.
4547
4578
  * @throws {RequiredError}
4548
4579
  */
@@ -4562,7 +4593,7 @@ export declare const TailoringRulesApiFp: (configuration?: Configuration) => {
4562
4593
  * @param {any} [limit] Number of items to return per page
4563
4594
  * @param {any} [offset] Offset of first item of paginated response
4564
4595
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4565
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60; and &#x60;severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4596
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4566
4597
  * @param {*} [options] Override http request option.
4567
4598
  * @throws {RequiredError}
4568
4599
  */
@@ -4576,61 +4607,18 @@ export declare const TailoringRulesApiFactory: (configuration?: Configuration, b
4576
4607
  /**
4577
4608
  * Lists Rules assigned to a Tailoring
4578
4609
  * @summary Request Rules assigned to a Tailoring
4579
- * @param {TailoringRulesApiTailoringRulesRequest} requestParameters Request parameters.
4610
+ * @param {any} policyId
4611
+ * @param {any} tailoringId
4612
+ * @param {any} [xRHIDENTITY] For internal use only
4613
+ * @param {any} [limit] Number of items to return per page
4614
+ * @param {any} [offset] Offset of first item of paginated response
4615
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4616
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4580
4617
  * @param {*} [options] Override http request option.
4581
4618
  * @throws {RequiredError}
4582
4619
  */
4583
- tailoringRules(requestParameters: TailoringRulesApiTailoringRulesRequest, options?: AxiosRequestConfig): AxiosPromise<Rules200Response>;
4620
+ tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
4584
4621
  };
4585
- /**
4586
- * Request parameters for tailoringRules operation in TailoringRulesApi.
4587
- * @export
4588
- * @interface TailoringRulesApiTailoringRulesRequest
4589
- */
4590
- export interface TailoringRulesApiTailoringRulesRequest {
4591
- /**
4592
- *
4593
- * @type {any}
4594
- * @memberof TailoringRulesApiTailoringRules
4595
- */
4596
- readonly policyId: any;
4597
- /**
4598
- *
4599
- * @type {any}
4600
- * @memberof TailoringRulesApiTailoringRules
4601
- */
4602
- readonly tailoringId: any;
4603
- /**
4604
- * For internal use only
4605
- * @type {any}
4606
- * @memberof TailoringRulesApiTailoringRules
4607
- */
4608
- readonly xRHIDENTITY?: any;
4609
- /**
4610
- * Number of items to return per page
4611
- * @type {any}
4612
- * @memberof TailoringRulesApiTailoringRules
4613
- */
4614
- readonly limit?: any;
4615
- /**
4616
- * Offset of first item of paginated response
4617
- * @type {any}
4618
- * @memberof TailoringRulesApiTailoringRules
4619
- */
4620
- readonly offset?: any;
4621
- /**
4622
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4623
- * @type {any}
4624
- * @memberof TailoringRulesApiTailoringRules
4625
- */
4626
- readonly sortBy?: any;
4627
- /**
4628
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60; and &#x60;severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4629
- * @type {any}
4630
- * @memberof TailoringRulesApiTailoringRules
4631
- */
4632
- readonly filter?: any;
4633
- }
4634
4622
  /**
4635
4623
  * TailoringRulesApi - object-oriented interface
4636
4624
  * @export
@@ -4641,12 +4629,18 @@ export declare class TailoringRulesApi extends BaseAPI {
4641
4629
  /**
4642
4630
  * Lists Rules assigned to a Tailoring
4643
4631
  * @summary Request Rules assigned to a Tailoring
4644
- * @param {TailoringRulesApiTailoringRulesRequest} requestParameters Request parameters.
4632
+ * @param {any} policyId
4633
+ * @param {any} tailoringId
4634
+ * @param {any} [xRHIDENTITY] For internal use only
4635
+ * @param {any} [limit] Number of items to return per page
4636
+ * @param {any} [offset] Offset of first item of paginated response
4637
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4638
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4645
4639
  * @param {*} [options] Override http request option.
4646
4640
  * @throws {RequiredError}
4647
4641
  * @memberof TailoringRulesApi
4648
4642
  */
4649
- tailoringRules(requestParameters: TailoringRulesApiTailoringRulesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
4643
+ tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
4650
4644
  }
4651
4645
  /**
4652
4646
  * TailoringsApi - axios parameter creator
@@ -4694,55 +4688,17 @@ export declare const TailoringsApiFactory: (configuration?: Configuration, baseP
4694
4688
  /**
4695
4689
  * Lists Tailorings
4696
4690
  * @summary Request Tailorings
4697
- * @param {TailoringsApiTailoringsRequest} requestParameters Request parameters.
4691
+ * @param {any} policyId
4692
+ * @param {any} [xRHIDENTITY] For internal use only
4693
+ * @param {any} [limit] Number of items to return per page
4694
+ * @param {any} [offset] Offset of first item of paginated response
4695
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4696
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Tailorings are searchable using attributes &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4698
4697
  * @param {*} [options] Override http request option.
4699
4698
  * @throws {RequiredError}
4700
4699
  */
4701
- tailorings(requestParameters: TailoringsApiTailoringsRequest, options?: AxiosRequestConfig): AxiosPromise<Tailorings200Response>;
4700
+ tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Tailorings200Response>;
4702
4701
  };
4703
- /**
4704
- * Request parameters for tailorings operation in TailoringsApi.
4705
- * @export
4706
- * @interface TailoringsApiTailoringsRequest
4707
- */
4708
- export interface TailoringsApiTailoringsRequest {
4709
- /**
4710
- *
4711
- * @type {any}
4712
- * @memberof TailoringsApiTailorings
4713
- */
4714
- readonly policyId: any;
4715
- /**
4716
- * For internal use only
4717
- * @type {any}
4718
- * @memberof TailoringsApiTailorings
4719
- */
4720
- readonly xRHIDENTITY?: any;
4721
- /**
4722
- * Number of items to return per page
4723
- * @type {any}
4724
- * @memberof TailoringsApiTailorings
4725
- */
4726
- readonly limit?: any;
4727
- /**
4728
- * Offset of first item of paginated response
4729
- * @type {any}
4730
- * @memberof TailoringsApiTailorings
4731
- */
4732
- readonly offset?: any;
4733
- /**
4734
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4735
- * @type {any}
4736
- * @memberof TailoringsApiTailorings
4737
- */
4738
- readonly sortBy?: any;
4739
- /**
4740
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Tailorings are searchable using attributes &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4741
- * @type {any}
4742
- * @memberof TailoringsApiTailorings
4743
- */
4744
- readonly filter?: any;
4745
- }
4746
4702
  /**
4747
4703
  * TailoringsApi - object-oriented interface
4748
4704
  * @export
@@ -4753,12 +4709,17 @@ export declare class TailoringsApi extends BaseAPI {
4753
4709
  /**
4754
4710
  * Lists Tailorings
4755
4711
  * @summary Request Tailorings
4756
- * @param {TailoringsApiTailoringsRequest} requestParameters Request parameters.
4712
+ * @param {any} policyId
4713
+ * @param {any} [xRHIDENTITY] For internal use only
4714
+ * @param {any} [limit] Number of items to return per page
4715
+ * @param {any} [offset] Offset of first item of paginated response
4716
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4717
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Tailorings are searchable using attributes &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4757
4718
  * @param {*} [options] Override http request option.
4758
4719
  * @throws {RequiredError}
4759
4720
  * @memberof TailoringsApi
4760
4721
  */
4761
- tailorings(requestParameters: TailoringsApiTailoringsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailorings200Response, any>>;
4722
+ tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailorings200Response, any>>;
4762
4723
  }
4763
4724
  /**
4764
4725
  * UnassignRuleApi - axios parameter creator
@@ -4770,7 +4731,7 @@ export declare const UnassignRuleApiAxiosParamCreator: (configuration?: Configur
4770
4731
  * @summary Unassign a Rule from a Tailoring
4771
4732
  * @param {any} policyId
4772
4733
  * @param {any} tailoringId
4773
- * @param {any} ruleId UUID or ref_id
4734
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
4774
4735
  * @param {any} [xRHIDENTITY] For internal use only
4775
4736
  * @param {*} [options] Override http request option.
4776
4737
  * @throws {RequiredError}
@@ -4787,7 +4748,7 @@ export declare const UnassignRuleApiFp: (configuration?: Configuration) => {
4787
4748
  * @summary Unassign a Rule from a Tailoring
4788
4749
  * @param {any} policyId
4789
4750
  * @param {any} tailoringId
4790
- * @param {any} ruleId UUID or ref_id
4751
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
4791
4752
  * @param {any} [xRHIDENTITY] For internal use only
4792
4753
  * @param {*} [options] Override http request option.
4793
4754
  * @throws {RequiredError}
@@ -4802,43 +4763,15 @@ export declare const UnassignRuleApiFactory: (configuration?: Configuration, bas
4802
4763
  /**
4803
4764
  * Unassigns a Rule from a Tailoring
4804
4765
  * @summary Unassign a Rule from a Tailoring
4805
- * @param {UnassignRuleApiUnassignRuleRequest} requestParameters Request parameters.
4766
+ * @param {any} policyId
4767
+ * @param {any} tailoringId
4768
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
4769
+ * @param {any} [xRHIDENTITY] For internal use only
4806
4770
  * @param {*} [options] Override http request option.
4807
4771
  * @throws {RequiredError}
4808
4772
  */
4809
- unassignRule(requestParameters: UnassignRuleApiUnassignRuleRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4773
+ unassignRule(policyId: any, tailoringId: any, ruleId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<void>;
4810
4774
  };
4811
- /**
4812
- * Request parameters for unassignRule operation in UnassignRuleApi.
4813
- * @export
4814
- * @interface UnassignRuleApiUnassignRuleRequest
4815
- */
4816
- export interface UnassignRuleApiUnassignRuleRequest {
4817
- /**
4818
- *
4819
- * @type {any}
4820
- * @memberof UnassignRuleApiUnassignRule
4821
- */
4822
- readonly policyId: any;
4823
- /**
4824
- *
4825
- * @type {any}
4826
- * @memberof UnassignRuleApiUnassignRule
4827
- */
4828
- readonly tailoringId: any;
4829
- /**
4830
- * UUID or ref_id
4831
- * @type {any}
4832
- * @memberof UnassignRuleApiUnassignRule
4833
- */
4834
- readonly ruleId: any;
4835
- /**
4836
- * For internal use only
4837
- * @type {any}
4838
- * @memberof UnassignRuleApiUnassignRule
4839
- */
4840
- readonly xRHIDENTITY?: any;
4841
- }
4842
4775
  /**
4843
4776
  * UnassignRuleApi - object-oriented interface
4844
4777
  * @export
@@ -4849,12 +4782,15 @@ export declare class UnassignRuleApi extends BaseAPI {
4849
4782
  /**
4850
4783
  * Unassigns a Rule from a Tailoring
4851
4784
  * @summary Unassign a Rule from a Tailoring
4852
- * @param {UnassignRuleApiUnassignRuleRequest} requestParameters Request parameters.
4785
+ * @param {any} policyId
4786
+ * @param {any} tailoringId
4787
+ * @param {any} ruleId UUID or a ref_id with \&#39;.\&#39; characters replaced with \&#39;-\&#39;
4788
+ * @param {any} [xRHIDENTITY] For internal use only
4853
4789
  * @param {*} [options] Override http request option.
4854
4790
  * @throws {RequiredError}
4855
4791
  * @memberof UnassignRuleApi
4856
4792
  */
4857
- unassignRule(requestParameters: UnassignRuleApiUnassignRuleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
4793
+ unassignRule(policyId: any, tailoringId: any, ruleId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
4858
4794
  }
4859
4795
  /**
4860
4796
  * UnassignSystemApi - axios parameter creator
@@ -4896,37 +4832,14 @@ export declare const UnassignSystemApiFactory: (configuration?: Configuration, b
4896
4832
  /**
4897
4833
  * Unassigns a System from a Policy
4898
4834
  * @summary Unassign a System from a Policy
4899
- * @param {UnassignSystemApiUnassignSystemRequest} requestParameters Request parameters.
4835
+ * @param {any} systemId
4836
+ * @param {any} policyId
4837
+ * @param {any} [xRHIDENTITY] For internal use only
4900
4838
  * @param {*} [options] Override http request option.
4901
4839
  * @throws {RequiredError}
4902
4840
  */
4903
- unassignSystem(requestParameters: UnassignSystemApiUnassignSystemRequest, options?: AxiosRequestConfig): AxiosPromise<System200Response>;
4841
+ unassignSystem(systemId: any, policyId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
4904
4842
  };
4905
- /**
4906
- * Request parameters for unassignSystem operation in UnassignSystemApi.
4907
- * @export
4908
- * @interface UnassignSystemApiUnassignSystemRequest
4909
- */
4910
- export interface UnassignSystemApiUnassignSystemRequest {
4911
- /**
4912
- *
4913
- * @type {any}
4914
- * @memberof UnassignSystemApiUnassignSystem
4915
- */
4916
- readonly systemId: any;
4917
- /**
4918
- *
4919
- * @type {any}
4920
- * @memberof UnassignSystemApiUnassignSystem
4921
- */
4922
- readonly policyId: any;
4923
- /**
4924
- * For internal use only
4925
- * @type {any}
4926
- * @memberof UnassignSystemApiUnassignSystem
4927
- */
4928
- readonly xRHIDENTITY?: any;
4929
- }
4930
4843
  /**
4931
4844
  * UnassignSystemApi - object-oriented interface
4932
4845
  * @export
@@ -4937,12 +4850,14 @@ export declare class UnassignSystemApi extends BaseAPI {
4937
4850
  /**
4938
4851
  * Unassigns a System from a Policy
4939
4852
  * @summary Unassign a System from a Policy
4940
- * @param {UnassignSystemApiUnassignSystemRequest} requestParameters Request parameters.
4853
+ * @param {any} systemId
4854
+ * @param {any} policyId
4855
+ * @param {any} [xRHIDENTITY] For internal use only
4941
4856
  * @param {*} [options] Override http request option.
4942
4857
  * @throws {RequiredError}
4943
4858
  * @memberof UnassignSystemApi
4944
4859
  */
4945
- unassignSystem(requestParameters: UnassignSystemApiUnassignSystemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
4860
+ unassignSystem(systemId: any, policyId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
4946
4861
  }
4947
4862
  /**
4948
4863
  * UpdatePolicyApi - axios parameter creator
@@ -4984,37 +4899,14 @@ export declare const UpdatePolicyApiFactory: (configuration?: Configuration, bas
4984
4899
  /**
4985
4900
  * Updates a Policy with the provided attributes
4986
4901
  * @summary Update a Policy
4987
- * @param {UpdatePolicyApiUpdatePolicyRequest} requestParameters Request parameters.
4902
+ * @param {any} policyId
4903
+ * @param {any} [xRHIDENTITY] For internal use only
4904
+ * @param {PolicyUpdate} [policyUpdate]
4988
4905
  * @param {*} [options] Override http request option.
4989
4906
  * @throws {RequiredError}
4990
4907
  */
4991
- updatePolicy(requestParameters: UpdatePolicyApiUpdatePolicyRequest, options?: AxiosRequestConfig): AxiosPromise<CreatePolicy201Response>;
4908
+ updatePolicy(policyId: any, xRHIDENTITY?: any, policyUpdate?: PolicyUpdate, options?: any): AxiosPromise<CreatePolicy201Response>;
4992
4909
  };
4993
- /**
4994
- * Request parameters for updatePolicy operation in UpdatePolicyApi.
4995
- * @export
4996
- * @interface UpdatePolicyApiUpdatePolicyRequest
4997
- */
4998
- export interface UpdatePolicyApiUpdatePolicyRequest {
4999
- /**
5000
- *
5001
- * @type {any}
5002
- * @memberof UpdatePolicyApiUpdatePolicy
5003
- */
5004
- readonly policyId: any;
5005
- /**
5006
- * For internal use only
5007
- * @type {any}
5008
- * @memberof UpdatePolicyApiUpdatePolicy
5009
- */
5010
- readonly xRHIDENTITY?: any;
5011
- /**
5012
- *
5013
- * @type {PolicyUpdate}
5014
- * @memberof UpdatePolicyApiUpdatePolicy
5015
- */
5016
- readonly policyUpdate?: PolicyUpdate;
5017
- }
5018
4910
  /**
5019
4911
  * UpdatePolicyApi - object-oriented interface
5020
4912
  * @export
@@ -5025,12 +4917,14 @@ export declare class UpdatePolicyApi extends BaseAPI {
5025
4917
  /**
5026
4918
  * Updates a Policy with the provided attributes
5027
4919
  * @summary Update a Policy
5028
- * @param {UpdatePolicyApiUpdatePolicyRequest} requestParameters Request parameters.
4920
+ * @param {any} policyId
4921
+ * @param {any} [xRHIDENTITY] For internal use only
4922
+ * @param {PolicyUpdate} [policyUpdate]
5029
4923
  * @param {*} [options] Override http request option.
5030
4924
  * @throws {RequiredError}
5031
4925
  * @memberof UpdatePolicyApi
5032
4926
  */
5033
- updatePolicy(requestParameters: UpdatePolicyApiUpdatePolicyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
4927
+ updatePolicy(policyId: any, xRHIDENTITY?: any, policyUpdate?: PolicyUpdate, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
5034
4928
  }
5035
4929
  /**
5036
4930
  * UpdateTailoringApi - axios parameter creator
@@ -5074,43 +4968,15 @@ export declare const UpdateTailoringApiFactory: (configuration?: Configuration,
5074
4968
  /**
5075
4969
  * Updates a Tailoring with the provided value_overrides
5076
4970
  * @summary Update a Tailoring
5077
- * @param {UpdateTailoringApiUpdateTailoringRequest} requestParameters Request parameters.
4971
+ * @param {any} policyId
4972
+ * @param {any} tailoringId UUID or OS minor version number
4973
+ * @param {any} [xRHIDENTITY] For internal use only
4974
+ * @param {Tailoring} [tailoring]
5078
4975
  * @param {*} [options] Override http request option.
5079
4976
  * @throws {RequiredError}
5080
4977
  */
5081
- updateTailoring(requestParameters: UpdateTailoringApiUpdateTailoringRequest, options?: AxiosRequestConfig): AxiosPromise<Tailoring200Response>;
4978
+ updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: any): AxiosPromise<Tailoring200Response>;
5082
4979
  };
5083
- /**
5084
- * Request parameters for updateTailoring operation in UpdateTailoringApi.
5085
- * @export
5086
- * @interface UpdateTailoringApiUpdateTailoringRequest
5087
- */
5088
- export interface UpdateTailoringApiUpdateTailoringRequest {
5089
- /**
5090
- *
5091
- * @type {any}
5092
- * @memberof UpdateTailoringApiUpdateTailoring
5093
- */
5094
- readonly policyId: any;
5095
- /**
5096
- * UUID or OS minor version number
5097
- * @type {any}
5098
- * @memberof UpdateTailoringApiUpdateTailoring
5099
- */
5100
- readonly tailoringId: any;
5101
- /**
5102
- * For internal use only
5103
- * @type {any}
5104
- * @memberof UpdateTailoringApiUpdateTailoring
5105
- */
5106
- readonly xRHIDENTITY?: any;
5107
- /**
5108
- *
5109
- * @type {Tailoring}
5110
- * @memberof UpdateTailoringApiUpdateTailoring
5111
- */
5112
- readonly tailoring?: Tailoring;
5113
- }
5114
4980
  /**
5115
4981
  * UpdateTailoringApi - object-oriented interface
5116
4982
  * @export
@@ -5121,12 +4987,15 @@ export declare class UpdateTailoringApi extends BaseAPI {
5121
4987
  /**
5122
4988
  * Updates a Tailoring with the provided value_overrides
5123
4989
  * @summary Update a Tailoring
5124
- * @param {UpdateTailoringApiUpdateTailoringRequest} requestParameters Request parameters.
4990
+ * @param {any} policyId
4991
+ * @param {any} tailoringId UUID or OS minor version number
4992
+ * @param {any} [xRHIDENTITY] For internal use only
4993
+ * @param {Tailoring} [tailoring]
5125
4994
  * @param {*} [options] Override http request option.
5126
4995
  * @throws {RequiredError}
5127
4996
  * @memberof UpdateTailoringApi
5128
4997
  */
5129
- updateTailoring(requestParameters: UpdateTailoringApiUpdateTailoringRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailoring200Response, any>>;
4998
+ updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailoring200Response, any>>;
5130
4999
  }
5131
5000
  /**
5132
5001
  * ValueDefinitionApi - axios parameter creator
@@ -5168,37 +5037,14 @@ export declare const ValueDefinitionApiFactory: (configuration?: Configuration,
5168
5037
  /**
5169
5038
  * Returns a Value Definition
5170
5039
  * @summary Request a Value Definition
5171
- * @param {ValueDefinitionApiValueDefinitionRequest} requestParameters Request parameters.
5040
+ * @param {any} securityGuideId
5041
+ * @param {any} valueDefinitionId
5042
+ * @param {any} [xRHIDENTITY] For internal use only
5172
5043
  * @param {*} [options] Override http request option.
5173
5044
  * @throws {RequiredError}
5174
5045
  */
5175
- valueDefinition(requestParameters: ValueDefinitionApiValueDefinitionRequest, options?: AxiosRequestConfig): AxiosPromise<ValueDefinition200Response>;
5046
+ valueDefinition(securityGuideId: any, valueDefinitionId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<ValueDefinition200Response>;
5176
5047
  };
5177
- /**
5178
- * Request parameters for valueDefinition operation in ValueDefinitionApi.
5179
- * @export
5180
- * @interface ValueDefinitionApiValueDefinitionRequest
5181
- */
5182
- export interface ValueDefinitionApiValueDefinitionRequest {
5183
- /**
5184
- *
5185
- * @type {any}
5186
- * @memberof ValueDefinitionApiValueDefinition
5187
- */
5188
- readonly securityGuideId: any;
5189
- /**
5190
- *
5191
- * @type {any}
5192
- * @memberof ValueDefinitionApiValueDefinition
5193
- */
5194
- readonly valueDefinitionId: any;
5195
- /**
5196
- * For internal use only
5197
- * @type {any}
5198
- * @memberof ValueDefinitionApiValueDefinition
5199
- */
5200
- readonly xRHIDENTITY?: any;
5201
- }
5202
5048
  /**
5203
5049
  * ValueDefinitionApi - object-oriented interface
5204
5050
  * @export
@@ -5209,12 +5055,14 @@ export declare class ValueDefinitionApi extends BaseAPI {
5209
5055
  /**
5210
5056
  * Returns a Value Definition
5211
5057
  * @summary Request a Value Definition
5212
- * @param {ValueDefinitionApiValueDefinitionRequest} requestParameters Request parameters.
5058
+ * @param {any} securityGuideId
5059
+ * @param {any} valueDefinitionId
5060
+ * @param {any} [xRHIDENTITY] For internal use only
5213
5061
  * @param {*} [options] Override http request option.
5214
5062
  * @throws {RequiredError}
5215
5063
  * @memberof ValueDefinitionApi
5216
5064
  */
5217
- valueDefinition(requestParameters: ValueDefinitionApiValueDefinitionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinition200Response, any>>;
5065
+ valueDefinition(securityGuideId: any, valueDefinitionId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinition200Response, any>>;
5218
5066
  }
5219
5067
  /**
5220
5068
  * ValueDefinitionsApi - axios parameter creator
@@ -5262,55 +5110,17 @@ export declare const ValueDefinitionsApiFactory: (configuration?: Configuration,
5262
5110
  /**
5263
5111
  * Lists Value Definitions
5264
5112
  * @summary Request Value Definitions
5265
- * @param {ValueDefinitionsApiValueDefinitionsRequest} requestParameters Request parameters.
5113
+ * @param {any} securityGuideId
5114
+ * @param {any} [xRHIDENTITY] For internal use only
5115
+ * @param {any} [limit] Number of items to return per page
5116
+ * @param {any} [offset] Offset of first item of paginated response
5117
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
5118
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Value Definitions are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
5266
5119
  * @param {*} [options] Override http request option.
5267
5120
  * @throws {RequiredError}
5268
5121
  */
5269
- valueDefinitions(requestParameters: ValueDefinitionsApiValueDefinitionsRequest, options?: AxiosRequestConfig): AxiosPromise<ValueDefinitions200Response>;
5122
+ valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ValueDefinitions200Response>;
5270
5123
  };
5271
- /**
5272
- * Request parameters for valueDefinitions operation in ValueDefinitionsApi.
5273
- * @export
5274
- * @interface ValueDefinitionsApiValueDefinitionsRequest
5275
- */
5276
- export interface ValueDefinitionsApiValueDefinitionsRequest {
5277
- /**
5278
- *
5279
- * @type {any}
5280
- * @memberof ValueDefinitionsApiValueDefinitions
5281
- */
5282
- readonly securityGuideId: any;
5283
- /**
5284
- * For internal use only
5285
- * @type {any}
5286
- * @memberof ValueDefinitionsApiValueDefinitions
5287
- */
5288
- readonly xRHIDENTITY?: any;
5289
- /**
5290
- * Number of items to return per page
5291
- * @type {any}
5292
- * @memberof ValueDefinitionsApiValueDefinitions
5293
- */
5294
- readonly limit?: any;
5295
- /**
5296
- * Offset of first item of paginated response
5297
- * @type {any}
5298
- * @memberof ValueDefinitionsApiValueDefinitions
5299
- */
5300
- readonly offset?: any;
5301
- /**
5302
- * Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
5303
- * @type {any}
5304
- * @memberof ValueDefinitionsApiValueDefinitions
5305
- */
5306
- readonly sortBy?: any;
5307
- /**
5308
- * Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Value Definitions are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
5309
- * @type {any}
5310
- * @memberof ValueDefinitionsApiValueDefinitions
5311
- */
5312
- readonly filter?: any;
5313
- }
5314
5124
  /**
5315
5125
  * ValueDefinitionsApi - object-oriented interface
5316
5126
  * @export
@@ -5321,10 +5131,15 @@ export declare class ValueDefinitionsApi extends BaseAPI {
5321
5131
  /**
5322
5132
  * Lists Value Definitions
5323
5133
  * @summary Request Value Definitions
5324
- * @param {ValueDefinitionsApiValueDefinitionsRequest} requestParameters Request parameters.
5134
+ * @param {any} securityGuideId
5135
+ * @param {any} [xRHIDENTITY] For internal use only
5136
+ * @param {any} [limit] Number of items to return per page
5137
+ * @param {any} [offset] Offset of first item of paginated response
5138
+ * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
5139
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Value Definitions are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
5325
5140
  * @param {*} [options] Override http request option.
5326
5141
  * @throws {RequiredError}
5327
5142
  * @memberof ValueDefinitionsApi
5328
5143
  */
5329
- valueDefinitions(requestParameters: ValueDefinitionsApiValueDefinitionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinitions200Response, any>>;
5144
+ valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinitions200Response, any>>;
5330
5145
  }