@redhat-cloud-services/compliance-client 0.2.1 → 0.2.3
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 +4 -0
- package/dist/Policies/index.d.ts +7 -1
- package/dist/Policies/index.js +7 -4
- package/dist/Policies/index.js.map +1 -1
- package/dist/PolicySystems/index.d.ts +14 -2
- package/dist/PolicySystems/index.js +10 -4
- package/dist/PolicySystems/index.js.map +1 -1
- package/dist/ProfileRules/index.d.ts +8 -2
- package/dist/ProfileRules/index.js +7 -4
- package/dist/ProfileRules/index.js.map +1 -1
- package/dist/Profiles/index.d.ts +7 -1
- package/dist/Profiles/index.js +7 -4
- package/dist/Profiles/index.js.map +1 -1
- package/dist/ReportRuleResults/index.d.ts +7 -1
- package/dist/ReportRuleResults/index.js +7 -4
- package/dist/ReportRuleResults/index.js.map +1 -1
- package/dist/ReportSystems/index.d.ts +14 -2
- package/dist/ReportSystems/index.js +10 -4
- package/dist/ReportSystems/index.js.map +1 -1
- package/dist/ReportTestResults/index.d.ts +7 -1
- package/dist/ReportTestResults/index.js +7 -4
- package/dist/ReportTestResults/index.js.map +1 -1
- package/dist/Reports/index.d.ts +7 -1
- package/dist/Reports/index.js +7 -4
- package/dist/Reports/index.js.map +1 -1
- package/dist/ReportsOS/index.d.ts +27 -0
- package/dist/ReportsOS/index.js +55 -0
- package/dist/ReportsOS/index.js.map +1 -0
- package/dist/RuleGroups/index.d.ts +7 -1
- package/dist/RuleGroups/index.js +7 -4
- package/dist/RuleGroups/index.js.map +1 -1
- package/dist/Rules/index.d.ts +8 -2
- package/dist/Rules/index.js +7 -4
- package/dist/Rules/index.js.map +1 -1
- package/dist/SecurityGuides/index.d.ts +7 -1
- package/dist/SecurityGuides/index.js +7 -4
- package/dist/SecurityGuides/index.js.map +1 -1
- package/dist/SupportedProfiles/index.d.ts +7 -1
- package/dist/SupportedProfiles/index.js +7 -4
- package/dist/SupportedProfiles/index.js.map +1 -1
- package/dist/SystemReports/index.d.ts +8 -2
- package/dist/SystemReports/index.js +7 -4
- package/dist/SystemReports/index.js.map +1 -1
- package/dist/Systems/index.d.ts +14 -2
- package/dist/Systems/index.js +10 -4
- package/dist/Systems/index.js.map +1 -1
- package/dist/SystemsPolicies/index.d.ts +8 -2
- package/dist/SystemsPolicies/index.js +7 -4
- package/dist/SystemsPolicies/index.js.map +1 -1
- package/dist/TailoringRules/index.d.ts +8 -2
- package/dist/TailoringRules/index.js +7 -4
- package/dist/TailoringRules/index.js.map +1 -1
- package/dist/Tailorings/index.d.ts +7 -1
- package/dist/Tailorings/index.js +7 -4
- package/dist/Tailorings/index.js.map +1 -1
- package/dist/ValueDefinitions/index.d.ts +7 -1
- package/dist/ValueDefinitions/index.js +7 -4
- package/dist/ValueDefinitions/index.js.map +1 -1
- package/dist/api.d.ts +299 -105
- package/dist/api.js +440 -161
- package/dist/api.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +44 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -634,6 +634,18 @@ export interface Rule {
|
|
|
634
634
|
* @memberof Rule
|
|
635
635
|
*/
|
|
636
636
|
'severity'?: any;
|
|
637
|
+
/**
|
|
638
|
+
*
|
|
639
|
+
* @type {RuleIdentifier}
|
|
640
|
+
* @memberof Rule
|
|
641
|
+
*/
|
|
642
|
+
'identifier'?: RuleIdentifier;
|
|
643
|
+
/**
|
|
644
|
+
* Array of the Rule References
|
|
645
|
+
* @type {any}
|
|
646
|
+
* @memberof Rule
|
|
647
|
+
*/
|
|
648
|
+
'references'?: any;
|
|
637
649
|
/**
|
|
638
650
|
* Whether or not a remediation is available for the given rule.
|
|
639
651
|
* @type {any}
|
|
@@ -781,6 +793,25 @@ export interface RuleGroups200Response {
|
|
|
781
793
|
*/
|
|
782
794
|
'data'?: any;
|
|
783
795
|
}
|
|
796
|
+
/**
|
|
797
|
+
* Identifier of the Rule
|
|
798
|
+
* @export
|
|
799
|
+
* @interface RuleIdentifier
|
|
800
|
+
*/
|
|
801
|
+
export interface RuleIdentifier {
|
|
802
|
+
/**
|
|
803
|
+
*
|
|
804
|
+
* @type {any}
|
|
805
|
+
* @memberof RuleIdentifier
|
|
806
|
+
*/
|
|
807
|
+
'label'?: any;
|
|
808
|
+
/**
|
|
809
|
+
*
|
|
810
|
+
* @type {any}
|
|
811
|
+
* @memberof RuleIdentifier
|
|
812
|
+
*/
|
|
813
|
+
'system'?: any;
|
|
814
|
+
}
|
|
784
815
|
/**
|
|
785
816
|
*
|
|
786
817
|
* @export
|
|
@@ -1035,6 +1066,12 @@ export interface SupportedProfile {
|
|
|
1035
1066
|
* @memberof SupportedProfile
|
|
1036
1067
|
*/
|
|
1037
1068
|
'title'?: any;
|
|
1069
|
+
/**
|
|
1070
|
+
* Longer description of the Profile
|
|
1071
|
+
* @type {any}
|
|
1072
|
+
* @memberof SupportedProfile
|
|
1073
|
+
*/
|
|
1074
|
+
'description'?: any;
|
|
1038
1075
|
/**
|
|
1039
1076
|
* UUID of the latest Security Guide supporting this Profile
|
|
1040
1077
|
* @type {any}
|
|
@@ -1413,6 +1450,12 @@ export interface TestResult {
|
|
|
1413
1450
|
* @memberof TestResult
|
|
1414
1451
|
*/
|
|
1415
1452
|
'compliant'?: any;
|
|
1453
|
+
/**
|
|
1454
|
+
* Compliance Score of the System within a given Report.
|
|
1455
|
+
* @type {any}
|
|
1456
|
+
* @memberof TestResult
|
|
1457
|
+
*/
|
|
1458
|
+
'score'?: any;
|
|
1416
1459
|
/**
|
|
1417
1460
|
* Whether the System is supported or not by a Profile within a given Policy.
|
|
1418
1461
|
* @type {any}
|
|
@@ -1430,7 +1473,7 @@ export interface TestResult {
|
|
|
1430
1473
|
* @type {any}
|
|
1431
1474
|
* @memberof TestResult
|
|
1432
1475
|
*/
|
|
1433
|
-
'
|
|
1476
|
+
'end_time'?: any;
|
|
1434
1477
|
}
|
|
1435
1478
|
export declare const TestResultTypeEnum: {
|
|
1436
1479
|
readonly TestResult: "test_result";
|
|
@@ -2024,12 +2067,13 @@ export declare const PoliciesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2024
2067
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2025
2068
|
* @param {any} [limit] Number of items to return per page
|
|
2026
2069
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2070
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2027
2071
|
* @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.
|
|
2028
2072
|
* @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`)
|
|
2029
2073
|
* @param {*} [options] Override http request option.
|
|
2030
2074
|
* @throws {RequiredError}
|
|
2031
2075
|
*/
|
|
2032
|
-
policies: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2076
|
+
policies: (xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2033
2077
|
};
|
|
2034
2078
|
/**
|
|
2035
2079
|
* PoliciesApi - functional programming interface
|
|
@@ -2042,12 +2086,13 @@ export declare const PoliciesApiFp: (configuration?: Configuration) => {
|
|
|
2042
2086
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2043
2087
|
* @param {any} [limit] Number of items to return per page
|
|
2044
2088
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2089
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2045
2090
|
* @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.
|
|
2046
2091
|
* @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`)
|
|
2047
2092
|
* @param {*} [options] Override http request option.
|
|
2048
2093
|
* @throws {RequiredError}
|
|
2049
2094
|
*/
|
|
2050
|
-
policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policies200Response>>;
|
|
2095
|
+
policies(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policies200Response>>;
|
|
2051
2096
|
};
|
|
2052
2097
|
/**
|
|
2053
2098
|
* PoliciesApi - factory interface
|
|
@@ -2060,12 +2105,13 @@ export declare const PoliciesApiFactory: (configuration?: Configuration, basePat
|
|
|
2060
2105
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2061
2106
|
* @param {any} [limit] Number of items to return per page
|
|
2062
2107
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2108
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2063
2109
|
* @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
2110
|
* @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`)
|
|
2065
2111
|
* @param {*} [options] Override http request option.
|
|
2066
2112
|
* @throws {RequiredError}
|
|
2067
2113
|
*/
|
|
2068
|
-
policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
|
|
2114
|
+
policies(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
|
|
2069
2115
|
};
|
|
2070
2116
|
/**
|
|
2071
2117
|
* PoliciesApi - object-oriented interface
|
|
@@ -2080,13 +2126,14 @@ export declare class PoliciesApi extends BaseAPI {
|
|
|
2080
2126
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2081
2127
|
* @param {any} [limit] Number of items to return per page
|
|
2082
2128
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2129
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2083
2130
|
* @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
2131
|
* @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`)
|
|
2085
2132
|
* @param {*} [options] Override http request option.
|
|
2086
2133
|
* @throws {RequiredError}
|
|
2087
2134
|
* @memberof PoliciesApi
|
|
2088
2135
|
*/
|
|
2089
|
-
policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
|
|
2136
|
+
policies(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
|
|
2090
2137
|
}
|
|
2091
2138
|
/**
|
|
2092
2139
|
* PolicyApi - axios parameter creator
|
|
@@ -2161,14 +2208,16 @@ export declare const PolicySystemsApiAxiosParamCreator: (configuration?: Configu
|
|
|
2161
2208
|
* @summary Request Systems assigned to a Policy
|
|
2162
2209
|
* @param {any} policyId
|
|
2163
2210
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2211
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
2164
2212
|
* @param {any} [limit] Number of items to return per page
|
|
2165
2213
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2214
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2166
2215
|
* @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.
|
|
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`, `
|
|
2216
|
+
* @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_minor_version`, and `group_name`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2168
2217
|
* @param {*} [options] Override http request option.
|
|
2169
2218
|
* @throws {RequiredError}
|
|
2170
2219
|
*/
|
|
2171
|
-
policySystems: (policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2220
|
+
policySystems: (policyId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2172
2221
|
};
|
|
2173
2222
|
/**
|
|
2174
2223
|
* PolicySystemsApi - functional programming interface
|
|
@@ -2180,14 +2229,16 @@ export declare const PolicySystemsApiFp: (configuration?: Configuration) => {
|
|
|
2180
2229
|
* @summary Request Systems assigned to a Policy
|
|
2181
2230
|
* @param {any} policyId
|
|
2182
2231
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2232
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
2183
2233
|
* @param {any} [limit] Number of items to return per page
|
|
2184
2234
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2235
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2185
2236
|
* @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.
|
|
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`, `
|
|
2237
|
+
* @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_minor_version`, and `group_name`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2187
2238
|
* @param {*} [options] Override http request option.
|
|
2188
2239
|
* @throws {RequiredError}
|
|
2189
2240
|
*/
|
|
2190
|
-
policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
|
|
2241
|
+
policySystems(policyId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
|
|
2191
2242
|
};
|
|
2192
2243
|
/**
|
|
2193
2244
|
* PolicySystemsApi - factory interface
|
|
@@ -2199,14 +2250,16 @@ export declare const PolicySystemsApiFactory: (configuration?: Configuration, ba
|
|
|
2199
2250
|
* @summary Request Systems assigned to a Policy
|
|
2200
2251
|
* @param {any} policyId
|
|
2201
2252
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2253
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
2202
2254
|
* @param {any} [limit] Number of items to return per page
|
|
2203
2255
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2256
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2204
2257
|
* @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`, `
|
|
2258
|
+
* @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_minor_version`, and `group_name`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2206
2259
|
* @param {*} [options] Override http request option.
|
|
2207
2260
|
* @throws {RequiredError}
|
|
2208
2261
|
*/
|
|
2209
|
-
policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
|
|
2262
|
+
policySystems(policyId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
|
|
2210
2263
|
};
|
|
2211
2264
|
/**
|
|
2212
2265
|
* PolicySystemsApi - object-oriented interface
|
|
@@ -2220,15 +2273,17 @@ export declare class PolicySystemsApi extends BaseAPI {
|
|
|
2220
2273
|
* @summary Request Systems assigned to a Policy
|
|
2221
2274
|
* @param {any} policyId
|
|
2222
2275
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2276
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
2223
2277
|
* @param {any} [limit] Number of items to return per page
|
|
2224
2278
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2279
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2225
2280
|
* @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`, `
|
|
2281
|
+
* @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_minor_version`, and `group_name`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2227
2282
|
* @param {*} [options] Override http request option.
|
|
2228
2283
|
* @throws {RequiredError}
|
|
2229
2284
|
* @memberof PolicySystemsApi
|
|
2230
2285
|
*/
|
|
2231
|
-
policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
2286
|
+
policySystems(policyId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
2232
2287
|
}
|
|
2233
2288
|
/**
|
|
2234
2289
|
* PolicySystemsOSApi - axios parameter creator
|
|
@@ -2452,12 +2507,13 @@ export declare const ProfileRulesApiAxiosParamCreator: (configuration?: Configur
|
|
|
2452
2507
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2453
2508
|
* @param {any} [limit] Number of items to return per page
|
|
2454
2509
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2510
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2455
2511
|
* @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.
|
|
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 `
|
|
2512
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2457
2513
|
* @param {*} [options] Override http request option.
|
|
2458
2514
|
* @throws {RequiredError}
|
|
2459
2515
|
*/
|
|
2460
|
-
profileRules: (securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2516
|
+
profileRules: (securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2461
2517
|
};
|
|
2462
2518
|
/**
|
|
2463
2519
|
* ProfileRulesApi - functional programming interface
|
|
@@ -2472,12 +2528,13 @@ export declare const ProfileRulesApiFp: (configuration?: Configuration) => {
|
|
|
2472
2528
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2473
2529
|
* @param {any} [limit] Number of items to return per page
|
|
2474
2530
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2531
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2475
2532
|
* @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.
|
|
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 `
|
|
2533
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2477
2534
|
* @param {*} [options] Override http request option.
|
|
2478
2535
|
* @throws {RequiredError}
|
|
2479
2536
|
*/
|
|
2480
|
-
profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
|
|
2537
|
+
profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
|
|
2481
2538
|
};
|
|
2482
2539
|
/**
|
|
2483
2540
|
* ProfileRulesApi - factory interface
|
|
@@ -2492,12 +2549,13 @@ export declare const ProfileRulesApiFactory: (configuration?: Configuration, bas
|
|
|
2492
2549
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2493
2550
|
* @param {any} [limit] Number of items to return per page
|
|
2494
2551
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2552
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2495
2553
|
* @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 `
|
|
2554
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2497
2555
|
* @param {*} [options] Override http request option.
|
|
2498
2556
|
* @throws {RequiredError}
|
|
2499
2557
|
*/
|
|
2500
|
-
profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
|
|
2558
|
+
profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
|
|
2501
2559
|
};
|
|
2502
2560
|
/**
|
|
2503
2561
|
* ProfileRulesApi - object-oriented interface
|
|
@@ -2514,13 +2572,14 @@ export declare class ProfileRulesApi extends BaseAPI {
|
|
|
2514
2572
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2515
2573
|
* @param {any} [limit] Number of items to return per page
|
|
2516
2574
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2575
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2517
2576
|
* @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 `
|
|
2577
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2519
2578
|
* @param {*} [options] Override http request option.
|
|
2520
2579
|
* @throws {RequiredError}
|
|
2521
2580
|
* @memberof ProfileRulesApi
|
|
2522
2581
|
*/
|
|
2523
|
-
profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
2582
|
+
profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
2524
2583
|
}
|
|
2525
2584
|
/**
|
|
2526
2585
|
* ProfilesApi - axios parameter creator
|
|
@@ -2534,12 +2593,13 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2534
2593
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2535
2594
|
* @param {any} [limit] Number of items to return per page
|
|
2536
2595
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2596
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2537
2597
|
* @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.
|
|
2538
2598
|
* @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`)
|
|
2539
2599
|
* @param {*} [options] Override http request option.
|
|
2540
2600
|
* @throws {RequiredError}
|
|
2541
2601
|
*/
|
|
2542
|
-
profiles: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2602
|
+
profiles: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2543
2603
|
};
|
|
2544
2604
|
/**
|
|
2545
2605
|
* ProfilesApi - functional programming interface
|
|
@@ -2553,12 +2613,13 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
|
|
|
2553
2613
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2554
2614
|
* @param {any} [limit] Number of items to return per page
|
|
2555
2615
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2616
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2556
2617
|
* @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.
|
|
2557
2618
|
* @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`)
|
|
2558
2619
|
* @param {*} [options] Override http request option.
|
|
2559
2620
|
* @throws {RequiredError}
|
|
2560
2621
|
*/
|
|
2561
|
-
profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Profiles200Response>>;
|
|
2622
|
+
profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Profiles200Response>>;
|
|
2562
2623
|
};
|
|
2563
2624
|
/**
|
|
2564
2625
|
* ProfilesApi - factory interface
|
|
@@ -2572,12 +2633,13 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
|
|
|
2572
2633
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2573
2634
|
* @param {any} [limit] Number of items to return per page
|
|
2574
2635
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2636
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2575
2637
|
* @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
2638
|
* @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`)
|
|
2577
2639
|
* @param {*} [options] Override http request option.
|
|
2578
2640
|
* @throws {RequiredError}
|
|
2579
2641
|
*/
|
|
2580
|
-
profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Profiles200Response>;
|
|
2642
|
+
profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Profiles200Response>;
|
|
2581
2643
|
};
|
|
2582
2644
|
/**
|
|
2583
2645
|
* ProfilesApi - object-oriented interface
|
|
@@ -2593,13 +2655,14 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
2593
2655
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2594
2656
|
* @param {any} [limit] Number of items to return per page
|
|
2595
2657
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2658
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2596
2659
|
* @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
2660
|
* @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`)
|
|
2598
2661
|
* @param {*} [options] Override http request option.
|
|
2599
2662
|
* @throws {RequiredError}
|
|
2600
2663
|
* @memberof ProfilesApi
|
|
2601
2664
|
*/
|
|
2602
|
-
profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profiles200Response, any>>;
|
|
2665
|
+
profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profiles200Response, any>>;
|
|
2603
2666
|
}
|
|
2604
2667
|
/**
|
|
2605
2668
|
* ReportApi - axios parameter creator
|
|
@@ -2677,12 +2740,13 @@ export declare const ReportRuleResultsApiAxiosParamCreator: (configuration?: Con
|
|
|
2677
2740
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2678
2741
|
* @param {any} [limit] Number of items to return per page
|
|
2679
2742
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2743
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2680
2744
|
* @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
2745
|
* @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`)
|
|
2682
2746
|
* @param {*} [options] Override http request option.
|
|
2683
2747
|
* @throws {RequiredError}
|
|
2684
2748
|
*/
|
|
2685
|
-
reportRuleResults: (testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2749
|
+
reportRuleResults: (testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2686
2750
|
};
|
|
2687
2751
|
/**
|
|
2688
2752
|
* ReportRuleResultsApi - functional programming interface
|
|
@@ -2697,12 +2761,13 @@ export declare const ReportRuleResultsApiFp: (configuration?: Configuration) =>
|
|
|
2697
2761
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2698
2762
|
* @param {any} [limit] Number of items to return per page
|
|
2699
2763
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2764
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2700
2765
|
* @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
2766
|
* @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`)
|
|
2702
2767
|
* @param {*} [options] Override http request option.
|
|
2703
2768
|
* @throws {RequiredError}
|
|
2704
2769
|
*/
|
|
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>>;
|
|
2770
|
+
reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportRuleResults200Response>>;
|
|
2706
2771
|
};
|
|
2707
2772
|
/**
|
|
2708
2773
|
* ReportRuleResultsApi - factory interface
|
|
@@ -2717,12 +2782,13 @@ export declare const ReportRuleResultsApiFactory: (configuration?: Configuration
|
|
|
2717
2782
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2718
2783
|
* @param {any} [limit] Number of items to return per page
|
|
2719
2784
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2785
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2720
2786
|
* @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
2787
|
* @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`)
|
|
2722
2788
|
* @param {*} [options] Override http request option.
|
|
2723
2789
|
* @throws {RequiredError}
|
|
2724
2790
|
*/
|
|
2725
|
-
reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportRuleResults200Response>;
|
|
2791
|
+
reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportRuleResults200Response>;
|
|
2726
2792
|
};
|
|
2727
2793
|
/**
|
|
2728
2794
|
* ReportRuleResultsApi - object-oriented interface
|
|
@@ -2739,13 +2805,14 @@ export declare class ReportRuleResultsApi extends BaseAPI {
|
|
|
2739
2805
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2740
2806
|
* @param {any} [limit] Number of items to return per page
|
|
2741
2807
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2808
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2742
2809
|
* @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
2810
|
* @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
2811
|
* @param {*} [options] Override http request option.
|
|
2745
2812
|
* @throws {RequiredError}
|
|
2746
2813
|
* @memberof ReportRuleResultsApi
|
|
2747
2814
|
*/
|
|
2748
|
-
reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportRuleResults200Response, any>>;
|
|
2815
|
+
reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportRuleResults200Response, any>>;
|
|
2749
2816
|
}
|
|
2750
2817
|
/**
|
|
2751
2818
|
* ReportStatsApi - axios parameter creator
|
|
@@ -2891,14 +2958,16 @@ export declare const ReportSystemsApiAxiosParamCreator: (configuration?: Configu
|
|
|
2891
2958
|
* @summary Request Systems assigned to a Report
|
|
2892
2959
|
* @param {any} reportId
|
|
2893
2960
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2961
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
2894
2962
|
* @param {any} [limit] Number of items to return per page
|
|
2895
2963
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2964
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2896
2965
|
* @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.
|
|
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`, `
|
|
2966
|
+
* @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_minor_version`, `never_reported`, and `group_name`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2898
2967
|
* @param {*} [options] Override http request option.
|
|
2899
2968
|
* @throws {RequiredError}
|
|
2900
2969
|
*/
|
|
2901
|
-
reportSystems: (reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2970
|
+
reportSystems: (reportId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2902
2971
|
};
|
|
2903
2972
|
/**
|
|
2904
2973
|
* ReportSystemsApi - functional programming interface
|
|
@@ -2910,14 +2979,16 @@ export declare const ReportSystemsApiFp: (configuration?: Configuration) => {
|
|
|
2910
2979
|
* @summary Request Systems assigned to a Report
|
|
2911
2980
|
* @param {any} reportId
|
|
2912
2981
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
2982
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
2913
2983
|
* @param {any} [limit] Number of items to return per page
|
|
2914
2984
|
* @param {any} [offset] Offset of first item of paginated response
|
|
2985
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2915
2986
|
* @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.
|
|
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`, `
|
|
2987
|
+
* @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_minor_version`, `never_reported`, and `group_name`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2917
2988
|
* @param {*} [options] Override http request option.
|
|
2918
2989
|
* @throws {RequiredError}
|
|
2919
2990
|
*/
|
|
2920
|
-
reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
|
|
2991
|
+
reportSystems(reportId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
|
|
2921
2992
|
};
|
|
2922
2993
|
/**
|
|
2923
2994
|
* ReportSystemsApi - factory interface
|
|
@@ -2929,14 +3000,16 @@ export declare const ReportSystemsApiFactory: (configuration?: Configuration, ba
|
|
|
2929
3000
|
* @summary Request Systems assigned to a Report
|
|
2930
3001
|
* @param {any} reportId
|
|
2931
3002
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3003
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
2932
3004
|
* @param {any} [limit] Number of items to return per page
|
|
2933
3005
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3006
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2934
3007
|
* @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`, `
|
|
3008
|
+
* @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_minor_version`, `never_reported`, and `group_name`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2936
3009
|
* @param {*} [options] Override http request option.
|
|
2937
3010
|
* @throws {RequiredError}
|
|
2938
3011
|
*/
|
|
2939
|
-
reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
|
|
3012
|
+
reportSystems(reportId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
|
|
2940
3013
|
};
|
|
2941
3014
|
/**
|
|
2942
3015
|
* ReportSystemsApi - object-oriented interface
|
|
@@ -2950,15 +3023,17 @@ export declare class ReportSystemsApi extends BaseAPI {
|
|
|
2950
3023
|
* @summary Request Systems assigned to a Report
|
|
2951
3024
|
* @param {any} reportId
|
|
2952
3025
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3026
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
2953
3027
|
* @param {any} [limit] Number of items to return per page
|
|
2954
3028
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3029
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
2955
3030
|
* @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`, `
|
|
3031
|
+
* @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_minor_version`, `never_reported`, and `group_name`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
2957
3032
|
* @param {*} [options] Override http request option.
|
|
2958
3033
|
* @throws {RequiredError}
|
|
2959
3034
|
* @memberof ReportSystemsApi
|
|
2960
3035
|
*/
|
|
2961
|
-
reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
3036
|
+
reportSystems(reportId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
2962
3037
|
}
|
|
2963
3038
|
/**
|
|
2964
3039
|
* ReportSystemsOSApi - axios parameter creator
|
|
@@ -3110,12 +3185,13 @@ export declare const ReportTestResultsApiAxiosParamCreator: (configuration?: Con
|
|
|
3110
3185
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3111
3186
|
* @param {any} [limit] Number of items to return per page
|
|
3112
3187
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3188
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3113
3189
|
* @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.
|
|
3114
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`)
|
|
3115
3191
|
* @param {*} [options] Override http request option.
|
|
3116
3192
|
* @throws {RequiredError}
|
|
3117
3193
|
*/
|
|
3118
|
-
reportTestResults: (reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3194
|
+
reportTestResults: (reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3119
3195
|
};
|
|
3120
3196
|
/**
|
|
3121
3197
|
* ReportTestResultsApi - functional programming interface
|
|
@@ -3129,12 +3205,13 @@ export declare const ReportTestResultsApiFp: (configuration?: Configuration) =>
|
|
|
3129
3205
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3130
3206
|
* @param {any} [limit] Number of items to return per page
|
|
3131
3207
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3208
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3132
3209
|
* @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.
|
|
3133
3210
|
* @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`)
|
|
3134
3211
|
* @param {*} [options] Override http request option.
|
|
3135
3212
|
* @throws {RequiredError}
|
|
3136
3213
|
*/
|
|
3137
|
-
reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportTestResults200Response>>;
|
|
3214
|
+
reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportTestResults200Response>>;
|
|
3138
3215
|
};
|
|
3139
3216
|
/**
|
|
3140
3217
|
* ReportTestResultsApi - factory interface
|
|
@@ -3148,12 +3225,13 @@ export declare const ReportTestResultsApiFactory: (configuration?: Configuration
|
|
|
3148
3225
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3149
3226
|
* @param {any} [limit] Number of items to return per page
|
|
3150
3227
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3228
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3151
3229
|
* @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
3230
|
* @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`)
|
|
3153
3231
|
* @param {*} [options] Override http request option.
|
|
3154
3232
|
* @throws {RequiredError}
|
|
3155
3233
|
*/
|
|
3156
|
-
reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportTestResults200Response>;
|
|
3234
|
+
reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportTestResults200Response>;
|
|
3157
3235
|
};
|
|
3158
3236
|
/**
|
|
3159
3237
|
* ReportTestResultsApi - object-oriented interface
|
|
@@ -3169,13 +3247,14 @@ export declare class ReportTestResultsApi extends BaseAPI {
|
|
|
3169
3247
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3170
3248
|
* @param {any} [limit] Number of items to return per page
|
|
3171
3249
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3250
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3172
3251
|
* @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
3252
|
* @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
3253
|
* @param {*} [options] Override http request option.
|
|
3175
3254
|
* @throws {RequiredError}
|
|
3176
3255
|
* @memberof ReportTestResultsApi
|
|
3177
3256
|
*/
|
|
3178
|
-
reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportTestResults200Response, any>>;
|
|
3257
|
+
reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportTestResults200Response, any>>;
|
|
3179
3258
|
}
|
|
3180
3259
|
/**
|
|
3181
3260
|
* ReportTestResultsOSApi - axios parameter creator
|
|
@@ -3259,12 +3338,13 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3259
3338
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3260
3339
|
* @param {any} [limit] Number of items to return per page
|
|
3261
3340
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3341
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3262
3342
|
* @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.
|
|
3263
3343
|
* @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`)
|
|
3264
3344
|
* @param {*} [options] Override http request option.
|
|
3265
3345
|
* @throws {RequiredError}
|
|
3266
3346
|
*/
|
|
3267
|
-
reports: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3347
|
+
reports: (xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3268
3348
|
};
|
|
3269
3349
|
/**
|
|
3270
3350
|
* ReportsApi - functional programming interface
|
|
@@ -3277,12 +3357,13 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
3277
3357
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3278
3358
|
* @param {any} [limit] Number of items to return per page
|
|
3279
3359
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3360
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3280
3361
|
* @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.
|
|
3281
3362
|
* @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`)
|
|
3282
3363
|
* @param {*} [options] Override http request option.
|
|
3283
3364
|
* @throws {RequiredError}
|
|
3284
3365
|
*/
|
|
3285
|
-
reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
|
|
3366
|
+
reports(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
|
|
3286
3367
|
};
|
|
3287
3368
|
/**
|
|
3288
3369
|
* ReportsApi - factory interface
|
|
@@ -3295,12 +3376,13 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
3295
3376
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3296
3377
|
* @param {any} [limit] Number of items to return per page
|
|
3297
3378
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3379
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3298
3380
|
* @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
3381
|
* @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`)
|
|
3300
3382
|
* @param {*} [options] Override http request option.
|
|
3301
3383
|
* @throws {RequiredError}
|
|
3302
3384
|
*/
|
|
3303
|
-
reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
|
|
3385
|
+
reports(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
|
|
3304
3386
|
};
|
|
3305
3387
|
/**
|
|
3306
3388
|
* ReportsApi - object-oriented interface
|
|
@@ -3315,13 +3397,81 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
3315
3397
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3316
3398
|
* @param {any} [limit] Number of items to return per page
|
|
3317
3399
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3400
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3318
3401
|
* @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
3402
|
* @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`)
|
|
3320
3403
|
* @param {*} [options] Override http request option.
|
|
3321
3404
|
* @throws {RequiredError}
|
|
3322
3405
|
* @memberof ReportsApi
|
|
3323
3406
|
*/
|
|
3324
|
-
reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
|
|
3407
|
+
reports(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
|
|
3408
|
+
}
|
|
3409
|
+
/**
|
|
3410
|
+
* ReportsOSApi - axios parameter creator
|
|
3411
|
+
* @export
|
|
3412
|
+
*/
|
|
3413
|
+
export declare const ReportsOSApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3414
|
+
/**
|
|
3415
|
+
* This feature is exclusively used by the frontend
|
|
3416
|
+
* @summary Request the list of available OS versions
|
|
3417
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3418
|
+
* @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`)
|
|
3419
|
+
* @param {*} [options] Override http request option.
|
|
3420
|
+
* @deprecated
|
|
3421
|
+
* @throws {RequiredError}
|
|
3422
|
+
*/
|
|
3423
|
+
reportsOS: (xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3424
|
+
};
|
|
3425
|
+
/**
|
|
3426
|
+
* ReportsOSApi - functional programming interface
|
|
3427
|
+
* @export
|
|
3428
|
+
*/
|
|
3429
|
+
export declare const ReportsOSApiFp: (configuration?: Configuration) => {
|
|
3430
|
+
/**
|
|
3431
|
+
* This feature is exclusively used by the frontend
|
|
3432
|
+
* @summary Request the list of available OS versions
|
|
3433
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3434
|
+
* @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`)
|
|
3435
|
+
* @param {*} [options] Override http request option.
|
|
3436
|
+
* @deprecated
|
|
3437
|
+
* @throws {RequiredError}
|
|
3438
|
+
*/
|
|
3439
|
+
reportsOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
3440
|
+
};
|
|
3441
|
+
/**
|
|
3442
|
+
* ReportsOSApi - factory interface
|
|
3443
|
+
* @export
|
|
3444
|
+
*/
|
|
3445
|
+
export declare const ReportsOSApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3446
|
+
/**
|
|
3447
|
+
* This feature is exclusively used by the frontend
|
|
3448
|
+
* @summary Request the list of available OS versions
|
|
3449
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3450
|
+
* @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`)
|
|
3451
|
+
* @param {*} [options] Override http request option.
|
|
3452
|
+
* @deprecated
|
|
3453
|
+
* @throws {RequiredError}
|
|
3454
|
+
*/
|
|
3455
|
+
reportsOS(xRHIDENTITY?: any, filter?: any, options?: any): AxiosPromise<any>;
|
|
3456
|
+
};
|
|
3457
|
+
/**
|
|
3458
|
+
* ReportsOSApi - object-oriented interface
|
|
3459
|
+
* @export
|
|
3460
|
+
* @class ReportsOSApi
|
|
3461
|
+
* @extends {BaseAPI}
|
|
3462
|
+
*/
|
|
3463
|
+
export declare class ReportsOSApi extends BaseAPI {
|
|
3464
|
+
/**
|
|
3465
|
+
* This feature is exclusively used by the frontend
|
|
3466
|
+
* @summary Request the list of available OS versions
|
|
3467
|
+
* @param {any} [xRHIDENTITY] For internal use only
|
|
3468
|
+
* @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`)
|
|
3469
|
+
* @param {*} [options] Override http request option.
|
|
3470
|
+
* @deprecated
|
|
3471
|
+
* @throws {RequiredError}
|
|
3472
|
+
* @memberof ReportsOSApi
|
|
3473
|
+
*/
|
|
3474
|
+
reportsOS(xRHIDENTITY?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
3325
3475
|
}
|
|
3326
3476
|
/**
|
|
3327
3477
|
* RuleApi - axios parameter creator
|
|
@@ -3469,12 +3619,13 @@ export declare const RuleGroupsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
3469
3619
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3470
3620
|
* @param {any} [limit] Number of items to return per page
|
|
3471
3621
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3622
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3472
3623
|
* @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.
|
|
3473
3624
|
* @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`)
|
|
3474
3625
|
* @param {*} [options] Override http request option.
|
|
3475
3626
|
* @throws {RequiredError}
|
|
3476
3627
|
*/
|
|
3477
|
-
ruleGroups: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3628
|
+
ruleGroups: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3478
3629
|
};
|
|
3479
3630
|
/**
|
|
3480
3631
|
* RuleGroupsApi - functional programming interface
|
|
@@ -3488,12 +3639,13 @@ export declare const RuleGroupsApiFp: (configuration?: Configuration) => {
|
|
|
3488
3639
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3489
3640
|
* @param {any} [limit] Number of items to return per page
|
|
3490
3641
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3642
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3491
3643
|
* @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.
|
|
3492
3644
|
* @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`)
|
|
3493
3645
|
* @param {*} [options] Override http request option.
|
|
3494
3646
|
* @throws {RequiredError}
|
|
3495
3647
|
*/
|
|
3496
|
-
ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RuleGroups200Response>>;
|
|
3648
|
+
ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RuleGroups200Response>>;
|
|
3497
3649
|
};
|
|
3498
3650
|
/**
|
|
3499
3651
|
* RuleGroupsApi - factory interface
|
|
@@ -3507,12 +3659,13 @@ export declare const RuleGroupsApiFactory: (configuration?: Configuration, baseP
|
|
|
3507
3659
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3508
3660
|
* @param {any} [limit] Number of items to return per page
|
|
3509
3661
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3662
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3510
3663
|
* @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
3664
|
* @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`)
|
|
3512
3665
|
* @param {*} [options] Override http request option.
|
|
3513
3666
|
* @throws {RequiredError}
|
|
3514
3667
|
*/
|
|
3515
|
-
ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<RuleGroups200Response>;
|
|
3668
|
+
ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<RuleGroups200Response>;
|
|
3516
3669
|
};
|
|
3517
3670
|
/**
|
|
3518
3671
|
* RuleGroupsApi - object-oriented interface
|
|
@@ -3528,13 +3681,14 @@ export declare class RuleGroupsApi extends BaseAPI {
|
|
|
3528
3681
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3529
3682
|
* @param {any} [limit] Number of items to return per page
|
|
3530
3683
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3684
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3531
3685
|
* @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
3686
|
* @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`)
|
|
3533
3687
|
* @param {*} [options] Override http request option.
|
|
3534
3688
|
* @throws {RequiredError}
|
|
3535
3689
|
* @memberof RuleGroupsApi
|
|
3536
3690
|
*/
|
|
3537
|
-
ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroups200Response, any>>;
|
|
3691
|
+
ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroups200Response, any>>;
|
|
3538
3692
|
}
|
|
3539
3693
|
/**
|
|
3540
3694
|
* RulesApi - axios parameter creator
|
|
@@ -3548,12 +3702,13 @@ export declare const RulesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3548
3702
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3549
3703
|
* @param {any} [limit] Number of items to return per page
|
|
3550
3704
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3705
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3551
3706
|
* @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.
|
|
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 `
|
|
3707
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3553
3708
|
* @param {*} [options] Override http request option.
|
|
3554
3709
|
* @throws {RequiredError}
|
|
3555
3710
|
*/
|
|
3556
|
-
rules: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3711
|
+
rules: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3557
3712
|
};
|
|
3558
3713
|
/**
|
|
3559
3714
|
* RulesApi - functional programming interface
|
|
@@ -3567,12 +3722,13 @@ export declare const RulesApiFp: (configuration?: Configuration) => {
|
|
|
3567
3722
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3568
3723
|
* @param {any} [limit] Number of items to return per page
|
|
3569
3724
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3725
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3570
3726
|
* @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.
|
|
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 `
|
|
3727
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3572
3728
|
* @param {*} [options] Override http request option.
|
|
3573
3729
|
* @throws {RequiredError}
|
|
3574
3730
|
*/
|
|
3575
|
-
rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
|
|
3731
|
+
rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
|
|
3576
3732
|
};
|
|
3577
3733
|
/**
|
|
3578
3734
|
* RulesApi - factory interface
|
|
@@ -3586,12 +3742,13 @@ export declare const RulesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3586
3742
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3587
3743
|
* @param {any} [limit] Number of items to return per page
|
|
3588
3744
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3745
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3589
3746
|
* @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 `
|
|
3747
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3591
3748
|
* @param {*} [options] Override http request option.
|
|
3592
3749
|
* @throws {RequiredError}
|
|
3593
3750
|
*/
|
|
3594
|
-
rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
|
|
3751
|
+
rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
|
|
3595
3752
|
};
|
|
3596
3753
|
/**
|
|
3597
3754
|
* RulesApi - object-oriented interface
|
|
@@ -3607,13 +3764,14 @@ export declare class RulesApi extends BaseAPI {
|
|
|
3607
3764
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3608
3765
|
* @param {any} [limit] Number of items to return per page
|
|
3609
3766
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3767
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3610
3768
|
* @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 `
|
|
3769
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
3612
3770
|
* @param {*} [options] Override http request option.
|
|
3613
3771
|
* @throws {RequiredError}
|
|
3614
3772
|
* @memberof RulesApi
|
|
3615
3773
|
*/
|
|
3616
|
-
rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
3774
|
+
rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
3617
3775
|
}
|
|
3618
3776
|
/**
|
|
3619
3777
|
* SecurityGuideApi - axios parameter creator
|
|
@@ -3752,12 +3910,13 @@ export declare const SecurityGuidesApiAxiosParamCreator: (configuration?: Config
|
|
|
3752
3910
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3753
3911
|
* @param {any} [limit] Number of items to return per page
|
|
3754
3912
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3913
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3755
3914
|
* @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.
|
|
3756
3915
|
* @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`)
|
|
3757
3916
|
* @param {*} [options] Override http request option.
|
|
3758
3917
|
* @throws {RequiredError}
|
|
3759
3918
|
*/
|
|
3760
|
-
securityGuides: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3919
|
+
securityGuides: (xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3761
3920
|
};
|
|
3762
3921
|
/**
|
|
3763
3922
|
* SecurityGuidesApi - functional programming interface
|
|
@@ -3770,12 +3929,13 @@ export declare const SecurityGuidesApiFp: (configuration?: Configuration) => {
|
|
|
3770
3929
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3771
3930
|
* @param {any} [limit] Number of items to return per page
|
|
3772
3931
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3932
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3773
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.
|
|
3774
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>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`)
|
|
3775
3935
|
* @param {*} [options] Override http request option.
|
|
3776
3936
|
* @throws {RequiredError}
|
|
3777
3937
|
*/
|
|
3778
|
-
securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityGuides200Response>>;
|
|
3938
|
+
securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityGuides200Response>>;
|
|
3779
3939
|
};
|
|
3780
3940
|
/**
|
|
3781
3941
|
* SecurityGuidesApi - factory interface
|
|
@@ -3788,12 +3948,13 @@ export declare const SecurityGuidesApiFactory: (configuration?: Configuration, b
|
|
|
3788
3948
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3789
3949
|
* @param {any} [limit] Number of items to return per page
|
|
3790
3950
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3951
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3791
3952
|
* @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
3953
|
* @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
3954
|
* @param {*} [options] Override http request option.
|
|
3794
3955
|
* @throws {RequiredError}
|
|
3795
3956
|
*/
|
|
3796
|
-
securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SecurityGuides200Response>;
|
|
3957
|
+
securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SecurityGuides200Response>;
|
|
3797
3958
|
};
|
|
3798
3959
|
/**
|
|
3799
3960
|
* SecurityGuidesApi - object-oriented interface
|
|
@@ -3808,13 +3969,14 @@ export declare class SecurityGuidesApi extends BaseAPI {
|
|
|
3808
3969
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3809
3970
|
* @param {any} [limit] Number of items to return per page
|
|
3810
3971
|
* @param {any} [offset] Offset of first item of paginated response
|
|
3972
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3811
3973
|
* @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
3974
|
* @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
3975
|
* @param {*} [options] Override http request option.
|
|
3814
3976
|
* @throws {RequiredError}
|
|
3815
3977
|
* @memberof SecurityGuidesApi
|
|
3816
3978
|
*/
|
|
3817
|
-
securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuides200Response, any>>;
|
|
3979
|
+
securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuides200Response, any>>;
|
|
3818
3980
|
}
|
|
3819
3981
|
/**
|
|
3820
3982
|
* SecurityGuidesOSApi - axios parameter creator
|
|
@@ -3894,12 +4056,13 @@ export declare const SupportedProfilesApiAxiosParamCreator: (configuration?: Con
|
|
|
3894
4056
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3895
4057
|
* @param {any} [limit] Number of items to return per page
|
|
3896
4058
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4059
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3897
4060
|
* @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.
|
|
3898
4061
|
* @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`)
|
|
3899
4062
|
* @param {*} [options] Override http request option.
|
|
3900
4063
|
* @throws {RequiredError}
|
|
3901
4064
|
*/
|
|
3902
|
-
supportedProfiles: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4065
|
+
supportedProfiles: (xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3903
4066
|
};
|
|
3904
4067
|
/**
|
|
3905
4068
|
* SupportedProfilesApi - functional programming interface
|
|
@@ -3912,12 +4075,13 @@ export declare const SupportedProfilesApiFp: (configuration?: Configuration) =>
|
|
|
3912
4075
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3913
4076
|
* @param {any} [limit] Number of items to return per page
|
|
3914
4077
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4078
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3915
4079
|
* @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.
|
|
3916
4080
|
* @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`)
|
|
3917
4081
|
* @param {*} [options] Override http request option.
|
|
3918
4082
|
* @throws {RequiredError}
|
|
3919
4083
|
*/
|
|
3920
|
-
supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportedProfiles200Response>>;
|
|
4084
|
+
supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportedProfiles200Response>>;
|
|
3921
4085
|
};
|
|
3922
4086
|
/**
|
|
3923
4087
|
* SupportedProfilesApi - factory interface
|
|
@@ -3930,12 +4094,13 @@ export declare const SupportedProfilesApiFactory: (configuration?: Configuration
|
|
|
3930
4094
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3931
4095
|
* @param {any} [limit] Number of items to return per page
|
|
3932
4096
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4097
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3933
4098
|
* @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
4099
|
* @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`)
|
|
3935
4100
|
* @param {*} [options] Override http request option.
|
|
3936
4101
|
* @throws {RequiredError}
|
|
3937
4102
|
*/
|
|
3938
|
-
supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SupportedProfiles200Response>;
|
|
4103
|
+
supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SupportedProfiles200Response>;
|
|
3939
4104
|
};
|
|
3940
4105
|
/**
|
|
3941
4106
|
* SupportedProfilesApi - object-oriented interface
|
|
@@ -3950,13 +4115,14 @@ export declare class SupportedProfilesApi extends BaseAPI {
|
|
|
3950
4115
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
3951
4116
|
* @param {any} [limit] Number of items to return per page
|
|
3952
4117
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4118
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
3953
4119
|
* @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
4120
|
* @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`)
|
|
3955
4121
|
* @param {*} [options] Override http request option.
|
|
3956
4122
|
* @throws {RequiredError}
|
|
3957
4123
|
* @memberof SupportedProfilesApi
|
|
3958
4124
|
*/
|
|
3959
|
-
supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportedProfiles200Response, any>>;
|
|
4125
|
+
supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportedProfiles200Response, any>>;
|
|
3960
4126
|
}
|
|
3961
4127
|
/**
|
|
3962
4128
|
* SystemApi - axios parameter creator
|
|
@@ -4033,12 +4199,13 @@ export declare const SystemReportsApiAxiosParamCreator: (configuration?: Configu
|
|
|
4033
4199
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4034
4200
|
* @param {any} [limit] Number of items to return per page
|
|
4035
4201
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4202
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4036
4203
|
* @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`
|
|
4204
|
+
* @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`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4038
4205
|
* @param {*} [options] Override http request option.
|
|
4039
4206
|
* @throws {RequiredError}
|
|
4040
4207
|
*/
|
|
4041
|
-
systemReports: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4208
|
+
systemReports: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4042
4209
|
};
|
|
4043
4210
|
/**
|
|
4044
4211
|
* SystemReportsApi - functional programming interface
|
|
@@ -4052,12 +4219,13 @@ export declare const SystemReportsApiFp: (configuration?: Configuration) => {
|
|
|
4052
4219
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4053
4220
|
* @param {any} [limit] Number of items to return per page
|
|
4054
4221
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4222
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4055
4223
|
* @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`
|
|
4224
|
+
* @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`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4057
4225
|
* @param {*} [options] Override http request option.
|
|
4058
4226
|
* @throws {RequiredError}
|
|
4059
4227
|
*/
|
|
4060
|
-
systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
|
|
4228
|
+
systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
|
|
4061
4229
|
};
|
|
4062
4230
|
/**
|
|
4063
4231
|
* SystemReportsApi - factory interface
|
|
@@ -4071,12 +4239,13 @@ export declare const SystemReportsApiFactory: (configuration?: Configuration, ba
|
|
|
4071
4239
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4072
4240
|
* @param {any} [limit] Number of items to return per page
|
|
4073
4241
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4242
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4074
4243
|
* @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`
|
|
4244
|
+
* @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`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4076
4245
|
* @param {*} [options] Override http request option.
|
|
4077
4246
|
* @throws {RequiredError}
|
|
4078
4247
|
*/
|
|
4079
|
-
systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
|
|
4248
|
+
systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
|
|
4080
4249
|
};
|
|
4081
4250
|
/**
|
|
4082
4251
|
* SystemReportsApi - object-oriented interface
|
|
@@ -4092,13 +4261,14 @@ export declare class SystemReportsApi extends BaseAPI {
|
|
|
4092
4261
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4093
4262
|
* @param {any} [limit] Number of items to return per page
|
|
4094
4263
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4264
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4095
4265
|
* @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`
|
|
4266
|
+
* @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`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4097
4267
|
* @param {*} [options] Override http request option.
|
|
4098
4268
|
* @throws {RequiredError}
|
|
4099
4269
|
* @memberof SystemReportsApi
|
|
4100
4270
|
*/
|
|
4101
|
-
systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
|
|
4271
|
+
systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
|
|
4102
4272
|
}
|
|
4103
4273
|
/**
|
|
4104
4274
|
* SystemsApi - axios parameter creator
|
|
@@ -4109,14 +4279,16 @@ export declare const SystemsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4109
4279
|
* Lists Systems
|
|
4110
4280
|
* @summary Request Systems
|
|
4111
4281
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4282
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
4112
4283
|
* @param {any} [limit] Number of items to return per page
|
|
4113
4284
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4285
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4114
4286
|
* @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.
|
|
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`, `
|
|
4287
|
+
* @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`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4116
4288
|
* @param {*} [options] Override http request option.
|
|
4117
4289
|
* @throws {RequiredError}
|
|
4118
4290
|
*/
|
|
4119
|
-
systems: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4291
|
+
systems: (xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4120
4292
|
};
|
|
4121
4293
|
/**
|
|
4122
4294
|
* SystemsApi - functional programming interface
|
|
@@ -4127,14 +4299,16 @@ export declare const SystemsApiFp: (configuration?: Configuration) => {
|
|
|
4127
4299
|
* Lists Systems
|
|
4128
4300
|
* @summary Request Systems
|
|
4129
4301
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4302
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
4130
4303
|
* @param {any} [limit] Number of items to return per page
|
|
4131
4304
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4305
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4132
4306
|
* @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.
|
|
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`, `
|
|
4307
|
+
* @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`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4134
4308
|
* @param {*} [options] Override http request option.
|
|
4135
4309
|
* @throws {RequiredError}
|
|
4136
4310
|
*/
|
|
4137
|
-
systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
|
|
4311
|
+
systems(xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
|
|
4138
4312
|
};
|
|
4139
4313
|
/**
|
|
4140
4314
|
* SystemsApi - factory interface
|
|
@@ -4145,14 +4319,16 @@ export declare const SystemsApiFactory: (configuration?: Configuration, basePath
|
|
|
4145
4319
|
* Lists Systems
|
|
4146
4320
|
* @summary Request Systems
|
|
4147
4321
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4322
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
4148
4323
|
* @param {any} [limit] Number of items to return per page
|
|
4149
4324
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4325
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4150
4326
|
* @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`, `
|
|
4327
|
+
* @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`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4152
4328
|
* @param {*} [options] Override http request option.
|
|
4153
4329
|
* @throws {RequiredError}
|
|
4154
4330
|
*/
|
|
4155
|
-
systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
|
|
4331
|
+
systems(xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
|
|
4156
4332
|
};
|
|
4157
4333
|
/**
|
|
4158
4334
|
* SystemsApi - object-oriented interface
|
|
@@ -4165,15 +4341,17 @@ export declare class SystemsApi extends BaseAPI {
|
|
|
4165
4341
|
* Lists Systems
|
|
4166
4342
|
* @summary Request Systems
|
|
4167
4343
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4344
|
+
* @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (`/` or `=`), they need to be encoded.<br>e.g.: `namespace/key=value`, `insights-client/selinux-config=SELINUX%3Denforcing`
|
|
4168
4345
|
* @param {any} [limit] Number of items to return per page
|
|
4169
4346
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4347
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4170
4348
|
* @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`, `
|
|
4349
|
+
* @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`, `group_name`, `policies`, and `profile_ref_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4172
4350
|
* @param {*} [options] Override http request option.
|
|
4173
4351
|
* @throws {RequiredError}
|
|
4174
4352
|
* @memberof SystemsApi
|
|
4175
4353
|
*/
|
|
4176
|
-
systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
4354
|
+
systems(xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
|
|
4177
4355
|
}
|
|
4178
4356
|
/**
|
|
4179
4357
|
* SystemsOSApi - axios parameter creator
|
|
@@ -4254,12 +4432,13 @@ export declare const SystemsPoliciesApiAxiosParamCreator: (configuration?: Confi
|
|
|
4254
4432
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4255
4433
|
* @param {any} [limit] Number of items to return per page
|
|
4256
4434
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4435
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4257
4436
|
* @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.
|
|
4258
|
-
* @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`
|
|
4437
|
+
* @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` and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4259
4438
|
* @param {*} [options] Override http request option.
|
|
4260
4439
|
* @throws {RequiredError}
|
|
4261
4440
|
*/
|
|
4262
|
-
systemsPolicies: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4441
|
+
systemsPolicies: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4263
4442
|
};
|
|
4264
4443
|
/**
|
|
4265
4444
|
* SystemsPoliciesApi - functional programming interface
|
|
@@ -4273,12 +4452,13 @@ export declare const SystemsPoliciesApiFp: (configuration?: Configuration) => {
|
|
|
4273
4452
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4274
4453
|
* @param {any} [limit] Number of items to return per page
|
|
4275
4454
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4455
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4276
4456
|
* @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.
|
|
4277
|
-
* @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`
|
|
4457
|
+
* @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` and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4278
4458
|
* @param {*} [options] Override http request option.
|
|
4279
4459
|
* @throws {RequiredError}
|
|
4280
4460
|
*/
|
|
4281
|
-
systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policies200Response>>;
|
|
4461
|
+
systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policies200Response>>;
|
|
4282
4462
|
};
|
|
4283
4463
|
/**
|
|
4284
4464
|
* SystemsPoliciesApi - factory interface
|
|
@@ -4292,12 +4472,13 @@ export declare const SystemsPoliciesApiFactory: (configuration?: Configuration,
|
|
|
4292
4472
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4293
4473
|
* @param {any} [limit] Number of items to return per page
|
|
4294
4474
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4475
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4295
4476
|
* @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`
|
|
4477
|
+
* @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` and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4297
4478
|
* @param {*} [options] Override http request option.
|
|
4298
4479
|
* @throws {RequiredError}
|
|
4299
4480
|
*/
|
|
4300
|
-
systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
|
|
4481
|
+
systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
|
|
4301
4482
|
};
|
|
4302
4483
|
/**
|
|
4303
4484
|
* SystemsPoliciesApi - object-oriented interface
|
|
@@ -4313,13 +4494,14 @@ export declare class SystemsPoliciesApi extends BaseAPI {
|
|
|
4313
4494
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4314
4495
|
* @param {any} [limit] Number of items to return per page
|
|
4315
4496
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4497
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4316
4498
|
* @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`
|
|
4499
|
+
* @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` and `os_minor_version`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4318
4500
|
* @param {*} [options] Override http request option.
|
|
4319
4501
|
* @throws {RequiredError}
|
|
4320
4502
|
* @memberof SystemsPoliciesApi
|
|
4321
4503
|
*/
|
|
4322
|
-
systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
|
|
4504
|
+
systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
|
|
4323
4505
|
}
|
|
4324
4506
|
/**
|
|
4325
4507
|
* TailoringApi - axios parameter creator
|
|
@@ -4468,12 +4650,13 @@ export declare const TailoringRulesApiAxiosParamCreator: (configuration?: Config
|
|
|
4468
4650
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4469
4651
|
* @param {any} [limit] Number of items to return per page
|
|
4470
4652
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4653
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4471
4654
|
* @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.
|
|
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 `
|
|
4655
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4473
4656
|
* @param {*} [options] Override http request option.
|
|
4474
4657
|
* @throws {RequiredError}
|
|
4475
4658
|
*/
|
|
4476
|
-
tailoringRules: (policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4659
|
+
tailoringRules: (policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4477
4660
|
};
|
|
4478
4661
|
/**
|
|
4479
4662
|
* TailoringRulesApi - functional programming interface
|
|
@@ -4488,12 +4671,13 @@ export declare const TailoringRulesApiFp: (configuration?: Configuration) => {
|
|
|
4488
4671
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4489
4672
|
* @param {any} [limit] Number of items to return per page
|
|
4490
4673
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4674
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4491
4675
|
* @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.
|
|
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 `
|
|
4676
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4493
4677
|
* @param {*} [options] Override http request option.
|
|
4494
4678
|
* @throws {RequiredError}
|
|
4495
4679
|
*/
|
|
4496
|
-
tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
|
|
4680
|
+
tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
|
|
4497
4681
|
};
|
|
4498
4682
|
/**
|
|
4499
4683
|
* TailoringRulesApi - factory interface
|
|
@@ -4508,12 +4692,13 @@ export declare const TailoringRulesApiFactory: (configuration?: Configuration, b
|
|
|
4508
4692
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4509
4693
|
* @param {any} [limit] Number of items to return per page
|
|
4510
4694
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4695
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4511
4696
|
* @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 `
|
|
4697
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4513
4698
|
* @param {*} [options] Override http request option.
|
|
4514
4699
|
* @throws {RequiredError}
|
|
4515
4700
|
*/
|
|
4516
|
-
tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
|
|
4701
|
+
tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
|
|
4517
4702
|
};
|
|
4518
4703
|
/**
|
|
4519
4704
|
* TailoringRulesApi - object-oriented interface
|
|
@@ -4530,13 +4715,14 @@ export declare class TailoringRulesApi extends BaseAPI {
|
|
|
4530
4715
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4531
4716
|
* @param {any} [limit] Number of items to return per page
|
|
4532
4717
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4718
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4533
4719
|
* @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 `
|
|
4720
|
+
* @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`, `remediation_available`, and `rule_group_id`<br><br>(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)
|
|
4535
4721
|
* @param {*} [options] Override http request option.
|
|
4536
4722
|
* @throws {RequiredError}
|
|
4537
4723
|
* @memberof TailoringRulesApi
|
|
4538
4724
|
*/
|
|
4539
|
-
tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
4725
|
+
tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
|
|
4540
4726
|
}
|
|
4541
4727
|
/**
|
|
4542
4728
|
* TailoringsApi - axios parameter creator
|
|
@@ -4550,12 +4736,13 @@ export declare const TailoringsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
4550
4736
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4551
4737
|
* @param {any} [limit] Number of items to return per page
|
|
4552
4738
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4739
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4553
4740
|
* @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.
|
|
4554
4741
|
* @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`)
|
|
4555
4742
|
* @param {*} [options] Override http request option.
|
|
4556
4743
|
* @throws {RequiredError}
|
|
4557
4744
|
*/
|
|
4558
|
-
tailorings: (policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4745
|
+
tailorings: (policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4559
4746
|
};
|
|
4560
4747
|
/**
|
|
4561
4748
|
* TailoringsApi - functional programming interface
|
|
@@ -4569,12 +4756,13 @@ export declare const TailoringsApiFp: (configuration?: Configuration) => {
|
|
|
4569
4756
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4570
4757
|
* @param {any} [limit] Number of items to return per page
|
|
4571
4758
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4759
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4572
4760
|
* @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.
|
|
4573
4761
|
* @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`)
|
|
4574
4762
|
* @param {*} [options] Override http request option.
|
|
4575
4763
|
* @throws {RequiredError}
|
|
4576
4764
|
*/
|
|
4577
|
-
tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tailorings200Response>>;
|
|
4765
|
+
tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tailorings200Response>>;
|
|
4578
4766
|
};
|
|
4579
4767
|
/**
|
|
4580
4768
|
* TailoringsApi - factory interface
|
|
@@ -4588,12 +4776,13 @@ export declare const TailoringsApiFactory: (configuration?: Configuration, baseP
|
|
|
4588
4776
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4589
4777
|
* @param {any} [limit] Number of items to return per page
|
|
4590
4778
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4779
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4591
4780
|
* @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
4781
|
* @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`)
|
|
4593
4782
|
* @param {*} [options] Override http request option.
|
|
4594
4783
|
* @throws {RequiredError}
|
|
4595
4784
|
*/
|
|
4596
|
-
tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Tailorings200Response>;
|
|
4785
|
+
tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Tailorings200Response>;
|
|
4597
4786
|
};
|
|
4598
4787
|
/**
|
|
4599
4788
|
* TailoringsApi - object-oriented interface
|
|
@@ -4609,13 +4798,14 @@ export declare class TailoringsApi extends BaseAPI {
|
|
|
4609
4798
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4610
4799
|
* @param {any} [limit] Number of items to return per page
|
|
4611
4800
|
* @param {any} [offset] Offset of first item of paginated response
|
|
4801
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4612
4802
|
* @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
4803
|
* @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`)
|
|
4614
4804
|
* @param {*} [options] Override http request option.
|
|
4615
4805
|
* @throws {RequiredError}
|
|
4616
4806
|
* @memberof TailoringsApi
|
|
4617
4807
|
*/
|
|
4618
|
-
tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailorings200Response, any>>;
|
|
4808
|
+
tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailorings200Response, any>>;
|
|
4619
4809
|
}
|
|
4620
4810
|
/**
|
|
4621
4811
|
* UnassignRuleApi - axios parameter creator
|
|
@@ -4972,12 +5162,13 @@ export declare const ValueDefinitionsApiAxiosParamCreator: (configuration?: Conf
|
|
|
4972
5162
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4973
5163
|
* @param {any} [limit] Number of items to return per page
|
|
4974
5164
|
* @param {any} [offset] Offset of first item of paginated response
|
|
5165
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4975
5166
|
* @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.
|
|
4976
5167
|
* @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`)
|
|
4977
5168
|
* @param {*} [options] Override http request option.
|
|
4978
5169
|
* @throws {RequiredError}
|
|
4979
5170
|
*/
|
|
4980
|
-
valueDefinitions: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5171
|
+
valueDefinitions: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4981
5172
|
};
|
|
4982
5173
|
/**
|
|
4983
5174
|
* ValueDefinitionsApi - functional programming interface
|
|
@@ -4991,12 +5182,13 @@ export declare const ValueDefinitionsApiFp: (configuration?: Configuration) => {
|
|
|
4991
5182
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
4992
5183
|
* @param {any} [limit] Number of items to return per page
|
|
4993
5184
|
* @param {any} [offset] Offset of first item of paginated response
|
|
5185
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
4994
5186
|
* @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.
|
|
4995
5187
|
* @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`)
|
|
4996
5188
|
* @param {*} [options] Override http request option.
|
|
4997
5189
|
* @throws {RequiredError}
|
|
4998
5190
|
*/
|
|
4999
|
-
valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValueDefinitions200Response>>;
|
|
5191
|
+
valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValueDefinitions200Response>>;
|
|
5000
5192
|
};
|
|
5001
5193
|
/**
|
|
5002
5194
|
* ValueDefinitionsApi - factory interface
|
|
@@ -5010,12 +5202,13 @@ export declare const ValueDefinitionsApiFactory: (configuration?: Configuration,
|
|
|
5010
5202
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
5011
5203
|
* @param {any} [limit] Number of items to return per page
|
|
5012
5204
|
* @param {any} [offset] Offset of first item of paginated response
|
|
5205
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
5013
5206
|
* @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
5207
|
* @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`)
|
|
5015
5208
|
* @param {*} [options] Override http request option.
|
|
5016
5209
|
* @throws {RequiredError}
|
|
5017
5210
|
*/
|
|
5018
|
-
valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ValueDefinitions200Response>;
|
|
5211
|
+
valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ValueDefinitions200Response>;
|
|
5019
5212
|
};
|
|
5020
5213
|
/**
|
|
5021
5214
|
* ValueDefinitionsApi - object-oriented interface
|
|
@@ -5031,11 +5224,12 @@ export declare class ValueDefinitionsApi extends BaseAPI {
|
|
|
5031
5224
|
* @param {any} [xRHIDENTITY] For internal use only
|
|
5032
5225
|
* @param {any} [limit] Number of items to return per page
|
|
5033
5226
|
* @param {any} [offset] Offset of first item of paginated response
|
|
5227
|
+
* @param {any} [idsOnly] Indicates whether to return only resource IDs.
|
|
5034
5228
|
* @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
5229
|
* @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`)
|
|
5036
5230
|
* @param {*} [options] Override http request option.
|
|
5037
5231
|
* @throws {RequiredError}
|
|
5038
5232
|
* @memberof ValueDefinitionsApi
|
|
5039
5233
|
*/
|
|
5040
|
-
valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinitions200Response, any>>;
|
|
5234
|
+
valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinitions200Response, any>>;
|
|
5041
5235
|
}
|