You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/VulnerabilitiesApi.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,7 @@ with kandji.ApiClient(configuration) as api_client:
130
130
page =''# str | The page number of the response. (optional)
131
131
size ='50'# str | A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results. (optional)
132
132
sort_by ='cve_id'# str | Field to sort by. Example: sort_by=app_name. (optional)
@@ -152,7 +152,7 @@ Name | Type | Description | Notes
152
152
**page** | **str**| The page number of the response. | [optional]
153
153
**size** | **str**| A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results. | [optional]
154
154
**sort_by** | **str**| Field to sort by. Example: sort_by=app_name. | [optional]
@@ -216,7 +216,7 @@ with kandji.ApiClient(configuration) as api_client:
216
216
page =''# str | The page number of the response. (optional)
217
217
size ='50'# str | A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results. (optional)
218
218
sort_by ='cve_id'# str | Field to sort by. Example: sort_by=app_name. (optional)
@@ -238,7 +238,7 @@ Name | Type | Description | Notes
238
238
**page** | **str**| The page number of the response. | [optional]
239
239
**size** | **str**| A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results. | [optional]
240
240
**sort_by** | **str**| Field to sort by. Example: sort_by=app_name. | [optional]
size ='300'# str | A hard upper <code>limit</code> is set at 300 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results. (optional)
303
-
filter='device_serial_number'# str | <p>Filter on any key attribute within the response.</p> <ul> <li>device_id</li> <li>device_name</li> <li>device_serial_number</li> <li>device_model</li> <li>device_os_version</li> <li>blueprint_id</li> <li>blueprint_name</li> <li>name</li> <li>path</li> <li>version</li> <li>bundle_id</li> <li>cve_id</li> <li>cve_description</li> <li>cve_link</li> <li>cvss_score</li> <li>cvss_severity</li> <li>detection_datetime</li> <li>cve_published_at</li> <li>cve_modified_at</li> </ul> (optional)
303
+
filter='{\"cve_id\":{\"in\":[\"CVE-2024-24795\"]}}'# str | <p>Filter on any key attribute within the response.</p> <ul> <li>device_id</li> <li>device_name</li> <li>device_serial_number</li> <li>device_model</li> <li>device_os_version</li> <li>blueprint_id</li> <li>blueprint_name</li> <li>name</li> <li>path</li> <li>version</li> <li>bundle_id</li> <li>cve_id</li> <li>cve_description</li> <li>cve_link</li> <li>cvss_score</li> <li>cvss_severity</li> <li>detection_datetime</li> <li>cve_published_at</li> <li>cve_modified_at</li> </ul> (optional)
304
304
305
305
try:
306
306
# List Detections
@@ -382,7 +382,7 @@ with kandji.ApiClient(configuration) as api_client:
382
382
page =''# str | The page number of the response. (optional)
383
383
size ='50'# str | A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results. (optional)
384
384
sort_by ='cve_id'# str | <p>Field to sort by.</p> <ul> <li>cve_id</li> <li>software (the name of the software)</li> <li>cvss_severity</li> <li>first_detection_date</li> <li>latest_detection_date</li> </ul> (optional)
Copy file name to clipboardExpand all lines: kandji/api/vulnerabilities_api.py
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -310,7 +310,7 @@ def list_affected_apps(
310
310
page: Annotated[Optional[StrictStr], Field(description="The page number of the response.")] =None,
311
311
size: Annotated[Optional[StrictStr], Field(description="A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results.")] =None,
312
312
sort_by: Annotated[Optional[StrictStr], Field(description="Field to sort by. Example: sort_by=app_name.")] =None,
page: Annotated[Optional[StrictStr], Field(description="The page number of the response.")] =None,
394
394
size: Annotated[Optional[StrictStr], Field(description="A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results.")] =None,
395
395
sort_by: Annotated[Optional[StrictStr], Field(description="Field to sort by. Example: sort_by=app_name.")] =None,
page: Annotated[Optional[StrictStr], Field(description="The page number of the response.")] =None,
477
477
size: Annotated[Optional[StrictStr], Field(description="A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results.")] =None,
478
478
sort_by: Annotated[Optional[StrictStr], Field(description="Field to sort by. Example: sort_by=app_name.")] =None,
:param _request_timeout: timeout setting for this request. If one
508
508
number provided, it will be total request
@@ -639,7 +639,7 @@ def list_affected_devices(
639
639
page: Annotated[Optional[StrictStr], Field(description="The page number of the response.")] =None,
640
640
size: Annotated[Optional[StrictStr], Field(description="A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results.")] =None,
641
641
sort_by: Annotated[Optional[StrictStr], Field(description="Field to sort by. Example: sort_by=app_name.")] =None,
page: Annotated[Optional[StrictStr], Field(description="The page number of the response.")] =None,
723
723
size: Annotated[Optional[StrictStr], Field(description="A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results.")] =None,
724
724
sort_by: Annotated[Optional[StrictStr], Field(description="Field to sort by. Example: sort_by=app_name.")] =None,
page: Annotated[Optional[StrictStr], Field(description="The page number of the response.")] =None,
806
806
size: Annotated[Optional[StrictStr], Field(description="A hard upper limit is set at 50 records returned per request. If more records are expected, pagination should be used using the URL value returned in the next attribute. Additionally, filters can be added to a request to limit the results.")] =None,
807
807
sort_by: Annotated[Optional[StrictStr], Field(description="Field to sort by. Example: sort_by=app_name.")] =None,
0 commit comments