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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/CreateTailoring/index.d.ts +33 -0
  3. package/dist/CreateTailoring/index.js +54 -0
  4. package/dist/CreateTailoring/index.js.map +1 -0
  5. package/dist/Policies/index.d.ts +7 -1
  6. package/dist/Policies/index.js +7 -4
  7. package/dist/Policies/index.js.map +1 -1
  8. package/dist/PolicySystems/index.d.ts +14 -2
  9. package/dist/PolicySystems/index.js +10 -4
  10. package/dist/PolicySystems/index.js.map +1 -1
  11. package/dist/ProfileRules/index.d.ts +8 -2
  12. package/dist/ProfileRules/index.js +7 -4
  13. package/dist/ProfileRules/index.js.map +1 -1
  14. package/dist/ProfileTree/index.d.ts +32 -0
  15. package/dist/ProfileTree/index.js +53 -0
  16. package/dist/ProfileTree/index.js.map +1 -0
  17. package/dist/Profiles/index.d.ts +7 -1
  18. package/dist/Profiles/index.js +7 -4
  19. package/dist/Profiles/index.js.map +1 -1
  20. package/dist/ReportRuleResults/index.d.ts +7 -1
  21. package/dist/ReportRuleResults/index.js +7 -4
  22. package/dist/ReportRuleResults/index.js.map +1 -1
  23. package/dist/ReportSystems/index.d.ts +14 -2
  24. package/dist/ReportSystems/index.js +10 -4
  25. package/dist/ReportSystems/index.js.map +1 -1
  26. package/dist/ReportTestResults/index.d.ts +7 -1
  27. package/dist/ReportTestResults/index.js +7 -4
  28. package/dist/ReportTestResults/index.js.map +1 -1
  29. package/dist/Reports/index.d.ts +7 -1
  30. package/dist/Reports/index.js +7 -4
  31. package/dist/Reports/index.js.map +1 -1
  32. package/dist/RuleGroups/index.d.ts +7 -1
  33. package/dist/RuleGroups/index.js +7 -4
  34. package/dist/RuleGroups/index.js.map +1 -1
  35. package/dist/Rules/index.d.ts +8 -2
  36. package/dist/Rules/index.js +7 -4
  37. package/dist/Rules/index.js.map +1 -1
  38. package/dist/SecurityGuides/index.d.ts +7 -1
  39. package/dist/SecurityGuides/index.js +7 -4
  40. package/dist/SecurityGuides/index.js.map +1 -1
  41. package/dist/SupportedProfiles/index.d.ts +7 -1
  42. package/dist/SupportedProfiles/index.js +7 -4
  43. package/dist/SupportedProfiles/index.js.map +1 -1
  44. package/dist/SystemReports/index.d.ts +8 -2
  45. package/dist/SystemReports/index.js +7 -4
  46. package/dist/SystemReports/index.js.map +1 -1
  47. package/dist/Systems/index.d.ts +14 -2
  48. package/dist/Systems/index.js +10 -4
  49. package/dist/Systems/index.js.map +1 -1
  50. package/dist/SystemsPolicies/index.d.ts +8 -2
  51. package/dist/SystemsPolicies/index.js +7 -4
  52. package/dist/SystemsPolicies/index.js.map +1 -1
  53. package/dist/TailoringRuleTree/index.d.ts +32 -0
  54. package/dist/TailoringRuleTree/index.js +53 -0
  55. package/dist/TailoringRuleTree/index.js.map +1 -0
  56. package/dist/TailoringRules/index.d.ts +8 -2
  57. package/dist/TailoringRules/index.js +7 -4
  58. package/dist/TailoringRules/index.js.map +1 -1
  59. package/dist/Tailorings/index.d.ts +7 -1
  60. package/dist/Tailorings/index.js +7 -4
  61. package/dist/Tailorings/index.js.map +1 -1
  62. package/dist/ValueDefinitions/index.d.ts +7 -1
  63. package/dist/ValueDefinitions/index.js +7 -4
  64. package/dist/ValueDefinitions/index.js.map +1 -1
  65. package/dist/api.d.ts +434 -130
  66. package/dist/api.js +714 -163
  67. package/dist/api.js.map +1 -1
  68. package/dist/index.d.ts +3 -0
  69. package/dist/index.js +11 -1
  70. package/dist/index.js.map +1 -1
  71. package/dist/types/index.d.ts +39 -20
  72. package/dist/types/index.js.map +1 -1
  73. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -52,6 +52,32 @@ export interface CreatePolicy201ResponseData {
52
52
  */
53
53
  'schema'?: Policy;
54
54
  }
55
+ /**
56
+ *
57
+ * @export
58
+ * @interface CreateTailoring201Response
59
+ */
60
+ export interface CreateTailoring201Response {
61
+ /**
62
+ *
63
+ * @type {CreateTailoring201ResponseData}
64
+ * @memberof CreateTailoring201Response
65
+ */
66
+ 'data'?: CreateTailoring201ResponseData;
67
+ }
68
+ /**
69
+ *
70
+ * @export
71
+ * @interface CreateTailoring201ResponseData
72
+ */
73
+ export interface CreateTailoring201ResponseData {
74
+ /**
75
+ *
76
+ * @type {Tailoring}
77
+ * @memberof CreateTailoring201ResponseData
78
+ */
79
+ 'schema'?: Tailoring;
80
+ }
55
81
  /**
56
82
  *
57
83
  * @export
@@ -1066,6 +1092,12 @@ export interface SupportedProfile {
1066
1092
  * @memberof SupportedProfile
1067
1093
  */
1068
1094
  'title'?: any;
1095
+ /**
1096
+ * Longer description of the Profile
1097
+ * @type {any}
1098
+ * @memberof SupportedProfile
1099
+ */
1100
+ 'description'?: any;
1069
1101
  /**
1070
1102
  * UUID of the latest Security Guide supporting this Profile
1071
1103
  * @type {any}
@@ -1322,28 +1354,15 @@ export type TailoringTypeEnum = typeof TailoringTypeEnum[keyof typeof TailoringT
1322
1354
  /**
1323
1355
  *
1324
1356
  * @export
1325
- * @interface Tailoring200Response
1357
+ * @interface TailoringCreate
1326
1358
  */
1327
- export interface Tailoring200Response {
1359
+ export interface TailoringCreate {
1328
1360
  /**
1329
- *
1330
- * @type {Tailoring200ResponseData}
1331
- * @memberof Tailoring200Response
1332
- */
1333
- 'data'?: Tailoring200ResponseData;
1334
- }
1335
- /**
1336
- *
1337
- * @export
1338
- * @interface Tailoring200ResponseData
1339
- */
1340
- export interface Tailoring200ResponseData {
1341
- /**
1342
- *
1343
- * @type {Tailoring}
1344
- * @memberof Tailoring200ResponseData
1361
+ * Minor version of the Operating System that the Tailoring covers
1362
+ * @type {any}
1363
+ * @memberof TailoringCreate
1345
1364
  */
1346
- 'schema'?: Tailoring;
1365
+ 'os_minor_version'?: any;
1347
1366
  }
1348
1367
  /**
1349
1368
  * Defines customizations of rules and variables for a set of profiles
@@ -1467,7 +1486,7 @@ export interface TestResult {
1467
1486
  * @type {any}
1468
1487
  * @memberof TestResult
1469
1488
  */
1470
- 'last_scanned'?: any;
1489
+ 'end_time'?: any;
1471
1490
  }
1472
1491
  export declare const TestResultTypeEnum: {
1473
1492
  readonly TestResult: "test_result";
@@ -1924,6 +1943,73 @@ export declare class CreatePolicyApi extends BaseAPI {
1924
1943
  */
1925
1944
  createPolicy(xRHIDENTITY?: any, policy?: Policy, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicy201Response, any>>;
1926
1945
  }
1946
+ /**
1947
+ * CreateTailoringApi - axios parameter creator
1948
+ * @export
1949
+ */
1950
+ export declare const CreateTailoringApiAxiosParamCreator: (configuration?: Configuration) => {
1951
+ /**
1952
+ * Create a Tailoring with the provided attributes (for ImageBuilder only)
1953
+ * @summary Create a Tailoring
1954
+ * @param {any} policyId
1955
+ * @param {any} [xRHIDENTITY] For internal use only
1956
+ * @param {TailoringCreate} [tailoringCreate]
1957
+ * @param {*} [options] Override http request option.
1958
+ * @throws {RequiredError}
1959
+ */
1960
+ createTailoring: (policyId: any, xRHIDENTITY?: any, tailoringCreate?: TailoringCreate, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1961
+ };
1962
+ /**
1963
+ * CreateTailoringApi - functional programming interface
1964
+ * @export
1965
+ */
1966
+ export declare const CreateTailoringApiFp: (configuration?: Configuration) => {
1967
+ /**
1968
+ * Create a Tailoring with the provided attributes (for ImageBuilder only)
1969
+ * @summary Create a Tailoring
1970
+ * @param {any} policyId
1971
+ * @param {any} [xRHIDENTITY] For internal use only
1972
+ * @param {TailoringCreate} [tailoringCreate]
1973
+ * @param {*} [options] Override http request option.
1974
+ * @throws {RequiredError}
1975
+ */
1976
+ createTailoring(policyId: any, xRHIDENTITY?: any, tailoringCreate?: TailoringCreate, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTailoring201Response>>;
1977
+ };
1978
+ /**
1979
+ * CreateTailoringApi - factory interface
1980
+ * @export
1981
+ */
1982
+ export declare const CreateTailoringApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1983
+ /**
1984
+ * Create a Tailoring with the provided attributes (for ImageBuilder only)
1985
+ * @summary Create a Tailoring
1986
+ * @param {any} policyId
1987
+ * @param {any} [xRHIDENTITY] For internal use only
1988
+ * @param {TailoringCreate} [tailoringCreate]
1989
+ * @param {*} [options] Override http request option.
1990
+ * @throws {RequiredError}
1991
+ */
1992
+ createTailoring(policyId: any, xRHIDENTITY?: any, tailoringCreate?: TailoringCreate, options?: any): AxiosPromise<CreateTailoring201Response>;
1993
+ };
1994
+ /**
1995
+ * CreateTailoringApi - object-oriented interface
1996
+ * @export
1997
+ * @class CreateTailoringApi
1998
+ * @extends {BaseAPI}
1999
+ */
2000
+ export declare class CreateTailoringApi extends BaseAPI {
2001
+ /**
2002
+ * Create a Tailoring with the provided attributes (for ImageBuilder only)
2003
+ * @summary Create a Tailoring
2004
+ * @param {any} policyId
2005
+ * @param {any} [xRHIDENTITY] For internal use only
2006
+ * @param {TailoringCreate} [tailoringCreate]
2007
+ * @param {*} [options] Override http request option.
2008
+ * @throws {RequiredError}
2009
+ * @memberof CreateTailoringApi
2010
+ */
2011
+ createTailoring(policyId: any, xRHIDENTITY?: any, tailoringCreate?: TailoringCreate, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateTailoring201Response, any>>;
2012
+ }
1927
2013
  /**
1928
2014
  * DeletePolicyApi - axios parameter creator
1929
2015
  * @export
@@ -2061,12 +2147,13 @@ export declare const PoliciesApiAxiosParamCreator: (configuration?: Configuratio
2061
2147
  * @param {any} [xRHIDENTITY] For internal use only
2062
2148
  * @param {any} [limit] Number of items to return per page
2063
2149
  * @param {any} [offset] Offset of first item of paginated response
2150
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2064
2151
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2065
2152
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2066
2153
  * @param {*} [options] Override http request option.
2067
2154
  * @throws {RequiredError}
2068
2155
  */
2069
- policies: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2156
+ policies: (xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2070
2157
  };
2071
2158
  /**
2072
2159
  * PoliciesApi - functional programming interface
@@ -2079,12 +2166,13 @@ export declare const PoliciesApiFp: (configuration?: Configuration) => {
2079
2166
  * @param {any} [xRHIDENTITY] For internal use only
2080
2167
  * @param {any} [limit] Number of items to return per page
2081
2168
  * @param {any} [offset] Offset of first item of paginated response
2169
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2082
2170
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2083
2171
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2084
2172
  * @param {*} [options] Override http request option.
2085
2173
  * @throws {RequiredError}
2086
2174
  */
2087
- policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policies200Response>>;
2175
+ policies(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policies200Response>>;
2088
2176
  };
2089
2177
  /**
2090
2178
  * PoliciesApi - factory interface
@@ -2097,12 +2185,13 @@ export declare const PoliciesApiFactory: (configuration?: Configuration, basePat
2097
2185
  * @param {any} [xRHIDENTITY] For internal use only
2098
2186
  * @param {any} [limit] Number of items to return per page
2099
2187
  * @param {any} [offset] Offset of first item of paginated response
2188
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2100
2189
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2101
2190
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2102
2191
  * @param {*} [options] Override http request option.
2103
2192
  * @throws {RequiredError}
2104
2193
  */
2105
- policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
2194
+ policies(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
2106
2195
  };
2107
2196
  /**
2108
2197
  * PoliciesApi - object-oriented interface
@@ -2117,13 +2206,14 @@ export declare class PoliciesApi extends BaseAPI {
2117
2206
  * @param {any} [xRHIDENTITY] For internal use only
2118
2207
  * @param {any} [limit] Number of items to return per page
2119
2208
  * @param {any} [offset] Offset of first item of paginated response
2209
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2120
2210
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2121
2211
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2122
2212
  * @param {*} [options] Override http request option.
2123
2213
  * @throws {RequiredError}
2124
2214
  * @memberof PoliciesApi
2125
2215
  */
2126
- policies(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
2216
+ policies(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
2127
2217
  }
2128
2218
  /**
2129
2219
  * PolicyApi - axios parameter creator
@@ -2198,14 +2288,16 @@ export declare const PolicySystemsApiAxiosParamCreator: (configuration?: Configu
2198
2288
  * @summary Request Systems assigned to a Policy
2199
2289
  * @param {any} policyId
2200
2290
  * @param {any} [xRHIDENTITY] For internal use only
2291
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
2201
2292
  * @param {any} [limit] Number of items to return per page
2202
2293
  * @param {any} [offset] Offset of first item of paginated response
2294
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2203
2295
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2204
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2296
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, and &#x60;group_name&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2205
2297
  * @param {*} [options] Override http request option.
2206
2298
  * @throws {RequiredError}
2207
2299
  */
2208
- policySystems: (policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2300
+ policySystems: (policyId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2209
2301
  };
2210
2302
  /**
2211
2303
  * PolicySystemsApi - functional programming interface
@@ -2217,14 +2309,16 @@ export declare const PolicySystemsApiFp: (configuration?: Configuration) => {
2217
2309
  * @summary Request Systems assigned to a Policy
2218
2310
  * @param {any} policyId
2219
2311
  * @param {any} [xRHIDENTITY] For internal use only
2312
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
2220
2313
  * @param {any} [limit] Number of items to return per page
2221
2314
  * @param {any} [offset] Offset of first item of paginated response
2315
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2222
2316
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2223
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2317
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, and &#x60;group_name&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2224
2318
  * @param {*} [options] Override http request option.
2225
2319
  * @throws {RequiredError}
2226
2320
  */
2227
- policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
2321
+ 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>>;
2228
2322
  };
2229
2323
  /**
2230
2324
  * PolicySystemsApi - factory interface
@@ -2236,14 +2330,16 @@ export declare const PolicySystemsApiFactory: (configuration?: Configuration, ba
2236
2330
  * @summary Request Systems assigned to a Policy
2237
2331
  * @param {any} policyId
2238
2332
  * @param {any} [xRHIDENTITY] For internal use only
2333
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
2239
2334
  * @param {any} [limit] Number of items to return per page
2240
2335
  * @param {any} [offset] Offset of first item of paginated response
2336
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2241
2337
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2242
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2338
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, and &#x60;group_name&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2243
2339
  * @param {*} [options] Override http request option.
2244
2340
  * @throws {RequiredError}
2245
2341
  */
2246
- policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
2342
+ policySystems(policyId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
2247
2343
  };
2248
2344
  /**
2249
2345
  * PolicySystemsApi - object-oriented interface
@@ -2257,15 +2353,17 @@ export declare class PolicySystemsApi extends BaseAPI {
2257
2353
  * @summary Request Systems assigned to a Policy
2258
2354
  * @param {any} policyId
2259
2355
  * @param {any} [xRHIDENTITY] For internal use only
2356
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
2260
2357
  * @param {any} [limit] Number of items to return per page
2261
2358
  * @param {any} [offset] Offset of first item of paginated response
2359
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2262
2360
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2263
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2361
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, and &#x60;group_name&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2264
2362
  * @param {*} [options] Override http request option.
2265
2363
  * @throws {RequiredError}
2266
2364
  * @memberof PolicySystemsApi
2267
2365
  */
2268
- policySystems(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
2366
+ 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>>;
2269
2367
  }
2270
2368
  /**
2271
2369
  * PolicySystemsOSApi - axios parameter creator
@@ -2489,12 +2587,13 @@ export declare const ProfileRulesApiAxiosParamCreator: (configuration?: Configur
2489
2587
  * @param {any} [xRHIDENTITY] For internal use only
2490
2588
  * @param {any} [limit] Number of items to return per page
2491
2589
  * @param {any} [offset] Offset of first item of paginated response
2590
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2492
2591
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2493
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2592
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2494
2593
  * @param {*} [options] Override http request option.
2495
2594
  * @throws {RequiredError}
2496
2595
  */
2497
- profileRules: (securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2596
+ profileRules: (securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2498
2597
  };
2499
2598
  /**
2500
2599
  * ProfileRulesApi - functional programming interface
@@ -2509,12 +2608,13 @@ export declare const ProfileRulesApiFp: (configuration?: Configuration) => {
2509
2608
  * @param {any} [xRHIDENTITY] For internal use only
2510
2609
  * @param {any} [limit] Number of items to return per page
2511
2610
  * @param {any} [offset] Offset of first item of paginated response
2611
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2512
2612
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2513
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2613
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2514
2614
  * @param {*} [options] Override http request option.
2515
2615
  * @throws {RequiredError}
2516
2616
  */
2517
- profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
2617
+ 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>>;
2518
2618
  };
2519
2619
  /**
2520
2620
  * ProfileRulesApi - factory interface
@@ -2529,12 +2629,13 @@ export declare const ProfileRulesApiFactory: (configuration?: Configuration, bas
2529
2629
  * @param {any} [xRHIDENTITY] For internal use only
2530
2630
  * @param {any} [limit] Number of items to return per page
2531
2631
  * @param {any} [offset] Offset of first item of paginated response
2632
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2532
2633
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2533
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2634
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2534
2635
  * @param {*} [options] Override http request option.
2535
2636
  * @throws {RequiredError}
2536
2637
  */
2537
- profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
2638
+ profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
2538
2639
  };
2539
2640
  /**
2540
2641
  * ProfileRulesApi - object-oriented interface
@@ -2551,13 +2652,81 @@ export declare class ProfileRulesApi extends BaseAPI {
2551
2652
  * @param {any} [xRHIDENTITY] For internal use only
2552
2653
  * @param {any} [limit] Number of items to return per page
2553
2654
  * @param {any} [offset] Offset of first item of paginated response
2655
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2554
2656
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2555
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2657
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2556
2658
  * @param {*} [options] Override http request option.
2557
2659
  * @throws {RequiredError}
2558
2660
  * @memberof ProfileRulesApi
2559
2661
  */
2560
- profileRules(securityGuideId: any, profileId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
2662
+ 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>>;
2663
+ }
2664
+ /**
2665
+ * ProfileTreeApi - axios parameter creator
2666
+ * @export
2667
+ */
2668
+ export declare const ProfileTreeApiAxiosParamCreator: (configuration?: Configuration) => {
2669
+ /**
2670
+ * Returns the Rule Tree of a Profile
2671
+ * @summary Request the Rule Tree of a Profile
2672
+ * @param {any} securityGuideId
2673
+ * @param {any} profileId
2674
+ * @param {any} [xRHIDENTITY] For internal use only
2675
+ * @param {*} [options] Override http request option.
2676
+ * @throws {RequiredError}
2677
+ */
2678
+ profileTree: (securityGuideId: any, profileId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2679
+ };
2680
+ /**
2681
+ * ProfileTreeApi - functional programming interface
2682
+ * @export
2683
+ */
2684
+ export declare const ProfileTreeApiFp: (configuration?: Configuration) => {
2685
+ /**
2686
+ * Returns the Rule Tree of a Profile
2687
+ * @summary Request the Rule Tree of a Profile
2688
+ * @param {any} securityGuideId
2689
+ * @param {any} profileId
2690
+ * @param {any} [xRHIDENTITY] For internal use only
2691
+ * @param {*} [options] Override http request option.
2692
+ * @throws {RequiredError}
2693
+ */
2694
+ profileTree(securityGuideId: any, profileId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
2695
+ };
2696
+ /**
2697
+ * ProfileTreeApi - factory interface
2698
+ * @export
2699
+ */
2700
+ export declare const ProfileTreeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2701
+ /**
2702
+ * Returns the Rule Tree of a Profile
2703
+ * @summary Request the Rule Tree of a Profile
2704
+ * @param {any} securityGuideId
2705
+ * @param {any} profileId
2706
+ * @param {any} [xRHIDENTITY] For internal use only
2707
+ * @param {*} [options] Override http request option.
2708
+ * @throws {RequiredError}
2709
+ */
2710
+ profileTree(securityGuideId: any, profileId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<any>;
2711
+ };
2712
+ /**
2713
+ * ProfileTreeApi - object-oriented interface
2714
+ * @export
2715
+ * @class ProfileTreeApi
2716
+ * @extends {BaseAPI}
2717
+ */
2718
+ export declare class ProfileTreeApi extends BaseAPI {
2719
+ /**
2720
+ * Returns the Rule Tree of a Profile
2721
+ * @summary Request the Rule Tree of a Profile
2722
+ * @param {any} securityGuideId
2723
+ * @param {any} profileId
2724
+ * @param {any} [xRHIDENTITY] For internal use only
2725
+ * @param {*} [options] Override http request option.
2726
+ * @throws {RequiredError}
2727
+ * @memberof ProfileTreeApi
2728
+ */
2729
+ profileTree(securityGuideId: any, profileId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
2561
2730
  }
2562
2731
  /**
2563
2732
  * ProfilesApi - axios parameter creator
@@ -2571,12 +2740,13 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
2571
2740
  * @param {any} [xRHIDENTITY] For internal use only
2572
2741
  * @param {any} [limit] Number of items to return per page
2573
2742
  * @param {any} [offset] Offset of first item of paginated response
2743
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2574
2744
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2575
2745
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Profiles are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2576
2746
  * @param {*} [options] Override http request option.
2577
2747
  * @throws {RequiredError}
2578
2748
  */
2579
- profiles: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2749
+ profiles: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2580
2750
  };
2581
2751
  /**
2582
2752
  * ProfilesApi - functional programming interface
@@ -2590,12 +2760,13 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
2590
2760
  * @param {any} [xRHIDENTITY] For internal use only
2591
2761
  * @param {any} [limit] Number of items to return per page
2592
2762
  * @param {any} [offset] Offset of first item of paginated response
2763
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2593
2764
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2594
2765
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Profiles are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2595
2766
  * @param {*} [options] Override http request option.
2596
2767
  * @throws {RequiredError}
2597
2768
  */
2598
- profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Profiles200Response>>;
2769
+ profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Profiles200Response>>;
2599
2770
  };
2600
2771
  /**
2601
2772
  * ProfilesApi - factory interface
@@ -2609,12 +2780,13 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
2609
2780
  * @param {any} [xRHIDENTITY] For internal use only
2610
2781
  * @param {any} [limit] Number of items to return per page
2611
2782
  * @param {any} [offset] Offset of first item of paginated response
2783
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2612
2784
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2613
2785
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Profiles are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2614
2786
  * @param {*} [options] Override http request option.
2615
2787
  * @throws {RequiredError}
2616
2788
  */
2617
- profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Profiles200Response>;
2789
+ profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Profiles200Response>;
2618
2790
  };
2619
2791
  /**
2620
2792
  * ProfilesApi - object-oriented interface
@@ -2630,13 +2802,14 @@ export declare class ProfilesApi extends BaseAPI {
2630
2802
  * @param {any} [xRHIDENTITY] For internal use only
2631
2803
  * @param {any} [limit] Number of items to return per page
2632
2804
  * @param {any} [offset] Offset of first item of paginated response
2805
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2633
2806
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2634
2807
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Profiles are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2635
2808
  * @param {*} [options] Override http request option.
2636
2809
  * @throws {RequiredError}
2637
2810
  * @memberof ProfilesApi
2638
2811
  */
2639
- profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profiles200Response, any>>;
2812
+ profiles(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profiles200Response, any>>;
2640
2813
  }
2641
2814
  /**
2642
2815
  * ReportApi - axios parameter creator
@@ -2714,12 +2887,13 @@ export declare const ReportRuleResultsApiAxiosParamCreator: (configuration?: Con
2714
2887
  * @param {any} [xRHIDENTITY] For internal use only
2715
2888
  * @param {any} [limit] Number of items to return per page
2716
2889
  * @param {any} [offset] Offset of first item of paginated response
2890
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2717
2891
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2718
2892
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Results are searchable using attributes &#x60;result&#x60;, &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2719
2893
  * @param {*} [options] Override http request option.
2720
2894
  * @throws {RequiredError}
2721
2895
  */
2722
- reportRuleResults: (testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2896
+ reportRuleResults: (testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2723
2897
  };
2724
2898
  /**
2725
2899
  * ReportRuleResultsApi - functional programming interface
@@ -2734,12 +2908,13 @@ export declare const ReportRuleResultsApiFp: (configuration?: Configuration) =>
2734
2908
  * @param {any} [xRHIDENTITY] For internal use only
2735
2909
  * @param {any} [limit] Number of items to return per page
2736
2910
  * @param {any} [offset] Offset of first item of paginated response
2911
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2737
2912
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2738
2913
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Results are searchable using attributes &#x60;result&#x60;, &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2739
2914
  * @param {*} [options] Override http request option.
2740
2915
  * @throws {RequiredError}
2741
2916
  */
2742
- reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportRuleResults200Response>>;
2917
+ 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>>;
2743
2918
  };
2744
2919
  /**
2745
2920
  * ReportRuleResultsApi - factory interface
@@ -2754,12 +2929,13 @@ export declare const ReportRuleResultsApiFactory: (configuration?: Configuration
2754
2929
  * @param {any} [xRHIDENTITY] For internal use only
2755
2930
  * @param {any} [limit] Number of items to return per page
2756
2931
  * @param {any} [offset] Offset of first item of paginated response
2932
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2757
2933
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2758
2934
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Results are searchable using attributes &#x60;result&#x60;, &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2759
2935
  * @param {*} [options] Override http request option.
2760
2936
  * @throws {RequiredError}
2761
2937
  */
2762
- reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportRuleResults200Response>;
2938
+ reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportRuleResults200Response>;
2763
2939
  };
2764
2940
  /**
2765
2941
  * ReportRuleResultsApi - object-oriented interface
@@ -2776,13 +2952,14 @@ export declare class ReportRuleResultsApi extends BaseAPI {
2776
2952
  * @param {any} [xRHIDENTITY] For internal use only
2777
2953
  * @param {any} [limit] Number of items to return per page
2778
2954
  * @param {any} [offset] Offset of first item of paginated response
2955
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2779
2956
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2780
2957
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Results are searchable using attributes &#x60;result&#x60;, &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2781
2958
  * @param {*} [options] Override http request option.
2782
2959
  * @throws {RequiredError}
2783
2960
  * @memberof ReportRuleResultsApi
2784
2961
  */
2785
- reportRuleResults(testResultId: any, reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportRuleResults200Response, any>>;
2962
+ 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>>;
2786
2963
  }
2787
2964
  /**
2788
2965
  * ReportStatsApi - axios parameter creator
@@ -2928,14 +3105,16 @@ export declare const ReportSystemsApiAxiosParamCreator: (configuration?: Configu
2928
3105
  * @summary Request Systems assigned to a Report
2929
3106
  * @param {any} reportId
2930
3107
  * @param {any} [xRHIDENTITY] For internal use only
3108
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
2931
3109
  * @param {any} [limit] Number of items to return per page
2932
3110
  * @param {any} [offset] Offset of first item of paginated response
3111
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2933
3112
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2934
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3113
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;never_reported&#x60;, and &#x60;group_name&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2935
3114
  * @param {*} [options] Override http request option.
2936
3115
  * @throws {RequiredError}
2937
3116
  */
2938
- reportSystems: (reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3117
+ reportSystems: (reportId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2939
3118
  };
2940
3119
  /**
2941
3120
  * ReportSystemsApi - functional programming interface
@@ -2947,14 +3126,16 @@ export declare const ReportSystemsApiFp: (configuration?: Configuration) => {
2947
3126
  * @summary Request Systems assigned to a Report
2948
3127
  * @param {any} reportId
2949
3128
  * @param {any} [xRHIDENTITY] For internal use only
3129
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
2950
3130
  * @param {any} [limit] Number of items to return per page
2951
3131
  * @param {any} [offset] Offset of first item of paginated response
3132
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2952
3133
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2953
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3134
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;never_reported&#x60;, and &#x60;group_name&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2954
3135
  * @param {*} [options] Override http request option.
2955
3136
  * @throws {RequiredError}
2956
3137
  */
2957
- reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
3138
+ 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>>;
2958
3139
  };
2959
3140
  /**
2960
3141
  * ReportSystemsApi - factory interface
@@ -2966,14 +3147,16 @@ export declare const ReportSystemsApiFactory: (configuration?: Configuration, ba
2966
3147
  * @summary Request Systems assigned to a Report
2967
3148
  * @param {any} reportId
2968
3149
  * @param {any} [xRHIDENTITY] For internal use only
3150
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
2969
3151
  * @param {any} [limit] Number of items to return per page
2970
3152
  * @param {any} [offset] Offset of first item of paginated response
3153
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2971
3154
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2972
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3155
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;never_reported&#x60;, and &#x60;group_name&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2973
3156
  * @param {*} [options] Override http request option.
2974
3157
  * @throws {RequiredError}
2975
3158
  */
2976
- reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
3159
+ reportSystems(reportId: any, xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
2977
3160
  };
2978
3161
  /**
2979
3162
  * ReportSystemsApi - object-oriented interface
@@ -2987,15 +3170,17 @@ export declare class ReportSystemsApi extends BaseAPI {
2987
3170
  * @summary Request Systems assigned to a Report
2988
3171
  * @param {any} reportId
2989
3172
  * @param {any} [xRHIDENTITY] For internal use only
3173
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
2990
3174
  * @param {any} [limit] Number of items to return per page
2991
3175
  * @param {any} [offset] Offset of first item of paginated response
3176
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
2992
3177
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
2993
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3178
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;never_reported&#x60;, and &#x60;group_name&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
2994
3179
  * @param {*} [options] Override http request option.
2995
3180
  * @throws {RequiredError}
2996
3181
  * @memberof ReportSystemsApi
2997
3182
  */
2998
- reportSystems(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
3183
+ 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>>;
2999
3184
  }
3000
3185
  /**
3001
3186
  * ReportSystemsOSApi - axios parameter creator
@@ -3147,12 +3332,13 @@ export declare const ReportTestResultsApiAxiosParamCreator: (configuration?: Con
3147
3332
  * @param {any} [xRHIDENTITY] For internal use only
3148
3333
  * @param {any} [limit] Number of items to return per page
3149
3334
  * @param {any} [offset] Offset of first item of paginated response
3335
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3150
3336
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3151
3337
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3152
3338
  * @param {*} [options] Override http request option.
3153
3339
  * @throws {RequiredError}
3154
3340
  */
3155
- reportTestResults: (reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3341
+ reportTestResults: (reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3156
3342
  };
3157
3343
  /**
3158
3344
  * ReportTestResultsApi - functional programming interface
@@ -3166,12 +3352,13 @@ export declare const ReportTestResultsApiFp: (configuration?: Configuration) =>
3166
3352
  * @param {any} [xRHIDENTITY] For internal use only
3167
3353
  * @param {any} [limit] Number of items to return per page
3168
3354
  * @param {any} [offset] Offset of first item of paginated response
3355
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3169
3356
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3170
3357
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3171
3358
  * @param {*} [options] Override http request option.
3172
3359
  * @throws {RequiredError}
3173
3360
  */
3174
- reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportTestResults200Response>>;
3361
+ reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportTestResults200Response>>;
3175
3362
  };
3176
3363
  /**
3177
3364
  * ReportTestResultsApi - factory interface
@@ -3185,12 +3372,13 @@ export declare const ReportTestResultsApiFactory: (configuration?: Configuration
3185
3372
  * @param {any} [xRHIDENTITY] For internal use only
3186
3373
  * @param {any} [limit] Number of items to return per page
3187
3374
  * @param {any} [offset] Offset of first item of paginated response
3375
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3188
3376
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3189
3377
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3190
3378
  * @param {*} [options] Override http request option.
3191
3379
  * @throws {RequiredError}
3192
3380
  */
3193
- reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportTestResults200Response>;
3381
+ reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ReportTestResults200Response>;
3194
3382
  };
3195
3383
  /**
3196
3384
  * ReportTestResultsApi - object-oriented interface
@@ -3206,13 +3394,14 @@ export declare class ReportTestResultsApi extends BaseAPI {
3206
3394
  * @param {any} [xRHIDENTITY] For internal use only
3207
3395
  * @param {any} [limit] Number of items to return per page
3208
3396
  * @param {any} [offset] Offset of first item of paginated response
3397
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3209
3398
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3210
3399
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Test Results are searchable using attributes &#x60;score&#x60;, &#x60;supported&#x60;, &#x60;system_id&#x60;, &#x60;display_name&#x60;, &#x60;os_minor_version&#x60;, &#x60;security_guide_version&#x60;, &#x60;compliant&#x60;, &#x60;group_name&#x60;, and &#x60;failed_rule_severity&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3211
3400
  * @param {*} [options] Override http request option.
3212
3401
  * @throws {RequiredError}
3213
3402
  * @memberof ReportTestResultsApi
3214
3403
  */
3215
- reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportTestResults200Response, any>>;
3404
+ reportTestResults(reportId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportTestResults200Response, any>>;
3216
3405
  }
3217
3406
  /**
3218
3407
  * ReportTestResultsOSApi - axios parameter creator
@@ -3296,12 +3485,13 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
3296
3485
  * @param {any} [xRHIDENTITY] For internal use only
3297
3486
  * @param {any} [limit] Number of items to return per page
3298
3487
  * @param {any} [offset] Offset of first item of paginated response
3488
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3299
3489
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3300
3490
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3301
3491
  * @param {*} [options] Override http request option.
3302
3492
  * @throws {RequiredError}
3303
3493
  */
3304
- reports: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3494
+ reports: (xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3305
3495
  };
3306
3496
  /**
3307
3497
  * ReportsApi - functional programming interface
@@ -3314,12 +3504,13 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
3314
3504
  * @param {any} [xRHIDENTITY] For internal use only
3315
3505
  * @param {any} [limit] Number of items to return per page
3316
3506
  * @param {any} [offset] Offset of first item of paginated response
3507
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3317
3508
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3318
3509
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3319
3510
  * @param {*} [options] Override http request option.
3320
3511
  * @throws {RequiredError}
3321
3512
  */
3322
- reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
3513
+ reports(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
3323
3514
  };
3324
3515
  /**
3325
3516
  * ReportsApi - factory interface
@@ -3332,12 +3523,13 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
3332
3523
  * @param {any} [xRHIDENTITY] For internal use only
3333
3524
  * @param {any} [limit] Number of items to return per page
3334
3525
  * @param {any} [offset] Offset of first item of paginated response
3526
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3335
3527
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3336
3528
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3337
3529
  * @param {*} [options] Override http request option.
3338
3530
  * @throws {RequiredError}
3339
3531
  */
3340
- reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
3532
+ reports(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
3341
3533
  };
3342
3534
  /**
3343
3535
  * ReportsApi - object-oriented interface
@@ -3352,13 +3544,14 @@ export declare class ReportsApi extends BaseAPI {
3352
3544
  * @param {any} [xRHIDENTITY] For internal use only
3353
3545
  * @param {any} [limit] Number of items to return per page
3354
3546
  * @param {any} [offset] Offset of first item of paginated response
3547
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3355
3548
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3356
3549
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3357
3550
  * @param {*} [options] Override http request option.
3358
3551
  * @throws {RequiredError}
3359
3552
  * @memberof ReportsApi
3360
3553
  */
3361
- reports(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
3554
+ reports(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
3362
3555
  }
3363
3556
  /**
3364
3557
  * ReportsOSApi - axios parameter creator
@@ -3573,12 +3766,13 @@ export declare const RuleGroupsApiAxiosParamCreator: (configuration?: Configurat
3573
3766
  * @param {any} [xRHIDENTITY] For internal use only
3574
3767
  * @param {any} [limit] Number of items to return per page
3575
3768
  * @param {any} [offset] Offset of first item of paginated response
3769
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3576
3770
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3577
3771
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Groups are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3578
3772
  * @param {*} [options] Override http request option.
3579
3773
  * @throws {RequiredError}
3580
3774
  */
3581
- ruleGroups: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3775
+ ruleGroups: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3582
3776
  };
3583
3777
  /**
3584
3778
  * RuleGroupsApi - functional programming interface
@@ -3592,12 +3786,13 @@ export declare const RuleGroupsApiFp: (configuration?: Configuration) => {
3592
3786
  * @param {any} [xRHIDENTITY] For internal use only
3593
3787
  * @param {any} [limit] Number of items to return per page
3594
3788
  * @param {any} [offset] Offset of first item of paginated response
3789
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3595
3790
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3596
3791
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Groups are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3597
3792
  * @param {*} [options] Override http request option.
3598
3793
  * @throws {RequiredError}
3599
3794
  */
3600
- ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RuleGroups200Response>>;
3795
+ ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RuleGroups200Response>>;
3601
3796
  };
3602
3797
  /**
3603
3798
  * RuleGroupsApi - factory interface
@@ -3611,12 +3806,13 @@ export declare const RuleGroupsApiFactory: (configuration?: Configuration, baseP
3611
3806
  * @param {any} [xRHIDENTITY] For internal use only
3612
3807
  * @param {any} [limit] Number of items to return per page
3613
3808
  * @param {any} [offset] Offset of first item of paginated response
3809
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3614
3810
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3615
3811
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Groups are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3616
3812
  * @param {*} [options] Override http request option.
3617
3813
  * @throws {RequiredError}
3618
3814
  */
3619
- ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<RuleGroups200Response>;
3815
+ ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<RuleGroups200Response>;
3620
3816
  };
3621
3817
  /**
3622
3818
  * RuleGroupsApi - object-oriented interface
@@ -3632,13 +3828,14 @@ export declare class RuleGroupsApi extends BaseAPI {
3632
3828
  * @param {any} [xRHIDENTITY] For internal use only
3633
3829
  * @param {any} [limit] Number of items to return per page
3634
3830
  * @param {any} [offset] Offset of first item of paginated response
3831
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3635
3832
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3636
3833
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rule Groups are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3637
3834
  * @param {*} [options] Override http request option.
3638
3835
  * @throws {RequiredError}
3639
3836
  * @memberof RuleGroupsApi
3640
3837
  */
3641
- ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroups200Response, any>>;
3838
+ ruleGroups(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RuleGroups200Response, any>>;
3642
3839
  }
3643
3840
  /**
3644
3841
  * RulesApi - axios parameter creator
@@ -3652,12 +3849,13 @@ export declare const RulesApiAxiosParamCreator: (configuration?: Configuration)
3652
3849
  * @param {any} [xRHIDENTITY] For internal use only
3653
3850
  * @param {any} [limit] Number of items to return per page
3654
3851
  * @param {any} [offset] Offset of first item of paginated response
3852
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3655
3853
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3656
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3854
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3657
3855
  * @param {*} [options] Override http request option.
3658
3856
  * @throws {RequiredError}
3659
3857
  */
3660
- rules: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3858
+ rules: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3661
3859
  };
3662
3860
  /**
3663
3861
  * RulesApi - functional programming interface
@@ -3671,12 +3869,13 @@ export declare const RulesApiFp: (configuration?: Configuration) => {
3671
3869
  * @param {any} [xRHIDENTITY] For internal use only
3672
3870
  * @param {any} [limit] Number of items to return per page
3673
3871
  * @param {any} [offset] Offset of first item of paginated response
3872
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3674
3873
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3675
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3874
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3676
3875
  * @param {*} [options] Override http request option.
3677
3876
  * @throws {RequiredError}
3678
3877
  */
3679
- rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
3878
+ rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
3680
3879
  };
3681
3880
  /**
3682
3881
  * RulesApi - factory interface
@@ -3690,12 +3889,13 @@ export declare const RulesApiFactory: (configuration?: Configuration, basePath?:
3690
3889
  * @param {any} [xRHIDENTITY] For internal use only
3691
3890
  * @param {any} [limit] Number of items to return per page
3692
3891
  * @param {any} [offset] Offset of first item of paginated response
3892
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3693
3893
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3694
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3894
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3695
3895
  * @param {*} [options] Override http request option.
3696
3896
  * @throws {RequiredError}
3697
3897
  */
3698
- rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
3898
+ rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
3699
3899
  };
3700
3900
  /**
3701
3901
  * RulesApi - object-oriented interface
@@ -3711,13 +3911,14 @@ export declare class RulesApi extends BaseAPI {
3711
3911
  * @param {any} [xRHIDENTITY] For internal use only
3712
3912
  * @param {any} [limit] Number of items to return per page
3713
3913
  * @param {any} [offset] Offset of first item of paginated response
3914
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3714
3915
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3715
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3916
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3716
3917
  * @param {*} [options] Override http request option.
3717
3918
  * @throws {RequiredError}
3718
3919
  * @memberof RulesApi
3719
3920
  */
3720
- rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
3921
+ rules(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
3721
3922
  }
3722
3923
  /**
3723
3924
  * SecurityGuideApi - axios parameter creator
@@ -3856,12 +4057,13 @@ export declare const SecurityGuidesApiAxiosParamCreator: (configuration?: Config
3856
4057
  * @param {any} [xRHIDENTITY] For internal use only
3857
4058
  * @param {any} [limit] Number of items to return per page
3858
4059
  * @param {any} [offset] Offset of first item of paginated response
4060
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3859
4061
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3860
4062
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, &#x60;os_major_version&#x60;, &#x60;profile_ref_id&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3861
4063
  * @param {*} [options] Override http request option.
3862
4064
  * @throws {RequiredError}
3863
4065
  */
3864
- securityGuides: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4066
+ securityGuides: (xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3865
4067
  };
3866
4068
  /**
3867
4069
  * SecurityGuidesApi - functional programming interface
@@ -3874,12 +4076,13 @@ export declare const SecurityGuidesApiFp: (configuration?: Configuration) => {
3874
4076
  * @param {any} [xRHIDENTITY] For internal use only
3875
4077
  * @param {any} [limit] Number of items to return per page
3876
4078
  * @param {any} [offset] Offset of first item of paginated response
4079
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3877
4080
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3878
4081
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, &#x60;os_major_version&#x60;, &#x60;profile_ref_id&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3879
4082
  * @param {*} [options] Override http request option.
3880
4083
  * @throws {RequiredError}
3881
4084
  */
3882
- securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityGuides200Response>>;
4085
+ securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityGuides200Response>>;
3883
4086
  };
3884
4087
  /**
3885
4088
  * SecurityGuidesApi - factory interface
@@ -3892,12 +4095,13 @@ export declare const SecurityGuidesApiFactory: (configuration?: Configuration, b
3892
4095
  * @param {any} [xRHIDENTITY] For internal use only
3893
4096
  * @param {any} [limit] Number of items to return per page
3894
4097
  * @param {any} [offset] Offset of first item of paginated response
4098
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3895
4099
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3896
4100
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, &#x60;os_major_version&#x60;, &#x60;profile_ref_id&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3897
4101
  * @param {*} [options] Override http request option.
3898
4102
  * @throws {RequiredError}
3899
4103
  */
3900
- securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SecurityGuides200Response>;
4104
+ securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SecurityGuides200Response>;
3901
4105
  };
3902
4106
  /**
3903
4107
  * SecurityGuidesApi - object-oriented interface
@@ -3912,13 +4116,14 @@ export declare class SecurityGuidesApi extends BaseAPI {
3912
4116
  * @param {any} [xRHIDENTITY] For internal use only
3913
4117
  * @param {any} [limit] Number of items to return per page
3914
4118
  * @param {any} [offset] Offset of first item of paginated response
4119
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
3915
4120
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
3916
4121
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Security Guides are searchable using attributes &#x60;title&#x60;, &#x60;version&#x60;, &#x60;ref_id&#x60;, &#x60;os_major_version&#x60;, &#x60;profile_ref_id&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
3917
4122
  * @param {*} [options] Override http request option.
3918
4123
  * @throws {RequiredError}
3919
4124
  * @memberof SecurityGuidesApi
3920
4125
  */
3921
- securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuides200Response, any>>;
4126
+ securityGuides(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecurityGuides200Response, any>>;
3922
4127
  }
3923
4128
  /**
3924
4129
  * SecurityGuidesOSApi - axios parameter creator
@@ -3998,12 +4203,13 @@ export declare const SupportedProfilesApiAxiosParamCreator: (configuration?: Con
3998
4203
  * @param {any} [xRHIDENTITY] For internal use only
3999
4204
  * @param {any} [limit] Number of items to return per page
4000
4205
  * @param {any} [offset] Offset of first item of paginated response
4206
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4001
4207
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4002
4208
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Supported Profiles are searchable using attributes &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4003
4209
  * @param {*} [options] Override http request option.
4004
4210
  * @throws {RequiredError}
4005
4211
  */
4006
- supportedProfiles: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4212
+ supportedProfiles: (xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4007
4213
  };
4008
4214
  /**
4009
4215
  * SupportedProfilesApi - functional programming interface
@@ -4016,12 +4222,13 @@ export declare const SupportedProfilesApiFp: (configuration?: Configuration) =>
4016
4222
  * @param {any} [xRHIDENTITY] For internal use only
4017
4223
  * @param {any} [limit] Number of items to return per page
4018
4224
  * @param {any} [offset] Offset of first item of paginated response
4225
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4019
4226
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4020
4227
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Supported Profiles are searchable using attributes &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4021
4228
  * @param {*} [options] Override http request option.
4022
4229
  * @throws {RequiredError}
4023
4230
  */
4024
- supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportedProfiles200Response>>;
4231
+ supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportedProfiles200Response>>;
4025
4232
  };
4026
4233
  /**
4027
4234
  * SupportedProfilesApi - factory interface
@@ -4034,12 +4241,13 @@ export declare const SupportedProfilesApiFactory: (configuration?: Configuration
4034
4241
  * @param {any} [xRHIDENTITY] For internal use only
4035
4242
  * @param {any} [limit] Number of items to return per page
4036
4243
  * @param {any} [offset] Offset of first item of paginated response
4244
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4037
4245
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4038
4246
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Supported Profiles are searchable using attributes &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4039
4247
  * @param {*} [options] Override http request option.
4040
4248
  * @throws {RequiredError}
4041
4249
  */
4042
- supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SupportedProfiles200Response>;
4250
+ supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<SupportedProfiles200Response>;
4043
4251
  };
4044
4252
  /**
4045
4253
  * SupportedProfilesApi - object-oriented interface
@@ -4054,13 +4262,14 @@ export declare class SupportedProfilesApi extends BaseAPI {
4054
4262
  * @param {any} [xRHIDENTITY] For internal use only
4055
4263
  * @param {any} [limit] Number of items to return per page
4056
4264
  * @param {any} [offset] Offset of first item of paginated response
4265
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4057
4266
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4058
4267
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Supported Profiles are searchable using attributes &#x60;os_major_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4059
4268
  * @param {*} [options] Override http request option.
4060
4269
  * @throws {RequiredError}
4061
4270
  * @memberof SupportedProfilesApi
4062
4271
  */
4063
- supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportedProfiles200Response, any>>;
4272
+ supportedProfiles(xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportedProfiles200Response, any>>;
4064
4273
  }
4065
4274
  /**
4066
4275
  * SystemApi - axios parameter creator
@@ -4137,12 +4346,13 @@ export declare const SystemReportsApiAxiosParamCreator: (configuration?: Configu
4137
4346
  * @param {any} [xRHIDENTITY] For internal use only
4138
4347
  * @param {any} [limit] Number of items to return per page
4139
4348
  * @param {any} [offset] Offset of first item of paginated response
4349
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4140
4350
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4141
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4351
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4142
4352
  * @param {*} [options] Override http request option.
4143
4353
  * @throws {RequiredError}
4144
4354
  */
4145
- systemReports: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4355
+ systemReports: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4146
4356
  };
4147
4357
  /**
4148
4358
  * SystemReportsApi - functional programming interface
@@ -4156,12 +4366,13 @@ export declare const SystemReportsApiFp: (configuration?: Configuration) => {
4156
4366
  * @param {any} [xRHIDENTITY] For internal use only
4157
4367
  * @param {any} [limit] Number of items to return per page
4158
4368
  * @param {any} [offset] Offset of first item of paginated response
4369
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4159
4370
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4160
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4371
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4161
4372
  * @param {*} [options] Override http request option.
4162
4373
  * @throws {RequiredError}
4163
4374
  */
4164
- systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
4375
+ systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reports200Response>>;
4165
4376
  };
4166
4377
  /**
4167
4378
  * SystemReportsApi - factory interface
@@ -4175,12 +4386,13 @@ export declare const SystemReportsApiFactory: (configuration?: Configuration, ba
4175
4386
  * @param {any} [xRHIDENTITY] For internal use only
4176
4387
  * @param {any} [limit] Number of items to return per page
4177
4388
  * @param {any} [offset] Offset of first item of paginated response
4389
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4178
4390
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4179
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4391
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4180
4392
  * @param {*} [options] Override http request option.
4181
4393
  * @throws {RequiredError}
4182
4394
  */
4183
- systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
4395
+ systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Reports200Response>;
4184
4396
  };
4185
4397
  /**
4186
4398
  * SystemReportsApi - object-oriented interface
@@ -4196,13 +4408,14 @@ export declare class SystemReportsApi extends BaseAPI {
4196
4408
  * @param {any} [xRHIDENTITY] For internal use only
4197
4409
  * @param {any} [limit] Number of items to return per page
4198
4410
  * @param {any} [offset] Offset of first item of paginated response
4411
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4199
4412
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4200
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;with_reported_systems&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4413
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Reports are searchable using attributes &#x60;title&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4201
4414
  * @param {*} [options] Override http request option.
4202
4415
  * @throws {RequiredError}
4203
4416
  * @memberof SystemReportsApi
4204
4417
  */
4205
- systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
4418
+ systemReports(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reports200Response, any>>;
4206
4419
  }
4207
4420
  /**
4208
4421
  * SystemsApi - axios parameter creator
@@ -4213,14 +4426,16 @@ export declare const SystemsApiAxiosParamCreator: (configuration?: Configuration
4213
4426
  * Lists Systems
4214
4427
  * @summary Request Systems
4215
4428
  * @param {any} [xRHIDENTITY] For internal use only
4429
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
4216
4430
  * @param {any} [limit] Number of items to return per page
4217
4431
  * @param {any} [offset] Offset of first item of paginated response
4432
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4218
4433
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4219
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4434
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4220
4435
  * @param {*} [options] Override http request option.
4221
4436
  * @throws {RequiredError}
4222
4437
  */
4223
- systems: (xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4438
+ systems: (xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4224
4439
  };
4225
4440
  /**
4226
4441
  * SystemsApi - functional programming interface
@@ -4231,14 +4446,16 @@ export declare const SystemsApiFp: (configuration?: Configuration) => {
4231
4446
  * Lists Systems
4232
4447
  * @summary Request Systems
4233
4448
  * @param {any} [xRHIDENTITY] For internal use only
4449
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
4234
4450
  * @param {any} [limit] Number of items to return per page
4235
4451
  * @param {any} [offset] Offset of first item of paginated response
4452
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4236
4453
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4237
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4454
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4238
4455
  * @param {*} [options] Override http request option.
4239
4456
  * @throws {RequiredError}
4240
4457
  */
4241
- systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
4458
+ systems(xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Systems200Response>>;
4242
4459
  };
4243
4460
  /**
4244
4461
  * SystemsApi - factory interface
@@ -4249,14 +4466,16 @@ export declare const SystemsApiFactory: (configuration?: Configuration, basePath
4249
4466
  * Lists Systems
4250
4467
  * @summary Request Systems
4251
4468
  * @param {any} [xRHIDENTITY] For internal use only
4469
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
4252
4470
  * @param {any} [limit] Number of items to return per page
4253
4471
  * @param {any} [offset] Offset of first item of paginated response
4472
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4254
4473
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4255
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4474
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4256
4475
  * @param {*} [options] Override http request option.
4257
4476
  * @throws {RequiredError}
4258
4477
  */
4259
- systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
4478
+ systems(xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Systems200Response>;
4260
4479
  };
4261
4480
  /**
4262
4481
  * SystemsApi - object-oriented interface
@@ -4269,15 +4488,17 @@ export declare class SystemsApi extends BaseAPI {
4269
4488
  * Lists Systems
4270
4489
  * @summary Request Systems
4271
4490
  * @param {any} [xRHIDENTITY] For internal use only
4491
+ * @param {any} [tags] An array of tags to narrow down the search results. In case the value contains symbols used for separators (&#x60;/&#x60; or &#x60;&#x3D;&#x60;), they need to be encoded.&lt;br&gt;e.g.: &#x60;namespace/key&#x3D;value&#x60;, &#x60;insights-client/selinux-config&#x3D;SELINUX%3Denforcing&#x60;
4272
4492
  * @param {any} [limit] Number of items to return per page
4273
4493
  * @param {any} [offset] Offset of first item of paginated response
4494
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4274
4495
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4275
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;never_reported&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4496
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Systems are searchable using attributes &#x60;display_name&#x60;, &#x60;os_major_version&#x60;, &#x60;os_minor_version&#x60;, &#x60;assigned_or_scanned&#x60;, &#x60;group_name&#x60;, &#x60;policies&#x60;, and &#x60;profile_ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4276
4497
  * @param {*} [options] Override http request option.
4277
4498
  * @throws {RequiredError}
4278
4499
  * @memberof SystemsApi
4279
4500
  */
4280
- systems(xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
4501
+ systems(xRHIDENTITY?: any, tags?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Systems200Response, any>>;
4281
4502
  }
4282
4503
  /**
4283
4504
  * SystemsOSApi - axios parameter creator
@@ -4358,12 +4579,13 @@ export declare const SystemsPoliciesApiAxiosParamCreator: (configuration?: Confi
4358
4579
  * @param {any} [xRHIDENTITY] For internal use only
4359
4580
  * @param {any} [limit] Number of items to return per page
4360
4581
  * @param {any} [offset] Offset of first item of paginated response
4582
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4361
4583
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4362
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4584
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60; and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4363
4585
  * @param {*} [options] Override http request option.
4364
4586
  * @throws {RequiredError}
4365
4587
  */
4366
- systemsPolicies: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4588
+ systemsPolicies: (systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4367
4589
  };
4368
4590
  /**
4369
4591
  * SystemsPoliciesApi - functional programming interface
@@ -4377,12 +4599,13 @@ export declare const SystemsPoliciesApiFp: (configuration?: Configuration) => {
4377
4599
  * @param {any} [xRHIDENTITY] For internal use only
4378
4600
  * @param {any} [limit] Number of items to return per page
4379
4601
  * @param {any} [offset] Offset of first item of paginated response
4602
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4380
4603
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4381
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4604
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60; and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4382
4605
  * @param {*} [options] Override http request option.
4383
4606
  * @throws {RequiredError}
4384
4607
  */
4385
- systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policies200Response>>;
4608
+ systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Policies200Response>>;
4386
4609
  };
4387
4610
  /**
4388
4611
  * SystemsPoliciesApi - factory interface
@@ -4396,12 +4619,13 @@ export declare const SystemsPoliciesApiFactory: (configuration?: Configuration,
4396
4619
  * @param {any} [xRHIDENTITY] For internal use only
4397
4620
  * @param {any} [limit] Number of items to return per page
4398
4621
  * @param {any} [offset] Offset of first item of paginated response
4622
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4399
4623
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4400
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4624
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60; and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4401
4625
  * @param {*} [options] Override http request option.
4402
4626
  * @throws {RequiredError}
4403
4627
  */
4404
- systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
4628
+ systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Policies200Response>;
4405
4629
  };
4406
4630
  /**
4407
4631
  * SystemsPoliciesApi - object-oriented interface
@@ -4417,13 +4641,14 @@ export declare class SystemsPoliciesApi extends BaseAPI {
4417
4641
  * @param {any} [xRHIDENTITY] For internal use only
4418
4642
  * @param {any} [limit] Number of items to return per page
4419
4643
  * @param {any} [offset] Offset of first item of paginated response
4644
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4420
4645
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4421
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60;, &#x60;os_major_version&#x60;, and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4646
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Policies are searchable using attributes &#x60;title&#x60; and &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4422
4647
  * @param {*} [options] Override http request option.
4423
4648
  * @throws {RequiredError}
4424
4649
  * @memberof SystemsPoliciesApi
4425
4650
  */
4426
- systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
4651
+ systemsPolicies(systemId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Policies200Response, any>>;
4427
4652
  }
4428
4653
  /**
4429
4654
  * TailoringApi - axios parameter creator
@@ -4455,7 +4680,7 @@ export declare const TailoringApiFp: (configuration?: Configuration) => {
4455
4680
  * @param {*} [options] Override http request option.
4456
4681
  * @throws {RequiredError}
4457
4682
  */
4458
- tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tailoring200Response>>;
4683
+ tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTailoring201Response>>;
4459
4684
  };
4460
4685
  /**
4461
4686
  * TailoringApi - factory interface
@@ -4471,7 +4696,7 @@ export declare const TailoringApiFactory: (configuration?: Configuration, basePa
4471
4696
  * @param {*} [options] Override http request option.
4472
4697
  * @throws {RequiredError}
4473
4698
  */
4474
- tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<Tailoring200Response>;
4699
+ tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<CreateTailoring201Response>;
4475
4700
  };
4476
4701
  /**
4477
4702
  * TailoringApi - object-oriented interface
@@ -4490,7 +4715,7 @@ export declare class TailoringApi extends BaseAPI {
4490
4715
  * @throws {RequiredError}
4491
4716
  * @memberof TailoringApi
4492
4717
  */
4493
- tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailoring200Response, any>>;
4718
+ tailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateTailoring201Response, any>>;
4494
4719
  }
4495
4720
  /**
4496
4721
  * TailoringFileApi - axios parameter creator
@@ -4559,6 +4784,73 @@ export declare class TailoringFileApi extends BaseAPI {
4559
4784
  */
4560
4785
  tailoringFile(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TailoringFile, any>>;
4561
4786
  }
4787
+ /**
4788
+ * TailoringRuleTreeApi - axios parameter creator
4789
+ * @export
4790
+ */
4791
+ export declare const TailoringRuleTreeApiAxiosParamCreator: (configuration?: Configuration) => {
4792
+ /**
4793
+ * Returns the Rule Tree of a Tailoring
4794
+ * @summary Request the Rule Tree of a Tailoring
4795
+ * @param {any} policyId
4796
+ * @param {any} tailoringId
4797
+ * @param {any} [xRHIDENTITY] For internal use only
4798
+ * @param {*} [options] Override http request option.
4799
+ * @throws {RequiredError}
4800
+ */
4801
+ tailoringRuleTree: (policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4802
+ };
4803
+ /**
4804
+ * TailoringRuleTreeApi - functional programming interface
4805
+ * @export
4806
+ */
4807
+ export declare const TailoringRuleTreeApiFp: (configuration?: Configuration) => {
4808
+ /**
4809
+ * Returns the Rule Tree of a Tailoring
4810
+ * @summary Request the Rule Tree of a Tailoring
4811
+ * @param {any} policyId
4812
+ * @param {any} tailoringId
4813
+ * @param {any} [xRHIDENTITY] For internal use only
4814
+ * @param {*} [options] Override http request option.
4815
+ * @throws {RequiredError}
4816
+ */
4817
+ tailoringRuleTree(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
4818
+ };
4819
+ /**
4820
+ * TailoringRuleTreeApi - factory interface
4821
+ * @export
4822
+ */
4823
+ export declare const TailoringRuleTreeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4824
+ /**
4825
+ * Returns the Rule Tree of a Tailoring
4826
+ * @summary Request the Rule Tree of a Tailoring
4827
+ * @param {any} policyId
4828
+ * @param {any} tailoringId
4829
+ * @param {any} [xRHIDENTITY] For internal use only
4830
+ * @param {*} [options] Override http request option.
4831
+ * @throws {RequiredError}
4832
+ */
4833
+ tailoringRuleTree(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: any): AxiosPromise<any>;
4834
+ };
4835
+ /**
4836
+ * TailoringRuleTreeApi - object-oriented interface
4837
+ * @export
4838
+ * @class TailoringRuleTreeApi
4839
+ * @extends {BaseAPI}
4840
+ */
4841
+ export declare class TailoringRuleTreeApi extends BaseAPI {
4842
+ /**
4843
+ * Returns the Rule Tree of a Tailoring
4844
+ * @summary Request the Rule Tree of a Tailoring
4845
+ * @param {any} policyId
4846
+ * @param {any} tailoringId
4847
+ * @param {any} [xRHIDENTITY] For internal use only
4848
+ * @param {*} [options] Override http request option.
4849
+ * @throws {RequiredError}
4850
+ * @memberof TailoringRuleTreeApi
4851
+ */
4852
+ tailoringRuleTree(policyId: any, tailoringId: any, xRHIDENTITY?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
4853
+ }
4562
4854
  /**
4563
4855
  * TailoringRulesApi - axios parameter creator
4564
4856
  * @export
@@ -4572,12 +4864,13 @@ export declare const TailoringRulesApiAxiosParamCreator: (configuration?: Config
4572
4864
  * @param {any} [xRHIDENTITY] For internal use only
4573
4865
  * @param {any} [limit] Number of items to return per page
4574
4866
  * @param {any} [offset] Offset of first item of paginated response
4867
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4575
4868
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4576
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4869
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4577
4870
  * @param {*} [options] Override http request option.
4578
4871
  * @throws {RequiredError}
4579
4872
  */
4580
- tailoringRules: (policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4873
+ tailoringRules: (policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4581
4874
  };
4582
4875
  /**
4583
4876
  * TailoringRulesApi - functional programming interface
@@ -4592,12 +4885,13 @@ export declare const TailoringRulesApiFp: (configuration?: Configuration) => {
4592
4885
  * @param {any} [xRHIDENTITY] For internal use only
4593
4886
  * @param {any} [limit] Number of items to return per page
4594
4887
  * @param {any} [offset] Offset of first item of paginated response
4888
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4595
4889
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4596
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4890
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4597
4891
  * @param {*} [options] Override http request option.
4598
4892
  * @throws {RequiredError}
4599
4893
  */
4600
- tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Rules200Response>>;
4894
+ 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>>;
4601
4895
  };
4602
4896
  /**
4603
4897
  * TailoringRulesApi - factory interface
@@ -4612,12 +4906,13 @@ export declare const TailoringRulesApiFactory: (configuration?: Configuration, b
4612
4906
  * @param {any} [xRHIDENTITY] For internal use only
4613
4907
  * @param {any} [limit] Number of items to return per page
4614
4908
  * @param {any} [offset] Offset of first item of paginated response
4909
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4615
4910
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4616
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4911
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4617
4912
  * @param {*} [options] Override http request option.
4618
4913
  * @throws {RequiredError}
4619
4914
  */
4620
- tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
4915
+ tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Rules200Response>;
4621
4916
  };
4622
4917
  /**
4623
4918
  * TailoringRulesApi - object-oriented interface
@@ -4634,13 +4929,14 @@ export declare class TailoringRulesApi extends BaseAPI {
4634
4929
  * @param {any} [xRHIDENTITY] For internal use only
4635
4930
  * @param {any} [limit] Number of items to return per page
4636
4931
  * @param {any} [offset] Offset of first item of paginated response
4932
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4637
4933
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4638
- * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, and &#x60;remediation_available&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4934
+ * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Rules are searchable using attributes &#x60;title&#x60;, &#x60;severity&#x60;, &#x60;remediation_available&#x60;, and &#x60;rule_group_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4639
4935
  * @param {*} [options] Override http request option.
4640
4936
  * @throws {RequiredError}
4641
4937
  * @memberof TailoringRulesApi
4642
4938
  */
4643
- tailoringRules(policyId: any, tailoringId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Rules200Response, any>>;
4939
+ 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>>;
4644
4940
  }
4645
4941
  /**
4646
4942
  * TailoringsApi - axios parameter creator
@@ -4654,12 +4950,13 @@ export declare const TailoringsApiAxiosParamCreator: (configuration?: Configurat
4654
4950
  * @param {any} [xRHIDENTITY] For internal use only
4655
4951
  * @param {any} [limit] Number of items to return per page
4656
4952
  * @param {any} [offset] Offset of first item of paginated response
4953
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4657
4954
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4658
4955
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Tailorings are searchable using attributes &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4659
4956
  * @param {*} [options] Override http request option.
4660
4957
  * @throws {RequiredError}
4661
4958
  */
4662
- tailorings: (policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4959
+ tailorings: (policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4663
4960
  };
4664
4961
  /**
4665
4962
  * TailoringsApi - functional programming interface
@@ -4673,12 +4970,13 @@ export declare const TailoringsApiFp: (configuration?: Configuration) => {
4673
4970
  * @param {any} [xRHIDENTITY] For internal use only
4674
4971
  * @param {any} [limit] Number of items to return per page
4675
4972
  * @param {any} [offset] Offset of first item of paginated response
4973
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4676
4974
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4677
4975
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Tailorings are searchable using attributes &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4678
4976
  * @param {*} [options] Override http request option.
4679
4977
  * @throws {RequiredError}
4680
4978
  */
4681
- tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tailorings200Response>>;
4979
+ tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tailorings200Response>>;
4682
4980
  };
4683
4981
  /**
4684
4982
  * TailoringsApi - factory interface
@@ -4692,12 +4990,13 @@ export declare const TailoringsApiFactory: (configuration?: Configuration, baseP
4692
4990
  * @param {any} [xRHIDENTITY] For internal use only
4693
4991
  * @param {any} [limit] Number of items to return per page
4694
4992
  * @param {any} [offset] Offset of first item of paginated response
4993
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4695
4994
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4696
4995
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Tailorings are searchable using attributes &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4697
4996
  * @param {*} [options] Override http request option.
4698
4997
  * @throws {RequiredError}
4699
4998
  */
4700
- tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Tailorings200Response>;
4999
+ tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<Tailorings200Response>;
4701
5000
  };
4702
5001
  /**
4703
5002
  * TailoringsApi - object-oriented interface
@@ -4713,13 +5012,14 @@ export declare class TailoringsApi extends BaseAPI {
4713
5012
  * @param {any} [xRHIDENTITY] For internal use only
4714
5013
  * @param {any} [limit] Number of items to return per page
4715
5014
  * @param {any} [offset] Offset of first item of paginated response
5015
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
4716
5016
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
4717
5017
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Tailorings are searchable using attributes &#x60;os_minor_version&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
4718
5018
  * @param {*} [options] Override http request option.
4719
5019
  * @throws {RequiredError}
4720
5020
  * @memberof TailoringsApi
4721
5021
  */
4722
- tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailorings200Response, any>>;
5022
+ tailorings(policyId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailorings200Response, any>>;
4723
5023
  }
4724
5024
  /**
4725
5025
  * UnassignRuleApi - axios parameter creator
@@ -4958,7 +5258,7 @@ export declare const UpdateTailoringApiFp: (configuration?: Configuration) => {
4958
5258
  * @param {*} [options] Override http request option.
4959
5259
  * @throws {RequiredError}
4960
5260
  */
4961
- updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tailoring200Response>>;
5261
+ updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTailoring201Response>>;
4962
5262
  };
4963
5263
  /**
4964
5264
  * UpdateTailoringApi - factory interface
@@ -4975,7 +5275,7 @@ export declare const UpdateTailoringApiFactory: (configuration?: Configuration,
4975
5275
  * @param {*} [options] Override http request option.
4976
5276
  * @throws {RequiredError}
4977
5277
  */
4978
- updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: any): AxiosPromise<Tailoring200Response>;
5278
+ updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: any): AxiosPromise<CreateTailoring201Response>;
4979
5279
  };
4980
5280
  /**
4981
5281
  * UpdateTailoringApi - object-oriented interface
@@ -4995,7 +5295,7 @@ export declare class UpdateTailoringApi extends BaseAPI {
4995
5295
  * @throws {RequiredError}
4996
5296
  * @memberof UpdateTailoringApi
4997
5297
  */
4998
- updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Tailoring200Response, any>>;
5298
+ updateTailoring(policyId: any, tailoringId: any, xRHIDENTITY?: any, tailoring?: Tailoring, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateTailoring201Response, any>>;
4999
5299
  }
5000
5300
  /**
5001
5301
  * ValueDefinitionApi - axios parameter creator
@@ -5076,12 +5376,13 @@ export declare const ValueDefinitionsApiAxiosParamCreator: (configuration?: Conf
5076
5376
  * @param {any} [xRHIDENTITY] For internal use only
5077
5377
  * @param {any} [limit] Number of items to return per page
5078
5378
  * @param {any} [offset] Offset of first item of paginated response
5379
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
5079
5380
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
5080
5381
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Value Definitions are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
5081
5382
  * @param {*} [options] Override http request option.
5082
5383
  * @throws {RequiredError}
5083
5384
  */
5084
- valueDefinitions: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5385
+ valueDefinitions: (securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5085
5386
  };
5086
5387
  /**
5087
5388
  * ValueDefinitionsApi - functional programming interface
@@ -5095,12 +5396,13 @@ export declare const ValueDefinitionsApiFp: (configuration?: Configuration) => {
5095
5396
  * @param {any} [xRHIDENTITY] For internal use only
5096
5397
  * @param {any} [limit] Number of items to return per page
5097
5398
  * @param {any} [offset] Offset of first item of paginated response
5399
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
5098
5400
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
5099
5401
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Value Definitions are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
5100
5402
  * @param {*} [options] Override http request option.
5101
5403
  * @throws {RequiredError}
5102
5404
  */
5103
- valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValueDefinitions200Response>>;
5405
+ valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValueDefinitions200Response>>;
5104
5406
  };
5105
5407
  /**
5106
5408
  * ValueDefinitionsApi - factory interface
@@ -5114,12 +5416,13 @@ export declare const ValueDefinitionsApiFactory: (configuration?: Configuration,
5114
5416
  * @param {any} [xRHIDENTITY] For internal use only
5115
5417
  * @param {any} [limit] Number of items to return per page
5116
5418
  * @param {any} [offset] Offset of first item of paginated response
5419
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
5117
5420
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
5118
5421
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Value Definitions are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
5119
5422
  * @param {*} [options] Override http request option.
5120
5423
  * @throws {RequiredError}
5121
5424
  */
5122
- valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ValueDefinitions200Response>;
5425
+ valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: any): AxiosPromise<ValueDefinitions200Response>;
5123
5426
  };
5124
5427
  /**
5125
5428
  * ValueDefinitionsApi - object-oriented interface
@@ -5135,11 +5438,12 @@ export declare class ValueDefinitionsApi extends BaseAPI {
5135
5438
  * @param {any} [xRHIDENTITY] For internal use only
5136
5439
  * @param {any} [limit] Number of items to return per page
5137
5440
  * @param {any} [offset] Offset of first item of paginated response
5441
+ * @param {any} [idsOnly] Indicates whether to return only resource IDs.
5138
5442
  * @param {any} [sortBy] Attribute and direction to sort the items by. Represented by an array of fields with an optional direction (&#x60;&lt;key&gt;:asc&#x60; or &#x60;&lt;key&gt;:desc&#x60;).&lt;br&gt;&lt;br&gt;If no direction is selected, &#x60;&lt;key&gt;:asc&#x60; is used by default.
5139
5443
  * @param {any} [filter] Query string to filter items by their attributes. Compliant with &lt;a href&#x3D;\&quot;https://github.com/wvanbergen/scoped_search/wiki/Query-language\&quot; target&#x3D;\&quot;_blank\&quot; title&#x3D;\&quot;github.com/wvanbergen/scoped_search\&quot;&gt;scoped_search query language&lt;/a&gt;. However, only &#x60;&#x3D;&#x60; or &#x60;!&#x3D;&#x60; (resp. &#x60;&lt;&gt;&#x60;) operators are supported.&lt;br&gt;&lt;br&gt;Value Definitions are searchable using attributes &#x60;title&#x60; and &#x60;ref_id&#x60;&lt;br&gt;&lt;br&gt;(e.g.: &#x60;(field_1&#x3D;something AND field_2!&#x3D;\&quot;something else\&quot;) OR field_3&gt;40&#x60;)
5140
5444
  * @param {*} [options] Override http request option.
5141
5445
  * @throws {RequiredError}
5142
5446
  * @memberof ValueDefinitionsApi
5143
5447
  */
5144
- valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinitions200Response, any>>;
5448
+ valueDefinitions(securityGuideId: any, xRHIDENTITY?: any, limit?: any, offset?: any, idsOnly?: any, sortBy?: any, filter?: any, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueDefinitions200Response, any>>;
5145
5449
  }