@redhat-cloud-services/compliance-client 0.2.0 → 0.2.1
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.
- package/CHANGELOG.md +2 -0
- package/dist/AssignRule/index.d.ts +1 -1
- package/dist/DeleteReport/index.d.ts +1 -1
- package/dist/DeleteReport/index.js +1 -1
- package/dist/PolicySystems/index.d.ts +1 -1
- package/dist/PolicySystemsOS/index.d.ts +33 -0
- package/dist/PolicySystemsOS/index.js +56 -0
- package/dist/PolicySystemsOS/index.js.map +1 -0
- package/dist/Profile/index.d.ts +1 -1
- package/dist/ProfileRule/index.d.ts +1 -1
- package/dist/ProfileRules/index.d.ts +1 -1
- package/dist/ReportRuleResults/index.d.ts +56 -0
- package/dist/ReportRuleResults/index.js +65 -0
- package/dist/ReportRuleResults/index.js.map +1 -0
- package/dist/ReportStats/index.d.ts +27 -0
- package/dist/ReportStats/index.js +53 -0
- package/dist/ReportStats/index.js.map +1 -0
- package/dist/ReportSystems/index.d.ts +1 -1
- package/dist/ReportSystemsOS/index.d.ts +33 -0
- package/dist/ReportSystemsOS/index.js +56 -0
- package/dist/ReportSystemsOS/index.js.map +1 -0
- package/dist/ReportTestResults/index.d.ts +1 -1
- package/dist/ReportTestResultsOS/index.d.ts +33 -0
- package/dist/ReportTestResultsOS/index.js +56 -0
- package/dist/ReportTestResultsOS/index.js.map +1 -0
- package/dist/Rule/index.d.ts +1 -1
- package/dist/Rules/index.d.ts +1 -1
- package/dist/SecurityGuides/index.d.ts +1 -1
- package/dist/SecurityGuidesOS/index.d.ts +27 -0
- package/dist/SecurityGuidesOS/index.js +55 -0
- package/dist/SecurityGuidesOS/index.js.map +1 -0
- package/dist/SystemReports/index.d.ts +50 -0
- package/dist/SystemReports/index.js +64 -0
- package/dist/SystemReports/index.js.map +1 -0
- package/dist/Systems/index.d.ts +1 -1
- package/dist/SystemsOS/index.d.ts +27 -0
- package/dist/SystemsOS/index.js +55 -0
- package/dist/SystemsOS/index.js.map +1 -0
- package/dist/TailoringRules/index.d.ts +1 -1
- package/dist/UnassignRule/index.d.ts +1 -1
- package/dist/api.d.ts +1183 -1472
- package/dist/api.js +2279 -896
- package/dist/api.js.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.js +25 -1
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +169 -5
- package/dist/types/index.js +15 -1
- package/dist/types/index.js.map +1 -1
- 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
|
-
*
|
|
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,12 @@ export interface Rule {
|
|
|
577
634
|
* @memberof Rule
|
|
578
635
|
*/
|
|
579
636
|
'severity'?: any;
|
|
637
|
+
/**
|
|
638
|
+
* Whether or not a remediation is available for the given rule.
|
|
639
|
+
* @type {any}
|
|
640
|
+
* @memberof Rule
|
|
641
|
+
*/
|
|
642
|
+
'remediation_available'?: any;
|
|
580
643
|
/**
|
|
581
644
|
* The idenfitier of the remediation associated to this rule, only available under profiles.
|
|
582
645
|
* @type {any}
|
|
@@ -718,6 +781,101 @@ export interface RuleGroups200Response {
|
|
|
718
781
|
*/
|
|
719
782
|
'data'?: any;
|
|
720
783
|
}
|
|
784
|
+
/**
|
|
785
|
+
*
|
|
786
|
+
* @export
|
|
787
|
+
* @interface RuleResult
|
|
788
|
+
*/
|
|
789
|
+
export interface RuleResult {
|
|
790
|
+
/**
|
|
791
|
+
*
|
|
792
|
+
* @type {any}
|
|
793
|
+
* @memberof RuleResult
|
|
794
|
+
*/
|
|
795
|
+
'id'?: any;
|
|
796
|
+
/**
|
|
797
|
+
*
|
|
798
|
+
* @type {any}
|
|
799
|
+
* @memberof RuleResult
|
|
800
|
+
*/
|
|
801
|
+
'type'?: RuleResultTypeEnum;
|
|
802
|
+
/**
|
|
803
|
+
* Status of the Rule Result
|
|
804
|
+
* @type {any}
|
|
805
|
+
* @memberof RuleResult
|
|
806
|
+
*/
|
|
807
|
+
'result'?: RuleResultResultEnum;
|
|
808
|
+
/**
|
|
809
|
+
* UUID of the affected Rule
|
|
810
|
+
* @type {any}
|
|
811
|
+
* @memberof RuleResult
|
|
812
|
+
*/
|
|
813
|
+
'rule_id'?: any;
|
|
814
|
+
/**
|
|
815
|
+
* UUID of the affected System
|
|
816
|
+
* @type {any}
|
|
817
|
+
* @memberof RuleResult
|
|
818
|
+
*/
|
|
819
|
+
'system_id'?: any;
|
|
820
|
+
/**
|
|
821
|
+
* Identificator of the Rule
|
|
822
|
+
* @type {any}
|
|
823
|
+
* @memberof RuleResult
|
|
824
|
+
*/
|
|
825
|
+
'ref_id'?: any;
|
|
826
|
+
/**
|
|
827
|
+
* Short title of the Rule
|
|
828
|
+
* @type {any}
|
|
829
|
+
* @memberof RuleResult
|
|
830
|
+
*/
|
|
831
|
+
'title'?: any;
|
|
832
|
+
/**
|
|
833
|
+
* Rationale of the Rule
|
|
834
|
+
* @type {any}
|
|
835
|
+
* @memberof RuleResult
|
|
836
|
+
*/
|
|
837
|
+
'rationale'?: any;
|
|
838
|
+
/**
|
|
839
|
+
* Longer description of the Rule
|
|
840
|
+
* @type {any}
|
|
841
|
+
* @memberof RuleResult
|
|
842
|
+
*/
|
|
843
|
+
'description'?: any;
|
|
844
|
+
/**
|
|
845
|
+
* The original sorting precedence of the Rule in the Security Guide
|
|
846
|
+
* @type {any}
|
|
847
|
+
* @memberof RuleResult
|
|
848
|
+
*/
|
|
849
|
+
'precedence'?: any;
|
|
850
|
+
/**
|
|
851
|
+
* The severity of the Rule
|
|
852
|
+
* @type {any}
|
|
853
|
+
* @memberof RuleResult
|
|
854
|
+
*/
|
|
855
|
+
'severity'?: any;
|
|
856
|
+
/**
|
|
857
|
+
* The idenfitier of the remediation associated to this rule, only available under profiles.
|
|
858
|
+
* @type {any}
|
|
859
|
+
* @memberof RuleResult
|
|
860
|
+
*/
|
|
861
|
+
'remediation_issue_id'?: any;
|
|
862
|
+
}
|
|
863
|
+
export declare const RuleResultTypeEnum: {
|
|
864
|
+
readonly Rule: "rule";
|
|
865
|
+
};
|
|
866
|
+
export type RuleResultTypeEnum = typeof RuleResultTypeEnum[keyof typeof RuleResultTypeEnum];
|
|
867
|
+
export declare const RuleResultResultEnum: {
|
|
868
|
+
readonly Pass: "pass";
|
|
869
|
+
readonly Fail: "fail";
|
|
870
|
+
readonly Error: "error";
|
|
871
|
+
readonly Unknown: "unknown";
|
|
872
|
+
readonly Fixed: "fixed";
|
|
873
|
+
readonly Notapplicable: "notapplicable";
|
|
874
|
+
readonly Notchecked: "notchecked";
|
|
875
|
+
readonly Informational: "informational";
|
|
876
|
+
readonly Notselected: "notselected";
|
|
877
|
+
};
|
|
878
|
+
export type RuleResultResultEnum = typeof RuleResultResultEnum[keyof typeof RuleResultResultEnum];
|
|
721
879
|
/**
|
|
722
880
|
*
|
|
723
881
|
* @export
|
|
@@ -1101,6 +1259,12 @@ export interface Tailoring {
|
|
|
1101
1259
|
* @memberof Tailoring
|
|
1102
1260
|
*/
|
|
1103
1261
|
'security_guide_id'?: any;
|
|
1262
|
+
/**
|
|
1263
|
+
* Version of the Security Guide that contains the parent Profile
|
|
1264
|
+
* @type {any}
|
|
1265
|
+
* @memberof Tailoring
|
|
1266
|
+
*/
|
|
1267
|
+
'security_guide_version'?: any;
|
|
1104
1268
|
/**
|
|
1105
1269
|
* Major version of the Operating System that the Tailoring covers
|
|
1106
1270
|
* @type {any}
|
|
@@ -1386,7 +1550,7 @@ export declare const AssignRuleApiAxiosParamCreator: (configuration?: Configurat
|
|
|
1386
1550
|
* @summary Assign a Rule to a Tailoring
|
|
1387
1551
|
* @param {any} policyId
|
|
1388
1552
|
* @param {any} tailoringId
|
|
1389
|
-
* @param {any} ruleId UUID or ref_id
|
|
1553
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
1390
1554
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
1391
1555
|
* @param {*} [options] Override http request option.
|
|
1392
1556
|
* @throws {RequiredError}
|
|
@@ -1403,7 +1567,7 @@ export declare const AssignRuleApiFp: (configuration?: Configuration) => {
|
|
|
1403
1567
|
* @summary Assign a Rule to a Tailoring
|
|
1404
1568
|
* @param {any} policyId
|
|
1405
1569
|
* @param {any} tailoringId
|
|
1406
|
-
* @param {any} ruleId UUID or ref_id
|
|
1570
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
1407
1571
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
1408
1572
|
* @param {*} [options] Override http request option.
|
|
1409
1573
|
* @throws {RequiredError}
|
|
@@ -1418,43 +1582,15 @@ export declare const AssignRuleApiFactory: (configuration?: Configuration, baseP
|
|
|
1418
1582
|
/**
|
|
1419
1583
|
* Assigns a Rule to a Tailoring
|
|
1420
1584
|
* @summary Assign a Rule to a Tailoring
|
|
1421
|
-
* @param {
|
|
1585
|
+
* @param {any} policyId
|
|
1586
|
+
* @param {any} tailoringId
|
|
1587
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
1588
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1422
1589
|
* @param {*} [options] Override http request option.
|
|
1423
1590
|
* @throws {RequiredError}
|
|
1424
1591
|
*/
|
|
1425
|
-
assignRule(
|
|
1592
|
+
assignRule(policyId: any, tailoringId: any, ruleId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<void>;
|
|
1426
1593
|
};
|
|
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
1594
|
/**
|
|
1459
1595
|
* AssignRuleApi - object-oriented interface
|
|
1460
1596
|
* @export
|
|
@@ -1465,12 +1601,15 @@ export declare class AssignRuleApi extends BaseAPI {
|
|
|
1465
1601
|
/**
|
|
1466
1602
|
* Assigns a Rule to a Tailoring
|
|
1467
1603
|
* @summary Assign a Rule to a Tailoring
|
|
1468
|
-
* @param {
|
|
1604
|
+
* @param {any} policyId
|
|
1605
|
+
* @param {any} tailoringId
|
|
1606
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
1607
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1469
1608
|
* @param {*} [options] Override http request option.
|
|
1470
1609
|
* @throws {RequiredError}
|
|
1471
1610
|
* @memberof AssignRuleApi
|
|
1472
1611
|
*/
|
|
1473
|
-
assignRule(
|
|
1612
|
+
assignRule(policyId: any, tailoringId: any, ruleId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1474
1613
|
}
|
|
1475
1614
|
/**
|
|
1476
1615
|
* AssignRulesApi - axios parameter creator
|
|
@@ -1516,44 +1655,16 @@ export declare const AssignRulesApiFactory: (configuration?: Configuration, base
|
|
|
1516
1655
|
/**
|
|
1517
1656
|
* This feature is exclusively used by the frontend
|
|
1518
1657
|
* @summary Bulk assign Rules to a Tailoring
|
|
1519
|
-
* @param {
|
|
1658
|
+
* @param {any} policyId
|
|
1659
|
+
* @param {any} tailoringId
|
|
1660
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1661
|
+
* @param {AssignRulesRequest} [assignRulesRequest]
|
|
1520
1662
|
* @param {*} [options] Override http request option.
|
|
1521
1663
|
* @deprecated
|
|
1522
1664
|
* @throws {RequiredError}
|
|
1523
1665
|
*/
|
|
1524
|
-
assignRules(
|
|
1666
|
+
assignRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, assignRulesRequest?: AssignRulesRequest, options?: any): AxiosPromise<Rules200Response>;
|
|
1525
1667
|
};
|
|
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
1668
|
/**
|
|
1558
1669
|
* AssignRulesApi - object-oriented interface
|
|
1559
1670
|
* @export
|
|
@@ -1564,13 +1675,16 @@ export declare class AssignRulesApi extends BaseAPI {
|
|
|
1564
1675
|
/**
|
|
1565
1676
|
* This feature is exclusively used by the frontend
|
|
1566
1677
|
* @summary Bulk assign Rules to a Tailoring
|
|
1567
|
-
* @param {
|
|
1678
|
+
* @param {any} policyId
|
|
1679
|
+
* @param {any} tailoringId
|
|
1680
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1681
|
+
* @param {AssignRulesRequest} [assignRulesRequest]
|
|
1568
1682
|
* @param {*} [options] Override http request option.
|
|
1569
1683
|
* @deprecated
|
|
1570
1684
|
* @throws {RequiredError}
|
|
1571
1685
|
* @memberof AssignRulesApi
|
|
1572
1686
|
*/
|
|
1573
|
-
assignRules(
|
|
1687
|
+
assignRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, assignRulesRequest?: AssignRulesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
1574
1688
|
}
|
|
1575
1689
|
/**
|
|
1576
1690
|
* AssignSystemApi - axios parameter creator
|
|
@@ -1612,37 +1726,14 @@ export declare const AssignSystemApiFactory: (configuration?: Configuration, bas
|
|
|
1612
1726
|
/**
|
|
1613
1727
|
* Assigns a System to a Policy
|
|
1614
1728
|
* @summary Assign a System to a Policy
|
|
1615
|
-
* @param {
|
|
1729
|
+
* @param {any} systemId
|
|
1730
|
+
* @param {any} policyId
|
|
1731
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1616
1732
|
* @param {*} [options] Override http request option.
|
|
1617
1733
|
* @throws {RequiredError}
|
|
1618
1734
|
*/
|
|
1619
|
-
assignSystem(
|
|
1735
|
+
assignSystem(systemId: any, policyId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
|
|
1620
1736
|
};
|
|
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
1737
|
/**
|
|
1647
1738
|
* AssignSystemApi - object-oriented interface
|
|
1648
1739
|
* @export
|
|
@@ -1653,12 +1744,14 @@ export declare class AssignSystemApi extends BaseAPI {
|
|
|
1653
1744
|
/**
|
|
1654
1745
|
* Assigns a System to a Policy
|
|
1655
1746
|
* @summary Assign a System to a Policy
|
|
1656
|
-
* @param {
|
|
1747
|
+
* @param {any} systemId
|
|
1748
|
+
* @param {any} policyId
|
|
1749
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1657
1750
|
* @param {*} [options] Override http request option.
|
|
1658
1751
|
* @throws {RequiredError}
|
|
1659
1752
|
* @memberof AssignSystemApi
|
|
1660
1753
|
*/
|
|
1661
|
-
assignSystem(
|
|
1754
|
+
assignSystem(systemId: any, policyId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
|
|
1662
1755
|
}
|
|
1663
1756
|
/**
|
|
1664
1757
|
* AssignSystemsApi - axios parameter creator
|
|
@@ -1702,38 +1795,15 @@ export declare const AssignSystemsApiFactory: (configuration?: Configuration, ba
|
|
|
1702
1795
|
/**
|
|
1703
1796
|
* This feature is exclusively used by the frontend
|
|
1704
1797
|
* @summary Bulk assign Systems to a Policy
|
|
1705
|
-
* @param {
|
|
1798
|
+
* @param {any} policyId
|
|
1799
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1800
|
+
* @param {AssignRulesRequest} [assignRulesRequest]
|
|
1706
1801
|
* @param {*} [options] Override http request option.
|
|
1707
1802
|
* @deprecated
|
|
1708
1803
|
* @throws {RequiredError}
|
|
1709
1804
|
*/
|
|
1710
|
-
assignSystems(
|
|
1805
|
+
assignSystems(policyId: any, xRHIDENTITY?: any, assignRulesRequest?: AssignRulesRequest, options?: any): AxiosPromise<Systems200Response>;
|
|
1711
1806
|
};
|
|
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
1807
|
/**
|
|
1738
1808
|
* AssignSystemsApi - object-oriented interface
|
|
1739
1809
|
* @export
|
|
@@ -1744,13 +1814,15 @@ export declare class AssignSystemsApi extends BaseAPI {
|
|
|
1744
1814
|
/**
|
|
1745
1815
|
* This feature is exclusively used by the frontend
|
|
1746
1816
|
* @summary Bulk assign Systems to a Policy
|
|
1747
|
-
* @param {
|
|
1817
|
+
* @param {any} policyId
|
|
1818
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1819
|
+
* @param {AssignRulesRequest} [assignRulesRequest]
|
|
1748
1820
|
* @param {*} [options] Override http request option.
|
|
1749
1821
|
* @deprecated
|
|
1750
1822
|
* @throws {RequiredError}
|
|
1751
1823
|
* @memberof AssignSystemsApi
|
|
1752
1824
|
*/
|
|
1753
|
-
assignSystems(
|
|
1825
|
+
assignSystems(policyId: any, xRHIDENTITY?: any, assignRulesRequest?: AssignRulesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
1754
1826
|
}
|
|
1755
1827
|
/**
|
|
1756
1828
|
* CreatePolicyApi - axios parameter creator
|
|
@@ -1790,31 +1862,13 @@ export declare const CreatePolicyApiFactory: (configuration?: Configuration, bas
|
|
|
1790
1862
|
/**
|
|
1791
1863
|
* Create a Policy with the provided attributes
|
|
1792
1864
|
* @summary Create a Policy
|
|
1793
|
-
* @param {
|
|
1865
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1866
|
+
* @param {Policy} [policy]
|
|
1794
1867
|
* @param {*} [options] Override http request option.
|
|
1795
1868
|
* @throws {RequiredError}
|
|
1796
1869
|
*/
|
|
1797
|
-
createPolicy(
|
|
1870
|
+
createPolicy(xRHIDENTITY?: any, policy?: Policy, options?: any): AxiosPromise<CreatePolicy201Response>;
|
|
1798
1871
|
};
|
|
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
1872
|
/**
|
|
1819
1873
|
* CreatePolicyApi - object-oriented interface
|
|
1820
1874
|
* @export
|
|
@@ -1825,12 +1879,13 @@ export declare class CreatePolicyApi extends BaseAPI {
|
|
|
1825
1879
|
/**
|
|
1826
1880
|
* Create a Policy with the provided attributes
|
|
1827
1881
|
* @summary Create a Policy
|
|
1828
|
-
* @param {
|
|
1882
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1883
|
+
* @param {Policy} [policy]
|
|
1829
1884
|
* @param {*} [options] Override http request option.
|
|
1830
1885
|
* @throws {RequiredError}
|
|
1831
1886
|
* @memberof CreatePolicyApi
|
|
1832
1887
|
*/
|
|
1833
|
-
createPolicy(
|
|
1888
|
+
createPolicy(xRHIDENTITY?: any, policy?: Policy, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
|
|
1834
1889
|
}
|
|
1835
1890
|
/**
|
|
1836
1891
|
* DeletePolicyApi - axios parameter creator
|
|
@@ -1870,31 +1925,13 @@ export declare const DeletePolicyApiFactory: (configuration?: Configuration, bas
|
|
|
1870
1925
|
/**
|
|
1871
1926
|
* Deletes a Policy
|
|
1872
1927
|
* @summary Delete a Policy
|
|
1873
|
-
* @param {
|
|
1928
|
+
* @param {any} policyId
|
|
1929
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1874
1930
|
* @param {*} [options] Override http request option.
|
|
1875
1931
|
* @throws {RequiredError}
|
|
1876
1932
|
*/
|
|
1877
|
-
deletePolicy(
|
|
1933
|
+
deletePolicy(policyId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<CreatePolicy201Response>;
|
|
1878
1934
|
};
|
|
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
1935
|
/**
|
|
1899
1936
|
* DeletePolicyApi - object-oriented interface
|
|
1900
1937
|
* @export
|
|
@@ -1905,12 +1942,13 @@ export declare class DeletePolicyApi extends BaseAPI {
|
|
|
1905
1942
|
/**
|
|
1906
1943
|
* Deletes a Policy
|
|
1907
1944
|
* @summary Delete a Policy
|
|
1908
|
-
* @param {
|
|
1945
|
+
* @param {any} policyId
|
|
1946
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1909
1947
|
* @param {*} [options] Override http request option.
|
|
1910
1948
|
* @throws {RequiredError}
|
|
1911
1949
|
* @memberof DeletePolicyApi
|
|
1912
1950
|
*/
|
|
1913
|
-
deletePolicy(
|
|
1951
|
+
deletePolicy(policyId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
|
|
1914
1952
|
}
|
|
1915
1953
|
/**
|
|
1916
1954
|
* DeleteReportApi - axios parameter creator
|
|
@@ -1918,7 +1956,7 @@ export declare class DeletePolicyApi extends BaseAPI {
|
|
|
1918
1956
|
*/
|
|
1919
1957
|
export declare const DeleteReportApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1920
1958
|
/**
|
|
1921
|
-
* Deletes
|
|
1959
|
+
* Deletes Report\'s test results
|
|
1922
1960
|
* @summary Delete a Report results
|
|
1923
1961
|
* @param {any} reportId
|
|
1924
1962
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
@@ -1933,7 +1971,7 @@ export declare const DeleteReportApiAxiosParamCreator: (configuration?: Configur
|
|
|
1933
1971
|
*/
|
|
1934
1972
|
export declare const DeleteReportApiFp: (configuration?: Configuration) => {
|
|
1935
1973
|
/**
|
|
1936
|
-
* Deletes
|
|
1974
|
+
* Deletes Report\'s test results
|
|
1937
1975
|
* @summary Delete a Report results
|
|
1938
1976
|
* @param {any} reportId
|
|
1939
1977
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
@@ -1948,33 +1986,15 @@ export declare const DeleteReportApiFp: (configuration?: Configuration) => {
|
|
|
1948
1986
|
*/
|
|
1949
1987
|
export declare const DeleteReportApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1950
1988
|
/**
|
|
1951
|
-
* Deletes
|
|
1989
|
+
* Deletes Report\'s test results
|
|
1952
1990
|
* @summary Delete a Report results
|
|
1953
|
-
* @param {
|
|
1991
|
+
* @param {any} reportId
|
|
1992
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1954
1993
|
* @param {*} [options] Override http request option.
|
|
1955
1994
|
* @throws {RequiredError}
|
|
1956
1995
|
*/
|
|
1957
|
-
deleteReport(
|
|
1996
|
+
deleteReport(reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<void>;
|
|
1958
1997
|
};
|
|
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
1998
|
/**
|
|
1979
1999
|
* DeleteReportApi - object-oriented interface
|
|
1980
2000
|
* @export
|
|
@@ -1983,14 +2003,15 @@ export interface DeleteReportApiDeleteReportRequest {
|
|
|
1983
2003
|
*/
|
|
1984
2004
|
export declare class DeleteReportApi extends BaseAPI {
|
|
1985
2005
|
/**
|
|
1986
|
-
* Deletes
|
|
2006
|
+
* Deletes Report\'s test results
|
|
1987
2007
|
* @summary Delete a Report results
|
|
1988
|
-
* @param {
|
|
2008
|
+
* @param {any} reportId
|
|
2009
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
1989
2010
|
* @param {*} [options] Override http request option.
|
|
1990
2011
|
* @throws {RequiredError}
|
|
1991
2012
|
* @memberof DeleteReportApi
|
|
1992
2013
|
*/
|
|
1993
|
-
deleteReport(
|
|
2014
|
+
deleteReport(reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1994
2015
|
}
|
|
1995
2016
|
/**
|
|
1996
2017
|
* PoliciesApi - axios parameter creator
|
|
@@ -2036,65 +2057,36 @@ export declare const PoliciesApiFactory: (configuration?: Configuration, basePat
|
|
|
2036
2057
|
/**
|
|
2037
2058
|
* Lists Policies
|
|
2038
2059
|
* @summary Request Policies
|
|
2039
|
-
* @param {
|
|
2060
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2061
|
+
* @param {any} [limit] Number of items to return per page
|
|
2062
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2063
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2064
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Policies are searchable using attributes `title`, `os_major_version`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2040
2065
|
* @param {*} [options] Override http request option.
|
|
2041
2066
|
* @throws {RequiredError}
|
|
2042
2067
|
*/
|
|
2043
|
-
policies(
|
|
2068
|
+
policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
|
|
2044
2069
|
};
|
|
2045
2070
|
/**
|
|
2046
|
-
*
|
|
2071
|
+
* PoliciesApi - object-oriented interface
|
|
2047
2072
|
* @export
|
|
2048
|
-
* @
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Policies are searchable using attributes `title`, `os_major_version`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2077
|
-
* @type {any}
|
|
2078
|
-
* @memberof PoliciesApiPolicies
|
|
2079
|
-
*/
|
|
2080
|
-
readonly filter?: any;
|
|
2081
|
-
}
|
|
2082
|
-
/**
|
|
2083
|
-
* PoliciesApi - object-oriented interface
|
|
2084
|
-
* @export
|
|
2085
|
-
* @class PoliciesApi
|
|
2086
|
-
* @extends {BaseAPI}
|
|
2073
|
+
* @class PoliciesApi
|
|
2074
|
+
* @extends {BaseAPI}
|
|
2087
2075
|
*/
|
|
2088
2076
|
export declare class PoliciesApi extends BaseAPI {
|
|
2089
2077
|
/**
|
|
2090
2078
|
* Lists Policies
|
|
2091
2079
|
* @summary Request Policies
|
|
2092
|
-
* @param {
|
|
2080
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2081
|
+
* @param {any} [limit] Number of items to return per page
|
|
2082
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2083
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2084
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Policies are searchable using attributes `title`, `os_major_version`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2093
2085
|
* @param {*} [options] Override http request option.
|
|
2094
2086
|
* @throws {RequiredError}
|
|
2095
2087
|
* @memberof PoliciesApi
|
|
2096
2088
|
*/
|
|
2097
|
-
policies(
|
|
2089
|
+
policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
|
|
2098
2090
|
}
|
|
2099
2091
|
/**
|
|
2100
2092
|
* PolicyApi - axios parameter creator
|
|
@@ -2134,31 +2126,13 @@ export declare const PolicyApiFactory: (configuration?: Configuration, basePath?
|
|
|
2134
2126
|
/**
|
|
2135
2127
|
* Returns a Policy
|
|
2136
2128
|
* @summary Request a Policy
|
|
2137
|
-
* @param {
|
|
2129
|
+
* @param {any} policyId
|
|
2130
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2138
2131
|
* @param {*} [options] Override http request option.
|
|
2139
2132
|
* @throws {RequiredError}
|
|
2140
2133
|
*/
|
|
2141
|
-
policy(
|
|
2134
|
+
policy(policyId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<CreatePolicy201Response>;
|
|
2142
2135
|
};
|
|
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
2136
|
/**
|
|
2163
2137
|
* PolicyApi - object-oriented interface
|
|
2164
2138
|
* @export
|
|
@@ -2169,12 +2143,13 @@ export declare class PolicyApi extends BaseAPI {
|
|
|
2169
2143
|
/**
|
|
2170
2144
|
* Returns a Policy
|
|
2171
2145
|
* @summary Request a Policy
|
|
2172
|
-
* @param {
|
|
2146
|
+
* @param {any} policyId
|
|
2147
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2173
2148
|
* @param {*} [options] Override http request option.
|
|
2174
2149
|
* @throws {RequiredError}
|
|
2175
2150
|
* @memberof PolicyApi
|
|
2176
2151
|
*/
|
|
2177
|
-
policy(
|
|
2152
|
+
policy(policyId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
|
|
2178
2153
|
}
|
|
2179
2154
|
/**
|
|
2180
2155
|
* PolicySystemsApi - axios parameter creator
|
|
@@ -2189,7 +2164,7 @@ export declare const PolicySystemsApiAxiosParamCreator: (configuration?: Configu
|
|
|
2189
2164
|
* @param {any} [limit] Number of items to return per page
|
|
2190
2165
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2191
2166
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2192
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, and `
|
|
2167
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2193
2168
|
* @param {*} [options] Override http request option.
|
|
2194
2169
|
* @throws {RequiredError}
|
|
2195
2170
|
*/
|
|
@@ -2208,7 +2183,7 @@ export declare const PolicySystemsApiFp: (configuration?: Configuration) => {
|
|
|
2208
2183
|
* @param {any} [limit] Number of items to return per page
|
|
2209
2184
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2210
2185
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2211
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, and `
|
|
2186
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2212
2187
|
* @param {*} [options] Override http request option.
|
|
2213
2188
|
* @throws {RequiredError}
|
|
2214
2189
|
*/
|
|
@@ -2222,71 +2197,109 @@ export declare const PolicySystemsApiFactory: (configuration?: Configuration, ba
|
|
|
2222
2197
|
/**
|
|
2223
2198
|
* Lists Systems assigned to a Policy
|
|
2224
2199
|
* @summary Request Systems assigned to a Policy
|
|
2225
|
-
* @param {
|
|
2200
|
+
* @param {any} policyId
|
|
2201
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2202
|
+
* @param {any} [limit] Number of items to return per page
|
|
2203
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2204
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2205
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2226
2206
|
* @param {*} [options] Override http request option.
|
|
2227
2207
|
* @throws {RequiredError}
|
|
2228
2208
|
*/
|
|
2229
|
-
policySystems(
|
|
2209
|
+
policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
|
|
2230
2210
|
};
|
|
2231
2211
|
/**
|
|
2232
|
-
*
|
|
2212
|
+
* PolicySystemsApi - object-oriented interface
|
|
2233
2213
|
* @export
|
|
2234
|
-
* @
|
|
2214
|
+
* @class PolicySystemsApi
|
|
2215
|
+
* @extends {BaseAPI}
|
|
2235
2216
|
*/
|
|
2236
|
-
export
|
|
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;
|
|
2217
|
+
export declare class PolicySystemsApi extends BaseAPI {
|
|
2249
2218
|
/**
|
|
2250
|
-
*
|
|
2251
|
-
* @
|
|
2252
|
-
* @
|
|
2219
|
+
* Lists Systems assigned to a Policy
|
|
2220
|
+
* @summary Request Systems assigned to a Policy
|
|
2221
|
+
* @param {any} policyId
|
|
2222
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2223
|
+
* @param {any} [limit] Number of items to return per page
|
|
2224
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2225
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2226
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2227
|
+
* @param {*} [options] Override http request option.
|
|
2228
|
+
* @throws {RequiredError}
|
|
2229
|
+
* @memberof PolicySystemsApi
|
|
2253
2230
|
*/
|
|
2254
|
-
|
|
2231
|
+
policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
2232
|
+
}
|
|
2233
|
+
/**
|
|
2234
|
+
* PolicySystemsOSApi - axios parameter creator
|
|
2235
|
+
* @export
|
|
2236
|
+
*/
|
|
2237
|
+
export declare const PolicySystemsOSApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2255
2238
|
/**
|
|
2256
|
-
*
|
|
2257
|
-
* @
|
|
2258
|
-
* @
|
|
2239
|
+
* This feature is exclusively used by the frontend
|
|
2240
|
+
* @summary Request the list of available OS versions
|
|
2241
|
+
* @param {any} policyId
|
|
2242
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2243
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2244
|
+
* @param {*} [options] Override http request option.
|
|
2245
|
+
* @deprecated
|
|
2246
|
+
* @throws {RequiredError}
|
|
2259
2247
|
*/
|
|
2260
|
-
|
|
2248
|
+
policySystemsOS: (policyId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2249
|
+
};
|
|
2250
|
+
/**
|
|
2251
|
+
* PolicySystemsOSApi - functional programming interface
|
|
2252
|
+
* @export
|
|
2253
|
+
*/
|
|
2254
|
+
export declare const PolicySystemsOSApiFp: (configuration?: Configuration) => {
|
|
2261
2255
|
/**
|
|
2262
|
-
*
|
|
2263
|
-
* @
|
|
2264
|
-
* @
|
|
2256
|
+
* This feature is exclusively used by the frontend
|
|
2257
|
+
* @summary Request the list of available OS versions
|
|
2258
|
+
* @param {any} policyId
|
|
2259
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2260
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2261
|
+
* @param {*} [options] Override http request option.
|
|
2262
|
+
* @deprecated
|
|
2263
|
+
* @throws {RequiredError}
|
|
2265
2264
|
*/
|
|
2266
|
-
|
|
2265
|
+
policySystemsOS(policyId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
2266
|
+
};
|
|
2267
|
+
/**
|
|
2268
|
+
* PolicySystemsOSApi - factory interface
|
|
2269
|
+
* @export
|
|
2270
|
+
*/
|
|
2271
|
+
export declare const PolicySystemsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2267
2272
|
/**
|
|
2268
|
-
*
|
|
2269
|
-
* @
|
|
2270
|
-
* @
|
|
2273
|
+
* This feature is exclusively used by the frontend
|
|
2274
|
+
* @summary Request the list of available OS versions
|
|
2275
|
+
* @param {any} policyId
|
|
2276
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2277
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2278
|
+
* @param {*} [options] Override http request option.
|
|
2279
|
+
* @deprecated
|
|
2280
|
+
* @throws {RequiredError}
|
|
2271
2281
|
*/
|
|
2272
|
-
|
|
2273
|
-
}
|
|
2282
|
+
policySystemsOS(policyId: any, xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
|
|
2283
|
+
};
|
|
2274
2284
|
/**
|
|
2275
|
-
*
|
|
2285
|
+
* PolicySystemsOSApi - object-oriented interface
|
|
2276
2286
|
* @export
|
|
2277
|
-
* @class
|
|
2287
|
+
* @class PolicySystemsOSApi
|
|
2278
2288
|
* @extends {BaseAPI}
|
|
2279
2289
|
*/
|
|
2280
|
-
export declare class
|
|
2290
|
+
export declare class PolicySystemsOSApi extends BaseAPI {
|
|
2281
2291
|
/**
|
|
2282
|
-
*
|
|
2283
|
-
* @summary Request
|
|
2284
|
-
* @param {
|
|
2292
|
+
* This feature is exclusively used by the frontend
|
|
2293
|
+
* @summary Request the list of available OS versions
|
|
2294
|
+
* @param {any} policyId
|
|
2295
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2296
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2285
2297
|
* @param {*} [options] Override http request option.
|
|
2298
|
+
* @deprecated
|
|
2286
2299
|
* @throws {RequiredError}
|
|
2287
|
-
* @memberof
|
|
2300
|
+
* @memberof PolicySystemsOSApi
|
|
2288
2301
|
*/
|
|
2289
|
-
|
|
2302
|
+
policySystemsOS(policyId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
2290
2303
|
}
|
|
2291
2304
|
/**
|
|
2292
2305
|
* ProfileApi - axios parameter creator
|
|
@@ -2297,7 +2310,7 @@ export declare const ProfileApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2297
2310
|
* Returns a Profile
|
|
2298
2311
|
* @summary Request a Profile
|
|
2299
2312
|
* @param {any} securityGuideId
|
|
2300
|
-
* @param {any} profileId UUID or ref_id
|
|
2313
|
+
* @param {any} profileId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
2301
2314
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2302
2315
|
* @param {*} [options] Override http request option.
|
|
2303
2316
|
* @throws {RequiredError}
|
|
@@ -2313,7 +2326,7 @@ export declare const ProfileApiFp: (configuration?: Configuration) => {
|
|
|
2313
2326
|
* Returns a Profile
|
|
2314
2327
|
* @summary Request a Profile
|
|
2315
2328
|
* @param {any} securityGuideId
|
|
2316
|
-
* @param {any} profileId UUID or ref_id
|
|
2329
|
+
* @param {any} profileId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
2317
2330
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2318
2331
|
* @param {*} [options] Override http request option.
|
|
2319
2332
|
* @throws {RequiredError}
|
|
@@ -2328,37 +2341,14 @@ export declare const ProfileApiFactory: (configuration?: Configuration, basePath
|
|
|
2328
2341
|
/**
|
|
2329
2342
|
* Returns a Profile
|
|
2330
2343
|
* @summary Request a Profile
|
|
2331
|
-
* @param {
|
|
2344
|
+
* @param {any} securityGuideId
|
|
2345
|
+
* @param {any} profileId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
2346
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2332
2347
|
* @param {*} [options] Override http request option.
|
|
2333
2348
|
* @throws {RequiredError}
|
|
2334
2349
|
*/
|
|
2335
|
-
profile(
|
|
2350
|
+
profile(securityGuideId: any, profileId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Profile200Response>;
|
|
2336
2351
|
};
|
|
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
2352
|
/**
|
|
2363
2353
|
* ProfileApi - object-oriented interface
|
|
2364
2354
|
* @export
|
|
@@ -2369,12 +2359,14 @@ export declare class ProfileApi extends BaseAPI {
|
|
|
2369
2359
|
/**
|
|
2370
2360
|
* Returns a Profile
|
|
2371
2361
|
* @summary Request a Profile
|
|
2372
|
-
* @param {
|
|
2362
|
+
* @param {any} securityGuideId
|
|
2363
|
+
* @param {any} profileId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
2364
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2373
2365
|
* @param {*} [options] Override http request option.
|
|
2374
2366
|
* @throws {RequiredError}
|
|
2375
2367
|
* @memberof ProfileApi
|
|
2376
2368
|
*/
|
|
2377
|
-
profile(
|
|
2369
|
+
profile(securityGuideId: any, profileId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profile200Response, any>>;
|
|
2378
2370
|
}
|
|
2379
2371
|
/**
|
|
2380
2372
|
* ProfileRuleApi - axios parameter creator
|
|
@@ -2386,7 +2378,7 @@ export declare const ProfileRuleApiAxiosParamCreator: (configuration?: Configura
|
|
|
2386
2378
|
* @summary Request a Rule assigned to a Profile
|
|
2387
2379
|
* @param {any} securityGuideId
|
|
2388
2380
|
* @param {any} profileId
|
|
2389
|
-
* @param {any} ruleId UUID or ref_id
|
|
2381
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
2390
2382
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2391
2383
|
* @param {*} [options] Override http request option.
|
|
2392
2384
|
* @throws {RequiredError}
|
|
@@ -2403,7 +2395,7 @@ export declare const ProfileRuleApiFp: (configuration?: Configuration) => {
|
|
|
2403
2395
|
* @summary Request a Rule assigned to a Profile
|
|
2404
2396
|
* @param {any} securityGuideId
|
|
2405
2397
|
* @param {any} profileId
|
|
2406
|
-
* @param {any} ruleId UUID or ref_id
|
|
2398
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
2407
2399
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2408
2400
|
* @param {*} [options] Override http request option.
|
|
2409
2401
|
* @throws {RequiredError}
|
|
@@ -2418,43 +2410,15 @@ export declare const ProfileRuleApiFactory: (configuration?: Configuration, base
|
|
|
2418
2410
|
/**
|
|
2419
2411
|
* Returns a Rule assigned to a Profile
|
|
2420
2412
|
* @summary Request a Rule assigned to a Profile
|
|
2421
|
-
* @param {
|
|
2413
|
+
* @param {any} securityGuideId
|
|
2414
|
+
* @param {any} profileId
|
|
2415
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
2416
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2422
2417
|
* @param {*} [options] Override http request option.
|
|
2423
2418
|
* @throws {RequiredError}
|
|
2424
2419
|
*/
|
|
2425
|
-
profileRule(
|
|
2420
|
+
profileRule(securityGuideId: any, profileId: any, ruleId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Rule200Response>;
|
|
2426
2421
|
};
|
|
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
2422
|
/**
|
|
2459
2423
|
* ProfileRuleApi - object-oriented interface
|
|
2460
2424
|
* @export
|
|
@@ -2465,12 +2429,15 @@ export declare class ProfileRuleApi extends BaseAPI {
|
|
|
2465
2429
|
/**
|
|
2466
2430
|
* Returns a Rule assigned to a Profile
|
|
2467
2431
|
* @summary Request a Rule assigned to a Profile
|
|
2468
|
-
* @param {
|
|
2432
|
+
* @param {any} securityGuideId
|
|
2433
|
+
* @param {any} profileId
|
|
2434
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
2435
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2469
2436
|
* @param {*} [options] Override http request option.
|
|
2470
2437
|
* @throws {RequiredError}
|
|
2471
2438
|
* @memberof ProfileRuleApi
|
|
2472
2439
|
*/
|
|
2473
|
-
profileRule(
|
|
2440
|
+
profileRule(securityGuideId: any, profileId: any, ruleId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rule200Response, any>>;
|
|
2474
2441
|
}
|
|
2475
2442
|
/**
|
|
2476
2443
|
* ProfileRulesApi - axios parameter creator
|
|
@@ -2486,7 +2453,7 @@ export declare const ProfileRulesApiAxiosParamCreator: (configuration?: Configur
|
|
|
2486
2453
|
* @param {any} [limit] Number of items to return per page
|
|
2487
2454
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2488
2455
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2489
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title` and `
|
|
2456
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2490
2457
|
* @param {*} [options] Override http request option.
|
|
2491
2458
|
* @throws {RequiredError}
|
|
2492
2459
|
*/
|
|
@@ -2506,7 +2473,7 @@ export declare const ProfileRulesApiFp: (configuration?: Configuration) => {
|
|
|
2506
2473
|
* @param {any} [limit] Number of items to return per page
|
|
2507
2474
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2508
2475
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2509
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title` and `
|
|
2476
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2510
2477
|
* @param {*} [options] Override http request option.
|
|
2511
2478
|
* @throws {RequiredError}
|
|
2512
2479
|
*/
|
|
@@ -2520,61 +2487,18 @@ export declare const ProfileRulesApiFactory: (configuration?: Configuration, bas
|
|
|
2520
2487
|
/**
|
|
2521
2488
|
* Lists Rules assigned to a Profile
|
|
2522
2489
|
* @summary Request Rules assigned to a Profile
|
|
2523
|
-
* @param {
|
|
2490
|
+
* @param {any} securityGuideId
|
|
2491
|
+
* @param {any} profileId
|
|
2492
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2493
|
+
* @param {any} [limit] Number of items to return per page
|
|
2494
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2495
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2496
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2524
2497
|
* @param {*} [options] Override http request option.
|
|
2525
2498
|
* @throws {RequiredError}
|
|
2526
2499
|
*/
|
|
2527
|
-
profileRules(
|
|
2500
|
+
profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
|
|
2528
2501
|
};
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title` and `severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2573
|
-
* @type {any}
|
|
2574
|
-
* @memberof ProfileRulesApiProfileRules
|
|
2575
|
-
*/
|
|
2576
|
-
readonly filter?: any;
|
|
2577
|
-
}
|
|
2578
2502
|
/**
|
|
2579
2503
|
* ProfileRulesApi - object-oriented interface
|
|
2580
2504
|
* @export
|
|
@@ -2585,12 +2509,18 @@ export declare class ProfileRulesApi extends BaseAPI {
|
|
|
2585
2509
|
/**
|
|
2586
2510
|
* Lists Rules assigned to a Profile
|
|
2587
2511
|
* @summary Request Rules assigned to a Profile
|
|
2588
|
-
* @param {
|
|
2512
|
+
* @param {any} securityGuideId
|
|
2513
|
+
* @param {any} profileId
|
|
2514
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2515
|
+
* @param {any} [limit] Number of items to return per page
|
|
2516
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2517
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2518
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2589
2519
|
* @param {*} [options] Override http request option.
|
|
2590
2520
|
* @throws {RequiredError}
|
|
2591
2521
|
* @memberof ProfileRulesApi
|
|
2592
2522
|
*/
|
|
2593
|
-
profileRules(
|
|
2523
|
+
profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
2594
2524
|
}
|
|
2595
2525
|
/**
|
|
2596
2526
|
* ProfilesApi - axios parameter creator
|
|
@@ -2638,55 +2568,17 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
|
|
|
2638
2568
|
/**
|
|
2639
2569
|
* Lists Profiles
|
|
2640
2570
|
* @summary Request Profiles
|
|
2641
|
-
* @param {
|
|
2571
|
+
* @param {any} securityGuideId
|
|
2572
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2573
|
+
* @param {any} [limit] Number of items to return per page
|
|
2574
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2575
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2576
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Profiles are searchable using attributes `title` and `ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2642
2577
|
* @param {*} [options] Override http request option.
|
|
2643
2578
|
* @throws {RequiredError}
|
|
2644
2579
|
*/
|
|
2645
|
-
profiles(
|
|
2580
|
+
profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Profiles200Response>;
|
|
2646
2581
|
};
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Profiles are searchable using attributes `title` and `ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2685
|
-
* @type {any}
|
|
2686
|
-
* @memberof ProfilesApiProfiles
|
|
2687
|
-
*/
|
|
2688
|
-
readonly filter?: any;
|
|
2689
|
-
}
|
|
2690
2582
|
/**
|
|
2691
2583
|
* ProfilesApi - object-oriented interface
|
|
2692
2584
|
* @export
|
|
@@ -2697,12 +2589,17 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
2697
2589
|
/**
|
|
2698
2590
|
* Lists Profiles
|
|
2699
2591
|
* @summary Request Profiles
|
|
2700
|
-
* @param {
|
|
2592
|
+
* @param {any} securityGuideId
|
|
2593
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2594
|
+
* @param {any} [limit] Number of items to return per page
|
|
2595
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2596
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2597
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Profiles are searchable using attributes `title` and `ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2701
2598
|
* @param {*} [options] Override http request option.
|
|
2702
2599
|
* @throws {RequiredError}
|
|
2703
2600
|
* @memberof ProfilesApi
|
|
2704
2601
|
*/
|
|
2705
|
-
profiles(
|
|
2602
|
+
profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profiles200Response, any>>;
|
|
2706
2603
|
}
|
|
2707
2604
|
/**
|
|
2708
2605
|
* ReportApi - axios parameter creator
|
|
@@ -2742,31 +2639,13 @@ export declare const ReportApiFactory: (configuration?: Configuration, basePath?
|
|
|
2742
2639
|
/**
|
|
2743
2640
|
* Returns a Report
|
|
2744
2641
|
* @summary Request a Report
|
|
2745
|
-
* @param {
|
|
2642
|
+
* @param {any} reportId
|
|
2643
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2746
2644
|
* @param {*} [options] Override http request option.
|
|
2747
2645
|
* @throws {RequiredError}
|
|
2748
2646
|
*/
|
|
2749
|
-
report(
|
|
2647
|
+
report(reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Report200Response>;
|
|
2750
2648
|
};
|
|
2751
|
-
/**
|
|
2752
|
-
* Request parameters for report operation in ReportApi.
|
|
2753
|
-
* @export
|
|
2754
|
-
* @interface ReportApiReportRequest
|
|
2755
|
-
*/
|
|
2756
|
-
export interface ReportApiReportRequest {
|
|
2757
|
-
/**
|
|
2758
|
-
*
|
|
2759
|
-
* @type {any}
|
|
2760
|
-
* @memberof ReportApiReport
|
|
2761
|
-
*/
|
|
2762
|
-
readonly reportId: any;
|
|
2763
|
-
/**
|
|
2764
|
-
* For internal use only
|
|
2765
|
-
* @type {any}
|
|
2766
|
-
* @memberof ReportApiReport
|
|
2767
|
-
*/
|
|
2768
|
-
readonly xRHIDENTITY?: any;
|
|
2769
|
-
}
|
|
2770
2649
|
/**
|
|
2771
2650
|
* ReportApi - object-oriented interface
|
|
2772
2651
|
* @export
|
|
@@ -2777,84 +2656,212 @@ export declare class ReportApi extends BaseAPI {
|
|
|
2777
2656
|
/**
|
|
2778
2657
|
* Returns a Report
|
|
2779
2658
|
* @summary Request a Report
|
|
2780
|
-
* @param {
|
|
2659
|
+
* @param {any} reportId
|
|
2660
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2781
2661
|
* @param {*} [options] Override http request option.
|
|
2782
2662
|
* @throws {RequiredError}
|
|
2783
2663
|
* @memberof ReportApi
|
|
2784
2664
|
*/
|
|
2785
|
-
report(
|
|
2665
|
+
report(reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Report200Response, any>>;
|
|
2786
2666
|
}
|
|
2787
2667
|
/**
|
|
2788
|
-
*
|
|
2668
|
+
* ReportRuleResultsApi - axios parameter creator
|
|
2789
2669
|
* @export
|
|
2790
2670
|
*/
|
|
2791
|
-
export declare const
|
|
2671
|
+
export declare const ReportRuleResultsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2792
2672
|
/**
|
|
2793
|
-
*
|
|
2794
|
-
* @summary Request a
|
|
2795
|
-
* @param {any}
|
|
2673
|
+
* Lists Rule Results under a Report
|
|
2674
|
+
* @summary Request Rule Results under a Report
|
|
2675
|
+
* @param {any} testResultId
|
|
2796
2676
|
* @param {any} reportId
|
|
2797
2677
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2678
|
+
* @param {any} [limit] Number of items to return per page
|
|
2679
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2680
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2681
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rule Results are searchable using attributes `result`, `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2798
2682
|
* @param {*} [options] Override http request option.
|
|
2799
2683
|
* @throws {RequiredError}
|
|
2800
2684
|
*/
|
|
2801
|
-
|
|
2685
|
+
reportRuleResults: (testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2802
2686
|
};
|
|
2803
2687
|
/**
|
|
2804
|
-
*
|
|
2688
|
+
* ReportRuleResultsApi - functional programming interface
|
|
2805
2689
|
* @export
|
|
2806
2690
|
*/
|
|
2807
|
-
export declare const
|
|
2691
|
+
export declare const ReportRuleResultsApiFp: (configuration?: Configuration) => {
|
|
2808
2692
|
/**
|
|
2809
|
-
*
|
|
2810
|
-
* @summary Request a
|
|
2811
|
-
* @param {any}
|
|
2693
|
+
* Lists Rule Results under a Report
|
|
2694
|
+
* @summary Request Rule Results under a Report
|
|
2695
|
+
* @param {any} testResultId
|
|
2812
2696
|
* @param {any} reportId
|
|
2813
2697
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2698
|
+
* @param {any} [limit] Number of items to return per page
|
|
2699
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2700
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2701
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rule Results are searchable using attributes `result`, `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2814
2702
|
* @param {*} [options] Override http request option.
|
|
2815
2703
|
* @throws {RequiredError}
|
|
2816
2704
|
*/
|
|
2817
|
-
|
|
2705
|
+
reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportRuleResults200Response>>;
|
|
2818
2706
|
};
|
|
2819
2707
|
/**
|
|
2820
|
-
*
|
|
2708
|
+
* ReportRuleResultsApi - factory interface
|
|
2821
2709
|
* @export
|
|
2822
2710
|
*/
|
|
2823
|
-
export declare const
|
|
2711
|
+
export declare const ReportRuleResultsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2824
2712
|
/**
|
|
2825
|
-
*
|
|
2826
|
-
* @summary Request a
|
|
2827
|
-
* @param {
|
|
2713
|
+
* Lists Rule Results under a Report
|
|
2714
|
+
* @summary Request Rule Results under a Report
|
|
2715
|
+
* @param {any} testResultId
|
|
2716
|
+
* @param {any} reportId
|
|
2717
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2718
|
+
* @param {any} [limit] Number of items to return per page
|
|
2719
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2720
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2721
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rule Results are searchable using attributes `result`, `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2828
2722
|
* @param {*} [options] Override http request option.
|
|
2829
2723
|
* @throws {RequiredError}
|
|
2830
2724
|
*/
|
|
2831
|
-
|
|
2725
|
+
reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportRuleResults200Response>;
|
|
2832
2726
|
};
|
|
2833
2727
|
/**
|
|
2834
|
-
*
|
|
2728
|
+
* ReportRuleResultsApi - object-oriented interface
|
|
2835
2729
|
* @export
|
|
2836
|
-
* @
|
|
2730
|
+
* @class ReportRuleResultsApi
|
|
2731
|
+
* @extends {BaseAPI}
|
|
2837
2732
|
*/
|
|
2838
|
-
export
|
|
2733
|
+
export declare class ReportRuleResultsApi extends BaseAPI {
|
|
2839
2734
|
/**
|
|
2840
|
-
*
|
|
2841
|
-
* @
|
|
2842
|
-
* @
|
|
2735
|
+
* Lists Rule Results under a Report
|
|
2736
|
+
* @summary Request Rule Results under a Report
|
|
2737
|
+
* @param {any} testResultId
|
|
2738
|
+
* @param {any} reportId
|
|
2739
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2740
|
+
* @param {any} [limit] Number of items to return per page
|
|
2741
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2742
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2743
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rule Results are searchable using attributes `result`, `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2744
|
+
* @param {*} [options] Override http request option.
|
|
2745
|
+
* @throws {RequiredError}
|
|
2746
|
+
* @memberof ReportRuleResultsApi
|
|
2747
|
+
*/
|
|
2748
|
+
reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportRuleResults200Response, any>>;
|
|
2749
|
+
}
|
|
2750
|
+
/**
|
|
2751
|
+
* ReportStatsApi - axios parameter creator
|
|
2752
|
+
* @export
|
|
2753
|
+
*/
|
|
2754
|
+
export declare const ReportStatsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2755
|
+
/**
|
|
2756
|
+
* Returns detailed stats for a Report
|
|
2757
|
+
* @summary Request detailed stats for a Report
|
|
2758
|
+
* @param {any} reportId
|
|
2759
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2760
|
+
* @param {*} [options] Override http request option.
|
|
2761
|
+
* @deprecated
|
|
2762
|
+
* @throws {RequiredError}
|
|
2843
2763
|
*/
|
|
2844
|
-
|
|
2764
|
+
reportStats: (reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2765
|
+
};
|
|
2766
|
+
/**
|
|
2767
|
+
* ReportStatsApi - functional programming interface
|
|
2768
|
+
* @export
|
|
2769
|
+
*/
|
|
2770
|
+
export declare const ReportStatsApiFp: (configuration?: Configuration) => {
|
|
2845
2771
|
/**
|
|
2846
|
-
*
|
|
2847
|
-
* @
|
|
2848
|
-
* @
|
|
2772
|
+
* Returns detailed stats for a Report
|
|
2773
|
+
* @summary Request detailed stats for a Report
|
|
2774
|
+
* @param {any} reportId
|
|
2775
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2776
|
+
* @param {*} [options] Override http request option.
|
|
2777
|
+
* @deprecated
|
|
2778
|
+
* @throws {RequiredError}
|
|
2849
2779
|
*/
|
|
2850
|
-
|
|
2780
|
+
reportStats(reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportStats200Response>>;
|
|
2781
|
+
};
|
|
2782
|
+
/**
|
|
2783
|
+
* ReportStatsApi - factory interface
|
|
2784
|
+
* @export
|
|
2785
|
+
*/
|
|
2786
|
+
export declare const ReportStatsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2851
2787
|
/**
|
|
2852
|
-
*
|
|
2853
|
-
* @
|
|
2854
|
-
* @
|
|
2788
|
+
* Returns detailed stats for a Report
|
|
2789
|
+
* @summary Request detailed stats for a Report
|
|
2790
|
+
* @param {any} reportId
|
|
2791
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2792
|
+
* @param {*} [options] Override http request option.
|
|
2793
|
+
* @deprecated
|
|
2794
|
+
* @throws {RequiredError}
|
|
2855
2795
|
*/
|
|
2856
|
-
|
|
2796
|
+
reportStats(reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<ReportStats200Response>;
|
|
2797
|
+
};
|
|
2798
|
+
/**
|
|
2799
|
+
* ReportStatsApi - object-oriented interface
|
|
2800
|
+
* @export
|
|
2801
|
+
* @class ReportStatsApi
|
|
2802
|
+
* @extends {BaseAPI}
|
|
2803
|
+
*/
|
|
2804
|
+
export declare class ReportStatsApi extends BaseAPI {
|
|
2805
|
+
/**
|
|
2806
|
+
* Returns detailed stats for a Report
|
|
2807
|
+
* @summary Request detailed stats for a Report
|
|
2808
|
+
* @param {any} reportId
|
|
2809
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2810
|
+
* @param {*} [options] Override http request option.
|
|
2811
|
+
* @deprecated
|
|
2812
|
+
* @throws {RequiredError}
|
|
2813
|
+
* @memberof ReportStatsApi
|
|
2814
|
+
*/
|
|
2815
|
+
reportStats(reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportStats200Response, any>>;
|
|
2857
2816
|
}
|
|
2817
|
+
/**
|
|
2818
|
+
* ReportSystemApi - axios parameter creator
|
|
2819
|
+
* @export
|
|
2820
|
+
*/
|
|
2821
|
+
export declare const ReportSystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2822
|
+
/**
|
|
2823
|
+
* Returns a System under a Report
|
|
2824
|
+
* @summary Request a System
|
|
2825
|
+
* @param {any} systemId
|
|
2826
|
+
* @param {any} reportId
|
|
2827
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2828
|
+
* @param {*} [options] Override http request option.
|
|
2829
|
+
* @throws {RequiredError}
|
|
2830
|
+
*/
|
|
2831
|
+
reportSystem: (systemId: any, reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2832
|
+
};
|
|
2833
|
+
/**
|
|
2834
|
+
* ReportSystemApi - functional programming interface
|
|
2835
|
+
* @export
|
|
2836
|
+
*/
|
|
2837
|
+
export declare const ReportSystemApiFp: (configuration?: Configuration) => {
|
|
2838
|
+
/**
|
|
2839
|
+
* Returns a System under a Report
|
|
2840
|
+
* @summary Request a System
|
|
2841
|
+
* @param {any} systemId
|
|
2842
|
+
* @param {any} reportId
|
|
2843
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2844
|
+
* @param {*} [options] Override http request option.
|
|
2845
|
+
* @throws {RequiredError}
|
|
2846
|
+
*/
|
|
2847
|
+
reportSystem(systemId: any, reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<System200Response>>;
|
|
2848
|
+
};
|
|
2849
|
+
/**
|
|
2850
|
+
* ReportSystemApi - factory interface
|
|
2851
|
+
* @export
|
|
2852
|
+
*/
|
|
2853
|
+
export declare const ReportSystemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2854
|
+
/**
|
|
2855
|
+
* Returns a System under a Report
|
|
2856
|
+
* @summary Request a System
|
|
2857
|
+
* @param {any} systemId
|
|
2858
|
+
* @param {any} reportId
|
|
2859
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2860
|
+
* @param {*} [options] Override http request option.
|
|
2861
|
+
* @throws {RequiredError}
|
|
2862
|
+
*/
|
|
2863
|
+
reportSystem(systemId: any, reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
|
|
2864
|
+
};
|
|
2858
2865
|
/**
|
|
2859
2866
|
* ReportSystemApi - object-oriented interface
|
|
2860
2867
|
* @export
|
|
@@ -2865,12 +2872,14 @@ export declare class ReportSystemApi extends BaseAPI {
|
|
|
2865
2872
|
/**
|
|
2866
2873
|
* Returns a System under a Report
|
|
2867
2874
|
* @summary Request a System
|
|
2868
|
-
* @param {
|
|
2875
|
+
* @param {any} systemId
|
|
2876
|
+
* @param {any} reportId
|
|
2877
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2869
2878
|
* @param {*} [options] Override http request option.
|
|
2870
2879
|
* @throws {RequiredError}
|
|
2871
2880
|
* @memberof ReportSystemApi
|
|
2872
2881
|
*/
|
|
2873
|
-
reportSystem(
|
|
2882
|
+
reportSystem(systemId: any, reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
|
|
2874
2883
|
}
|
|
2875
2884
|
/**
|
|
2876
2885
|
* ReportSystemsApi - axios parameter creator
|
|
@@ -2885,7 +2894,7 @@ export declare const ReportSystemsApiAxiosParamCreator: (configuration?: Configu
|
|
|
2885
2894
|
* @param {any} [limit] Number of items to return per page
|
|
2886
2895
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2887
2896
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2888
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, and `
|
|
2897
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2889
2898
|
* @param {*} [options] Override http request option.
|
|
2890
2899
|
* @throws {RequiredError}
|
|
2891
2900
|
*/
|
|
@@ -2904,7 +2913,7 @@ export declare const ReportSystemsApiFp: (configuration?: Configuration) => {
|
|
|
2904
2913
|
* @param {any} [limit] Number of items to return per page
|
|
2905
2914
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2906
2915
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2907
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, and `
|
|
2916
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2908
2917
|
* @param {*} [options] Override http request option.
|
|
2909
2918
|
* @throws {RequiredError}
|
|
2910
2919
|
*/
|
|
@@ -2918,71 +2927,109 @@ export declare const ReportSystemsApiFactory: (configuration?: Configuration, ba
|
|
|
2918
2927
|
/**
|
|
2919
2928
|
* Lists Systems assigned to a Report
|
|
2920
2929
|
* @summary Request Systems assigned to a Report
|
|
2921
|
-
* @param {
|
|
2930
|
+
* @param {any} reportId
|
|
2931
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2932
|
+
* @param {any} [limit] Number of items to return per page
|
|
2933
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2934
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2935
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2922
2936
|
* @param {*} [options] Override http request option.
|
|
2923
2937
|
* @throws {RequiredError}
|
|
2924
2938
|
*/
|
|
2925
|
-
reportSystems(
|
|
2939
|
+
reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
|
|
2926
2940
|
};
|
|
2927
2941
|
/**
|
|
2928
|
-
*
|
|
2942
|
+
* ReportSystemsApi - object-oriented interface
|
|
2929
2943
|
* @export
|
|
2930
|
-
* @
|
|
2944
|
+
* @class ReportSystemsApi
|
|
2945
|
+
* @extends {BaseAPI}
|
|
2931
2946
|
*/
|
|
2932
|
-
export
|
|
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;
|
|
2947
|
+
export declare class ReportSystemsApi extends BaseAPI {
|
|
2945
2948
|
/**
|
|
2946
|
-
*
|
|
2947
|
-
* @
|
|
2948
|
-
* @
|
|
2949
|
+
* Lists Systems assigned to a Report
|
|
2950
|
+
* @summary Request Systems assigned to a Report
|
|
2951
|
+
* @param {any} reportId
|
|
2952
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2953
|
+
* @param {any} [limit] Number of items to return per page
|
|
2954
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
2955
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
2956
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2957
|
+
* @param {*} [options] Override http request option.
|
|
2958
|
+
* @throws {RequiredError}
|
|
2959
|
+
* @memberof ReportSystemsApi
|
|
2949
2960
|
*/
|
|
2950
|
-
|
|
2961
|
+
reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
2962
|
+
}
|
|
2963
|
+
/**
|
|
2964
|
+
* ReportSystemsOSApi - axios parameter creator
|
|
2965
|
+
* @export
|
|
2966
|
+
*/
|
|
2967
|
+
export declare const ReportSystemsOSApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2951
2968
|
/**
|
|
2952
|
-
*
|
|
2953
|
-
* @
|
|
2954
|
-
* @
|
|
2969
|
+
* This feature is exclusively used by the frontend
|
|
2970
|
+
* @summary Request the list of available OS versions
|
|
2971
|
+
* @param {any} reportId
|
|
2972
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2973
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2974
|
+
* @param {*} [options] Override http request option.
|
|
2975
|
+
* @deprecated
|
|
2976
|
+
* @throws {RequiredError}
|
|
2955
2977
|
*/
|
|
2956
|
-
|
|
2978
|
+
reportSystemsOS: (reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2979
|
+
};
|
|
2980
|
+
/**
|
|
2981
|
+
* ReportSystemsOSApi - functional programming interface
|
|
2982
|
+
* @export
|
|
2983
|
+
*/
|
|
2984
|
+
export declare const ReportSystemsOSApiFp: (configuration?: Configuration) => {
|
|
2957
2985
|
/**
|
|
2958
|
-
*
|
|
2959
|
-
* @
|
|
2960
|
-
* @
|
|
2986
|
+
* This feature is exclusively used by the frontend
|
|
2987
|
+
* @summary Request the list of available OS versions
|
|
2988
|
+
* @param {any} reportId
|
|
2989
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
2990
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2991
|
+
* @param {*} [options] Override http request option.
|
|
2992
|
+
* @deprecated
|
|
2993
|
+
* @throws {RequiredError}
|
|
2961
2994
|
*/
|
|
2962
|
-
|
|
2995
|
+
reportSystemsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
2996
|
+
};
|
|
2997
|
+
/**
|
|
2998
|
+
* ReportSystemsOSApi - factory interface
|
|
2999
|
+
* @export
|
|
3000
|
+
*/
|
|
3001
|
+
export declare const ReportSystemsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2963
3002
|
/**
|
|
2964
|
-
*
|
|
2965
|
-
* @
|
|
2966
|
-
* @
|
|
3003
|
+
* This feature is exclusively used by the frontend
|
|
3004
|
+
* @summary Request the list of available OS versions
|
|
3005
|
+
* @param {any} reportId
|
|
3006
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3007
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3008
|
+
* @param {*} [options] Override http request option.
|
|
3009
|
+
* @deprecated
|
|
3010
|
+
* @throws {RequiredError}
|
|
2967
3011
|
*/
|
|
2968
|
-
|
|
2969
|
-
}
|
|
3012
|
+
reportSystemsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
|
|
3013
|
+
};
|
|
2970
3014
|
/**
|
|
2971
|
-
*
|
|
3015
|
+
* ReportSystemsOSApi - object-oriented interface
|
|
2972
3016
|
* @export
|
|
2973
|
-
* @class
|
|
3017
|
+
* @class ReportSystemsOSApi
|
|
2974
3018
|
* @extends {BaseAPI}
|
|
2975
3019
|
*/
|
|
2976
|
-
export declare class
|
|
3020
|
+
export declare class ReportSystemsOSApi extends BaseAPI {
|
|
2977
3021
|
/**
|
|
2978
|
-
*
|
|
2979
|
-
* @summary Request
|
|
2980
|
-
* @param {
|
|
3022
|
+
* This feature is exclusively used by the frontend
|
|
3023
|
+
* @summary Request the list of available OS versions
|
|
3024
|
+
* @param {any} reportId
|
|
3025
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3026
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2981
3027
|
* @param {*} [options] Override http request option.
|
|
3028
|
+
* @deprecated
|
|
2982
3029
|
* @throws {RequiredError}
|
|
2983
|
-
* @memberof
|
|
3030
|
+
* @memberof ReportSystemsOSApi
|
|
2984
3031
|
*/
|
|
2985
|
-
|
|
3032
|
+
reportSystemsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
2986
3033
|
}
|
|
2987
3034
|
/**
|
|
2988
3035
|
* ReportTestResultApi - axios parameter creator
|
|
@@ -3024,37 +3071,14 @@ export declare const ReportTestResultApiFactory: (configuration?: Configuration,
|
|
|
3024
3071
|
/**
|
|
3025
3072
|
* Returns a Test Result under a Report
|
|
3026
3073
|
* @summary Request a Test Result
|
|
3027
|
-
* @param {
|
|
3074
|
+
* @param {any} testResultId
|
|
3075
|
+
* @param {any} reportId
|
|
3076
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3028
3077
|
* @param {*} [options] Override http request option.
|
|
3029
3078
|
* @throws {RequiredError}
|
|
3030
3079
|
*/
|
|
3031
|
-
reportTestResult(
|
|
3080
|
+
reportTestResult(testResultId: any, reportId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
|
|
3032
3081
|
};
|
|
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
3082
|
/**
|
|
3059
3083
|
* ReportTestResultApi - object-oriented interface
|
|
3060
3084
|
* @export
|
|
@@ -3065,12 +3089,14 @@ export declare class ReportTestResultApi extends BaseAPI {
|
|
|
3065
3089
|
/**
|
|
3066
3090
|
* Returns a Test Result under a Report
|
|
3067
3091
|
* @summary Request a Test Result
|
|
3068
|
-
* @param {
|
|
3092
|
+
* @param {any} testResultId
|
|
3093
|
+
* @param {any} reportId
|
|
3094
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3069
3095
|
* @param {*} [options] Override http request option.
|
|
3070
3096
|
* @throws {RequiredError}
|
|
3071
3097
|
* @memberof ReportTestResultApi
|
|
3072
3098
|
*/
|
|
3073
|
-
reportTestResult(
|
|
3099
|
+
reportTestResult(testResultId: any, reportId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
|
|
3074
3100
|
}
|
|
3075
3101
|
/**
|
|
3076
3102
|
* ReportTestResultsApi - axios parameter creator
|
|
@@ -3085,7 +3111,7 @@ export declare const ReportTestResultsApiAxiosParamCreator: (configuration?: Con
|
|
|
3085
3111
|
* @param {any} [limit] Number of items to return per page
|
|
3086
3112
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3087
3113
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3088
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `display_name`, `os_minor_version`, `security_guide_version`, and `
|
|
3114
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `system_id`, `display_name`, `os_minor_version`, `security_guide_version`, `compliant`, `group_name`, and `failed_rule_severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3089
3115
|
* @param {*} [options] Override http request option.
|
|
3090
3116
|
* @throws {RequiredError}
|
|
3091
3117
|
*/
|
|
@@ -3104,7 +3130,7 @@ export declare const ReportTestResultsApiFp: (configuration?: Configuration) =>
|
|
|
3104
3130
|
* @param {any} [limit] Number of items to return per page
|
|
3105
3131
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3106
3132
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3107
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `display_name`, `os_minor_version`, `security_guide_version`, and `
|
|
3133
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `system_id`, `display_name`, `os_minor_version`, `security_guide_version`, `compliant`, `group_name`, and `failed_rule_severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3108
3134
|
* @param {*} [options] Override http request option.
|
|
3109
3135
|
* @throws {RequiredError}
|
|
3110
3136
|
*/
|
|
@@ -3118,71 +3144,109 @@ export declare const ReportTestResultsApiFactory: (configuration?: Configuration
|
|
|
3118
3144
|
/**
|
|
3119
3145
|
* Lists Test Results under a Report
|
|
3120
3146
|
* @summary Request Test Results under a Report
|
|
3121
|
-
* @param {
|
|
3147
|
+
* @param {any} reportId
|
|
3148
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3149
|
+
* @param {any} [limit] Number of items to return per page
|
|
3150
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3151
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3152
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `system_id`, `display_name`, `os_minor_version`, `security_guide_version`, `compliant`, `group_name`, and `failed_rule_severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3122
3153
|
* @param {*} [options] Override http request option.
|
|
3123
3154
|
* @throws {RequiredError}
|
|
3124
3155
|
*/
|
|
3125
|
-
reportTestResults(
|
|
3156
|
+
reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportTestResults200Response>;
|
|
3126
3157
|
};
|
|
3127
3158
|
/**
|
|
3128
|
-
*
|
|
3159
|
+
* ReportTestResultsApi - object-oriented interface
|
|
3129
3160
|
* @export
|
|
3130
|
-
* @
|
|
3161
|
+
* @class ReportTestResultsApi
|
|
3162
|
+
* @extends {BaseAPI}
|
|
3131
3163
|
*/
|
|
3132
|
-
export
|
|
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;
|
|
3164
|
+
export declare class ReportTestResultsApi extends BaseAPI {
|
|
3145
3165
|
/**
|
|
3146
|
-
*
|
|
3147
|
-
* @
|
|
3148
|
-
* @
|
|
3166
|
+
* Lists Test Results under a Report
|
|
3167
|
+
* @summary Request Test Results under a Report
|
|
3168
|
+
* @param {any} reportId
|
|
3169
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3170
|
+
* @param {any} [limit] Number of items to return per page
|
|
3171
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3172
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3173
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `system_id`, `display_name`, `os_minor_version`, `security_guide_version`, `compliant`, `group_name`, and `failed_rule_severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3174
|
+
* @param {*} [options] Override http request option.
|
|
3175
|
+
* @throws {RequiredError}
|
|
3176
|
+
* @memberof ReportTestResultsApi
|
|
3149
3177
|
*/
|
|
3150
|
-
|
|
3178
|
+
reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportTestResults200Response, any>>;
|
|
3179
|
+
}
|
|
3180
|
+
/**
|
|
3181
|
+
* ReportTestResultsOSApi - axios parameter creator
|
|
3182
|
+
* @export
|
|
3183
|
+
*/
|
|
3184
|
+
export declare const ReportTestResultsOSApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3151
3185
|
/**
|
|
3152
|
-
*
|
|
3153
|
-
* @
|
|
3154
|
-
* @
|
|
3186
|
+
* This feature is exclusively used by the frontend
|
|
3187
|
+
* @summary Request the list of available OS versions
|
|
3188
|
+
* @param {any} reportId
|
|
3189
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3190
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `system_id`, `display_name`, `os_minor_version`, `security_guide_version`, `compliant`, `group_name`, and `failed_rule_severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3191
|
+
* @param {*} [options] Override http request option.
|
|
3192
|
+
* @deprecated
|
|
3193
|
+
* @throws {RequiredError}
|
|
3155
3194
|
*/
|
|
3156
|
-
|
|
3195
|
+
reportTestResultsOS: (reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3196
|
+
};
|
|
3197
|
+
/**
|
|
3198
|
+
* ReportTestResultsOSApi - functional programming interface
|
|
3199
|
+
* @export
|
|
3200
|
+
*/
|
|
3201
|
+
export declare const ReportTestResultsOSApiFp: (configuration?: Configuration) => {
|
|
3157
3202
|
/**
|
|
3158
|
-
*
|
|
3159
|
-
* @
|
|
3160
|
-
* @
|
|
3203
|
+
* This feature is exclusively used by the frontend
|
|
3204
|
+
* @summary Request the list of available OS versions
|
|
3205
|
+
* @param {any} reportId
|
|
3206
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3207
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `system_id`, `display_name`, `os_minor_version`, `security_guide_version`, `compliant`, `group_name`, and `failed_rule_severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3208
|
+
* @param {*} [options] Override http request option.
|
|
3209
|
+
* @deprecated
|
|
3210
|
+
* @throws {RequiredError}
|
|
3161
3211
|
*/
|
|
3162
|
-
|
|
3212
|
+
reportTestResultsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
3213
|
+
};
|
|
3214
|
+
/**
|
|
3215
|
+
* ReportTestResultsOSApi - factory interface
|
|
3216
|
+
* @export
|
|
3217
|
+
*/
|
|
3218
|
+
export declare const ReportTestResultsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3163
3219
|
/**
|
|
3164
|
-
*
|
|
3165
|
-
* @
|
|
3166
|
-
* @
|
|
3220
|
+
* This feature is exclusively used by the frontend
|
|
3221
|
+
* @summary Request the list of available OS versions
|
|
3222
|
+
* @param {any} reportId
|
|
3223
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3224
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `system_id`, `display_name`, `os_minor_version`, `security_guide_version`, `compliant`, `group_name`, and `failed_rule_severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3225
|
+
* @param {*} [options] Override http request option.
|
|
3226
|
+
* @deprecated
|
|
3227
|
+
* @throws {RequiredError}
|
|
3167
3228
|
*/
|
|
3168
|
-
|
|
3169
|
-
}
|
|
3229
|
+
reportTestResultsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
|
|
3230
|
+
};
|
|
3170
3231
|
/**
|
|
3171
|
-
*
|
|
3232
|
+
* ReportTestResultsOSApi - object-oriented interface
|
|
3172
3233
|
* @export
|
|
3173
|
-
* @class
|
|
3234
|
+
* @class ReportTestResultsOSApi
|
|
3174
3235
|
* @extends {BaseAPI}
|
|
3175
3236
|
*/
|
|
3176
|
-
export declare class
|
|
3237
|
+
export declare class ReportTestResultsOSApi extends BaseAPI {
|
|
3177
3238
|
/**
|
|
3178
|
-
*
|
|
3179
|
-
* @summary Request
|
|
3180
|
-
* @param {
|
|
3239
|
+
* This feature is exclusively used by the frontend
|
|
3240
|
+
* @summary Request the list of available OS versions
|
|
3241
|
+
* @param {any} reportId
|
|
3242
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3243
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Test Results are searchable using attributes `score`, `supported`, `system_id`, `display_name`, `os_minor_version`, `security_guide_version`, `compliant`, `group_name`, and `failed_rule_severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3181
3244
|
* @param {*} [options] Override http request option.
|
|
3245
|
+
* @deprecated
|
|
3182
3246
|
* @throws {RequiredError}
|
|
3183
|
-
* @memberof
|
|
3247
|
+
* @memberof ReportTestResultsOSApi
|
|
3184
3248
|
*/
|
|
3185
|
-
|
|
3249
|
+
reportTestResultsOS(reportId: any, xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
3186
3250
|
}
|
|
3187
3251
|
/**
|
|
3188
3252
|
* ReportsApi - axios parameter creator
|
|
@@ -3228,49 +3292,16 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
3228
3292
|
/**
|
|
3229
3293
|
* Lists Reports
|
|
3230
3294
|
* @summary Request Reports
|
|
3231
|
-
* @param {
|
|
3295
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3296
|
+
* @param {any} [limit] Number of items to return per page
|
|
3297
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3298
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3299
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Reports are searchable using attributes `title`, `os_major_version`, and `with_reported_systems`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3232
3300
|
* @param {*} [options] Override http request option.
|
|
3233
3301
|
* @throws {RequiredError}
|
|
3234
3302
|
*/
|
|
3235
|
-
reports(
|
|
3303
|
+
reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
|
|
3236
3304
|
};
|
|
3237
|
-
/**
|
|
3238
|
-
* Request parameters for reports operation in ReportsApi.
|
|
3239
|
-
* @export
|
|
3240
|
-
* @interface ReportsApiReportsRequest
|
|
3241
|
-
*/
|
|
3242
|
-
export interface ReportsApiReportsRequest {
|
|
3243
|
-
/**
|
|
3244
|
-
* For internal use only
|
|
3245
|
-
* @type {any}
|
|
3246
|
-
* @memberof ReportsApiReports
|
|
3247
|
-
*/
|
|
3248
|
-
readonly xRHIDENTITY?: any;
|
|
3249
|
-
/**
|
|
3250
|
-
* Number of items to return per page
|
|
3251
|
-
* @type {any}
|
|
3252
|
-
* @memberof ReportsApiReports
|
|
3253
|
-
*/
|
|
3254
|
-
readonly limit?: any;
|
|
3255
|
-
/**
|
|
3256
|
-
* Offset of first item of paginated response
|
|
3257
|
-
* @type {any}
|
|
3258
|
-
* @memberof ReportsApiReports
|
|
3259
|
-
*/
|
|
3260
|
-
readonly offset?: any;
|
|
3261
|
-
/**
|
|
3262
|
-
* Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3263
|
-
* @type {any}
|
|
3264
|
-
* @memberof ReportsApiReports
|
|
3265
|
-
*/
|
|
3266
|
-
readonly sortBy?: any;
|
|
3267
|
-
/**
|
|
3268
|
-
* Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Reports are searchable using attributes `title`, `os_major_version`, and `with_reported_systems`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3269
|
-
* @type {any}
|
|
3270
|
-
* @memberof ReportsApiReports
|
|
3271
|
-
*/
|
|
3272
|
-
readonly filter?: any;
|
|
3273
|
-
}
|
|
3274
3305
|
/**
|
|
3275
3306
|
* ReportsApi - object-oriented interface
|
|
3276
3307
|
* @export
|
|
@@ -3281,12 +3312,16 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
3281
3312
|
/**
|
|
3282
3313
|
* Lists Reports
|
|
3283
3314
|
* @summary Request Reports
|
|
3284
|
-
* @param {
|
|
3315
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3316
|
+
* @param {any} [limit] Number of items to return per page
|
|
3317
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3318
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3319
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Reports are searchable using attributes `title`, `os_major_version`, and `with_reported_systems`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3285
3320
|
* @param {*} [options] Override http request option.
|
|
3286
3321
|
* @throws {RequiredError}
|
|
3287
3322
|
* @memberof ReportsApi
|
|
3288
3323
|
*/
|
|
3289
|
-
reports(
|
|
3324
|
+
reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
|
|
3290
3325
|
}
|
|
3291
3326
|
/**
|
|
3292
3327
|
* RuleApi - axios parameter creator
|
|
@@ -3297,7 +3332,7 @@ export declare const RuleApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
3297
3332
|
* Returns a Rule
|
|
3298
3333
|
* @summary Request a Rule
|
|
3299
3334
|
* @param {any} securityGuideId
|
|
3300
|
-
* @param {any} ruleId UUID or ref_id
|
|
3335
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
3301
3336
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3302
3337
|
* @param {*} [options] Override http request option.
|
|
3303
3338
|
* @throws {RequiredError}
|
|
@@ -3313,7 +3348,7 @@ export declare const RuleApiFp: (configuration?: Configuration) => {
|
|
|
3313
3348
|
* Returns a Rule
|
|
3314
3349
|
* @summary Request a Rule
|
|
3315
3350
|
* @param {any} securityGuideId
|
|
3316
|
-
* @param {any} ruleId UUID or ref_id
|
|
3351
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
3317
3352
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3318
3353
|
* @param {*} [options] Override http request option.
|
|
3319
3354
|
* @throws {RequiredError}
|
|
@@ -3328,37 +3363,14 @@ export declare const RuleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3328
3363
|
/**
|
|
3329
3364
|
* Returns a Rule
|
|
3330
3365
|
* @summary Request a Rule
|
|
3331
|
-
* @param {
|
|
3366
|
+
* @param {any} securityGuideId
|
|
3367
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
3368
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3332
3369
|
* @param {*} [options] Override http request option.
|
|
3333
3370
|
* @throws {RequiredError}
|
|
3334
3371
|
*/
|
|
3335
|
-
rule(
|
|
3372
|
+
rule(securityGuideId: any, ruleId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Rule200Response>;
|
|
3336
3373
|
};
|
|
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
3374
|
/**
|
|
3363
3375
|
* RuleApi - object-oriented interface
|
|
3364
3376
|
* @export
|
|
@@ -3369,12 +3381,14 @@ export declare class RuleApi extends BaseAPI {
|
|
|
3369
3381
|
/**
|
|
3370
3382
|
* Returns a Rule
|
|
3371
3383
|
* @summary Request a Rule
|
|
3372
|
-
* @param {
|
|
3384
|
+
* @param {any} securityGuideId
|
|
3385
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
3386
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3373
3387
|
* @param {*} [options] Override http request option.
|
|
3374
3388
|
* @throws {RequiredError}
|
|
3375
3389
|
* @memberof RuleApi
|
|
3376
3390
|
*/
|
|
3377
|
-
rule(
|
|
3391
|
+
rule(securityGuideId: any, ruleId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rule200Response, any>>;
|
|
3378
3392
|
}
|
|
3379
3393
|
/**
|
|
3380
3394
|
* RuleGroupApi - axios parameter creator
|
|
@@ -3416,37 +3430,14 @@ export declare const RuleGroupApiFactory: (configuration?: Configuration, basePa
|
|
|
3416
3430
|
/**
|
|
3417
3431
|
* Returns a Rule Group
|
|
3418
3432
|
* @summary Request a Rule Group
|
|
3419
|
-
* @param {
|
|
3433
|
+
* @param {any} securityGuideId
|
|
3434
|
+
* @param {any} ruleGroupId
|
|
3435
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3420
3436
|
* @param {*} [options] Override http request option.
|
|
3421
3437
|
* @throws {RequiredError}
|
|
3422
3438
|
*/
|
|
3423
|
-
ruleGroup(
|
|
3439
|
+
ruleGroup(securityGuideId: any, ruleGroupId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<RuleGroup200Response>;
|
|
3424
3440
|
};
|
|
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
3441
|
/**
|
|
3451
3442
|
* RuleGroupApi - object-oriented interface
|
|
3452
3443
|
* @export
|
|
@@ -3457,12 +3448,14 @@ export declare class RuleGroupApi extends BaseAPI {
|
|
|
3457
3448
|
/**
|
|
3458
3449
|
* Returns a Rule Group
|
|
3459
3450
|
* @summary Request a Rule Group
|
|
3460
|
-
* @param {
|
|
3451
|
+
* @param {any} securityGuideId
|
|
3452
|
+
* @param {any} ruleGroupId
|
|
3453
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3461
3454
|
* @param {*} [options] Override http request option.
|
|
3462
3455
|
* @throws {RequiredError}
|
|
3463
3456
|
* @memberof RuleGroupApi
|
|
3464
3457
|
*/
|
|
3465
|
-
ruleGroup(
|
|
3458
|
+
ruleGroup(securityGuideId: any, ruleGroupId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroup200Response, any>>;
|
|
3466
3459
|
}
|
|
3467
3460
|
/**
|
|
3468
3461
|
* RuleGroupsApi - axios parameter creator
|
|
@@ -3510,55 +3503,17 @@ export declare const RuleGroupsApiFactory: (configuration?: Configuration, baseP
|
|
|
3510
3503
|
/**
|
|
3511
3504
|
* Lists Rule Groups
|
|
3512
3505
|
* @summary Request Rule Groups
|
|
3513
|
-
* @param {
|
|
3506
|
+
* @param {any} securityGuideId
|
|
3507
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3508
|
+
* @param {any} [limit] Number of items to return per page
|
|
3509
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3510
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3511
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rule Groups are searchable using attributes `title` and `ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3514
3512
|
* @param {*} [options] Override http request option.
|
|
3515
3513
|
* @throws {RequiredError}
|
|
3516
3514
|
*/
|
|
3517
|
-
ruleGroups(
|
|
3515
|
+
ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<RuleGroups200Response>;
|
|
3518
3516
|
};
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rule Groups are searchable using attributes `title` and `ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3557
|
-
* @type {any}
|
|
3558
|
-
* @memberof RuleGroupsApiRuleGroups
|
|
3559
|
-
*/
|
|
3560
|
-
readonly filter?: any;
|
|
3561
|
-
}
|
|
3562
3517
|
/**
|
|
3563
3518
|
* RuleGroupsApi - object-oriented interface
|
|
3564
3519
|
* @export
|
|
@@ -3569,12 +3524,17 @@ export declare class RuleGroupsApi extends BaseAPI {
|
|
|
3569
3524
|
/**
|
|
3570
3525
|
* Lists Rule Groups
|
|
3571
3526
|
* @summary Request Rule Groups
|
|
3572
|
-
* @param {
|
|
3527
|
+
* @param {any} securityGuideId
|
|
3528
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3529
|
+
* @param {any} [limit] Number of items to return per page
|
|
3530
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3531
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3532
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rule Groups are searchable using attributes `title` and `ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3573
3533
|
* @param {*} [options] Override http request option.
|
|
3574
3534
|
* @throws {RequiredError}
|
|
3575
3535
|
* @memberof RuleGroupsApi
|
|
3576
3536
|
*/
|
|
3577
|
-
ruleGroups(
|
|
3537
|
+
ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroups200Response, any>>;
|
|
3578
3538
|
}
|
|
3579
3539
|
/**
|
|
3580
3540
|
* RulesApi - axios parameter creator
|
|
@@ -3589,7 +3549,7 @@ export declare const RulesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3589
3549
|
* @param {any} [limit] Number of items to return per page
|
|
3590
3550
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3591
3551
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3592
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title` and `
|
|
3552
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3593
3553
|
* @param {*} [options] Override http request option.
|
|
3594
3554
|
* @throws {RequiredError}
|
|
3595
3555
|
*/
|
|
@@ -3608,7 +3568,7 @@ export declare const RulesApiFp: (configuration?: Configuration) => {
|
|
|
3608
3568
|
* @param {any} [limit] Number of items to return per page
|
|
3609
3569
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3610
3570
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3611
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title` and `
|
|
3571
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3612
3572
|
* @param {*} [options] Override http request option.
|
|
3613
3573
|
* @throws {RequiredError}
|
|
3614
3574
|
*/
|
|
@@ -3622,55 +3582,17 @@ export declare const RulesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3622
3582
|
/**
|
|
3623
3583
|
* Lists Rules assigned
|
|
3624
3584
|
* @summary Request Rules
|
|
3625
|
-
* @param {
|
|
3585
|
+
* @param {any} securityGuideId
|
|
3586
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3587
|
+
* @param {any} [limit] Number of items to return per page
|
|
3588
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3589
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3590
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3626
3591
|
* @param {*} [options] Override http request option.
|
|
3627
3592
|
* @throws {RequiredError}
|
|
3628
3593
|
*/
|
|
3629
|
-
rules(
|
|
3594
|
+
rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
|
|
3630
3595
|
};
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title` and `severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3669
|
-
* @type {any}
|
|
3670
|
-
* @memberof RulesApiRules
|
|
3671
|
-
*/
|
|
3672
|
-
readonly filter?: any;
|
|
3673
|
-
}
|
|
3674
3596
|
/**
|
|
3675
3597
|
* RulesApi - object-oriented interface
|
|
3676
3598
|
* @export
|
|
@@ -3681,12 +3603,17 @@ export declare class RulesApi extends BaseAPI {
|
|
|
3681
3603
|
/**
|
|
3682
3604
|
* Lists Rules assigned
|
|
3683
3605
|
* @summary Request Rules
|
|
3684
|
-
* @param {
|
|
3606
|
+
* @param {any} securityGuideId
|
|
3607
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3608
|
+
* @param {any} [limit] Number of items to return per page
|
|
3609
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3610
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3611
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3685
3612
|
* @param {*} [options] Override http request option.
|
|
3686
3613
|
* @throws {RequiredError}
|
|
3687
3614
|
* @memberof RulesApi
|
|
3688
3615
|
*/
|
|
3689
|
-
rules(
|
|
3616
|
+
rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
3690
3617
|
}
|
|
3691
3618
|
/**
|
|
3692
3619
|
* SecurityGuideApi - axios parameter creator
|
|
@@ -3726,31 +3653,13 @@ export declare const SecurityGuideApiFactory: (configuration?: Configuration, ba
|
|
|
3726
3653
|
/**
|
|
3727
3654
|
* Returns a Security Guide
|
|
3728
3655
|
* @summary Request a Security Guide
|
|
3729
|
-
* @param {
|
|
3656
|
+
* @param {any} securityGuideId
|
|
3657
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3730
3658
|
* @param {*} [options] Override http request option.
|
|
3731
3659
|
* @throws {RequiredError}
|
|
3732
3660
|
*/
|
|
3733
|
-
securityGuide(
|
|
3661
|
+
securityGuide(securityGuideId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<SecurityGuide200Response>;
|
|
3734
3662
|
};
|
|
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
3663
|
/**
|
|
3755
3664
|
* SecurityGuideApi - object-oriented interface
|
|
3756
3665
|
* @export
|
|
@@ -3761,12 +3670,13 @@ export declare class SecurityGuideApi extends BaseAPI {
|
|
|
3761
3670
|
/**
|
|
3762
3671
|
* Returns a Security Guide
|
|
3763
3672
|
* @summary Request a Security Guide
|
|
3764
|
-
* @param {
|
|
3673
|
+
* @param {any} securityGuideId
|
|
3674
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3765
3675
|
* @param {*} [options] Override http request option.
|
|
3766
3676
|
* @throws {RequiredError}
|
|
3767
3677
|
* @memberof SecurityGuideApi
|
|
3768
3678
|
*/
|
|
3769
|
-
securityGuide(
|
|
3679
|
+
securityGuide(securityGuideId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuide200Response, any>>;
|
|
3770
3680
|
}
|
|
3771
3681
|
/**
|
|
3772
3682
|
* SecurityGuideRuleTreeApi - axios parameter creator
|
|
@@ -3806,31 +3716,13 @@ export declare const SecurityGuideRuleTreeApiFactory: (configuration?: Configura
|
|
|
3806
3716
|
/**
|
|
3807
3717
|
* Returns the Rule Tree of a Security Guide
|
|
3808
3718
|
* @summary Request the Rule Tree of a Security Guide
|
|
3809
|
-
* @param {
|
|
3719
|
+
* @param {any} securityGuideId
|
|
3720
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3810
3721
|
* @param {*} [options] Override http request option.
|
|
3811
3722
|
* @throws {RequiredError}
|
|
3812
3723
|
*/
|
|
3813
|
-
securityGuideRuleTree(
|
|
3724
|
+
securityGuideRuleTree(securityGuideId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<any>;
|
|
3814
3725
|
};
|
|
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
3726
|
/**
|
|
3835
3727
|
* SecurityGuideRuleTreeApi - object-oriented interface
|
|
3836
3728
|
* @export
|
|
@@ -3841,12 +3733,13 @@ export declare class SecurityGuideRuleTreeApi extends BaseAPI {
|
|
|
3841
3733
|
/**
|
|
3842
3734
|
* Returns the Rule Tree of a Security Guide
|
|
3843
3735
|
* @summary Request the Rule Tree of a Security Guide
|
|
3844
|
-
* @param {
|
|
3736
|
+
* @param {any} securityGuideId
|
|
3737
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3845
3738
|
* @param {*} [options] Override http request option.
|
|
3846
3739
|
* @throws {RequiredError}
|
|
3847
3740
|
* @memberof SecurityGuideRuleTreeApi
|
|
3848
3741
|
*/
|
|
3849
|
-
securityGuideRuleTree(
|
|
3742
|
+
securityGuideRuleTree(securityGuideId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
3850
3743
|
}
|
|
3851
3744
|
/**
|
|
3852
3745
|
* SecurityGuidesApi - axios parameter creator
|
|
@@ -3860,7 +3753,7 @@ export declare const SecurityGuidesApiAxiosParamCreator: (configuration?: Config
|
|
|
3860
3753
|
* @param {any} [limit] Number of items to return per page
|
|
3861
3754
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3862
3755
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3863
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Security Guides are searchable using attributes `title`, `version`, `ref_id`, and `
|
|
3756
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Security Guides are searchable using attributes `title`, `version`, `ref_id`, `os_major_version`, `profile_ref_id`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3864
3757
|
* @param {*} [options] Override http request option.
|
|
3865
3758
|
* @throws {RequiredError}
|
|
3866
3759
|
*/
|
|
@@ -3878,7 +3771,7 @@ export declare const SecurityGuidesApiFp: (configuration?: Configuration) => {
|
|
|
3878
3771
|
* @param {any} [limit] Number of items to return per page
|
|
3879
3772
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3880
3773
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3881
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Security Guides are searchable using attributes `title`, `version`, `ref_id`, and `
|
|
3774
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Security Guides are searchable using attributes `title`, `version`, `ref_id`, `os_major_version`, `profile_ref_id`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3882
3775
|
* @param {*} [options] Override http request option.
|
|
3883
3776
|
* @throws {RequiredError}
|
|
3884
3777
|
*/
|
|
@@ -3892,65 +3785,103 @@ export declare const SecurityGuidesApiFactory: (configuration?: Configuration, b
|
|
|
3892
3785
|
/**
|
|
3893
3786
|
* Lists Security Guides
|
|
3894
3787
|
* @summary Request Security Guides
|
|
3895
|
-
* @param {
|
|
3788
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3789
|
+
* @param {any} [limit] Number of items to return per page
|
|
3790
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3791
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3792
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Security Guides are searchable using attributes `title`, `version`, `ref_id`, `os_major_version`, `profile_ref_id`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3793
|
+
* @param {*} [options] Override http request option.
|
|
3794
|
+
* @throws {RequiredError}
|
|
3795
|
+
*/
|
|
3796
|
+
securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SecurityGuides200Response>;
|
|
3797
|
+
};
|
|
3798
|
+
/**
|
|
3799
|
+
* SecurityGuidesApi - object-oriented interface
|
|
3800
|
+
* @export
|
|
3801
|
+
* @class SecurityGuidesApi
|
|
3802
|
+
* @extends {BaseAPI}
|
|
3803
|
+
*/
|
|
3804
|
+
export declare class SecurityGuidesApi extends BaseAPI {
|
|
3805
|
+
/**
|
|
3806
|
+
* Lists Security Guides
|
|
3807
|
+
* @summary Request Security Guides
|
|
3808
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3809
|
+
* @param {any} [limit] Number of items to return per page
|
|
3810
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3811
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3812
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Security Guides are searchable using attributes `title`, `version`, `ref_id`, `os_major_version`, `profile_ref_id`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3813
|
+
* @param {*} [options] Override http request option.
|
|
3814
|
+
* @throws {RequiredError}
|
|
3815
|
+
* @memberof SecurityGuidesApi
|
|
3816
|
+
*/
|
|
3817
|
+
securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuides200Response, any>>;
|
|
3818
|
+
}
|
|
3819
|
+
/**
|
|
3820
|
+
* SecurityGuidesOSApi - axios parameter creator
|
|
3821
|
+
* @export
|
|
3822
|
+
*/
|
|
3823
|
+
export declare const SecurityGuidesOSApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3824
|
+
/**
|
|
3825
|
+
* This feature is exclusively used by the frontend
|
|
3826
|
+
* @summary Request the list of available OS versions
|
|
3827
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3828
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3829
|
+
* @param {*} [options] Override http request option.
|
|
3830
|
+
* @deprecated
|
|
3831
|
+
* @throws {RequiredError}
|
|
3832
|
+
*/
|
|
3833
|
+
securityGuidesOS: (xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3834
|
+
};
|
|
3835
|
+
/**
|
|
3836
|
+
* SecurityGuidesOSApi - functional programming interface
|
|
3837
|
+
* @export
|
|
3838
|
+
*/
|
|
3839
|
+
export declare const SecurityGuidesOSApiFp: (configuration?: Configuration) => {
|
|
3840
|
+
/**
|
|
3841
|
+
* This feature is exclusively used by the frontend
|
|
3842
|
+
* @summary Request the list of available OS versions
|
|
3843
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3844
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3896
3845
|
* @param {*} [options] Override http request option.
|
|
3846
|
+
* @deprecated
|
|
3897
3847
|
* @throws {RequiredError}
|
|
3898
3848
|
*/
|
|
3899
|
-
|
|
3849
|
+
securityGuidesOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
3900
3850
|
};
|
|
3901
3851
|
/**
|
|
3902
|
-
*
|
|
3852
|
+
* SecurityGuidesOSApi - factory interface
|
|
3903
3853
|
* @export
|
|
3904
|
-
* @interface SecurityGuidesApiSecurityGuidesRequest
|
|
3905
3854
|
*/
|
|
3906
|
-
export
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3927
|
-
* @type {any}
|
|
3928
|
-
* @memberof SecurityGuidesApiSecurityGuides
|
|
3929
|
-
*/
|
|
3930
|
-
readonly sortBy?: any;
|
|
3855
|
+
export declare const SecurityGuidesOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3931
3856
|
/**
|
|
3932
|
-
*
|
|
3933
|
-
* @
|
|
3934
|
-
* @
|
|
3857
|
+
* This feature is exclusively used by the frontend
|
|
3858
|
+
* @summary Request the list of available OS versions
|
|
3859
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3860
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3861
|
+
* @param {*} [options] Override http request option.
|
|
3862
|
+
* @deprecated
|
|
3863
|
+
* @throws {RequiredError}
|
|
3935
3864
|
*/
|
|
3936
|
-
|
|
3937
|
-
}
|
|
3865
|
+
securityGuidesOS(xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
|
|
3866
|
+
};
|
|
3938
3867
|
/**
|
|
3939
|
-
*
|
|
3868
|
+
* SecurityGuidesOSApi - object-oriented interface
|
|
3940
3869
|
* @export
|
|
3941
|
-
* @class
|
|
3870
|
+
* @class SecurityGuidesOSApi
|
|
3942
3871
|
* @extends {BaseAPI}
|
|
3943
3872
|
*/
|
|
3944
|
-
export declare class
|
|
3873
|
+
export declare class SecurityGuidesOSApi extends BaseAPI {
|
|
3945
3874
|
/**
|
|
3946
|
-
*
|
|
3947
|
-
* @summary Request
|
|
3948
|
-
* @param {
|
|
3875
|
+
* This feature is exclusively used by the frontend
|
|
3876
|
+
* @summary Request the list of available OS versions
|
|
3877
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3878
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3949
3879
|
* @param {*} [options] Override http request option.
|
|
3880
|
+
* @deprecated
|
|
3950
3881
|
* @throws {RequiredError}
|
|
3951
|
-
* @memberof
|
|
3882
|
+
* @memberof SecurityGuidesOSApi
|
|
3952
3883
|
*/
|
|
3953
|
-
|
|
3884
|
+
securityGuidesOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
3954
3885
|
}
|
|
3955
3886
|
/**
|
|
3956
3887
|
* SupportedProfilesApi - axios parameter creator
|
|
@@ -3996,49 +3927,16 @@ export declare const SupportedProfilesApiFactory: (configuration?: Configuration
|
|
|
3996
3927
|
/**
|
|
3997
3928
|
* Lists Supported Profiles
|
|
3998
3929
|
* @summary Request Supported Profiles
|
|
3999
|
-
* @param {
|
|
3930
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3931
|
+
* @param {any} [limit] Number of items to return per page
|
|
3932
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3933
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3934
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Supported Profiles are searchable using attributes `os_major_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4000
3935
|
* @param {*} [options] Override http request option.
|
|
4001
3936
|
* @throws {RequiredError}
|
|
4002
3937
|
*/
|
|
4003
|
-
supportedProfiles(
|
|
3938
|
+
supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SupportedProfiles200Response>;
|
|
4004
3939
|
};
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Supported Profiles are searchable using attributes `os_major_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4037
|
-
* @type {any}
|
|
4038
|
-
* @memberof SupportedProfilesApiSupportedProfiles
|
|
4039
|
-
*/
|
|
4040
|
-
readonly filter?: any;
|
|
4041
|
-
}
|
|
4042
3940
|
/**
|
|
4043
3941
|
* SupportedProfilesApi - object-oriented interface
|
|
4044
3942
|
* @export
|
|
@@ -4049,12 +3947,16 @@ export declare class SupportedProfilesApi extends BaseAPI {
|
|
|
4049
3947
|
/**
|
|
4050
3948
|
* Lists Supported Profiles
|
|
4051
3949
|
* @summary Request Supported Profiles
|
|
4052
|
-
* @param {
|
|
3950
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3951
|
+
* @param {any} [limit] Number of items to return per page
|
|
3952
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
3953
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
3954
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Supported Profiles are searchable using attributes `os_major_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4053
3955
|
* @param {*} [options] Override http request option.
|
|
4054
3956
|
* @throws {RequiredError}
|
|
4055
3957
|
* @memberof SupportedProfilesApi
|
|
4056
3958
|
*/
|
|
4057
|
-
supportedProfiles(
|
|
3959
|
+
supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportedProfiles200Response, any>>;
|
|
4058
3960
|
}
|
|
4059
3961
|
/**
|
|
4060
3962
|
* SystemApi - axios parameter creator
|
|
@@ -4094,47 +3996,109 @@ export declare const SystemApiFactory: (configuration?: Configuration, basePath?
|
|
|
4094
3996
|
/**
|
|
4095
3997
|
* Returns a System
|
|
4096
3998
|
* @summary Request a System
|
|
4097
|
-
* @param {
|
|
3999
|
+
* @param {any} systemId
|
|
4000
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4001
|
+
* @param {*} [options] Override http request option.
|
|
4002
|
+
* @throws {RequiredError}
|
|
4003
|
+
*/
|
|
4004
|
+
system(systemId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
|
|
4005
|
+
};
|
|
4006
|
+
/**
|
|
4007
|
+
* SystemApi - object-oriented interface
|
|
4008
|
+
* @export
|
|
4009
|
+
* @class SystemApi
|
|
4010
|
+
* @extends {BaseAPI}
|
|
4011
|
+
*/
|
|
4012
|
+
export declare class SystemApi extends BaseAPI {
|
|
4013
|
+
/**
|
|
4014
|
+
* Returns a System
|
|
4015
|
+
* @summary Request a System
|
|
4016
|
+
* @param {any} systemId
|
|
4017
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4018
|
+
* @param {*} [options] Override http request option.
|
|
4019
|
+
* @throws {RequiredError}
|
|
4020
|
+
* @memberof SystemApi
|
|
4021
|
+
*/
|
|
4022
|
+
system(systemId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
|
|
4023
|
+
}
|
|
4024
|
+
/**
|
|
4025
|
+
* SystemReportsApi - axios parameter creator
|
|
4026
|
+
* @export
|
|
4027
|
+
*/
|
|
4028
|
+
export declare const SystemReportsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4029
|
+
/**
|
|
4030
|
+
* Lists Reports
|
|
4031
|
+
* @summary Request Reports
|
|
4032
|
+
* @param {any} systemId
|
|
4033
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4034
|
+
* @param {any} [limit] Number of items to return per page
|
|
4035
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4036
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4037
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Reports are searchable using attributes `title`, `os_major_version`, and `with_reported_systems`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4098
4038
|
* @param {*} [options] Override http request option.
|
|
4099
4039
|
* @throws {RequiredError}
|
|
4100
4040
|
*/
|
|
4101
|
-
|
|
4041
|
+
systemReports: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4102
4042
|
};
|
|
4103
4043
|
/**
|
|
4104
|
-
*
|
|
4044
|
+
* SystemReportsApi - functional programming interface
|
|
4105
4045
|
* @export
|
|
4106
|
-
* @interface SystemApiSystemRequest
|
|
4107
4046
|
*/
|
|
4108
|
-
export
|
|
4047
|
+
export declare const SystemReportsApiFp: (configuration?: Configuration) => {
|
|
4109
4048
|
/**
|
|
4110
|
-
*
|
|
4111
|
-
* @
|
|
4112
|
-
* @
|
|
4049
|
+
* Lists Reports
|
|
4050
|
+
* @summary Request Reports
|
|
4051
|
+
* @param {any} systemId
|
|
4052
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4053
|
+
* @param {any} [limit] Number of items to return per page
|
|
4054
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4055
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4056
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Reports are searchable using attributes `title`, `os_major_version`, and `with_reported_systems`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4057
|
+
* @param {*} [options] Override http request option.
|
|
4058
|
+
* @throws {RequiredError}
|
|
4113
4059
|
*/
|
|
4114
|
-
|
|
4060
|
+
systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
|
|
4061
|
+
};
|
|
4062
|
+
/**
|
|
4063
|
+
* SystemReportsApi - factory interface
|
|
4064
|
+
* @export
|
|
4065
|
+
*/
|
|
4066
|
+
export declare const SystemReportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4115
4067
|
/**
|
|
4116
|
-
*
|
|
4117
|
-
* @
|
|
4118
|
-
* @
|
|
4068
|
+
* Lists Reports
|
|
4069
|
+
* @summary Request Reports
|
|
4070
|
+
* @param {any} systemId
|
|
4071
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4072
|
+
* @param {any} [limit] Number of items to return per page
|
|
4073
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4074
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4075
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Reports are searchable using attributes `title`, `os_major_version`, and `with_reported_systems`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4076
|
+
* @param {*} [options] Override http request option.
|
|
4077
|
+
* @throws {RequiredError}
|
|
4119
4078
|
*/
|
|
4120
|
-
|
|
4121
|
-
}
|
|
4079
|
+
systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
|
|
4080
|
+
};
|
|
4122
4081
|
/**
|
|
4123
|
-
*
|
|
4082
|
+
* SystemReportsApi - object-oriented interface
|
|
4124
4083
|
* @export
|
|
4125
|
-
* @class
|
|
4084
|
+
* @class SystemReportsApi
|
|
4126
4085
|
* @extends {BaseAPI}
|
|
4127
4086
|
*/
|
|
4128
|
-
export declare class
|
|
4087
|
+
export declare class SystemReportsApi extends BaseAPI {
|
|
4129
4088
|
/**
|
|
4130
|
-
*
|
|
4131
|
-
* @summary Request
|
|
4132
|
-
* @param {
|
|
4089
|
+
* Lists Reports
|
|
4090
|
+
* @summary Request Reports
|
|
4091
|
+
* @param {any} systemId
|
|
4092
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4093
|
+
* @param {any} [limit] Number of items to return per page
|
|
4094
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4095
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4096
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Reports are searchable using attributes `title`, `os_major_version`, and `with_reported_systems`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4133
4097
|
* @param {*} [options] Override http request option.
|
|
4134
4098
|
* @throws {RequiredError}
|
|
4135
|
-
* @memberof
|
|
4099
|
+
* @memberof SystemReportsApi
|
|
4136
4100
|
*/
|
|
4137
|
-
|
|
4101
|
+
systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
|
|
4138
4102
|
}
|
|
4139
4103
|
/**
|
|
4140
4104
|
* SystemsApi - axios parameter creator
|
|
@@ -4148,7 +4112,7 @@ export declare const SystemsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4148
4112
|
* @param {any} [limit] Number of items to return per page
|
|
4149
4113
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4150
4114
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4151
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, and `
|
|
4115
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4152
4116
|
* @param {*} [options] Override http request option.
|
|
4153
4117
|
* @throws {RequiredError}
|
|
4154
4118
|
*/
|
|
@@ -4166,7 +4130,7 @@ export declare const SystemsApiFp: (configuration?: Configuration) => {
|
|
|
4166
4130
|
* @param {any} [limit] Number of items to return per page
|
|
4167
4131
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4168
4132
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4169
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, and `
|
|
4133
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4170
4134
|
* @param {*} [options] Override http request option.
|
|
4171
4135
|
* @throws {RequiredError}
|
|
4172
4136
|
*/
|
|
@@ -4180,65 +4144,103 @@ export declare const SystemsApiFactory: (configuration?: Configuration, basePath
|
|
|
4180
4144
|
/**
|
|
4181
4145
|
* Lists Systems
|
|
4182
4146
|
* @summary Request Systems
|
|
4183
|
-
* @param {
|
|
4147
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4148
|
+
* @param {any} [limit] Number of items to return per page
|
|
4149
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4150
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4151
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4184
4152
|
* @param {*} [options] Override http request option.
|
|
4185
4153
|
* @throws {RequiredError}
|
|
4186
4154
|
*/
|
|
4187
|
-
systems(
|
|
4155
|
+
systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
|
|
4188
4156
|
};
|
|
4189
4157
|
/**
|
|
4190
|
-
*
|
|
4158
|
+
* SystemsApi - object-oriented interface
|
|
4191
4159
|
* @export
|
|
4192
|
-
* @
|
|
4160
|
+
* @class SystemsApi
|
|
4161
|
+
* @extends {BaseAPI}
|
|
4193
4162
|
*/
|
|
4194
|
-
export
|
|
4195
|
-
/**
|
|
4196
|
-
* For internal use only
|
|
4197
|
-
* @type {any}
|
|
4198
|
-
* @memberof SystemsApiSystems
|
|
4199
|
-
*/
|
|
4200
|
-
readonly xRHIDENTITY?: any;
|
|
4163
|
+
export declare class SystemsApi extends BaseAPI {
|
|
4201
4164
|
/**
|
|
4202
|
-
*
|
|
4203
|
-
* @
|
|
4204
|
-
* @
|
|
4165
|
+
* Lists Systems
|
|
4166
|
+
* @summary Request Systems
|
|
4167
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4168
|
+
* @param {any} [limit] Number of items to return per page
|
|
4169
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4170
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4171
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4172
|
+
* @param {*} [options] Override http request option.
|
|
4173
|
+
* @throws {RequiredError}
|
|
4174
|
+
* @memberof SystemsApi
|
|
4205
4175
|
*/
|
|
4206
|
-
|
|
4176
|
+
systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
4177
|
+
}
|
|
4178
|
+
/**
|
|
4179
|
+
* SystemsOSApi - axios parameter creator
|
|
4180
|
+
* @export
|
|
4181
|
+
*/
|
|
4182
|
+
export declare const SystemsOSApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4207
4183
|
/**
|
|
4208
|
-
*
|
|
4209
|
-
* @
|
|
4210
|
-
* @
|
|
4184
|
+
* This feature is exclusively used by the frontend
|
|
4185
|
+
* @summary Request the list of available OS versions
|
|
4186
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4187
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4188
|
+
* @param {*} [options] Override http request option.
|
|
4189
|
+
* @deprecated
|
|
4190
|
+
* @throws {RequiredError}
|
|
4211
4191
|
*/
|
|
4212
|
-
|
|
4192
|
+
systemsOS: (xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4193
|
+
};
|
|
4194
|
+
/**
|
|
4195
|
+
* SystemsOSApi - functional programming interface
|
|
4196
|
+
* @export
|
|
4197
|
+
*/
|
|
4198
|
+
export declare const SystemsOSApiFp: (configuration?: Configuration) => {
|
|
4213
4199
|
/**
|
|
4214
|
-
*
|
|
4215
|
-
* @
|
|
4216
|
-
* @
|
|
4200
|
+
* This feature is exclusively used by the frontend
|
|
4201
|
+
* @summary Request the list of available OS versions
|
|
4202
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4203
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4204
|
+
* @param {*} [options] Override http request option.
|
|
4205
|
+
* @deprecated
|
|
4206
|
+
* @throws {RequiredError}
|
|
4217
4207
|
*/
|
|
4218
|
-
|
|
4208
|
+
systemsOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
4209
|
+
};
|
|
4210
|
+
/**
|
|
4211
|
+
* SystemsOSApi - factory interface
|
|
4212
|
+
* @export
|
|
4213
|
+
*/
|
|
4214
|
+
export declare const SystemsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4219
4215
|
/**
|
|
4220
|
-
*
|
|
4221
|
-
* @
|
|
4222
|
-
* @
|
|
4216
|
+
* This feature is exclusively used by the frontend
|
|
4217
|
+
* @summary Request the list of available OS versions
|
|
4218
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4219
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4220
|
+
* @param {*} [options] Override http request option.
|
|
4221
|
+
* @deprecated
|
|
4222
|
+
* @throws {RequiredError}
|
|
4223
4223
|
*/
|
|
4224
|
-
|
|
4225
|
-
}
|
|
4224
|
+
systemsOS(xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
|
|
4225
|
+
};
|
|
4226
4226
|
/**
|
|
4227
|
-
*
|
|
4227
|
+
* SystemsOSApi - object-oriented interface
|
|
4228
4228
|
* @export
|
|
4229
|
-
* @class
|
|
4229
|
+
* @class SystemsOSApi
|
|
4230
4230
|
* @extends {BaseAPI}
|
|
4231
4231
|
*/
|
|
4232
|
-
export declare class
|
|
4232
|
+
export declare class SystemsOSApi extends BaseAPI {
|
|
4233
4233
|
/**
|
|
4234
|
-
*
|
|
4235
|
-
* @summary Request
|
|
4236
|
-
* @param {
|
|
4234
|
+
* This feature is exclusively used by the frontend
|
|
4235
|
+
* @summary Request the list of available OS versions
|
|
4236
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4237
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4237
4238
|
* @param {*} [options] Override http request option.
|
|
4239
|
+
* @deprecated
|
|
4238
4240
|
* @throws {RequiredError}
|
|
4239
|
-
* @memberof
|
|
4241
|
+
* @memberof SystemsOSApi
|
|
4240
4242
|
*/
|
|
4241
|
-
|
|
4243
|
+
systemsOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
4242
4244
|
}
|
|
4243
4245
|
/**
|
|
4244
4246
|
* SystemsPoliciesApi - axios parameter creator
|
|
@@ -4286,55 +4288,17 @@ export declare const SystemsPoliciesApiFactory: (configuration?: Configuration,
|
|
|
4286
4288
|
/**
|
|
4287
4289
|
* Lists Policies under a System
|
|
4288
4290
|
* @summary Request Policies assigned to a System
|
|
4289
|
-
* @param {
|
|
4291
|
+
* @param {any} systemId
|
|
4292
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4293
|
+
* @param {any} [limit] Number of items to return per page
|
|
4294
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4295
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4296
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Policies are searchable using attributes `title`, `os_major_version`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4290
4297
|
* @param {*} [options] Override http request option.
|
|
4291
4298
|
* @throws {RequiredError}
|
|
4292
4299
|
*/
|
|
4293
|
-
systemsPolicies(
|
|
4300
|
+
systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
|
|
4294
4301
|
};
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Policies are searchable using attributes `title`, `os_major_version`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4333
|
-
* @type {any}
|
|
4334
|
-
* @memberof SystemsPoliciesApiSystemsPolicies
|
|
4335
|
-
*/
|
|
4336
|
-
readonly filter?: any;
|
|
4337
|
-
}
|
|
4338
4302
|
/**
|
|
4339
4303
|
* SystemsPoliciesApi - object-oriented interface
|
|
4340
4304
|
* @export
|
|
@@ -4345,12 +4309,17 @@ export declare class SystemsPoliciesApi extends BaseAPI {
|
|
|
4345
4309
|
/**
|
|
4346
4310
|
* Lists Policies under a System
|
|
4347
4311
|
* @summary Request Policies assigned to a System
|
|
4348
|
-
* @param {
|
|
4312
|
+
* @param {any} systemId
|
|
4313
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4314
|
+
* @param {any} [limit] Number of items to return per page
|
|
4315
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4316
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4317
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Policies are searchable using attributes `title`, `os_major_version`, and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4349
4318
|
* @param {*} [options] Override http request option.
|
|
4350
4319
|
* @throws {RequiredError}
|
|
4351
4320
|
* @memberof SystemsPoliciesApi
|
|
4352
4321
|
*/
|
|
4353
|
-
systemsPolicies(
|
|
4322
|
+
systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
|
|
4354
4323
|
}
|
|
4355
4324
|
/**
|
|
4356
4325
|
* TailoringApi - axios parameter creator
|
|
@@ -4387,42 +4356,19 @@ export declare const TailoringApiFp: (configuration?: Configuration) => {
|
|
|
4387
4356
|
/**
|
|
4388
4357
|
* TailoringApi - factory interface
|
|
4389
4358
|
* @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;
|
|
4359
|
+
*/
|
|
4360
|
+
export declare const TailoringApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4419
4361
|
/**
|
|
4420
|
-
*
|
|
4421
|
-
* @
|
|
4422
|
-
* @
|
|
4362
|
+
* Returns a Tailoring
|
|
4363
|
+
* @summary Request a Tailoring
|
|
4364
|
+
* @param {any} policyId
|
|
4365
|
+
* @param {any} tailoringId UUID or OS minor version number
|
|
4366
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4367
|
+
* @param {*} [options] Override http request option.
|
|
4368
|
+
* @throws {RequiredError}
|
|
4423
4369
|
*/
|
|
4424
|
-
|
|
4425
|
-
}
|
|
4370
|
+
tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Tailoring200Response>;
|
|
4371
|
+
};
|
|
4426
4372
|
/**
|
|
4427
4373
|
* TailoringApi - object-oriented interface
|
|
4428
4374
|
* @export
|
|
@@ -4433,12 +4379,14 @@ export declare class TailoringApi extends BaseAPI {
|
|
|
4433
4379
|
/**
|
|
4434
4380
|
* Returns a Tailoring
|
|
4435
4381
|
* @summary Request a Tailoring
|
|
4436
|
-
* @param {
|
|
4382
|
+
* @param {any} policyId
|
|
4383
|
+
* @param {any} tailoringId UUID or OS minor version number
|
|
4384
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4437
4385
|
* @param {*} [options] Override http request option.
|
|
4438
4386
|
* @throws {RequiredError}
|
|
4439
4387
|
* @memberof TailoringApi
|
|
4440
4388
|
*/
|
|
4441
|
-
tailoring(
|
|
4389
|
+
tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailoring200Response, any>>;
|
|
4442
4390
|
}
|
|
4443
4391
|
/**
|
|
4444
4392
|
* TailoringFileApi - axios parameter creator
|
|
@@ -4480,37 +4428,14 @@ export declare const TailoringFileApiFactory: (configuration?: Configuration, ba
|
|
|
4480
4428
|
/**
|
|
4481
4429
|
* Returns a Tailoring File
|
|
4482
4430
|
* @summary Request a Tailoring file
|
|
4483
|
-
* @param {
|
|
4431
|
+
* @param {any} policyId
|
|
4432
|
+
* @param {any} tailoringId UUID or OS minor version number
|
|
4433
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4484
4434
|
* @param {*} [options] Override http request option.
|
|
4485
4435
|
* @throws {RequiredError}
|
|
4486
4436
|
*/
|
|
4487
|
-
tailoringFile(
|
|
4437
|
+
tailoringFile(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<TailoringFile>;
|
|
4488
4438
|
};
|
|
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
4439
|
/**
|
|
4515
4440
|
* TailoringFileApi - object-oriented interface
|
|
4516
4441
|
* @export
|
|
@@ -4521,12 +4446,14 @@ export declare class TailoringFileApi extends BaseAPI {
|
|
|
4521
4446
|
/**
|
|
4522
4447
|
* Returns a Tailoring File
|
|
4523
4448
|
* @summary Request a Tailoring file
|
|
4524
|
-
* @param {
|
|
4449
|
+
* @param {any} policyId
|
|
4450
|
+
* @param {any} tailoringId UUID or OS minor version number
|
|
4451
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4525
4452
|
* @param {*} [options] Override http request option.
|
|
4526
4453
|
* @throws {RequiredError}
|
|
4527
4454
|
* @memberof TailoringFileApi
|
|
4528
4455
|
*/
|
|
4529
|
-
tailoringFile(
|
|
4456
|
+
tailoringFile(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TailoringFile, any>>;
|
|
4530
4457
|
}
|
|
4531
4458
|
/**
|
|
4532
4459
|
* TailoringRulesApi - axios parameter creator
|
|
@@ -4542,7 +4469,7 @@ export declare const TailoringRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
4542
4469
|
* @param {any} [limit] Number of items to return per page
|
|
4543
4470
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4544
4471
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4545
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title` and `
|
|
4472
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4546
4473
|
* @param {*} [options] Override http request option.
|
|
4547
4474
|
* @throws {RequiredError}
|
|
4548
4475
|
*/
|
|
@@ -4562,7 +4489,7 @@ export declare const TailoringRulesApiFp: (configuration?: Configuration) => {
|
|
|
4562
4489
|
* @param {any} [limit] Number of items to return per page
|
|
4563
4490
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4564
4491
|
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4565
|
-
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title` and `
|
|
4492
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4566
4493
|
* @param {*} [options] Override http request option.
|
|
4567
4494
|
* @throws {RequiredError}
|
|
4568
4495
|
*/
|
|
@@ -4576,61 +4503,18 @@ export declare const TailoringRulesApiFactory: (configuration?: Configuration, b
|
|
|
4576
4503
|
/**
|
|
4577
4504
|
* Lists Rules assigned to a Tailoring
|
|
4578
4505
|
* @summary Request Rules assigned to a Tailoring
|
|
4579
|
-
* @param {
|
|
4506
|
+
* @param {any} policyId
|
|
4507
|
+
* @param {any} tailoringId
|
|
4508
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4509
|
+
* @param {any} [limit] Number of items to return per page
|
|
4510
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4511
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4512
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4580
4513
|
* @param {*} [options] Override http request option.
|
|
4581
4514
|
* @throws {RequiredError}
|
|
4582
4515
|
*/
|
|
4583
|
-
tailoringRules(
|
|
4516
|
+
tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
|
|
4584
4517
|
};
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title` and `severity`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4629
|
-
* @type {any}
|
|
4630
|
-
* @memberof TailoringRulesApiTailoringRules
|
|
4631
|
-
*/
|
|
4632
|
-
readonly filter?: any;
|
|
4633
|
-
}
|
|
4634
4518
|
/**
|
|
4635
4519
|
* TailoringRulesApi - object-oriented interface
|
|
4636
4520
|
* @export
|
|
@@ -4641,12 +4525,18 @@ export declare class TailoringRulesApi extends BaseAPI {
|
|
|
4641
4525
|
/**
|
|
4642
4526
|
* Lists Rules assigned to a Tailoring
|
|
4643
4527
|
* @summary Request Rules assigned to a Tailoring
|
|
4644
|
-
* @param {
|
|
4528
|
+
* @param {any} policyId
|
|
4529
|
+
* @param {any} tailoringId
|
|
4530
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4531
|
+
* @param {any} [limit] Number of items to return per page
|
|
4532
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4533
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4534
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Rules are searchable using attributes `title`, `severity`, and `remediation_available`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4645
4535
|
* @param {*} [options] Override http request option.
|
|
4646
4536
|
* @throws {RequiredError}
|
|
4647
4537
|
* @memberof TailoringRulesApi
|
|
4648
4538
|
*/
|
|
4649
|
-
tailoringRules(
|
|
4539
|
+
tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
4650
4540
|
}
|
|
4651
4541
|
/**
|
|
4652
4542
|
* TailoringsApi - axios parameter creator
|
|
@@ -4694,55 +4584,17 @@ export declare const TailoringsApiFactory: (configuration?: Configuration, baseP
|
|
|
4694
4584
|
/**
|
|
4695
4585
|
* Lists Tailorings
|
|
4696
4586
|
* @summary Request Tailorings
|
|
4697
|
-
* @param {
|
|
4587
|
+
* @param {any} policyId
|
|
4588
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4589
|
+
* @param {any} [limit] Number of items to return per page
|
|
4590
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4591
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4592
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Tailorings are searchable using attributes `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4698
4593
|
* @param {*} [options] Override http request option.
|
|
4699
4594
|
* @throws {RequiredError}
|
|
4700
4595
|
*/
|
|
4701
|
-
tailorings(
|
|
4596
|
+
tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Tailorings200Response>;
|
|
4702
4597
|
};
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Tailorings are searchable using attributes `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4741
|
-
* @type {any}
|
|
4742
|
-
* @memberof TailoringsApiTailorings
|
|
4743
|
-
*/
|
|
4744
|
-
readonly filter?: any;
|
|
4745
|
-
}
|
|
4746
4598
|
/**
|
|
4747
4599
|
* TailoringsApi - object-oriented interface
|
|
4748
4600
|
* @export
|
|
@@ -4753,12 +4605,17 @@ export declare class TailoringsApi extends BaseAPI {
|
|
|
4753
4605
|
/**
|
|
4754
4606
|
* Lists Tailorings
|
|
4755
4607
|
* @summary Request Tailorings
|
|
4756
|
-
* @param {
|
|
4608
|
+
* @param {any} policyId
|
|
4609
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4610
|
+
* @param {any} [limit] Number of items to return per page
|
|
4611
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
4612
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
4613
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Tailorings are searchable using attributes `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4757
4614
|
* @param {*} [options] Override http request option.
|
|
4758
4615
|
* @throws {RequiredError}
|
|
4759
4616
|
* @memberof TailoringsApi
|
|
4760
4617
|
*/
|
|
4761
|
-
tailorings(
|
|
4618
|
+
tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailorings200Response, any>>;
|
|
4762
4619
|
}
|
|
4763
4620
|
/**
|
|
4764
4621
|
* UnassignRuleApi - axios parameter creator
|
|
@@ -4770,7 +4627,7 @@ export declare const UnassignRuleApiAxiosParamCreator: (configuration?: Configur
|
|
|
4770
4627
|
* @summary Unassign a Rule from a Tailoring
|
|
4771
4628
|
* @param {any} policyId
|
|
4772
4629
|
* @param {any} tailoringId
|
|
4773
|
-
* @param {any} ruleId UUID or ref_id
|
|
4630
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
4774
4631
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4775
4632
|
* @param {*} [options] Override http request option.
|
|
4776
4633
|
* @throws {RequiredError}
|
|
@@ -4787,7 +4644,7 @@ export declare const UnassignRuleApiFp: (configuration?: Configuration) => {
|
|
|
4787
4644
|
* @summary Unassign a Rule from a Tailoring
|
|
4788
4645
|
* @param {any} policyId
|
|
4789
4646
|
* @param {any} tailoringId
|
|
4790
|
-
* @param {any} ruleId UUID or ref_id
|
|
4647
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
4791
4648
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4792
4649
|
* @param {*} [options] Override http request option.
|
|
4793
4650
|
* @throws {RequiredError}
|
|
@@ -4802,43 +4659,15 @@ export declare const UnassignRuleApiFactory: (configuration?: Configuration, bas
|
|
|
4802
4659
|
/**
|
|
4803
4660
|
* Unassigns a Rule from a Tailoring
|
|
4804
4661
|
* @summary Unassign a Rule from a Tailoring
|
|
4805
|
-
* @param {
|
|
4662
|
+
* @param {any} policyId
|
|
4663
|
+
* @param {any} tailoringId
|
|
4664
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
4665
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4806
4666
|
* @param {*} [options] Override http request option.
|
|
4807
4667
|
* @throws {RequiredError}
|
|
4808
4668
|
*/
|
|
4809
|
-
unassignRule(
|
|
4669
|
+
unassignRule(policyId: any, tailoringId: any, ruleId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<void>;
|
|
4810
4670
|
};
|
|
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
4671
|
/**
|
|
4843
4672
|
* UnassignRuleApi - object-oriented interface
|
|
4844
4673
|
* @export
|
|
@@ -4849,12 +4678,15 @@ export declare class UnassignRuleApi extends BaseAPI {
|
|
|
4849
4678
|
/**
|
|
4850
4679
|
* Unassigns a Rule from a Tailoring
|
|
4851
4680
|
* @summary Unassign a Rule from a Tailoring
|
|
4852
|
-
* @param {
|
|
4681
|
+
* @param {any} policyId
|
|
4682
|
+
* @param {any} tailoringId
|
|
4683
|
+
* @param {any} ruleId UUID or a ref_id with \'.\' characters replaced with \'-\'
|
|
4684
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4853
4685
|
* @param {*} [options] Override http request option.
|
|
4854
4686
|
* @throws {RequiredError}
|
|
4855
4687
|
* @memberof UnassignRuleApi
|
|
4856
4688
|
*/
|
|
4857
|
-
unassignRule(
|
|
4689
|
+
unassignRule(policyId: any, tailoringId: any, ruleId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4858
4690
|
}
|
|
4859
4691
|
/**
|
|
4860
4692
|
* UnassignSystemApi - axios parameter creator
|
|
@@ -4896,37 +4728,14 @@ export declare const UnassignSystemApiFactory: (configuration?: Configuration, b
|
|
|
4896
4728
|
/**
|
|
4897
4729
|
* Unassigns a System from a Policy
|
|
4898
4730
|
* @summary Unassign a System from a Policy
|
|
4899
|
-
* @param {
|
|
4731
|
+
* @param {any} systemId
|
|
4732
|
+
* @param {any} policyId
|
|
4733
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4900
4734
|
* @param {*} [options] Override http request option.
|
|
4901
4735
|
* @throws {RequiredError}
|
|
4902
4736
|
*/
|
|
4903
|
-
unassignSystem(
|
|
4737
|
+
unassignSystem(systemId: any, policyId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<System200Response>;
|
|
4904
4738
|
};
|
|
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
4739
|
/**
|
|
4931
4740
|
* UnassignSystemApi - object-oriented interface
|
|
4932
4741
|
* @export
|
|
@@ -4937,12 +4746,14 @@ export declare class UnassignSystemApi extends BaseAPI {
|
|
|
4937
4746
|
/**
|
|
4938
4747
|
* Unassigns a System from a Policy
|
|
4939
4748
|
* @summary Unassign a System from a Policy
|
|
4940
|
-
* @param {
|
|
4749
|
+
* @param {any} systemId
|
|
4750
|
+
* @param {any} policyId
|
|
4751
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4941
4752
|
* @param {*} [options] Override http request option.
|
|
4942
4753
|
* @throws {RequiredError}
|
|
4943
4754
|
* @memberof UnassignSystemApi
|
|
4944
4755
|
*/
|
|
4945
|
-
unassignSystem(
|
|
4756
|
+
unassignSystem(systemId: any, policyId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<System200Response, any>>;
|
|
4946
4757
|
}
|
|
4947
4758
|
/**
|
|
4948
4759
|
* UpdatePolicyApi - axios parameter creator
|
|
@@ -4984,37 +4795,14 @@ export declare const UpdatePolicyApiFactory: (configuration?: Configuration, bas
|
|
|
4984
4795
|
/**
|
|
4985
4796
|
* Updates a Policy with the provided attributes
|
|
4986
4797
|
* @summary Update a Policy
|
|
4987
|
-
* @param {
|
|
4798
|
+
* @param {any} policyId
|
|
4799
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4800
|
+
* @param {PolicyUpdate} [policyUpdate]
|
|
4988
4801
|
* @param {*} [options] Override http request option.
|
|
4989
4802
|
* @throws {RequiredError}
|
|
4990
4803
|
*/
|
|
4991
|
-
updatePolicy(
|
|
4804
|
+
updatePolicy(policyId: any, xRHIDENTITY?: any, policyUpdate?: PolicyUpdate, options?: any): AxiosPromise<CreatePolicy201Response>;
|
|
4992
4805
|
};
|
|
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
4806
|
/**
|
|
5019
4807
|
* UpdatePolicyApi - object-oriented interface
|
|
5020
4808
|
* @export
|
|
@@ -5025,12 +4813,14 @@ export declare class UpdatePolicyApi extends BaseAPI {
|
|
|
5025
4813
|
/**
|
|
5026
4814
|
* Updates a Policy with the provided attributes
|
|
5027
4815
|
* @summary Update a Policy
|
|
5028
|
-
* @param {
|
|
4816
|
+
* @param {any} policyId
|
|
4817
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4818
|
+
* @param {PolicyUpdate} [policyUpdate]
|
|
5029
4819
|
* @param {*} [options] Override http request option.
|
|
5030
4820
|
* @throws {RequiredError}
|
|
5031
4821
|
* @memberof UpdatePolicyApi
|
|
5032
4822
|
*/
|
|
5033
|
-
updatePolicy(
|
|
4823
|
+
updatePolicy(policyId: any, xRHIDENTITY?: any, policyUpdate?: PolicyUpdate, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
|
|
5034
4824
|
}
|
|
5035
4825
|
/**
|
|
5036
4826
|
* UpdateTailoringApi - axios parameter creator
|
|
@@ -5074,43 +4864,15 @@ export declare const UpdateTailoringApiFactory: (configuration?: Configuration,
|
|
|
5074
4864
|
/**
|
|
5075
4865
|
* Updates a Tailoring with the provided value_overrides
|
|
5076
4866
|
* @summary Update a Tailoring
|
|
5077
|
-
* @param {
|
|
4867
|
+
* @param {any} policyId
|
|
4868
|
+
* @param {any} tailoringId UUID or OS minor version number
|
|
4869
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4870
|
+
* @param {Tailoring} [tailoring]
|
|
5078
4871
|
* @param {*} [options] Override http request option.
|
|
5079
4872
|
* @throws {RequiredError}
|
|
5080
4873
|
*/
|
|
5081
|
-
updateTailoring(
|
|
4874
|
+
updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: any): AxiosPromise<Tailoring200Response>;
|
|
5082
4875
|
};
|
|
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
4876
|
/**
|
|
5115
4877
|
* UpdateTailoringApi - object-oriented interface
|
|
5116
4878
|
* @export
|
|
@@ -5121,12 +4883,15 @@ export declare class UpdateTailoringApi extends BaseAPI {
|
|
|
5121
4883
|
/**
|
|
5122
4884
|
* Updates a Tailoring with the provided value_overrides
|
|
5123
4885
|
* @summary Update a Tailoring
|
|
5124
|
-
* @param {
|
|
4886
|
+
* @param {any} policyId
|
|
4887
|
+
* @param {any} tailoringId UUID or OS minor version number
|
|
4888
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
4889
|
+
* @param {Tailoring} [tailoring]
|
|
5125
4890
|
* @param {*} [options] Override http request option.
|
|
5126
4891
|
* @throws {RequiredError}
|
|
5127
4892
|
* @memberof UpdateTailoringApi
|
|
5128
4893
|
*/
|
|
5129
|
-
updateTailoring(
|
|
4894
|
+
updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailoring200Response, any>>;
|
|
5130
4895
|
}
|
|
5131
4896
|
/**
|
|
5132
4897
|
* ValueDefinitionApi - axios parameter creator
|
|
@@ -5168,37 +4933,14 @@ export declare const ValueDefinitionApiFactory: (configuration?: Configuration,
|
|
|
5168
4933
|
/**
|
|
5169
4934
|
* Returns a Value Definition
|
|
5170
4935
|
* @summary Request a Value Definition
|
|
5171
|
-
* @param {
|
|
4936
|
+
* @param {any} securityGuideId
|
|
4937
|
+
* @param {any} valueDefinitionId
|
|
4938
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
5172
4939
|
* @param {*} [options] Override http request option.
|
|
5173
4940
|
* @throws {RequiredError}
|
|
5174
4941
|
*/
|
|
5175
|
-
valueDefinition(
|
|
4942
|
+
valueDefinition(securityGuideId: any, valueDefinitionId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<ValueDefinition200Response>;
|
|
5176
4943
|
};
|
|
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
4944
|
/**
|
|
5203
4945
|
* ValueDefinitionApi - object-oriented interface
|
|
5204
4946
|
* @export
|
|
@@ -5209,12 +4951,14 @@ export declare class ValueDefinitionApi extends BaseAPI {
|
|
|
5209
4951
|
/**
|
|
5210
4952
|
* Returns a Value Definition
|
|
5211
4953
|
* @summary Request a Value Definition
|
|
5212
|
-
* @param {
|
|
4954
|
+
* @param {any} securityGuideId
|
|
4955
|
+
* @param {any} valueDefinitionId
|
|
4956
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
5213
4957
|
* @param {*} [options] Override http request option.
|
|
5214
4958
|
* @throws {RequiredError}
|
|
5215
4959
|
* @memberof ValueDefinitionApi
|
|
5216
4960
|
*/
|
|
5217
|
-
valueDefinition(
|
|
4961
|
+
valueDefinition(securityGuideId: any, valueDefinitionId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinition200Response, any>>;
|
|
5218
4962
|
}
|
|
5219
4963
|
/**
|
|
5220
4964
|
* ValueDefinitionsApi - axios parameter creator
|
|
@@ -5262,55 +5006,17 @@ export declare const ValueDefinitionsApiFactory: (configuration?: Configuration,
|
|
|
5262
5006
|
/**
|
|
5263
5007
|
* Lists Value Definitions
|
|
5264
5008
|
* @summary Request Value Definitions
|
|
5265
|
-
* @param {
|
|
5009
|
+
* @param {any} securityGuideId
|
|
5010
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
5011
|
+
* @param {any} [limit] Number of items to return per page
|
|
5012
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
5013
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
5014
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Value Definitions are searchable using attributes `title` and `ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
5266
5015
|
* @param {*} [options] Override http request option.
|
|
5267
5016
|
* @throws {RequiredError}
|
|
5268
5017
|
*/
|
|
5269
|
-
valueDefinitions(
|
|
5018
|
+
valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ValueDefinitions200Response>;
|
|
5270
5019
|
};
|
|
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 (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` 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 <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Value Definitions are searchable using attributes `title` and `ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
5309
|
-
* @type {any}
|
|
5310
|
-
* @memberof ValueDefinitionsApiValueDefinitions
|
|
5311
|
-
*/
|
|
5312
|
-
readonly filter?: any;
|
|
5313
|
-
}
|
|
5314
5020
|
/**
|
|
5315
5021
|
* ValueDefinitionsApi - object-oriented interface
|
|
5316
5022
|
* @export
|
|
@@ -5321,10 +5027,15 @@ export declare class ValueDefinitionsApi extends BaseAPI {
|
|
|
5321
5027
|
/**
|
|
5322
5028
|
* Lists Value Definitions
|
|
5323
5029
|
* @summary Request Value Definitions
|
|
5324
|
-
* @param {
|
|
5030
|
+
* @param {any} securityGuideId
|
|
5031
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
5032
|
+
* @param {any} [limit] Number of items to return per page
|
|
5033
|
+
* @param {any} [offset] Offset of first item of paginated response
|
|
5034
|
+
* @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (`<key>:asc` or `<key>:desc`).<br><br>If no direction is selected, `<key>:asc` is used by default.
|
|
5035
|
+
* @param {any} [filter] Query string to filter items by their attributes. Compliant with <a href=\"https://github.com/wvanbergen/scoped_search/wiki/Query-language\" target=\"_blank\" title=\"github.com/wvanbergen/scoped_search\">scoped_search query language</a>. However, only `=` or `!=` (resp. `<>`) operators are supported.<br><br>Value Definitions are searchable using attributes `title` and `ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
5325
5036
|
* @param {*} [options] Override http request option.
|
|
5326
5037
|
* @throws {RequiredError}
|
|
5327
5038
|
* @memberof ValueDefinitionsApi
|
|
5328
5039
|
*/
|
|
5329
|
-
valueDefinitions(
|
|
5040
|
+
valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinitions200Response, any>>;
|
|
5330
5041
|
}
|